downshift 7.6.0 → 8.0.0-beta.0
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/README.md +12 -2
- package/dist/downshift.cjs.js +348 -355
- package/dist/downshift.esm.js +260 -268
- package/dist/downshift.native.cjs.js +333 -339
- package/dist/downshift.nativeweb.cjs.js +348 -354
- package/dist/downshift.umd.js +351 -355
- 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/dist/src/hooks/useSelect/types.d.ts +1 -1
- package/dist/src/hooks/useSelect/utils.d.ts +2 -1
- package/dist/src/hooks/utils.d.ts +60 -5
- package/dist/src/utils.d.ts +22 -23
- package/dist/test/downshift.test.d.ts +3 -0
- package/dist/test/useCombobox.test.d.ts +3 -0
- package/dist/test/useMultipleSelect.test.d.ts +3 -0
- package/dist/test/useSelect.test.d.ts +3 -0
- package/package.json +4 -1
- package/preact/dist/downshift.cjs.js +341 -350
- package/preact/dist/downshift.esm.js +253 -263
- package/preact/dist/downshift.umd.js +340 -349
- package/preact/dist/downshift.umd.js.map +1 -1
- package/preact/dist/downshift.umd.min.js +2 -2
- package/preact/dist/downshift.umd.min.js.map +1 -1
- package/typings/index.d.ts +203 -52
- package/CHANGELOG.md +0 -5
package/README.md
CHANGED
|
@@ -70,6 +70,15 @@ to the hook you need by using the links in the list above.
|
|
|
70
70
|
For examples on how to use the hooks or the Downshift component, check out our
|
|
71
71
|
[docsite][docsite]!
|
|
72
72
|
|
|
73
|
+
**🚨 Use the Downshift hooks 🚨**
|
|
74
|
+
|
|
75
|
+
If you are new to the library, consider the _useSelect_ and _useCombobox_ hooks
|
|
76
|
+
as the first option. As mentioned above, the hooks benefit from the updated ARIA
|
|
77
|
+
patterns and are actively maintained and improved. If there are use cases that
|
|
78
|
+
are supported by the _Downshift_ component and not by the hooks, please create
|
|
79
|
+
an issue in our repo. The _Downshift_ component is going to be removed
|
|
80
|
+
completely once the hooks become mature.
|
|
81
|
+
|
|
73
82
|
### Downshift
|
|
74
83
|
|
|
75
84
|
This is a component that controls user interactions and state for you so you can
|
|
@@ -1034,6 +1043,8 @@ const ui = (
|
|
|
1034
1043
|
Allows reseting the internal id counter which is used to generate unique ids for
|
|
1035
1044
|
Downshift component.
|
|
1036
1045
|
|
|
1046
|
+
**This is unnecessary if you are using React 18 or newer**
|
|
1047
|
+
|
|
1037
1048
|
You should never need to use this in the browser. Only if you are running an
|
|
1038
1049
|
universal React app that is rendered on the server you should call
|
|
1039
1050
|
[resetIdCounter](#resetidcounter) before every render so that the ids that get
|
|
@@ -1497,8 +1508,7 @@ MIT
|
|
|
1497
1508
|
https://courses.reacttraining.com/courses/advanced-react/lectures/3172720
|
|
1498
1509
|
[react-training]: https://reacttraining.com/
|
|
1499
1510
|
[advanced-react]: https://courses.reacttraining.com/courses/enrolled/200086
|
|
1500
|
-
[use-a-render-prop]:
|
|
1501
|
-
https://cdb.reacttraining.com/use-a-render-prop-50de598f11ce
|
|
1511
|
+
[use-a-render-prop]: https://medium.com/@mjackson/use-a-render-prop-50de598f11ce
|
|
1502
1512
|
[semver]: http://semver.org/
|
|
1503
1513
|
[hooks-readme]: https://github.com/downshift-js/downshift/blob/master/src/hooks
|
|
1504
1514
|
[useselect-readme]:
|