diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index a182e1c..78802d3 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@designestate/dees-catalog', - version: '1.0.153', + version: '1.0.154', description: 'website for lossless.com' } diff --git a/ts_web/elements/dees-input-text.ts b/ts_web/elements/dees-input-text.ts index ca9f665..a7e006c 100644 --- a/ts_web/elements/dees-input-text.ts +++ b/ts_web/elements/dees-input-text.ts @@ -155,4 +155,9 @@ export class DeesInputText extends DeesElement { this.showPasswordBool = !this.showPasswordBool; console.log(`this.showPasswordBool is: ${this.showPasswordBool}`) } + + public async focus() { + const textInput = this.shadowRoot.querySelector('input'); + textInput.focus(); + } }