downshift 8.2.4 → 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/dist/downshift.cjs.js +50 -41
- package/dist/downshift.esm.js +50 -41
- package/dist/downshift.native.cjs.js +50 -41
- package/dist/downshift.nativeweb.cjs.js +50 -41
- package/dist/downshift.umd.js +50 -41
- package/dist/downshift.umd.js.map +1 -1
- package/dist/downshift.umd.min.js +1 -1
- package/dist/downshift.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/preact/dist/downshift.cjs.js +50 -41
- package/preact/dist/downshift.esm.js +50 -41
- package/preact/dist/downshift.umd.js +50 -41
- package/preact/dist/downshift.umd.js.map +1 -1
- package/preact/dist/downshift.umd.min.js +1 -1
- package/preact/dist/downshift.umd.min.js.map +1 -1
- package/typings/index.d.ts +3 -1
package/typings/index.d.ts
CHANGED
|
@@ -421,7 +421,9 @@ export interface UseSelectGetToggleButtonReturnValue
|
|
|
421
421
|
|
|
422
422
|
export interface UseSelectGetLabelPropsOptions extends GetLabelPropsOptions {}
|
|
423
423
|
export interface UseSelectGetLabelPropsReturnValue
|
|
424
|
-
extends GetLabelPropsReturnValue {
|
|
424
|
+
extends GetLabelPropsReturnValue {
|
|
425
|
+
onClick: React.MouseEventHandler
|
|
426
|
+
}
|
|
425
427
|
|
|
426
428
|
export interface UseSelectGetItemPropsOptions<Item>
|
|
427
429
|
extends Omit<GetItemPropsOptions<Item>, 'disabled'>,
|