microsoft / TypeScript-DOM-lib-generator

Tool for generating dom related TypeScript and JavaScript library files
Apache License 2.0
612 stars 418 forks source link

Supports more refined HTMLInputElement type attributes #1782

Open xushengfeng opened 3 weeks ago

xushengfeng commented 3 weeks ago

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#browser_compatibility HTMLInputElement type now is string, supporting like 'checkbox ' is better

    | "button"
    | "checkbox"
    | "color"
    | "date"
    | "datetime-local"
    | "email"
    | "file"
    | "hidden"
    | "image"
    | "month"
    | "number"
    | "password"
    | "radio"
    | "range"
    | "reset"
    | "search"
    | "submit"
    | "tel"
    | "text"
    | "time"
    | "url"
    | "week";
HolgerJeromin commented 3 weeks ago

And empty string as an alias for text