@react-types/select 3.4.1-nightly.2963 → 3.4.1-nightly.2974

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 +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/select",
3
- "version": "3.4.1-nightly.2963+bd8c0996c",
3
+ "version": "3.4.1-nightly.2974+37a9f1526",
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.1277+bd8c0996c"
12
+ "@react-types/shared": "3.0.0-nightly.1288+37a9f1526"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "react": "^16.8.0 || ^17.0.0-rc.1"
@@ -17,5 +17,5 @@
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "gitHead": "bd8c0996c9c34e2873decdfdeca1eed8b176a106"
20
+ "gitHead": "37a9f15264b7f8a5e3d116cee8f8a432c4750bc6"
21
21
  }
package/src/index.d.ts CHANGED
@@ -44,6 +44,10 @@ export interface SelectProps<T> extends CollectionBase<T>, AsyncLoadable, Omit<I
44
44
  }
45
45
 
46
46
  export interface AriaSelectProps<T> extends SelectProps<T>, DOMProps, AriaLabelingProps, FocusableDOMProps {
47
+ /**
48
+ * Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).
49
+ */
50
+ autoComplete?: string,
47
51
  /**
48
52
  * The name of the input, used when submitting an HTML form.
49
53
  */