@kenos-ui/react 0.2.1

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 ADDED
@@ -0,0 +1,33 @@
1
+ # @kenos-ui/react
2
+
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Rebrand: publish under `@kenos-ui` org. Replaces interim `@torq-ui/*` naming. No API changes.
8
+ - Updated dependencies
9
+ - @kenos-ui/react-datepicker@0.3.1
10
+
11
+ ## 0.2.0
12
+
13
+ ### Minor Changes
14
+
15
+ - Axis lift-and-shift: publish DatePicker under `@at5/axis-datepicker`.
16
+
17
+ - Add `@at5/axis-datepicker` — same DatePicker API and behavior as `@at5/kairo` (migrated from `packages/kairo` to `packages/datepicker`)
18
+ - Add `@at5/axis` — aggregator re-exporting `DatePicker`
19
+ - `@at5/kairo` — deprecated; thin re-export of `@at5/axis-datepicker` for transition
20
+ - Docs site and playground now depend on `@at5/axis-datepicker`
21
+
22
+ **Migration:** replace `@at5/kairo` with `@at5/axis-datepicker` (or `@at5/axis`). No API changes.
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies
27
+ - @at5/axis-datepicker@0.3.0
28
+
29
+ ## 0.1.0
30
+
31
+ ### Minor Changes
32
+
33
+ - Initial aggregator release — re-exports `@at5/axis-datepicker`
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Allyson Soares
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,17 @@
1
+ # @kenos-ui/react
2
+
3
+ Aggregator package for Kenos UI headless React primitives.
4
+
5
+ ```bash
6
+ npm install @kenos-ui/react
7
+ ```
8
+
9
+ ```tsx
10
+ import { DatePicker } from "@kenos-ui/react";
11
+ ```
12
+
13
+ For a single primitive only:
14
+
15
+ ```bash
16
+ npm install @kenos-ui/react-datepicker
17
+ ```
package/dist/index.cjs ADDED
@@ -0,0 +1,33 @@
1
+ 'use strict';
2
+
3
+ var reactDatepicker = require('@kenos-ui/react-datepicker');
4
+
5
+ function _interopNamespace(e) {
6
+ if (e && e.__esModule) return e;
7
+ var n = Object.create(null);
8
+ if (e) {
9
+ Object.keys(e).forEach(function (k) {
10
+ if (k !== 'default') {
11
+ var d = Object.getOwnPropertyDescriptor(e, k);
12
+ Object.defineProperty(n, k, d.get ? d : {
13
+ enumerable: true,
14
+ get: function () { return e[k]; }
15
+ });
16
+ }
17
+ });
18
+ }
19
+ n.default = e;
20
+ return Object.freeze(n);
21
+ }
22
+
23
+ var reactDatepicker__namespace = /*#__PURE__*/_interopNamespace(reactDatepicker);
24
+
25
+
26
+
27
+ exports.DatePicker = reactDatepicker__namespace;
28
+ Object.defineProperty(exports, "useDatePickerContext", {
29
+ enumerable: true,
30
+ get: function () { return reactDatepicker.useDatePickerContext; }
31
+ });
32
+ //# sourceMappingURL=index.cjs.map
33
+ //# sourceMappingURL=index.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.cjs","sourcesContent":[]}
@@ -0,0 +1,3 @@
1
+ import * as reactDatepicker from '@kenos-ui/react-datepicker';
2
+ export { reactDatepicker as DatePicker };
3
+ export { DatePickerConfig, DatePickerMultipleProps, DatePickerRangeProps, DatePickerRootProps, DatePickerSingleProps, DateRange, DayCellMeta, MonthItem, SelectionMode, ViewMode, WeekDayItem, YearItem, useDatePickerContext } from '@kenos-ui/react-datepicker';
@@ -0,0 +1,3 @@
1
+ import * as reactDatepicker from '@kenos-ui/react-datepicker';
2
+ export { reactDatepicker as DatePicker };
3
+ export { DatePickerConfig, DatePickerMultipleProps, DatePickerRangeProps, DatePickerRootProps, DatePickerSingleProps, DateRange, DayCellMeta, MonthItem, SelectionMode, ViewMode, WeekDayItem, YearItem, useDatePickerContext } from '@kenos-ui/react-datepicker';
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ import * as reactDatepicker from '@kenos-ui/react-datepicker';
2
+ export { reactDatepicker as DatePicker };
3
+ export { useDatePickerContext } from '@kenos-ui/react-datepicker';
4
+ //# sourceMappingURL=index.js.map
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js","sourcesContent":[]}
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@kenos-ui/react",
3
+ "version": "0.2.1",
4
+ "description": "Kenos UI headless primitives for React — aggregator",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/allysontsoares/primitives",
8
+ "directory": "packages/react"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "CHANGELOG.md"
14
+ ],
15
+ "type": "module",
16
+ "sideEffects": false,
17
+ "main": "./dist/index.cjs",
18
+ "module": "./dist/index.js",
19
+ "types": "./dist/index.d.ts",
20
+ "exports": {
21
+ ".": {
22
+ "types": "./dist/index.d.ts",
23
+ "import": "./dist/index.js",
24
+ "require": "./dist/index.cjs"
25
+ }
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "dependencies": {
31
+ "@kenos-ui/react-datepicker": "0.3.1"
32
+ },
33
+ "devDependencies": {
34
+ "@types/react": "^19.0.0",
35
+ "tsup": "^8.0.0",
36
+ "typescript": "^6.0.0"
37
+ },
38
+ "peerDependencies": {
39
+ "react": ">=19.0.0",
40
+ "react-dom": ">=19.0.0"
41
+ },
42
+ "engines": {
43
+ "node": ">=22"
44
+ },
45
+ "scripts": {
46
+ "build": "tsup",
47
+ "dev": "tsup --watch",
48
+ "typecheck": "tsc --noEmit"
49
+ }
50
+ }