downshift 7.0.0-alpha.1 → 7.0.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/CHANGELOG.md +5 -0
- package/README.md +8 -0
- package/dist/downshift.cjs.js +256 -639
- package/dist/downshift.esm.js +256 -639
- package/dist/downshift.native.cjs.js +257 -638
- package/dist/downshift.umd.js +254 -634
- package/dist/downshift.umd.js.map +1 -1
- package/dist/downshift.umd.min.js.map +1 -1
- package/dist/src/hooks/utils.d.ts +1 -1
- package/flow-typed/npm/downshift_v2.x.x.js.flow +2 -2
- package/package.json +1 -1
- package/preact/dist/downshift.cjs.js +256 -636
- package/preact/dist/downshift.esm.js +256 -636
- package/preact/dist/downshift.umd.js +254 -631
- package/preact/dist/downshift.umd.js.map +1 -1
- package/preact/dist/downshift.umd.min.js.map +1 -1
- package/typings/index.d.ts +3 -3
package/CHANGELOG.md
ADDED
package/README.md
CHANGED
|
@@ -57,6 +57,12 @@ has been around for a while. It established a successful pattern for making
|
|
|
57
57
|
components accessible and functional while giving developers complete freedom
|
|
58
58
|
when building the UI.
|
|
59
59
|
|
|
60
|
+
Both _useSelect_ and _useCombobox_ support he latest ARIA combobox patterns for
|
|
61
|
+
W3C, which _Downshift_ does not. Consequently, we strongly recommend the you use
|
|
62
|
+
the hooks. The hooks have been migrated to the ARIA 1.2 combobox pattern in the
|
|
63
|
+
version 7 of _downshift_. There is a [Migration Guide][migration-guide-v7] that
|
|
64
|
+
documents the changes introduced in version 7.
|
|
65
|
+
|
|
60
66
|
The `README` on this page covers only the component while each hook has its own
|
|
61
67
|
`README` page. You can navigate to the [hooks page][hooks-readme] or go directly
|
|
62
68
|
to the hook you need by using the links in the list above.
|
|
@@ -1499,3 +1505,5 @@ MIT
|
|
|
1499
1505
|
https://codesandbox.io/s/github/kentcdodds/downshift-examples?file=/src/downshift/ordered-examples/00-get-root-props-example.js
|
|
1500
1506
|
[code-sandbox-no-get-root-props]:
|
|
1501
1507
|
https://codesandbox.io/s/github/kentcdodds/downshift-examples?file=/src/downshift/ordered-examples/01-basic-autocomplete.js
|
|
1508
|
+
[migration-guide-v7]:
|
|
1509
|
+
https://github.com/downshift-js/downshift/tree/master/src/hooks/MIGRATION_V7.md
|