UNPKG

@coderundebug/ui-web

Version:

A collection of UI web components that can be used in any web project.

2 lines 282 B
/* By Stephen Paul Hassall (web: https://coderundebug.com) */ import{UiInputText as t}from"./ui-input-text.js";export class UiInputUrl extends t{constructor(){super("email")}}customElements.whenDefined("ui-input-text").then((()=>{customElements.define("ui-input-url",UiInputUrl)}));