File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " svelte " : patch
3
+ ---
4
+
5
+ feat: add support for webkitdirectory DOM boolean attribute
Original file line number Diff line number Diff line change @@ -1056,6 +1056,7 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
1056
1056
type ?: HTMLInputTypeAttribute | undefined | null ;
1057
1057
value ?: any ;
1058
1058
width ?: number | string | undefined | null ;
1059
+ webkitdirectory ?: boolean | undefined | null ;
1059
1060
1060
1061
'on:change' ?: ChangeEventHandler < HTMLInputElement > | undefined | null ;
1061
1062
onchange ?: ChangeEventHandler < HTMLInputElement > | undefined | null ;
Original file line number Diff line number Diff line change @@ -83,7 +83,8 @@ export const DOMBooleanAttributes = [
83
83
'required' ,
84
84
'reversed' ,
85
85
'seamless' ,
86
- 'selected'
86
+ 'selected' ,
87
+ 'webkitdirectory'
87
88
] ;
88
89
89
90
export const namespace_svg = 'http://www.w3.org/2000/svg' ;
You can’t perform that action at this time.
0 commit comments