fix(dees-element): Refactor project structure and update dependency versions. Internal modules (e.g. dees-element classes and directives) have been reorganized and deprecated paths removed, and package.json now includes an updated packageManager field.

This commit is contained in:
2025-04-18 17:00:04 +00:00
parent 1dd6756213
commit a9d5fce1b2
12 changed files with 4871 additions and 1657 deletions

13
ts/directives/index.ts Normal file
View File

@ -0,0 +1,13 @@
// better scoped exports
import { resolve } from './classes.resolvedirective.js';
import { subscribe } from './classes.subscribedirective.js';
export {
resolve,
subscribe,
}
export { subscribeWithTemplate } from './classes.subscribewithtemplate.js';
export { until } from 'lit/directives/until.js';
export { asyncAppend } from 'lit/directives/async-append.js';