2025-04-18 17:00:04 +00:00
|
|
|
import { CssManager } from './classes.cssmanager.js';
|
2020-11-25 13:43:39 +00:00
|
|
|
|
2021-11-27 17:07:33 +01:00
|
|
|
// lit exports
|
2023-08-07 19:34:44 +02:00
|
|
|
export { html, type TemplateResult, css, unsafeCSS, render, type CSSResult } from 'lit';
|
2022-05-21 02:30:19 +02:00
|
|
|
export { unsafeHTML } from 'lit/directives/unsafe-html.js';
|
2021-11-27 17:07:33 +01:00
|
|
|
|
2021-12-14 01:59:50 +01:00
|
|
|
export { customElement } from 'lit/decorators/custom-element.js';
|
|
|
|
|
2022-03-24 15:32:01 +01:00
|
|
|
export { property, state, query, queryAll, queryAsync } from 'lit/decorators.js';
|
2020-11-25 13:43:39 +00:00
|
|
|
|
2021-11-27 17:07:33 +01:00
|
|
|
// domtools exports
|
2023-08-07 09:19:53 +02:00
|
|
|
import * as domtools from '@design.estate/dees-domtools';
|
2021-12-14 01:59:50 +01:00
|
|
|
export { domtools };
|
2021-09-16 16:52:55 +02:00
|
|
|
|
2021-11-27 17:07:33 +01:00
|
|
|
// DeesElements exports
|
2025-04-18 17:00:04 +00:00
|
|
|
export * from './classes.dees-element.js';
|
|
|
|
|
|
|
|
// directives exports
|
|
|
|
import * as directives from './directives/index.js';
|
|
|
|
|
|
|
|
export { directives };
|
2020-11-25 13:43:39 +00:00
|
|
|
|
2021-11-27 17:07:33 +01:00
|
|
|
/**
|
|
|
|
* a singleton instance of CssManager
|
|
|
|
*/
|
2021-03-27 16:52:06 +00:00
|
|
|
export const cssManager = new CssManager();
|
2023-09-04 14:56:57 +02:00
|
|
|
|
|
|
|
|
2023-10-23 17:20:08 +02:00
|
|
|
|
2023-10-23 17:22:09 +02:00
|
|
|
// type exports
|
2023-10-23 17:20:08 +02:00
|
|
|
import type { rxjs } from '@push.rocks/smartrx';
|
|
|
|
|
|
|
|
export type {
|
|
|
|
rxjs,
|
|
|
|
}
|