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

19
ts/plugins.ts Normal file
View File

@ -0,0 +1,19 @@
// pushrocks scope
import * as isounique from '@push.rocks/isounique';
import * as smartrx from '@push.rocks/smartrx';
export { isounique, smartrx };
// third party scope
import { css, unsafeCSS, LitElement } from 'lit';
import { property } from 'lit/decorators/property.js';
const lit = {
css,
unsafeCSS,
LitElement,
property,
};
import * as domtools from '@design.estate/dees-domtools';
export { lit, domtools };