Compare commits

...

26 Commits

Author SHA1 Message Date
ef1e373fb3 1.0.33 2022-01-06 22:08:09 +01:00
d607968dfb fix(core): update 2022-01-06 22:08:08 +01:00
45b2183c88 1.0.32 2022-01-06 21:53:21 +01:00
68f11d7e76 fix(core): update 2022-01-06 21:53:21 +01:00
cc6f14551f 1.0.31 2021-12-14 01:59:51 +01:00
12f6bb3317 fix(core): update 2021-12-14 01:59:50 +01:00
b63fac3f75 1.0.30 2021-12-13 23:29:16 +01:00
61d7de2323 fix(core): update 2021-12-13 23:29:16 +01:00
d6c7f5da97 1.0.29 2021-12-10 22:23:36 +01:00
36c7f8ae38 fix(core): update 2021-12-10 22:23:36 +01:00
2cae90816d 1.0.28 2021-12-10 17:01:04 +01:00
9e527d7fdb fix(core): update 2021-12-10 17:01:03 +01:00
9e6887bc11 1.0.27 2021-11-27 17:07:34 +01:00
17a2504760 fix(core): update 2021-11-27 17:07:33 +01:00
5622ea41e9 1.0.26 2021-09-27 12:49:32 +02:00
a0f6777930 fix(core): update 2021-09-27 12:49:31 +02:00
265e5c2264 1.0.25 2021-09-16 16:58:24 +02:00
f15e4e2948 fix(core): update 2021-09-16 16:58:23 +02:00
5b2218126c 1.0.24 2021-09-16 16:52:56 +02:00
ae39ad12a1 fix(core): update 2021-09-16 16:52:55 +02:00
dc71f41df3 1.0.23 2021-09-13 20:49:08 +02:00
41c93a0b27 fix(core): update 2021-09-13 20:49:07 +02:00
192cd76012 1.0.22 2021-09-08 23:53:22 +02:00
b25be8c85e fix(core): update 2021-09-08 23:53:22 +02:00
188690a845 1.0.21 2021-09-08 23:52:04 +02:00
85aa910046 fix(core): update 2021-09-08 23:52:04 +02:00
7 changed files with 3346 additions and 1806 deletions

5074
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@designestate/dees-element", "name": "@designestate/dees-element",
"version": "1.0.20", "version": "1.0.33",
"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,22 +9,22 @@
"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.27", "@gitzone/tsbuild": "^2.1.28",
"@gitzone/tsbundle": "^1.0.87", "@gitzone/tsbundle": "^1.0.88",
"@gitzone/tstest": "^1.0.57", "@gitzone/tstest": "^1.0.60",
"@pushrocks/tapbundle": "^3.2.14", "@pushrocks/tapbundle": "^3.2.15",
"@types/node": "^16.9.0", "@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.93", "@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-element": "^2.5.1" "lit": "^2.0.2"
}, },
"browserslist": [ "browserslist": [
"last 1 chrome versions" "last 1 chrome versions"

View File

@ -6,6 +6,7 @@ tap.test('should create a static element', async () => {
class MyButton extends deesElement.DeesElement { class MyButton extends deesElement.DeesElement {
// STATIC // STATIC
public static styles = [ public static styles = [
deesElement.cssManager.defaultStyles,
deesElement.css` deesElement.css`
.buttonClass { .buttonClass {
background: ${deesElement.cssManager.bdTheme('blue', 'black')}; background: ${deesElement.cssManager.bdTheme('blue', 'black')};

View File

@ -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';
@ -65,7 +65,7 @@ export class CssManager {
}); });
returnCssVar = newTriplet.cssVarName; returnCssVar = newTriplet.cssVarName;
} }
return plugins.litElement.unsafeCSS(`var(${returnCssVar})`); return plugins.lit.unsafeCSS(`var(${returnCssVar})`);
} }
public cssGridColumns = (amountOfColumnsArg: number, gapSizeArg: number): CSSResult => { public cssGridColumns = (amountOfColumnsArg: number, gapSizeArg: number): CSSResult => {
@ -75,6 +75,6 @@ export class CssManager {
gapSizeArg * (amountOfColumnsArg - 1) gapSizeArg * (amountOfColumnsArg - 1)
}px/${amountOfColumnsArg}))`; }px/${amountOfColumnsArg}))`;
} }
return plugins.litElement.unsafeCSS(returnString); return plugins.lit.unsafeCSS(returnString);
}; };
} }

