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

@ -11,6 +11,9 @@ declare global {
export class DeesInputQuantitySelector extends DeesElement {
public static demo = () => html`<dees-input-quantityselector></dees-input-quantityselector>`;
// INSTANCE
public changeSubject = new domtools.rxjs.Subject();
@property()
public key: string;
@ -81,6 +84,7 @@ export class DeesInputQuantitySelector extends DeesElement {
public increase () {
this.value++;
this.changeSubject.next(this);
}
public decrease () {
@ -89,5 +93,6 @@ export class DeesInputQuantitySelector extends DeesElement {
} else {
// nothing to do here
}
this.changeSubject.next(this);
}
}