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>
926926 value ?: string | string [ ] | number | undefined | null ;
927927 popovertarget ?: string | undefined | null ;
928928 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 ;
929940}
930941
931942export interface HTMLCanvasAttributes extends HTMLAttributes < HTMLCanvasElement > {
You can’t perform that action at this time.
0 commit comments