@react-types/select 3.7.1-nightly.3734 → 3.7.1-nightly.3741

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 +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/select",
3
- "version": "3.7.1-nightly.3734+05fb9aa6b",
3
+ "version": "3.7.1-nightly.3741+fc5f846f2",
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.2034+05fb9aa6b"
12
+ "@react-types/shared": "3.0.0-nightly.2041+fc5f846f2"
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": "05fb9aa6bcc04fb0104d7b991ac30d03f33613fa"
20
+ "gitHead": "fc5f846f2fd30bb2f7074211275d81be5b64c123"
21
21
  }
package/src/index.d.ts CHANGED
@@ -29,7 +29,7 @@ import {
29
29
  Validation
30
30
  } from '@react-types/shared';
31
31
 
32
- export interface SelectProps<T> extends CollectionBase<T>, AsyncLoadable, Omit<InputBase, 'isReadOnly'>, Validation, HelpTextProps, LabelableProps, TextInputBase, Omit<SingleSelection, 'disallowEmptySelection'>, FocusableProps {
32
+ export interface SelectProps<T> extends CollectionBase<T>, Omit<InputBase, 'isReadOnly'>, Validation, HelpTextProps, LabelableProps, TextInputBase, Omit<SingleSelection, 'disallowEmptySelection'>, FocusableProps {
33
33
  /** Sets the open state of the menu. */
34
34
  isOpen?: boolean,
35
35
  /** Sets the default open state of the menu. */
@@ -49,7 +49,7 @@ export interface AriaSelectProps<T> extends SelectProps<T>, DOMProps, AriaLabeli
49
49
  name?: string
50
50
  }
51
51
 
52
- export interface SpectrumPickerProps<T> extends AriaSelectProps<T>, SpectrumLabelableProps, StyleProps {
52
+ export interface SpectrumPickerProps<T> extends AriaSelectProps<T>, AsyncLoadable, SpectrumLabelableProps, StyleProps {
53
53
  /** Whether the textfield should be displayed with a quiet style. */
54
54
  isQuiet?: boolean,
55
55
  /** Alignment of the menu relative to the input target.