fix(core): update

This commit is contained in:
Philipp Kunz 2023-03-27 23:21:27 +02:00
parent 4cf5ca2d7f
commit 7cefd9cba5
2 changed files with 4 additions and 2 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@designestate/dees-catalog',
version: '1.0.154',
version: '1.0.155',
description: 'website for lossless.com'
}

View File

@ -15,7 +15,8 @@ export class DeesInputText extends DeesElement {
`;
// INSTANCE
public changeSubject = new domtools.rxjs.Subject();
public changeSubject = new domtools.rxjs.Subject<DeesInputText>();
public valueChangeSubject = new domtools.rxjs.Subject<string>();
@property({
type: String
@ -140,6 +141,7 @@ 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() {