Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
cc6f14551f | |||
12f6bb3317 | |||
b63fac3f75 | |||
61d7de2323 | |||
d6c7f5da97 | |||
36c7f8ae38 |
3301
package-lock.json
generated
3301
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@designestate/dees-element",
|
"name": "@designestate/dees-element",
|
||||||
"version": "1.0.28",
|
"version": "1.0.31",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a custom element class extending lit element class",
|
"description": "a custom element class extending lit element class",
|
||||||
"main": "dist_ts/index.js",
|
"main": "dist_ts/index.js",
|
||||||
@ -9,19 +9,19 @@
|
|||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "(tstest test/ --web)",
|
"test": "(tstest test/ --web)",
|
||||||
"build": "(tsbuild --web)"
|
"build": "(tsbuild --web && tsbundle npm)"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@gitzone/tsbuild": "^2.1.28",
|
"@gitzone/tsbuild": "^2.1.28",
|
||||||
"@gitzone/tsbundle": "^1.0.88",
|
"@gitzone/tsbundle": "^1.0.88",
|
||||||
"@gitzone/tstest": "^1.0.60",
|
"@gitzone/tstest": "^1.0.60",
|
||||||
"@pushrocks/tapbundle": "^3.2.14",
|
"@pushrocks/tapbundle": "^3.2.15",
|
||||||
"@types/node": "^16.11.12",
|
"@types/node": "^16.11.12",
|
||||||
"tslint": "^6.1.3",
|
"tslint": "^6.1.3",
|
||||||
"tslint-config-prettier": "^1.18.0"
|
"tslint-config-prettier": "^1.18.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@designestate/dees-domtools": "^1.0.102",
|
"@designestate/dees-domtools": "^1.0.103",
|
||||||
"@pushrocks/isounique": "^1.0.4",
|
"@pushrocks/isounique": "^1.0.4",
|
||||||
"@pushrocks/smartrx": "^2.0.19",
|
"@pushrocks/smartrx": "^2.0.19",
|
||||||
"lit": "^2.0.2"
|
"lit": "^2.0.2"
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { CSSResult, unsafeCSS } from 'lit-element';
|
import { CSSResult, unsafeCSS } from 'lit';
|
||||||
import * as plugins from './dees-element.plugins';
|
import * as plugins from './dees-element.plugins';
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@designestate/dees-domtools';
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ export {
|
|||||||
|
|
||||||
// third party scope
|
// third party scope
|
||||||
import { css, unsafeCSS, LitElement } from 'lit';
|
import { css, unsafeCSS, LitElement } from 'lit';
|
||||||
import { property } from 'lit/decorators';
|
import { property } from 'lit/decorators/property.js';
|
||||||
const lit = {
|
const lit = {
|
||||||
css,
|
css,
|
||||||
unsafeCSS,
|
unsafeCSS,
|
||||||
|
22
ts/index.ts
22
ts/index.ts
@ -1,25 +1,17 @@
|
|||||||
import { CssManager } from './dees-element.classes.cssmanager';
|
import { CssManager } from './dees-element.classes.cssmanager';
|
||||||
import * as plugins from './dees-element.plugins';
|
|
||||||
|
|
||||||
// lit exports
|
// lit exports
|
||||||
export {
|
export { html, TemplateResult, css, unsafeCSS } from 'lit';
|
||||||
html,
|
|
||||||
TemplateResult,
|
|
||||||
css,
|
|
||||||
unsafeCSS,
|
|
||||||
} from 'lit';
|
|
||||||
|
|
||||||
export {
|
export { customElement } from 'lit/decorators/custom-element.js';
|
||||||
customElement,
|
|
||||||
property,
|
export { property } from 'lit/decorators/property.js';
|
||||||
state
|
|
||||||
} from 'lit/decorators'
|
export { state } from 'lit/decorators/state.js';
|
||||||
|
|
||||||
// domtools exports
|
// domtools exports
|
||||||
import * as domtools from '@designestate/dees-domtools';
|
import * as domtools from '@designestate/dees-domtools';
|
||||||
export {
|
export { domtools };
|
||||||
domtools
|
|
||||||
}
|
|
||||||
|
|
||||||
// DeesElements exports
|
// DeesElements exports
|
||||||
export { DeesElement } from './dees-element.classes.dees-element';
|
export { DeesElement } from './dees-element.classes.dees-element';
|
||||||
|
Reference in New Issue
Block a user