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,7 +1,7 @@
|
||||
import { html, css, cssManager } from '@design.estate/dees-element';
|
||||
import '@design.estate/dees-wcctools/demotools';
|
||||
import './dees-panel.js';
|
||||
import type { IStatsTile } from './dees-statsgrid.js';
|
||||
import type { IStatsTile } from '../dees-statsgrid/dees-statsgrid.js';
|
||||
|
||||
export const demoFunc = () => {
|
||||
return html`
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { demoFunc } from './dees-statsgrid.demo.js';
|
||||
import * as plugins from './00plugins.js';
|
||||
import { cssGeistFontFamily } from './00fonts.js';
|
||||
import * as plugins from '../00plugins.js';
|
||||
import { cssGeistFontFamily } from '../00fonts.js';
|
||||
import {
|
||||
customElement,
|
||||
html,
|
||||
|
||||
1
ts_web/elements/dees-statsgrid/index.ts
Normal file
1
ts_web/elements/dees-statsgrid/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from '../dees-statsgrid/dees-statsgrid.js';
|
||||
Reference in New Issue
Block a user