fix(core): update

This commit is contained in:
2023-10-17 20:07:45 +02:00
parent a736ee9800
commit f3687f724f
4 changed files with 35 additions and 7 deletions

View File

@ -16,7 +16,6 @@ export class DeesInputText extends DeesElement {
// INSTANCE
public changeSubject = new domtools.rxjs.Subject<DeesInputText>();
public valueChangeSubject = new domtools.rxjs.Subject<string>();
@property({
type: String
@ -143,7 +142,6 @@ export class DeesInputText extends DeesElement {
const target: any = eventArg.target;
this.value = target.value;
this.changeSubject.next(this);
this.valueChangeSubject.next(this.value);
}
public async freeze() {