@react-types/shared 3.32.0 → 3.32.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/dom.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/shared",
3
- "version": "3.32.0",
3
+ "version": "3.32.1",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "types": "src/index.d.ts",
@@ -14,5 +14,5 @@
14
14
  "publishConfig": {
15
15
  "access": "public"
16
16
  },
17
- "gitHead": "2c58ed3ddd9be9100af9b1d0cfd137fcdc95ba2d"
17
+ "gitHead": "0bda51183baa23306342af32a82012ea0fe0f2dc"
18
18
  }
package/src/dom.d.ts CHANGED
@@ -173,6 +173,7 @@ export interface TextInputDOMProps extends DOMProps, InputDOMProps, TextInputDOM
173
173
 
174
174
  /**
175
175
  * The type of input to render. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdeftype).
176
+ * @default 'text'
176
177
  */
177
178
  type?: 'text' | 'search' | 'url' | 'tel' | 'email' | 'password' | (string & {}),
178
179