fix(core): update

This commit is contained in:
2023-04-12 02:47:45 +02:00
parent d6047f2e78
commit f75a3714ae
7 changed files with 56 additions and 20 deletions

View File

@ -163,4 +163,9 @@ export class DeesInputText extends DeesElement {
const textInput = this.shadowRoot.querySelector('input');
textInput.focus();
}
public async blur() {
const textInput = this.shadowRoot.querySelector('input');
textInput.blur();
}
}