2020-12-07 03:30:59 +00:00
|
|
|
// pushrocks scope
|
2023-08-07 09:19:53 +02: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 15:00:10 +01:00
|
|
|
export { isounique, smartrx };
|
2020-12-07 03:30:59 +00:00
|
|
|
|
|
|
|
// third party scope
|
2021-11-27 17:07:33 +01:00
|
|
|
import { css, unsafeCSS, LitElement } from 'lit';
|
2021-12-14 01:59:50 +01:00
|
|
|
import { property } from 'lit/decorators/property.js';
|
2021-11-27 17:07:33 +01: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 22:09:52 +01:00
|
|
|
property,
|
2020-11-25 13:43:39 +00:00
|
|
|
};
|
|
|
|
|
2023-08-07 09:19:53 +02:00
|
|
|
import * as domtools from '@design.estate/dees-domtools';
|
2020-11-25 13:43:39 +00:00
|
|
|
|
2022-03-16 15:00:10 +01:00
|
|
|
export { lit, domtools };
|