@kalyx/react 1.0.0-rc.11 → 1.0.0-rc.12

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @kalyx/react
2
2
 
3
+ ## 1.0.0-rc.12
4
+
5
+ ### Patch Changes
6
+
7
+ - e5bd203: test(ssr): cover controlled value at a DST boundary with displayTimezone across all 7 pickers
8
+
9
+ The existing `renderToString` smoke tests only exercised the default `value=null` (or generic non-DST) path. They missed the highest-risk hydration scenario: a controlled value rendered on a DST transition day (2026-03-08 US Eastern spring-forward) while `displayTimezone="America/New_York"` forces the calendar/highlighting/time rows to map UTC ↔ civil time across the seam.
10
+
11
+ Each picker now has one new determinism test inside its `SSR safety` describe that renders the same tree twice via `renderToString` and asserts byte-identical output. Any accidental clock-read or non-deterministic `Intl` path during render would surface as a string diff.
12
+ - `DatePicker` — 2026-03-08 day cell + popover + calendar
13
+ - `RangePicker` — range straddling the DST seam
14
+ - `TimePicker` — value at 02:00 EST → 03:00 EDT
15
+ - `DateTimePicker` — full date + time tree (highest hydration surface)
16
+ - `MonthPicker` — March 2026 month grid
17
+ - `YearPicker` — 2026 decade grid
18
+ - `WeekPicker` — week containing the spring-forward day
19
+
20
+ No production code changed; the suite goes from 314 → 321 picker tests and locks the current SSR-deterministic behaviour against future regressions.
21
+
22
+ - Updated dependencies [0556886]
23
+ - @kalyx/core@1.0.0-rc.12
24
+
3
25
  ## 1.0.0-rc.11
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kalyx/react",
3
- "version": "1.0.0-rc.11",
3
+ "version": "1.0.0-rc.12",
4
4
  "description": "Headless, SSR-safe React DatePicker / RangePicker / TimePicker / DateTimePicker — ISO 8601 UTC strings, IANA timezone support, ≤16 KB gzipped",
5
5
  "license": "MIT",
6
6
  "author": "jiji-hoon96",
@@ -57,7 +57,7 @@
57
57
  "@floating-ui/react": "^0.26.0",
58
58
  "date-fns": "^4.0.0",
59
59
  "date-fns-tz": "^3.0.0",
60
- "@kalyx/core": "1.0.0-rc.11"
60
+ "@kalyx/core": "1.0.0-rc.12"
61
61
  },
62
62
  "peerDependencies": {
63
63
  "react": "^19.0.0",