View File

@ -1,14 +1,14 @@
import * as plugins from './dees-element.plugins'; import * as plugins from './dees-element.plugins';
export class DeesElement extends plugins.litElement.LitElement { export class DeesElement extends plugins.lit.LitElement {
// INSTANCE // INSTANCE
@plugins.litElement.property({ type: Boolean }) @plugins.lit.property({ type: Boolean })
public goBright: boolean = false; public goBright: boolean = false;
// domtools // domtools
public domtoolsPromise = plugins.domtools.elementBasic.setup(this); public domtoolsPromise = plugins.domtools.elementBasic.setup(this);
@plugins.litElement.property() @plugins.lit.property()
domtools?: plugins.domtools.DomTools; domtools?: plugins.domtools.DomTools;
private themeSubscription: plugins.smartrx.rxjs.Subscription; private themeSubscription: plugins.smartrx.rxjs.Subscription;
@ -20,17 +20,17 @@ export class DeesElement extends plugins.litElement.LitElement {
}); });
} }
public connectedCallback() { public async connectedCallback() {
super.connectedCallback(); super.connectedCallback();
this.domtoolsPromise.then(async (domtools) => { const domtools = await this.domtoolsPromise;
this.themeSubscription = domtools.themeManager.themeObservable.subscribe((goBrightArg) => { this.themeSubscription = domtools.themeManager.themeObservable.subscribe((goBrightArg) => {
this.goBright = goBrightArg; this.goBright = goBrightArg;
}); });
});
this.dispatchEvent(new CustomEvent('deesElementConnected')); this.dispatchEvent(new CustomEvent('deesElementConnected'));
} }
public disconnectedCallback() { public async disconnectedCallback() {
await this.domtoolsPromise;
super.disconnectedCallback(); super.disconnectedCallback();
this.themeSubscription.unsubscribe(); this.themeSubscription.unsubscribe();
this.dispatchEvent(new CustomEvent('deesElementDisconnected')); this.dispatchEvent(new CustomEvent('deesElementDisconnected'));

View File

@ -8,8 +8,9 @@ export {
}; };
// third party scope // third party scope
import { css, unsafeCSS, LitElement, property } from 'lit-element'; import { css, unsafeCSS, LitElement } from 'lit';
const litElement = { import { property } from 'lit/decorators/property.js';
const lit = {
css, css,
unsafeCSS, unsafeCSS,
LitElement, LitElement,
@ -19,6 +20,6 @@ const litElement = {
import * as domtools from '@designestate/dees-domtools'; import * as domtools from '@designestate/dees-domtools';
export { export {
litElement, lit,
domtools domtools
}; };

View File

@ -1,16 +1,22 @@
import { CssManager } from './dees-element.classes.cssmanager'; import { CssManager } from './dees-element.classes.cssmanager';
import * as plugins from './dees-element.plugins';
export { // lit exports
customElement, export { html, TemplateResult, css, unsafeCSS } from 'lit';
property,
internalProperty,
html,
TemplateResult,
css,
unsafeCSS
} from 'lit-element';
export { customElement } from 'lit/decorators/custom-element.js';
export { property } from 'lit/decorators/property.js';
export { state } from 'lit/decorators/state.js';
// domtools exports
import * as domtools from '@designestate/dees-domtools';
export { domtools };
// DeesElements exports
export { DeesElement } from './dees-element.classes.dees-element'; export { DeesElement } from './dees-element.classes.dees-element';
/**
* a singleton instance of CssManager
*/
export const cssManager = new CssManager(); export const cssManager = new CssManager();