sprintify-ui 0.6.21 → 0.6.22
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/sprintify-ui.es.js
CHANGED
|
@@ -27050,7 +27050,7 @@ const CM = {
|
|
|
27050
27050
|
enableTime: e.enableTime,
|
|
27051
27051
|
dateFormat: r.value,
|
|
27052
27052
|
mode: e.mode,
|
|
27053
|
-
locale: h.value,
|
|
27053
|
+
locale: { ...h.value, firstDayOfWeek: 7 },
|
|
27054
27054
|
monthSelectorType: "static",
|
|
27055
27055
|
minDate: e.minDate ?? void 0,
|
|
27056
27056
|
maxDate: e.maxDate ?? void 0,
|
package/package.json
CHANGED
|
@@ -166,7 +166,7 @@ const flatpickrConfig = computed(() => {
|
|
|
166
166
|
enableTime: props.enableTime,
|
|
167
167
|
dateFormat: formatInternal.value,
|
|
168
168
|
mode: props.mode,
|
|
169
|
-
locale: locale.value,
|
|
169
|
+
locale: { ...locale.value, firstDayOfWeek: 7 },
|
|
170
170
|
monthSelectorType: 'static',
|
|
171
171
|
minDate: props.minDate ?? undefined,
|
|
172
172
|
maxDate: props.maxDate ?? undefined,
|