@kenos-ui/react-combobox 0.1.0 → 0.2.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 +18 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @kenos-ui/react-combobox
|
|
2
2
|
|
|
3
|
+
## 0.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- aaa8a57: Initial Combobox scaffold (`@kenos-ui/react-combobox@0.1.0`):
|
|
8
|
+
|
|
9
|
+
- Parts: Root, Label, Input, Trigger, Content, List, Item, ItemText, Empty, Clear
|
|
10
|
+
- `ComboboxStore` with `open`, `value`, `inputValue`, `highlightedValue`, item registry
|
|
11
|
+
- `useSelectCollection` hook in `@kenos-ui/utils` for type-to-filter
|
|
12
|
+
- Basic keyboard: filter on type, arrow navigation, Enter to select
|
|
13
|
+
- Re-exported from `@kenos-ui/react`
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [aaa8a57]
|
|
18
|
+
- @kenos-ui/utils@0.0.1
|
|
19
|
+
|
|
3
20
|
## 0.1.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
|
@@ -7,4 +24,4 @@
|
|
|
7
24
|
- Initial Combobox scaffold: Root, Label, Input, Trigger, Content, List, Item, ItemText, Empty, Clear
|
|
8
25
|
- `ComboboxStore` with `open`, `value`, `inputValue`, `highlightedValue`, and item registry
|
|
9
26
|
- Type-to-filter via `@kenos-ui/utils` `useSelectCollection`
|
|
10
|
-
- Basic keyboard: filter on type, arrow navigation, Enter to select
|
|
27
|
+
- Basic keyboard: filter on type, arrow navigation, Enter to select
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kenos-ui/react-combobox",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Headless Combobox primitive for React — Kenos UI",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"access": "public"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@kenos-ui/utils": "0.0.
|
|
31
|
+
"@kenos-ui/utils": "0.0.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@testing-library/jest-dom": "^6.4.0",
|