fix(core): update

This commit is contained in:
2021-08-20 00:25:14 +02:00
parent e028f37493
commit 4311c0fff6
10 changed files with 17681 additions and 1628 deletions

View File

@ -9,7 +9,11 @@ declare global {
@customElement('dees-input-checkbox')
export class DeesInputCheckbox extends DeesElement {
// STATIC
public static demo = () => html`<dees-input-checkbox></dees-input-checkbox>`;
// INSTANCE
public changeSubject = new domtools.rxjs.Subject();
@property()
public key: string;
@ -20,6 +24,7 @@ export class DeesInputCheckbox extends DeesElement {
@property()
public value: boolean = false;
public render(): TemplateResult {
return html`
${domtools.elementBasic.styles}
@ -129,5 +134,6 @@ export class DeesInputCheckbox extends DeesElement {
bubbles: true,
})
);
this.changeSubject.next(this);
}
}