@kalyx/react 0.2.1 → 0.3.0
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 +29 -0
- package/dist/index.cjs +233 -211
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -5
- package/dist/index.d.ts +13 -5
- package/dist/index.js +234 -212
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @kalyx/react
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 669391b: Improve code quality, performance, and stability
|
|
8
|
+
|
|
9
|
+
- Enforce UTC timezone suffix in ISO regex
|
|
10
|
+
- Extract shared usePopover and useListboxNavigation hooks
|
|
11
|
+
- Add Intl.DateTimeFormat caching for locale/timezone utilities
|
|
12
|
+
- Memoize disabledRules to prevent unnecessary context re-creation
|
|
13
|
+
- Add try-catch around adapter.format() for error resilience
|
|
14
|
+
- Cancel requestAnimationFrame on unmount in listbox navigation
|
|
15
|
+
- Remove unused parseInputValue format parameter
|
|
16
|
+
- Boost test coverage: 87% → 92%
|
|
17
|
+
- Fix bundle size measurement to report both ESM and CJS
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies [669391b]
|
|
22
|
+
- @kalyx/core@0.3.0
|
|
23
|
+
|
|
24
|
+
## 0.2.2
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- ebf4fd7: Add repository/homepage/bugs/keywords metadata to @kalyx/core for npm provenance validation
|
|
29
|
+
- Updated dependencies [ebf4fd7]
|
|
30
|
+
- @kalyx/core@0.2.2
|
|
31
|
+
|
|
3
32
|
## 0.2.1
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|