2025-12-04 13:10:15 +00:00
|
|
|
// Lit imports
|
|
|
|
|
import { LitElement, html, css } from 'lit';
|
|
|
|
|
import type { CSSResult, TemplateResult } from 'lit';
|
|
|
|
|
import { customElement, property, state } from 'lit/decorators.js';
|
|
|
|
|
|
2025-12-04 16:25:51 +00:00
|
|
|
// DeesComms for push communication
|
|
|
|
|
import * as deesComms from '@design.estate/dees-comms';
|
|
|
|
|
|
2025-12-05 00:18:07 +00:00
|
|
|
// Dees-catalog for UI components
|
|
|
|
|
import { DeesContextmenu } from '@design.estate/dees-catalog';
|
|
|
|
|
|
2025-12-04 13:10:15 +00:00
|
|
|
export {
|
|
|
|
|
LitElement,
|
|
|
|
|
html,
|
|
|
|
|
css,
|
|
|
|
|
customElement,
|
|
|
|
|
property,
|
|
|
|
|
state,
|
2025-12-04 16:25:51 +00:00
|
|
|
deesComms,
|
2025-12-05 00:18:07 +00:00
|
|
|
DeesContextmenu,
|
2025-12-04 13:10:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type { CSSResult, TemplateResult };
|