@northslopetech/altitude-ui 2.0.13 → 2.0.14
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2203,7 +2203,7 @@ var getDayNames = () => {
|
|
|
2203
2203
|
const days = [];
|
|
2204
2204
|
for (let i = 0; i < 7; i++) {
|
|
2205
2205
|
days.push(
|
|
2206
|
-
new Intl.DateTimeFormat("en-US", { weekday: "
|
|
2206
|
+
new Intl.DateTimeFormat("en-US", { weekday: "short" }).format(
|
|
2207
2207
|
new Date(2e3, 0, i + 1)
|
|
2208
2208
|
)
|
|
2209
2209
|
);
|
package/dist/index.mjs
CHANGED
|
@@ -2064,7 +2064,7 @@ var getDayNames = () => {
|
|
|
2064
2064
|
const days = [];
|
|
2065
2065
|
for (let i = 0; i < 7; i++) {
|
|
2066
2066
|
days.push(
|
|
2067
|
-
new Intl.DateTimeFormat("en-US", { weekday: "
|
|
2067
|
+
new Intl.DateTimeFormat("en-US", { weekday: "short" }).format(
|
|
2068
2068
|
new Date(2e3, 0, i + 1)
|
|
2069
2069
|
)
|
|
2070
2070
|
);
|