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