File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' svelte ' : patch
3
+ ---
4
+
5
+ fix: add ` command ` and ` commandfor ` to ` HTMLButtonAttributes `
Original file line number Diff line number Diff line change @@ -926,6 +926,17 @@ export interface HTMLButtonAttributes extends HTMLAttributes<HTMLButtonElement>
926
926
value ?: string | string [ ] | number | undefined | null ;
927
927
popovertarget ?: string | undefined | null ;
928
928
popovertargetaction ?: 'toggle' | 'show' | 'hide' | undefined | null ;
929
+ command ?:
930
+ | 'show-modal'
931
+ | 'close'
932
+ | 'request-close'
933
+ | 'show-popover'
934
+ | 'hide-popover'
935
+ | 'toggle-popover'
936
+ | ( string & { } )
937
+ | undefined
938
+ | null ;
939
+ commandfor ?: string | undefined | null ;
929
940
}
930
941
931
942
export interface HTMLCanvasAttributes extends HTMLAttributes < HTMLCanvasElement > {
You can’t perform that action at this time.
0 commit comments