@kenos-ui/react 0.3.2 → 0.3.4

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 CHANGED
@@ -1,5 +1,36 @@
1
1
  # @kenos-ui/react
2
2
 
3
+ ## 0.3.4
4
+
5
+ ### Minor Changes
6
+
7
+ - **Kenos UI React — aggregator release** (`@kenos-ui/react@0.3.4`)
8
+
9
+ Single install for all Kenos UI headless primitives.
10
+
11
+ **Re-exports**
12
+ - `DatePicker` from `@kenos-ui/react-datepicker`
13
+ - `Select` from `@kenos-ui/react-select`
14
+ - `Combobox` from `@kenos-ui/react-combobox`
15
+
16
+ **Packaging**
17
+ - Add `license: MIT` to `package.json` (fixes npm registry showing "no license")
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @kenos-ui/react-datepicker@0.4.1
23
+ - @kenos-ui/react-select@0.2.2
24
+ - @kenos-ui/react-combobox@0.2.1
25
+ - @kenos-ui/utils@0.0.2
26
+
27
+ ## 0.3.3
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies
32
+ - @kenos-ui/react-datepicker@0.4.0
33
+
3
34
  ## 0.3.2
4
35
 
5
36
  ### Patch Changes
@@ -12,7 +43,6 @@
12
43
  ### Patch Changes
13
44
 
14
45
  - aaa8a57: Initial Combobox scaffold (`@kenos-ui/react-combobox@0.1.0`):
15
-
16
46
  - Parts: Root, Label, Input, Trigger, Content, List, Item, ItemText, Empty, Clear
17
47
  - `ComboboxStore` with `open`, `value`, `inputValue`, `highlightedValue`, item registry
18
48
  - `useSelectCollection` hook in `@kenos-ui/utils` for type-to-filter
@@ -50,7 +80,6 @@
50
80
  ### Minor Changes
51
81
 
52
82
  - Axis lift-and-shift: publish DatePicker under `@at5/axis-datepicker`.
53
-
54
83
  - Add `@at5/axis-datepicker` — same DatePicker API and behavior as `@at5/kairo` (migrated from `packages/kairo` to `packages/datepicker`)
55
84
  - Add `@at5/axis` — aggregator re-exporting `DatePicker`
56
85
  - `@at5/kairo` — deprecated; thin re-export of `@at5/axis-datepicker` for transition
package/README.md CHANGED
@@ -14,4 +14,4 @@ For a single primitive only:
14
14
 
15
15
  ```bash
16
16
  npm install @kenos-ui/react-datepicker
17
- ```
17
+ ```
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@kenos-ui/react",
3
- "version": "0.3.2",
3
+ "version": "0.3.4",
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.3.3",
33
- "@kenos-ui/react-select": "0.2.1"
32
+ "@kenos-ui/react-combobox": "0.2.1",
33
+ "@kenos-ui/react-datepicker": "0.4.1",
34
+ "@kenos-ui/react-select": "0.2.2"
34
35
  },
35
36
  "devDependencies": {
36
37
  "@types/react": "^19.0.0",