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:
@@ -1,4 +1,4 @@
|
||||
import * as plugins from './00plugins.js';
|
||||
import * as plugins from '../00plugins.js';
|
||||
import {
|
||||
DeesElement,
|
||||
type TemplateResult,
|
||||
@@ -10,7 +10,7 @@ import {
|
||||
} from '@design.estate/dees-element';
|
||||
|
||||
import * as domtools from '@design.estate/dees-domtools';
|
||||
import { DeesContextmenu } from './dees-contextmenu.js';
|
||||
import { DeesContextmenu } from '../dees-contextmenu/dees-contextmenu.js';
|
||||
import './dees-icon.js';
|
||||
|
||||
@customElement('dees-appui-activitylog')
|
||||
|
||||
1
ts_web/elements/dees-appui-activitylog/index.ts
Normal file
1
ts_web/elements/dees-appui-activitylog/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from '../dees-appui-activitylog/dees-appui-activitylog.js';
|
||||
Reference in New Issue
Block a user