@kalyx/core 1.0.0-rc.2 → 1.0.0-rc.3
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 +12 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @kalyx/core
|
|
2
2
|
|
|
3
|
+
## 1.0.0-rc.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3587b13: Remove unused English-hardcoded weekday utilities from `utils/date.ts`:
|
|
8
|
+
- `WEEKDAY_LABELS` (constant)
|
|
9
|
+
- `getOrderedWeekdays()` (function)
|
|
10
|
+
|
|
11
|
+
Both were internal exports (never exposed via `@kalyx/core` public `index.ts`) and had no consumers anywhere in the workspace. They were superseded by the locale-aware `getWeekdayNames(locale, weekStartsOn)` in `utils/locale.ts`, which uses `Intl.DateTimeFormat` to produce the same shape with multi-language support.
|
|
12
|
+
|
|
13
|
+
No public API surface changed.
|
|
14
|
+
|
|
3
15
|
## 1.0.0-rc.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED