vuetify 3.8.1 → 3.8.2

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 (57) hide show
  1. package/dist/json/attributes.json +3230 -3230
  2. package/dist/json/importMap-labs.json +26 -26
  3. package/dist/json/importMap.json +172 -172
  4. package/dist/json/web-types.json +6105 -6109
  5. package/dist/vuetify-labs.cjs +159 -215
  6. package/dist/vuetify-labs.css +3202 -3199
  7. package/dist/vuetify-labs.d.ts +96 -81
  8. package/dist/vuetify-labs.esm.js +159 -215
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +159 -215
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.cjs +135 -197
  13. package/dist/vuetify.cjs.map +1 -1
  14. package/dist/vuetify.css +1752 -1749
  15. package/dist/vuetify.d.ts +86 -71
  16. package/dist/vuetify.esm.js +135 -197
  17. package/dist/vuetify.esm.js.map +1 -1
  18. package/dist/vuetify.js +135 -197
  19. package/dist/vuetify.js.map +1 -1
  20. package/dist/vuetify.min.css +2 -2
  21. package/dist/vuetify.min.js +286 -271
  22. package/dist/vuetify.min.js.map +1 -1
  23. package/lib/blueprints/md3.js +18 -5
  24. package/lib/blueprints/md3.js.map +1 -1
  25. package/lib/components/VCode/VCode.css +3 -0
  26. package/lib/components/VCode/VCode.sass +3 -0
  27. package/lib/components/VDataTable/VDataTable.css +1 -1
  28. package/lib/components/VDataTable/VDataTable.sass +1 -1
  29. package/lib/components/VDatePicker/VDatePicker.d.ts +7 -7
  30. package/lib/components/VDatePicker/VDatePickerMonth.d.ts +7 -7
  31. package/lib/composables/calendar.d.ts +2 -2
  32. package/lib/composables/calendar.js +5 -7
  33. package/lib/composables/calendar.js.map +1 -1
  34. package/lib/composables/date/DateAdapter.d.ts +1 -0
  35. package/lib/composables/date/DateAdapter.js.map +1 -1
  36. package/lib/composables/date/adapters/vuetify.d.ts +1 -0
  37. package/lib/composables/date/adapters/vuetify.js +101 -160
  38. package/lib/composables/date/adapters/vuetify.js.map +1 -1
  39. package/lib/composables/date/date.d.ts +1 -1
  40. package/lib/composables/date/date.js +0 -20
  41. package/lib/composables/date/date.js.map +1 -1
  42. package/lib/composables/filter.js +2 -1
  43. package/lib/composables/filter.js.map +1 -1
  44. package/lib/composables/theme.js +2 -2
  45. package/lib/composables/theme.js.map +1 -1
  46. package/lib/composables/validation.js +5 -0
  47. package/lib/composables/validation.js.map +1 -1
  48. package/lib/entry-bundler.d.ts +1 -0
  49. package/lib/entry-bundler.js +1 -1
  50. package/lib/framework.d.ts +63 -60
  51. package/lib/framework.js +1 -1
  52. package/lib/labs/VCalendar/VCalendar.d.ts +7 -7
  53. package/lib/labs/VCalendar/VCalendarInterval.js +25 -19
  54. package/lib/labs/VCalendar/VCalendarInterval.js.map +1 -1
  55. package/lib/labs/VDateInput/VDateInput.d.ts +7 -7
  56. package/lib/labs/entry-bundler.d.ts +1 -0
  57. package/package.json +47 -46
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.1
2
+ * Vuetify v3.8.2
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -2335,8 +2335,8 @@
2335
2335
  surface: '#212121',
2336
2336
  'surface-bright': '#ccbfd6',
2337
2337
  'surface-light': '#424242',
2338
- 'surface-variant': '#a3a3a3',
2339
- 'on-surface-variant': '#424242',
2338
+ 'surface-variant': '#c8c8c8',
2339
+ 'on-surface-variant': '#000000',
2340
2340
  primary: '#2196F3',
