@react-types/form 3.6.1-nightly.4321 → 3.6.1-nightly.4322

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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/index.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/form",
3
- "version": "3.6.1-nightly.4321+5e487532e",
3
+ "version": "3.6.1-nightly.4322+1cba01d3e",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "types": "src/index.d.ts",
@@ -9,7 +9,7 @@
9
9
  "url": "https://github.com/adobe/react-spectrum"
10
10
  },
11
11
  "dependencies": {
12
- "@react-types/shared": "3.0.0-nightly.2610+5e487532e"
12
+ "@react-types/shared": "3.0.0-nightly.2611+1cba01d3e"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
@@ -17,5 +17,5 @@
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "gitHead": "5e487532e3ca4714513fb6ab64f7a78d9d1ca281"
20
+ "gitHead": "1cba01d3edd5160ccc6788fd54f9cd34b28f9699"
21
21
  }
package/src/index.d.ts CHANGED
@@ -60,7 +60,7 @@ export interface FormProps extends AriaLabelingProps {
60
60
  * A nonstandard attribute used by iOS Safari that controls how textual form elements should be automatically capitalized.
61
61
  * See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#autocapitalize).
62
62
  */
63
- autoCapitalize?: 'off' | 'on',
63
+ autoCapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters',
64
64
  /**
65
65
  * An ARIA role override to apply to the form element.
66
66
  */