downshift 8.3.0 → 8.3.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "downshift",
3
- "version": "8.3.0",
3
+ "version": "8.3.1",
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",
@@ -419,11 +419,11 @@ export interface UseSelectGetToggleButtonReturnValue
419
419
  tabIndex: 0
420
420
  }
421
421
 
422
- export interface UseSelectGetLabelPropsOptions extends GetLabelPropsOptions {
422
+ export interface UseSelectGetLabelPropsOptions extends GetLabelPropsOptions {}
423
+ export interface UseSelectGetLabelPropsReturnValue
424
+ extends GetLabelPropsReturnValue {
423
425
  onClick: React.MouseEventHandler
424
426
  }
425
- export interface UseSelectGetLabelPropsReturnValue
426
- extends GetLabelPropsReturnValue {}
427
427
 
428
428
  export interface UseSelectGetItemPropsOptions<Item>
429
429
  extends Omit<GetItemPropsOptions<Item>, 'disabled'>,