2341
2341
  'primary-darken-1': '#277CC1',
2342
2342
  secondary: '#54B6B2',
@@ -6898,6 +6898,11 @@
6898
6898
  }
6899
6899
  async function validate() {
6900
6900
  let silent = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
6901
+ if (props.disabled || props.readonly) {
6902
+ internalErrorMessages.value = [];
6903
+ isValidating.value = false;
6904
+ return internalErrorMessages.value;
6905
+ }
6901
6906
  const results = [];
6902
6907
  isValidating.value = true;
6903
6908
  for (const rule of props.rules) {
@@ -13054,6 +13059,7 @@
13054
13059
  // Composables
13055
13060
  const defaultFilter = (value, query, item) => {
13056
13061
  if (value == null || query == null) return -1;
13062
+ if (!query.length) return 0;
13057
13063
  value = value.toString().toLocaleLowerCase();
13058
13064
  query = query.toString().toLocaleLowerCase();
13059
13065
  const result = [];
@@ -13066,7 +13072,7 @@
13066
13072
  };
13067
13073
  function normaliseMatch(match, query) {
13068
13074
  if (match == null || typeof match === 'boolean' || match === -1) return;
13069
- if (typeof match === 'number') return [[match, query.length]];
13075
+ if (typeof match === 'number') return [[match, match + query.length]];
13070
13076
  if (Array.isArray(match[0])) return match;
13071
13077
  return [match];
13072
13078
  }
@@ -16981,165 +16987,81 @@
16981
16987
 
16982
16988
  // Types
16983
16989
 
16984
- const firstDay = {
16985
- '001': 1,
16986
- AD: 1,
16987
- AE: 6,
16988
- AF: 6,
16989
- AG: 0,
16990
- AI: 1,
16991
- AL: 1,
16992
- AM: 1,
16993
- AN: 1,
16994
- AR: 1,
16995
- AS: 0,
16996
- AT: 1,
16997
- AU: 1,
16998
- AX: 1,
16999
- AZ: 1,
17000
- BA: 1,
17001
- BD: 0,
17002
- BE: 1,
17003
- BG: 1,
17004
- BH: 6,
17005
- BM: 1,
17006
- BN: 1,
17007
- BR: 0,
17008
- BS: 0,
17009
- BT: 0,
17010
- BW: 0,
17011
- BY: 1,
17012
- BZ: 0,
17013
- CA: 0,
17014
- CH: 1,
17015
- CL: 1,
17016
- CM: 1,
17017
- CN: 1,
17018
- CO: 0,
17019
- CR: 1,
17020
- CY: 1,
17021
- CZ: 1,
17022
- DE: 1,
17023
- DJ: 6,
17024
- DK: 1,
17025
- DM: 0,
17026
- DO: 0,
17027
- DZ: 6,
17028
- EC: 1,
17029
- EE: 1,
17030
- EG: 6,
17031
- ES: 1,
17032
- ET: 0,
17033
- FI: 1,
17034
- FJ: 1,
17035
- FO: 1,
17036
- FR: 1,
17037
- GB: 1,
17038
- 'GB-alt-variant': 0,
17039
- GE: 1,
17040
- GF: 1,
17041
- GP: 1,
17042
- GR: 1,
17043
- GT: 0,
17044
- GU: 0,
17045
- HK: 0,
17046
- HN: 0,
17047
- HR: 1,
17048
- HU: 1,
17049
- ID: 0,
17050
- IE: 1,
17051
- IL: 0,
17052
- IN: 0,
17053
- IQ: 6,
17054
- IR: 6,
17055
- IS: 1,
17056
- IT: 1,
17057
- JM: 0,
17058
- JO: 6,
17059
- JP: 0,
17060
- KE: 0,
17061
- KG: 1,
17062
- KH: 0,
17063
- KR: 0,
17064
- KW: 6,
17065
- KZ: 1,
17066
- LA: 0,
17067
- LB: 1,
17068
- LI: 1,
17069
- LK: 1,
17070
- LT: 1,
17071
- LU: 1,
17072
- LV: 1,
17073
- LY: 6,
17074
- MC: 1,
17075
- MD: 1,
17076
- ME: 1,
17077
- MH: 0,
17078
- MK: 1,
17079
- MM: 0,
17080
- MN: 1,
17081
- MO: 0,
17082
- MQ: 1,
17083
- MT: 0,
17084
- MV: 5,
17085
- MX: 0,
17086
- MY: 1,
17087
- MZ: 0,
17088
- NI: 0,
17089
- NL: 1,
17090
- NO: 1,
17091
- NP: 0,
17092
- NZ: 1,
17093
- OM: 6,
17094
- PA: 0,
17095
- PE: 0,
17096
- PH: 0,
17097
- PK: 0,
17098
- PL: 1,
17099
- PR: 0,
17100
- PT: 0,
17101
- PY: 0,
17102
- QA: 6,
17103
- RE: 1,
17104
- RO: 1,
17105
- RS: 1,
17106
- RU: 1,
17107
- SA: 0,
17108
- SD: 6,
17109
- SE: 1,
17110
- SG: 0,
17111
- SI: 1,
17112
- SK: 1,
17113
- SM: 1,
17114
- SV: 0,
17115
- SY: 6,
17116
- TH: 0,
17117
- TJ: 1,
17118
- TM: 1,
17119
- TR: 1,
17120
- TT: 0,
17121
- TW: 0,
17122
- UA: 1,
17123
- UM: 0,
17124
- US: 0,
17125
- UY: 1,
17126
- UZ: 1,
17127
- VA: 1,
17128
- VE: 0,
17129
- VI: 0,
17130
- VN: 1,
17131
- WS: 0,
17132
- XK: 1,
17133
- YE: 0,
17134
- ZA: 0,
17135
- ZW: 0
17136
- };
16990
+ function weekInfo(locale) {
16991
+ // https://simplelocalize.io/data/locales/
16992
+ // then `new Intl.Locale(...).getWeekInfo()`
16993
+ const code = locale.slice(-2).toUpperCase();
16994
+ switch (true) {
16995
+ case locale === 'GB-alt-variant':
16996
+ {
16997
+ return {
16998
+ firstDay: 0,
16999
+ firstWeekSize: 4
17000
+ };
17001
+ }
17002
+ case locale === '001':
17003
+ {
17004
+ return {
17005
+ firstDay: 1,
17006
+ firstWeekSize: 1
17007
+ };
17008
+ }
17009
+ case `AG AS BD BR BS BT BW BZ CA CO DM DO ET GT GU HK HN ID IL IN JM JP KE
17010
+ KH KR LA MH MM MO MT MX MZ NI NP PA PE PH PK PR PY SA SG SV TH TT TW UM US
17011
+ VE VI WS YE ZA ZW`.includes(code):
17012
+ {
17013
+ return {
17014
+ firstDay: 0,
17015
+ firstWeekSize: 1
17016
+ };
17017
+ }
17018
+ case `AI AL AM AR AU AZ BA BM BN BY CL CM CN CR CY EC GE HR KG KZ LB LK LV
17019
+ MD ME MK MN MY NZ RO RS SI TJ TM TR UA UY UZ VN XK`.includes(code):
17020
+ {
17021
+ return {
17022
+ firstDay: 1,
17023
+ firstWeekSize: 1
17024
+ };
17025
+ }
17026
+ case `AD AN AT AX BE BG CH CZ DE DK EE ES FI FJ FO FR GB GF GP GR HU IE IS
17027
+ IT LI LT LU MC MQ NL NO PL RE RU SE SK SM VA`.includes(code):
17028
+ {
17029
+ return {
17030
+ firstDay: 1,
17031
+ firstWeekSize: 4
17032
+ };
17033
+ }
17034
+ case `AE AF BH DJ DZ EG IQ IR JO KW LY OM QA SD SY`.includes(code):
17035
+ {
17036
+ return {
17037
+ firstDay: 6,
17038
+ firstWeekSize: 1
17039
+ };
17040
+ }
17041
+ case code === 'MV':
17042
+ {
17043
+ return {
17044
+ firstDay: 5,
17045
+ firstWeekSize: 1
17046
+ };
17047
+ }
17048
+ case code === 'PT':
17049
+ {
17050
+ return {
17051
+ firstDay: 0,
17052
+ firstWeekSize: 4
17053
+ };
17054
+ }
17055
+ default:
17056
+ return null;
17057
+ }
17058
+ }
17137
17059
  function getWeekArray(date, locale, firstDayOfWeek) {
17138
17060
  const weeks = [];
17139
17061
  let currentWeek = [];
17140
17062
  const firstDayOfMonth = startOfMonth(date);
17141
17063
  const lastDayOfMonth = endOfMonth(date);
17142
- const first = firstDayOfWeek ?? firstDay[locale.slice(-2).toUpperCase()] ?? 0;
17064
+ const first = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
17143
17065
  const firstDayWeekIndex = (firstDayOfMonth.getDay() - first + 7) % 7;
17144
17066
  const lastDayWeekIndex = (lastDayOfMonth.getDay() - first + 7) % 7;
17145
17067
  for (let i = 0; i < firstDayWeekIndex; i++) {
@@ -17170,7 +17092,7 @@
17170
17092
  return weeks;
17171
17093
  }
17172
17094
  function startOfWeek(date, locale, firstDayOfWeek) {
17173
- const day = firstDayOfWeek ?? firstDay[locale.slice(-2).toUpperCase()] ?? 0;
17095
+ const day = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
17174
17096
  const d = new Date(date);
17175
17097
  while (d.getDay() !== day) {
17176
17098
  d.setDate(d.getDate() - 1);
@@ -17179,7 +17101,7 @@
17179
17101
  }
17180
17102
  function endOfWeek(date, locale) {
17181
17103
  const d = new Date(date);
17182
- const lastDay = ((firstDay[locale.slice(-2).toUpperCase()] ?? 0) + 6) % 7;
17104
+ const lastDay = ((weekInfo(locale)?.firstDay ?? 0) + 6) % 7;
17183
17105
  while (d.getDay() !== lastDay) {
17184
17106
  d.setDate(d.getDate() + 1);
17185
17107
  }
@@ -17214,7 +17136,7 @@
17214
17136
  }
17215
17137
  const sundayJanuarySecond2000 = new Date(2000, 0, 2);
17216
17138
  function getWeekdays(locale, firstDayOfWeek) {
17217
- const daysFromSunday = firstDayOfWeek ?? firstDay[locale.slice(-2).toUpperCase()] ?? 0;
17139
+ const daysFromSunday = firstDayOfWeek ?? weekInfo(locale)?.firstDay ?? 0;
17218
17140
  return createRange(7).map(i => {
17219
17141
  const weekday = new Date(sundayJanuarySecond2000);
17220
17142
  weekday.setDate(sundayJanuarySecond2000.getDate() + daysFromSunday + i);
@@ -17462,6 +17384,24 @@
17462
17384
  function getMonth(date) {
17463
17385
  return date.getMonth();
17464
17386
  }
17387
+ function getWeek(date, locale, firstDayOfWeek, firstWeekMinSize) {
17388
+ const weekInfoFromLocale = weekInfo(locale);
17389
+ const weekStart = firstDayOfWeek ?? weekInfoFromLocale?.firstDay ?? 0;
17390
+ const minWeekSize = firstWeekMinSize ?? weekInfoFromLocale?.firstWeekSize ?? 1;
17391
+ function firstWeekSize(year) {
17392
+ const yearStart = new Date(year, 0, 1);
17393
+ return 7 - getDiff(yearStart, startOfWeek(yearStart, locale, weekStart), 'days');
17394
+ }
17395
+ let year = getYear(date);
17396
+ const currentWeekEnd = addDays(startOfWeek(date, locale, weekStart), 6);
17397
+ if (year < getYear(currentWeekEnd) && firstWeekSize(year + 1) >= minWeekSize) {
17398
+ year++;
17399
+ }
17400
+ const yearStart = new Date(year, 0, 1);
17401
+ const size = firstWeekSize(year);
17402
+ const d1w1 = size >= minWeekSize ? addDays(yearStart, size - 7) : addDays(yearStart, size);
17403
+ return 1 + getDiff(date, d1w1, 'weeks');
17404
+ }
17465
17405
  function getDate(date) {
17466
17406
  return date.getDate();
17467
17407
  }
@@ -17601,10 +17541,12 @@
17601
17541
  return addMonths(date, amount);
17602
17542
  }
17603
17543
  getWeekArray(date, firstDayOfWeek) {
17604
- return getWeekArray(date, this.locale, firstDayOfWeek ? Number(firstDayOfWeek) : undefined);
17544
+ const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
17545
+ return getWeekArray(date, this.locale, firstDay);
17605
17546
  }
17606
17547
  startOfWeek(date, firstDayOfWeek) {
17607
- return startOfWeek(date, this.locale, firstDayOfWeek ? Number(firstDayOfWeek) : undefined);
17548
+ const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
17549
+ return startOfWeek(date, this.locale, firstDay);
17608
17550
  }
17609
17551
  endOfWeek(date) {
17610
17552
  return endOfWeek(date, this.locale);
@@ -17664,7 +17606,8 @@
17664
17606
  return getDiff(date, comparing, unit);
17665
17607
  }
17666
17608
  getWeekdays(firstDayOfWeek) {
17667
- return getWeekdays(this.locale, firstDayOfWeek ? Number(firstDayOfWeek) : undefined);
17609
+ const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
17610
+ return getWeekdays(this.locale, firstDay);
17668
17611
  }
17669
17612
  getYear(date) {
17670
17613
  return getYear(date);
@@ -17672,6 +17615,10 @@
17672
17615
  getMonth(date) {
17673
17616
  return getMonth(date);
17674
17617
  }
17618
+ getWeek(date, firstDayOfWeek, firstWeekMinSize) {
17619
+ const firstDay = firstDayOfWeek !== undefined ? Number(firstDayOfWeek) : undefined;
17620
+ return getWeek(date, this.locale, firstDay, firstWeekMinSize);
17621
+ }
17675
17622
  getDate(date) {
17676
17623
  return getDate(date);
17677
17624
  }
@@ -17775,26 +17722,6 @@
17775
17722
  return createInstance(options, locale);
17776
17723
  }
17777
17724
 
17778
- // https://stackoverflow.com/questions/274861/how-do-i-calculate-the-week-number-given-a-date/275024#275024
17779
- function getWeek(adapter, value) {
17780
- const date = adapter.toJsDate(value);
17781
- let year = date.getFullYear();
17782
- let d1w1 = new Date(year, 0, 1);
17783
- if (date < d1w1) {
17784
- year = year - 1;
17785
- d1w1 = new Date(year, 0, 1);
17786
- } else {
17787
- const tv = new Date(year + 1, 0, 1);
17788
- if (date >= tv) {
17789
- year = year + 1;
17790
- d1w1 = tv;
17791
- }
17792
- }
17793
- const diffTime = Math.abs(date.getTime() - d1w1.getTime());
17794
- const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24));
17795
- return Math.floor(diffDays / 7) + 1;
17796
- }
17797
-
17798
17725
  // Types
17799
17726
 
17800
17727
  const makeVColorPickerProps = propsFactory({
@@ -21983,7 +21910,7 @@
21983
21910
  },
21984
21911
  firstDayOfWeek: {
21985
21912
  type: [Number, String],
21986
- default: 0
21913
+ default: undefined
21987
21914
  }
21988
21915
  }, 'calendar');
21989
21916
  function useCalendar(props) {
@@ -22006,14 +21933,12 @@
22006
21933
  return adapter.setMonth(date, value);
22007
21934
  }, v => adapter.getMonth(v));
22008
21935
  const weekDays = vue.computed(() => {
22009
- const firstDayOfWeek = Number(props.firstDayOfWeek);
22010
-
21936
+ const firstDayOfWeek = adapter.toJsDate(adapter.startOfWeek(adapter.date(), props.firstDayOfWeek)).getDay();
22011
21937
  // Always generate all days, regardless of props.weekdays
22012
21938
  return [0, 1, 2, 3, 4, 5, 6].map(day => (day + firstDayOfWeek) % 7);
22013
21939
  });
22014
21940
  const weeksInMonth = vue.computed(() => {
22015
- const firstDayOfWeek = Number(props.firstDayOfWeek);
22016
- const weeks = adapter.getWeekArray(month.value, firstDayOfWeek);
21941
+ const weeks = adapter.getWeekArray(month.value, props.firstDayOfWeek);
22017
21942
  const days = weeks.flat();
22018
21943
 
22019
21944
  // Make sure there's always 6 weeks in month (6 * 7 days)
@@ -22077,7 +22002,7 @@
22077
22002
  });
22078
22003
  const weekNumbers = vue.computed(() => {
22079
22004
  return weeksInMonth.value.map(week => {
22080
- return week.length ? getWeek(adapter, week[0]) : null;
22005
+ return week.length ? adapter.getWeek(week[0], props.firstDayOfWeek) : null;
22081
22006
  });
22082
22007
  });
22083
22008
  function isDisabled(value) {
@@ -28625,37 +28550,43 @@
28625
28550
  "style": `height: ${convertToUnit(props.intervalHeight)}`
28626
28551
  }, [vue.createVNode("div", {
28627
28552
  "class": "v-calendar-day__row-label"
28628
- }, [vue.createVNode("slot", {
28553
+ }, [vue.createVNode(vue.resolveComponent("slot"), {
28629
28554
  "name": "intervalFormat",
28630
28555
  "interval": interval.value
28631
- }, [props.index ? props.intervalFormat ? typeof props.intervalFormat === 'string' ? adapter.format(interval.value.start, 'hours12h') : props.intervalFormat(interval.value) : interval.value.label : ''])]), vue.createVNode("div", {
28556
+ }, {
28557
+ default: () => [props.index ? props.intervalFormat ? typeof props.intervalFormat === 'string' ? adapter.format(interval.value.start, 'hours12h') : props.intervalFormat(interval.value) : interval.value.label : '']
28558
+ })]), vue.createVNode("div", {
28632
28559
  "class": "v-calendar-day__row-hairline"
28633
28560
  }, null), vue.createVNode("div", {
28634
28561
  "class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
28635
- }, [vue.createVNode("slot", {
28562
+ }, [vue.createVNode(vue.resolveComponent("slot"), {
28636
28563
  "name": "intervalBody",
28637
28564
  "interval": interval.value
28638
- }, [interval.value.events?.map(event => vue.createVNode(VCalendarIntervalEvent, {
28639
- "event": event,
28640
- "interval": interval.value,
28641
- "intervalDivisions": props.intervalDivisions,
28642
- "intervalDuration": props.intervalDuration,
28643
- "intervalHeight": props.intervalHeight
28644
- }, null))])])]) : vue.createVNode("div", {
28565
+ }, {
28566
+ default: () => [interval.value.events?.map(event => vue.createVNode(VCalendarIntervalEvent, {
28567
+ "event": event,
28568
+ "interval": interval.value,
28569
+ "intervalDivisions": props.intervalDivisions,
28570
+ "intervalDuration": props.intervalDuration,
28571
+ "intervalHeight": props.intervalHeight
28572
+ }, null))]
28573
+ })])]) : vue.createVNode("div", {
28645
28574
  "class": "v-calendar-day__row-without-label",
28646
28575
  "style": `height: ${convertToUnit(props.intervalHeight)}`
28647
28576
  }, [vue.createVNode("div", {
28648
28577
  "class": ['v-calendar-day__row-content', interval.value.events.some(e => !e.last) ? 'v-calendar-day__row-content-through' : '']
28649
- }, [vue.createVNode("slot", {
28578
+ }, [vue.createVNode(vue.resolveComponent("slot"), {
28650
28579
  "name": "intervalBody",
28651
28580
  "interval": interval.value
28652
- }, [interval.value.events?.filter(event => !event.allDay).map(event => vue.createVNode(VCalendarIntervalEvent, {
28653
- "event": event,
28654
- "interval": interval.value,
28655
- "intervalDivisions": props.intervalDivisions,
28656
- "intervalDuration": props.intervalDuration,
28657
- "intervalHeight": props.intervalHeight
28658
- }, null))])])]);
28581
+ }, {
28582
+ default: () => [interval.value.events?.filter(event => !event.allDay).map(event => vue.createVNode(VCalendarIntervalEvent, {
28583
+ "event": event,
28584
+ "interval": interval.value,
28585
+ "intervalDivisions": props.intervalDivisions,
28586
+ "intervalDuration": props.intervalDuration,
28587
+ "intervalHeight": props.intervalHeight
28588
+ }, null))]
28589
+ })])]);
28659
28590
  });
