diff --git a/changelog.md b/changelog.md index 50d66d5..9ed0f1f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-06-26 - 1.9.9 - fix(dees-input-multitoggle, dees-input-typelist) +Replace dynamic import with static import for demo functions in dees-input-multitoggle and dees-input-typelist + +- Converted `await import('./dees-input-multitoggle.demo.js')` to a direct static import. +- Converted `await import('./dees-input-typelist.demo.js')` to a direct static import to improve build performance and clarity. + ## 2025-06-26 - 1.9.8 - fix(deps, windowlayer) Update dependency versions and adjust dees-windowlayer CSS to add pointer-events fix diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 91db508..888ab1b 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '1.9.8', + version: '1.9.9', description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.' } diff --git a/ts_web/elements/dees-input-multitoggle.ts b/ts_web/elements/dees-input-multitoggle.ts index d65b513..d8c9c01 100644 --- a/ts_web/elements/dees-input-multitoggle.ts +++ b/ts_web/elements/dees-input-multitoggle.ts @@ -10,7 +10,7 @@ import { DeesInputBase } from './dees-input-base.js'; import * as colors from './00colors.js' -const { demoFunc } = await import('./dees-input-multitoggle.demo.js'); +import { demoFunc } from './dees-input-multitoggle.demo.js'; declare global { interface HTMLElementTagNameMap { diff --git a/ts_web/elements/dees-input-typelist.ts b/ts_web/elements/dees-input-typelist.ts index 13a2ae5..0a61311 100644 --- a/ts_web/elements/dees-input-typelist.ts +++ b/ts_web/elements/dees-input-typelist.ts @@ -10,7 +10,7 @@ import { import * as domtools from '@design.estate/dees-domtools'; import { DeesInputBase } from './dees-input-base.js'; -const { demoFunc } = await import('./dees-input-typelist.demo.js'); +import { demoFunc } from './dees-input-typelist.demo.js'; @customElement('dees-input-typelist') export class DeesInputTypelist extends DeesInputBase {