@@ -937,7 +937,7 @@ export interface HTMLFieldsetAttributes extends HTMLAttributes<HTMLFieldSetEleme
937
937
export interface HTMLFormAttributes extends HTMLAttributes < HTMLFormElement > {
938
938
acceptcharset ?: string | undefined | null ;
939
939
action ?: string | undefined | null ;
940
- autocomplete ?: string | undefined | null ;
940
+ autocomplete ?: AutoFillBase | undefined | null ;
941
941
enctype ?: string | undefined | null ;
942
942
method ?: string | undefined | null ;
943
943
name ?: string | undefined | null ;
@@ -1025,7 +1025,7 @@ export type HTMLInputTypeAttribute =
1025
1025
export interface HTMLInputAttributes extends HTMLAttributes < HTMLInputElement > {
1026
1026
accept ?: string | undefined | null ;
1027
1027
alt ?: string | undefined | null ;
1028
- autocomplete ?: string | undefined | null ;
1028
+ autocomplete ?: AutoFill | undefined | null ;
1029
1029
capture ?: boolean | 'user' | 'environment' | undefined | null ; // https://www.w3.org/TR/html-media-capture/#the-capture-attribute
1030
1030
checked ?: boolean | undefined | null ;
1031
1031
dirname ?: string | undefined | null ;
@@ -1244,7 +1244,7 @@ export interface HTMLScriptAttributes extends HTMLAttributes<HTMLScriptElement>
1244
1244
}
1245
1245
1246
1246
export interface HTMLSelectAttributes extends HTMLAttributes < HTMLSelectElement > {
1247
- autocomplete ?: string | undefined | null ;
1247
+ autocomplete ?: AutoFill | undefined | null ;
1248
1248
disabled ?: boolean | undefined | null ;
1249
1249
form ?: string | undefined | null ;
1250
1250
multiple ?: boolean | undefined | null ;
@@ -1289,7 +1289,7 @@ export interface HTMLTableAttributes extends HTMLAttributes<HTMLTableElement> {
1289
1289
}
1290
1290
1291
1291
export interface HTMLTextareaAttributes extends HTMLAttributes < HTMLTextAreaElement > {
1292
- autocomplete ?: string | undefined | null ;
1292
+ autocomplete ?: AutoFill | undefined | null ;
1293
1293
cols ?: number | undefined | null ;
1294
1294
dirname ?: string | undefined | null ;
1295
1295
disabled ?: boolean | undefined | null ;
0 commit comments