@@ -886,7 +886,12 @@ export interface HTMLButtonAttributes extends HTMLAttributes<HTMLButtonElement>
886
886
disabled ?: boolean | undefined | null ;
887
887
form ?: string | undefined | null ;
888
888
formaction ?: string | undefined | null ;
889
- formenctype ?: string | undefined | null ;
889
+ formenctype ?:
890
+ | 'application/x-www-form-urlencoded'
891
+ | 'multipart/form-data'
892
+ | 'text/plain'
893
+ | undefined
894
+ | null ;
890
895
formmethod ?: 'dialog' | 'get' | 'post' | undefined | null ;
891
896
formnovalidate ?: boolean | undefined | null ;
892
897
formtarget ?: string | undefined | null ;
@@ -952,7 +957,12 @@ export interface HTMLFormAttributes extends HTMLAttributes<HTMLFormElement> {
952
957
acceptcharset ?: string | undefined | null ;
953
958
action ?: string | undefined | null ;
954
959
autocomplete ?: AutoFillBase | undefined | null ;
955
- enctype ?: string | undefined | null ;
960
+ enctype ?:
961
+ | 'application/x-www-form-urlencoded'
962
+ | 'multipart/form-data'
963
+ | 'text/plain'
964
+ | undefined
965
+ | null ;
956
966
method ?: 'dialog' | 'get' | 'post' | undefined | null ;
957
967
name ?: string | undefined | null ;
958
968
novalidate ?: boolean | undefined | null ;
@@ -1046,7 +1056,12 @@ export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
1046
1056
disabled ?: boolean | undefined | null ;
1047
1057
form ?: string | undefined | null ;
1048
1058
formaction ?: string | undefined | null ;
1049
- formenctype ?: string | undefined | null ;
1059
+ formenctype ?:
1060
+ | 'application/x-www-form-urlencoded'
1061
+ | 'multipart/form-data'
1062
+ | 'text/plain'
1063
+ | undefined
1064
+ | null ;
1050
1065
formmethod ?: 'dialog' | 'get' | 'post' | undefined | null ;
1051
1066
formnovalidate ?: boolean | undefined | null ;
1052
1067
formtarget ?: string | undefined | null ;
0 commit comments