fix(core): update
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
import {customElement, DeesElement, TemplateResult, property, html} from '@designestate/dees-element';
|
||||
import * as domtools from '@designestate/dees-domtools';
|
||||
|
||||
declare global {
|
||||
interface HTMLElementTagNameMap {
|
||||
@ -10,6 +11,9 @@ declare global {
|
||||
export class DeesInputText extends DeesElement {
|
||||
public static demo = () => html`<dees-input-text></dees-input-text>`;
|
||||
|
||||
// INSTANCE
|
||||
public changeSubject = new domtools.rxjs.Subject();
|
||||
|
||||
@property()
|
||||
public label: string = 'Label';
|
||||
|
||||
@ -75,6 +79,6 @@ export class DeesInputText extends DeesElement {
|
||||
public async updateValue(eventArg: Event) {
|
||||
const target: any = eventArg.target;
|
||||
this.value = target.value;
|
||||
|
||||
this.changeSubject.next(this);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user