2024-01-15 12:57:49 +01:00
|
|
|
import { html } from '@design.estate/dees-element';
|
|
|
|
|
|
Refactor import paths for consistency and clarity across multiple components
- Updated import paths in dees-panel, dees-pdf, dees-progressbar, dees-searchbar, dees-shopping-productcard, dees-simple-appdash, dees-speechbubble, dees-statsgrid, dees-table, dees-toast, dees-updater, and dees-windowlayer to use consistent directory structure.
- Created index.ts files for various components to streamline imports and improve modularity.
- Ensured all imports point to the correct subdirectory structure, enhancing maintainability and readability of the codebase.
2025-12-05 10:19:37 +00:00
|
|
|
import { DeesUpdater } from '../dees-updater/dees-updater.js';
|
2024-01-15 12:57:49 +01:00
|
|
|
|
2024-01-15 19:42:15 +01:00
|
|
|
export const demoFunc = async () => {
|
|
|
|
|
const updater = await DeesUpdater.createAndShow();
|
|
|
|
|
setTimeout(async () => {
|
|
|
|
|
await updater.destroy();
|
|
|
|
|
}, 10000);
|
2024-01-15 12:57:49 +01:00
|
|
|
}
|