@coderundebug/ui-web
Version:
A collection of UI web components that can be used in any web project.
2 lines • 419 B
JavaScript
/* By Stephen Paul Hassall (web: https://coderundebug.com) */
import{UiInputText as s}from"./ui-input-text.js";export class UiInputPassword extends s{constructor(){super("password")}showPassword(s){!0===s?this.inputElement.setAttribute("type","text"):this.inputElement.setAttribute("type","password")}}customElements.whenDefined("ui-input-text").then((()=>{customElements.define("ui-input-password",UiInputPassword)}));