Skip to content

Commit

Permalink
Enable a few more <input> attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
ektrah committed May 16, 2024
1 parent 95c1dfc commit 245a7bb
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/explorer-views/src/jsx/jsx-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ declare global {
//autocomplete
checked?: boolean;
//dirname
//disabled
disabled?: boolean;
//form
//formaction
//formenctype
Expand All @@ -336,16 +336,16 @@ declare global {
//height
//list
//max
//maxlength
maxlength?: number;
//min
//minlength
//multiple
minlength?: number;
multiple?: boolean;
name?: string;
//pattern
//placeholder
//readonly
//required
//size
pattern?: string;
placeholder?: string;
readonly?: boolean;
required?: boolean;
size?: number;
//src
//step
type?: InputType;
Expand Down

0 comments on commit 245a7bb

Please sign in to comment.