File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
@react-aria/textfield/src Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -81,8 +81,8 @@ export interface AriaTextFieldOptions<T extends TextFieldIntrinsicElements> exte
81
81
*/
82
82
inputElementType ?: T ,
83
83
/**
84
- * A nonstandard attribute used by iOS Safari that controls how textual form elements should be automatically capitalized.
85
- * See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input# autocapitalize).
84
+ * Controls whether inputted text is automatically capitalized and, if so, in what manner.
85
+ * See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/ autocapitalize).
86
86
*/
87
87
autoCapitalize ?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'
88
88
}
Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ export interface FormProps extends AriaLabelingProps {
57
57
*/
58
58
autoComplete ?: 'off' | 'on' ,
59
59
/**
60
- * A nonstandard attribute used by iOS Safari that controls how textual form elements should be automatically capitalized.
61
- * See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form# autocapitalize).
60
+ * Controls whether inputted text is automatically capitalized and, if so, in what manner.
61
+ * See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/ autocapitalize).
62
62
*/
63
63
autoCapitalize ?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters' ,
64
64
/**
You can’t perform that action at this time.
0 commit comments