@react-types/combobox 3.10.2-nightly.4569 → 3.10.2-nightly.4582
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.
- package/package.json +3 -3
- package/src/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-types/combobox",
|
|
3
|
-
"version": "3.10.2-nightly.
|
|
3
|
+
"version": "3.10.2-nightly.4582+e352bda0c",
|
|
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.
|
|
12
|
+
"@react-types/shared": "3.0.0-nightly.2870+e352bda0c"
|
|
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": "
|
|
20
|
+
"gitHead": "e352bda0c6a25ce09950f5b6780d2a3763b02ffb"
|
|
21
21
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export interface ComboBoxProps<T> extends CollectionBase<T>, Omit<SingleSelectio
|
|
|
49
49
|
/** Method that is called when the open state of the menu changes. Returns the new open state and the action that caused the opening of the menu. */
|
|
50
50
|
onOpenChange?: (isOpen: boolean, menuTrigger?: MenuTriggerAction) => void,
|
|
51
51
|
/** Handler that is called when the selection changes. */
|
|
52
|
-
onSelectionChange?: (key: Key | null) =>
|
|
52
|
+
onSelectionChange?: (key: Key | null) => void,
|
|
53
53
|
/** The value of the ComboBox input (controlled). */
|
|
54
54
|
inputValue?: string,
|
|
55
55
|
/** The default value of the ComboBox input (uncontrolled). */
|