@kenos-ui/react 0.3.3 → 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 +24 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
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
|
+
|
|
3
27
|
## 0.3.3
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kenos-ui/react",
|
|
3
|
-
"version": "0.3.
|
|
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.
|
|
32
|
-
"@kenos-ui/react-datepicker": "0.4.
|
|
33
|
-
"@kenos-ui/react-select": "0.2.
|
|
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",
|