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

@@ -14,7 +14,7 @@ import {
domtools,
} from '@design.estate/dees-element';
import './dees-icon.js';
import type { DeesTerminal } from './dees-terminal.js';
import type { DeesTerminal } from '../dees-terminal/dees-terminal.js';
declare global {
interface HTMLElementTagNameMap {
@@ -303,7 +303,7 @@ export class DeesSimpleAppDash extends DeesElement {
}
const maincontainer = this.shadowRoot.querySelector('.maincontainer');
const { DeesTerminal } = await import('./dees-terminal.js');
const { DeesTerminal } = await import('../dees-terminal/dees-terminal.js');
const terminal = new DeesTerminal();
terminal.setupCommand = this.terminalSetupCommand;
this.currentTerminal = terminal;