fix(core): update
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user