@at5/kairo 0.2.0 → 0.2.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 +22 -0
- package/README.md +13 -0
- package/dist/index.cjs +6 -1428
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -297
- package/dist/index.d.ts +1 -297
- package/dist/index.js +1 -1427
- package/dist/index.js.map +1 -1
- package/package.json +11 -39
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @at5/kairo
|
|
2
2
|
|
|
3
|
+
## 0.2.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Axis lift-and-shift: publish DatePicker under `@at5/axis-datepicker`.
|
|
8
|
+
|
|
9
|
+
- Add `@at5/axis-datepicker` — same DatePicker API and behavior as `@at5/kairo` (migrated from `packages/kairo` to `packages/datepicker`)
|
|
10
|
+
- Add `@at5/axis` — aggregator re-exporting `DatePicker`
|
|
11
|
+
- `@at5/kairo` — deprecated; thin re-export of `@at5/axis-datepicker` for transition
|
|
12
|
+
- Docs site and playground now depend on `@at5/axis-datepicker`
|
|
13
|
+
|
|
14
|
+
**Migration:** replace `@at5/kairo` with `@at5/axis-datepicker` (or `@at5/axis`). No API changes.
|
|
15
|
+
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @at5/axis-datepicker@0.3.0
|
|
18
|
+
|
|
19
|
+
## 0.2.1
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- cad8443: Improve README with full API reference and accurate dependency description
|
|
24
|
+
|
|
3
25
|
## 0.2.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @at5/kairo
|
|
2
|
+
|
|
3
|
+
**Deprecated.** Use [`@at5/axis-datepicker`](https://www.npmjs.com/package/@at5/axis-datepicker) instead.
|
|
4
|
+
|
|
5
|
+
This package re-exports `@at5/axis-datepicker` for transition only.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @at5/axis-datepicker
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```tsx
|
|
12
|
+
import { DatePicker } from "@at5/axis-datepicker";
|
|
13
|
+
```
|