@react-types/combobox 3.5.3-nightly.3390 → 3.5.3-nightly.3402

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/combobox",
3
- "version": "3.5.3-nightly.3390+b3a290970",
3
+ "version": "3.5.3-nightly.3402+c9c838b03",
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.1690+b3a290970"
12
+ "@react-types/shared": "3.0.0-nightly.1702+c9c838b03"
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": "b3a290970bf090b14dcc1703abc0cfa76efdf112"
20
+ "gitHead": "c9c838b03cf2c9a3efa957f86bb1981fa199b3de"
21
21
  }
package/src/index.d.ts CHANGED
@@ -10,7 +10,7 @@
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
12
 
13
- import {AsyncLoadable, CollectionBase, DOMProps, FocusableProps, HelpTextProps, InputBase, LabelableProps, LoadingState, SingleSelection, SpectrumLabelableProps, SpectrumTextInputBase, StyleProps, TextInputBase, Validation} from '@react-types/shared';
13
+ import {AriaLabelingProps, AsyncLoadable, CollectionBase, DOMProps, FocusableProps, HelpTextProps, InputBase, LabelableProps, LoadingState, SingleSelection, SpectrumLabelableProps, SpectrumTextInputBase, StyleProps, TextInputBase, Validation} from '@react-types/shared';
14
14
 
15
15
  export type MenuTriggerAction = 'focus' | 'input' | 'manual';
16
16
 
@@ -45,7 +45,7 @@ export interface ComboBoxProps<T> extends CollectionBase<T>, Omit<SingleSelectio
45
45
  name?: string
46
46
  }
47
47
 
48
- export interface AriaComboBoxProps<T> extends ComboBoxProps<T>, DOMProps {
48
+ export interface AriaComboBoxProps<T> extends ComboBoxProps<T>, DOMProps, AriaLabelingProps {
49
49
  /** Whether keyboard navigation is circular. */
50
50
  shouldFocusWrap?: boolean
51
51
  }