dees-element/ts/dees-element.plugins.ts

20 lines
427 B
TypeScript
Raw Permalink Normal View History

2020-12-07 03:30:59 +00:00
// pushrocks scope
2023-08-07 07:19:53 +00:00
import * as isounique from '@push.rocks/isounique';
import * as smartrx from '@push.rocks/smartrx';
2020-12-07 03:30:59 +00:00
2022-03-16 14:00:10 +00:00
export { isounique, smartrx };
2020-12-07 03:30:59 +00:00
// third party scope
2021-11-27 16:07:33 +00:00
import { css, unsafeCSS, LitElement } from 'lit';
2021-12-14 00:59:50 +00:00
import { property } from 'lit/decorators/property.js';
2021-11-27 16:07:33 +00:00
const lit = {
2021-03-27 16:52:06 +00:00
css,
unsafeCSS,
2020-11-25 14:56:18 +00:00
LitElement,
2022-01-06 21:09:52 +00:00
property,
2020-11-25 13:43:39 +00:00
};
2023-08-07 07:19:53 +00:00
import * as domtools from '@design.estate/dees-domtools';
2020-11-25 13:43:39 +00:00
2022-03-16 14:00:10 +00:00
export { lit, domtools };