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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.6.21",
3
+ "version": "0.6.22",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -17,10 +17,6 @@ export default {
17
17
  control: { type: 'select' },
18
18
  options: ['single', 'multiple', 'range', 'time'],
19
19
  },
20
- locale: {
21
- control: { type: 'select' },
22
- options: ['en', 'fr'],
23
- },
24
20
  },
25
21
  };
26
22
 
@@ -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,