@vuetify/nightly 3.5.3-dev.2024-03-03 → 3.5.3-dev.2024-03-07

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.5.3-dev.2024-03-03
2
+ * Vuetify v3.5.3-dev.2024-03-07
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -2678,14 +2678,16 @@
2678
2678
  type: String,
2679
2679
  default: mode
2680
2680
  },
2681
- disabled: Boolean
2681
+ disabled: Boolean,
2682
+ group: Boolean
2682
2683
  },
2683
2684
  setup(props, _ref2) {
2684
2685
  let {
2685
2686
  slots
2686
2687
  } = _ref2;
2688
+ const tag = props.group ? vue.TransitionGroup : vue.Transition;
2687
2689
  return () => {
2688
- return vue.h(vue.Transition, {
2690
+ return vue.h(tag, {
2689
2691
  name: props.disabled ? '' : name,
2690
2692
  css: !props.disabled,
2691
2693
  // mode: props.mode, // TODO: vuejs/vue-next#3104
@@ -17265,6 +17267,9 @@
17265
17267
  function getNextMonth(date) {
17266
17268
  return new Date(date.getFullYear(), date.getMonth() + 1, 1);
17267
17269
  }
17270
+ function getPreviousMonth(date) {
17271
+ return new Date(date.getFullYear(), date.getMonth() - 1, 1);
17272
+ }
17268
17273
  function getHours(date) {
17269
17274
  return date.getHours();
17270
17275
  }
@@ -17287,6 +17292,9 @@
17287
17292
  function isAfter(date, comparing) {
17288
17293
  return date.getTime() > comparing.getTime();
17289
17294
  }
17295
+ function isAfterDay(date, comparing) {
17296
+ return isAfter(startOfDay(date), startOfDay(comparing));
17297
+ }
17290
17298
  function isBefore(date, comparing) {
17291
17299
  return date.getTime() < comparing.getTime();
17292
17300
  }
@@ -17299,6 +17307,9 @@
17299
17307
  function isSameMonth(date, comparing) {
17300
17308
  return date.getMonth() === comparing.getMonth() && date.getFullYear() === comparing.getFullYear();
17301
17309
  }
17310
+ function isSameYear(date, comparing) {
17311
+ return date.getFullYear() === comparing.getFullYear();
17312
+ }
17302
17313
  function getDiff(date, comparing, unit) {
17303
17314
  const d = new Date(date);
17304
17315
  const c = new Date(comparing);
@@ -17395,6 +17406,9 @@
17395
17406
  isAfter(date, comparing) {
17396
17407
  return isAfter(date, comparing);
17397
17408
  }
17409
+ isAfterDay(date, comparing) {
17410
+ return isAfterDay(date, comparing);
17411
+ }
17398
17412
  isBefore(date, comparing) {
17399
17413
  return !isAfter(date, comparing) && !isEqual(date, comparing);
17400
17414
  }
@@ -17404,6 +17418,9 @@
17404
17418
  isSameMonth(date, comparing) {
17405
17419
  return isSameMonth(date, comparing);
17406
17420
  }
17421
+ isSameYear(date, comparing) {
17422
+ return isSameYear(date, comparing);
17423
+ }
17407
17424
  setMinutes(date, count) {
17408
17425
  return setMinutes(date, count);
17409
17426
  }
@@ -17431,6 +17448,9 @@
17431
17448
  getNextMonth(date) {
17432
17449
  return getNextMonth(date);
17433
17450
  }
17451
+ getPreviousMonth(date) {
17452
+ return getPreviousMonth(date);
17453
+ }
17434
17454
  getHours(date) {
17435
17455
  return getHours(date);
17436
17456
  }
@@ -26224,7 +26244,7 @@
26224
26244
  goTo
26225
26245
  };
26226
26246
  }
26227
- const version$1 = "3.5.3-dev.2024-03-03";
26247
+ const version$1 = "3.5.3-dev.2024-03-07";
26228
26248
  createVuetify$1.version = version$1;
26229
26249
 
26230
26250
  // Vue's inject() can only be used in setup
@@ -26238,7 +26258,7 @@
26238
26258
 
26239
26259
  /* eslint-disable local-rules/sort-imports */
26240
26260
 
26241
- const version = "3.5.3-dev.2024-03-03";
26261
+ const version = "3.5.3-dev.2024-03-07";
26242
26262
 
26243
26263
  /* eslint-disable local-rules/sort-imports */
26244
26264