Compare commits

...

10 Commits

Author SHA1 Message Date
78051a5577 2.0.14 2022-05-02 17:44:43 +02:00
59c564af0a fix(core): update 2022-05-02 17:44:43 +02:00
4178955313 2.0.13 2022-05-01 16:52:42 +02:00
4e4d29abcf fix(core): update 2022-05-01 16:52:42 +02:00
06dbacb74d 2.0.12 2022-04-22 00:12:54 +02:00
5fc730eeb2 fix(core): update 2022-04-22 00:12:54 +02:00
1bdab82d0e 2.0.11 2022-04-21 23:15:15 +02:00
76841a6b25 fix(core): update 2022-04-21 23:15:14 +02:00
6dd5277f9e 2.0.10 2022-04-19 18:49:12 +02:00
4cbbf941c0 fix(core): update 2022-04-19 18:49:12 +02:00
5 changed files with 2788 additions and 3409 deletions

6166
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "@designestate/dees-element",
"version": "2.0.9",
"version": "2.0.14",
"private": false,
"description": "a custom element class extending lit element class",
"main": "dist_ts/index.js",
@ -10,22 +10,22 @@
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany --skiplibcheck && tsbundle npm)"
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.61",
"@gitzone/tsbundle": "^1.0.102",
"@gitzone/tstest": "^1.0.70",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^17.0.25",
"@types/node": "^17.0.31",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@designestate/dees-domtools": "^2.0.6",
"@designestate/dees-domtools": "^2.0.22",
"@pushrocks/isounique": "^1.0.5",
"@pushrocks/smartrx": "^2.0.25",
"lit": "^2.2.2"
"lit": "^2.2.3"
},
"browserslist": [
"last 1 chrome versions"

8
ts/00_commitinfo_data.ts Normal file
View File

@ -0,0 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
*/
export const commitinfo = {
name: '@designestate/dees-element',
version: '2.0.14',
description: 'a custom element class extending lit element class'
}

View File

@ -32,6 +32,14 @@ export class CssManager {
return domtools.elementBasic.staticStyles;
}
public cssForDesktop(contentArg: CSSResult) {
return unsafeCSS(domtools.breakpoints.cssForDesktop(contentArg));
}
public cssForNotebook(contentArg: CSSResult) {
return unsafeCSS(domtools.breakpoints.cssForNotebook(contentArg));
}
public cssForTablet(contentArg: CSSResult) {
return unsafeCSS(domtools.breakpoints.cssForTablet(contentArg));
}

View File

@ -6,7 +6,7 @@ export class DeesElement extends plugins.lit.LitElement {
public goBright: boolean = false;
// domtools
public domtoolsPromise = plugins.domtools.elementBasic.setup(this);
public domtoolsPromise: Promise<plugins.domtools.DomTools>;
@plugins.lit.property()
domtools?: plugins.domtools.DomTools;
@ -16,8 +16,9 @@ export class DeesElement extends plugins.lit.LitElement {
private elementDomReadyDeferred = plugins.domtools.plugins.smartpromise.defer();
public elementDomReady = this.elementDomReadyDeferred.promise;
constructor() {
constructor(optionsArg: plugins.domtools.IDomToolsContructorOptions = {}) {
super();
this.domtoolsPromise = plugins.domtools.elementBasic.setup(this, optionsArg);
this.domtoolsPromise.then((domtoolsArg) => {
this.domtools = domtoolsArg;
});