@@ -887,7 +887,7 @@ export interface HTMLButtonAttributes extends HTMLAttributes<HTMLButtonElement>
887
887
form ?: string | undefined | null ;
888
888
formaction ?: string | undefined | null ;
889
889
formenctype ?: string | undefined | null ;
890
- formmethod ?: string | undefined | null ;
890
+ formmethod ?: 'dialog' | 'get' | 'post' | undefined | null ;
891
891
formnovalidate ?: boolean | undefined | null ;
892
892
formtarget ?: string | undefined | null ;
893
893
name ?: string | undefined | null ;
@@ -953,7 +953,7 @@ export interface HTMLFormAttributes extends HTMLAttributes<HTMLFormElement> {
953
953
action ?: string | undefined | null ;
954
954
autocomplete ?: AutoFillBase | undefined | null ;
955
955
enctype ?: string | undefined | null ;
956
- method ?: string | undefined | null ;
956
+ method ?: 'dialog' | 'get' | 'post' | undefined | null ;
957
957
name ?: string | undefined | null ;
958
958
novalidate ?: boolean | undefined | null ;
959
959
target ?: string | undefined | null ;
@@ -1047,7 +1047,7 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
1047
1047
form ?: string | undefined | null ;
1048
1048
formaction ?: string | undefined | null ;
1049
1049
formenctype ?: string | undefined | null ;
1050
- formmethod ?: string | undefined | null ;
1050
+ formmethod ?: 'dialog' | 'get' | 'post' | undefined | null ;
1051
1051
formnovalidate ?: boolean | undefined | null ;
1052
1052
formtarget ?: string | undefined | null ;
1053
1053
height ?: number | string | undefined | null ;
@@ -1486,7 +1486,8 @@ export interface SVGAttributes<T extends EventTarget> extends AriaAttributes, DO
1486
1486
lang ?: string | undefined | null ;
1487
1487
max ?: number | string | undefined | null ;
1488
1488
media ?: string | undefined | null ;
1489
- method ?: string | undefined | null ;
1489
+ // On the `textPath` element
1490
+ method ?: 'align' | 'stretch' | undefined | null ;
1490
1491
min ?: number | string | undefined | null ;
1491
1492
name ?: string | undefined | null ;
1492
1493
style ?: string | undefined | null ;
0 commit comments