@react-aria/textfield 3.14.0 → 3.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-aria/textfield",
3
- "version": "3.14.0",
3
+ "version": "3.14.1",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/main.js",
@@ -38,5 +38,5 @@
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "86b38c87868ce7f262e0df905e5ac4eb2653791d"
41
+ "gitHead": "80fcbf54206ca1ffb011f28fabcfc982d97bca5f"
42
42
  }
@@ -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
  }