downshift 9.0.3 → 9.0.4
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 +1 -1
- package/typings/index.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "downshift",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.4",
|
|
4
4
|
"description": "🏎 A set of primitives to build simple, flexible, WAI-ARIA compliant React autocomplete, combobox or select dropdown components.",
|
|
5
5
|
"main": "dist/downshift.cjs.js",
|
|
6
6
|
"react-native": "dist/downshift.native.cjs.js",
|
package/typings/index.d.ts
CHANGED
|
@@ -398,7 +398,7 @@ export interface UseSelectSelectedItemChange<Item>
|
|
|
398
398
|
|
|
399
399
|
export interface UseSelectHighlightedIndexChange<Item>
|
|
400
400
|
extends UseSelectStateChange<Item> {
|
|
401
|
-
highlightedIndex:
|
|
401
|
+
highlightedIndex: number
|
|
402
402
|
}
|
|
403
403
|
|
|
404
404
|
export interface UseSelectIsOpenChange<Item>
|
|
@@ -615,7 +615,7 @@ export interface UseComboboxSelectedItemChange<Item>
|
|
|
615
615
|
}
|
|
616
616
|
export interface UseComboboxHighlightedIndexChange<Item>
|
|
617
617
|
extends UseComboboxStateChange<Item> {
|
|
618
|
-
highlightedIndex:
|
|
618
|
+
highlightedIndex: number
|
|
619
619
|
}
|
|
620
620
|
|
|
621
621
|
export interface UseComboboxIsOpenChange<Item>
|