@kenos-ui/react 0.3.3 → 0.3.5

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @kenos-ui/react
2
2
 
3
+ ## 0.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3222bd8]
8
+ - @kenos-ui/react-datepicker@0.4.2
9
+
10
+ ## 0.3.4
11
+
12
+ ### Minor Changes
13
+
14
+ - **Kenos UI React — aggregator release** (`@kenos-ui/react@0.3.4`)
15
+
16
+ Single install for all Kenos UI headless primitives.
17
+
18
+ **Re-exports**
19
+
20
+ - `DatePicker` from `@kenos-ui/react-datepicker`
21
+ - `Select` from `@kenos-ui/react-select`
22
+ - `Combobox` from `@kenos-ui/react-combobox`
23
+
24
+ **Packaging**
25
+
26
+ - Add `license: MIT` to `package.json` (fixes npm registry showing "no license")
27
+
28
+ ### Patch Changes
29
+
30
+ - Updated dependencies
31
+ - @kenos-ui/react-datepicker@0.4.1
32
+ - @kenos-ui/react-select@0.2.2
33
+ - @kenos-ui/react-combobox@0.2.1
34
+ - @kenos-ui/utils@0.0.2
35
+
3
36
  ## 0.3.3
4
37
 
5
38
  ### Patch Changes
@@ -19,6 +52,7 @@
19
52
  ### Patch Changes
20
53
 
21
54
  - aaa8a57: Initial Combobox scaffold (`@kenos-ui/react-combobox@0.1.0`):
55
+
22
56
  - Parts: Root, Label, Input, Trigger, Content, List, Item, ItemText, Empty, Clear
23
57
  - `ComboboxStore` with `open`, `value`, `inputValue`, `highlightedValue`, item registry
24
58
  - `useSelectCollection` hook in `@kenos-ui/utils` for type-to-filter
@@ -56,6 +90,7 @@
56
90
  ### Minor Changes
57
91
 
58
92
  - Axis lift-and-shift: publish DatePicker under `@at5/axis-datepicker`.
93
+
59
94
  - Add `@at5/axis-datepicker` — same DatePicker API and behavior as `@at5/kairo` (migrated from `packages/kairo` to `packages/datepicker`)
60
95
  - Add `@at5/axis` — aggregator re-exporting `DatePicker`
61
96
  - `@at5/kairo` — deprecated; thin re-export of `@at5/axis-datepicker` for transition
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@kenos-ui/react",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "Kenos UI headless primitives for React — aggregator",
5
+ "license": "MIT",
5
6
  "repository": {
6
7
  "type": "git",
7
8
  "url": "https://github.com/allysontsoares/kenos-ui",
@@ -28,9 +29,9 @@
28
29
  "access": "public"
29
30
  },
30
31
  "dependencies": {
31
- "@kenos-ui/react-combobox": "0.2.0",
32
- "@kenos-ui/react-datepicker": "0.4.0",
33
- "@kenos-ui/react-select": "0.2.1"
32
+ "@kenos-ui/react-combobox": "0.2.1",
33
+ "@kenos-ui/react-datepicker": "0.4.2",
34
+ "@kenos-ui/react-select": "0.2.2"
34
35
  },
35
36
  "devDependencies": {
36
37
  "@types/react": "^19.0.0",