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.
This commit is contained in:
2025-12-05 10:19:37 +00:00
parent 7adad49cb1
commit d1bc562b5c
125 changed files with 246 additions and 188 deletions

View File

@@ -1,7 +1,7 @@
import { html } from '@design.estate/dees-element';
import * as plugins from './00plugins.js';
import * as plugins from '../00plugins.js';
import { DeesContextmenu } from './dees-contextmenu.js';
import { DeesContextmenu } from '../dees-contextmenu/dees-contextmenu.js';
export const demoFunc = () => html`
<style>

View File

@@ -1,4 +1,4 @@
import * as plugins from './00plugins.js';
import * as plugins from '../00plugins.js';
import { demoFunc } from './dees-contextmenu.demo.js';
import {
customElement,
@@ -13,8 +13,8 @@ import {
} from '@design.estate/dees-element';
import * as domtools from '@design.estate/dees-domtools';
import { DeesWindowLayer } from './dees-windowlayer.js';
import { zIndexLayers } from './00zindex.js';
import { DeesWindowLayer } from '../dees-windowlayer/dees-windowlayer.js';
import { zIndexLayers } from '../00zindex.js';
import './dees-icon.js';
declare global {

View File

@@ -0,0 +1 @@
export * from '../dees-contextmenu/dees-contextmenu.js';