28660
28591
  return {
28661
28592
  interval
@@ -31564,7 +31495,7 @@
31564
31495
  };
31565
31496
  });
31566
31497
  }
31567
- const version$1 = "3.8.1";
31498
+ const version$1 = "3.8.2";
31568
31499
  createVuetify$1.version = version$1;
31569
31500
 
31570
31501
  // Vue's inject() can only be used in setup
@@ -31747,7 +31678,7 @@
31747
31678
  flat: true
31748
31679
  },
31749
31680
  VAutocomplete: {
31750
- variant: 'filled'
31681
+ variant: 'outlined'
31751
31682
  },
31752
31683
  VBanner: {
31753
31684
  color: 'primary'
@@ -31776,7 +31707,10 @@
31776
31707
  rounded: 'sm'
31777
31708
  },
31778
31709
  VCombobox: {
31779
- variant: 'filled'
31710
+ variant: 'outlined'
31711
+ },
31712
+ VDateInput: {
31713
+ variant: 'outlined'
31780
31714
  },
31781
31715
  VDatePicker: {
31782
31716
  controlHeight: 48,
@@ -31790,6 +31724,9 @@
31790
31724
  rounded: 'circle'
31791
31725
  }
31792
31726
  },
31727
+ VFileInput: {
31728
+ variant: 'outlined'
31729
+ },
31793
31730
  VNavigationDrawer: {
31794
31731
  // VList: {
31795
31732
  // nav: true,
@@ -31798,8 +31735,15 @@
31798
31735
  // },
31799
31736
  // },
31800
31737
  },
31738
+ VNumberInput: {
31739
+ variant: 'outlined',
31740
+ VBtn: {
31741
+ color: undefined,
31742
+ rounded: undefined
31743
+ }
31744
+ },
31801
31745
  VSelect: {
31802
- variant: 'filled'
31746
+ variant: 'outlined'
31803
31747
  },
31804
31748
  VSlider: {
31805
31749
  color: 'primary'
@@ -31808,10 +31752,10 @@
31808
31752
  color: 'primary'
31809
31753
  },
31810
31754
  VTextarea: {
31811
- variant: 'filled'
31755
+ variant: 'outlined'
31812
31756
  },
31813
31757
  VTextField: {
31814
- variant: 'filled'
31758
+ variant: 'outlined'
31815
31759
  },
31816
31760
  VToolbar: {
31817
31761
  VBtn: {
@@ -31849,7 +31793,7 @@
31849
31793
 
31850
31794
  /* eslint-disable local-rules/sort-imports */
31851
31795
 
31852
- const version = "3.8.1";
31796
+ const version = "3.8.2";
31853
31797
 
31854
31798
  /* eslint-disable local-rules/sort-imports */
31855
31799