@vuetify/nightly 3.5.3-dev.2024-02-25 → 3.5.3-dev.2024-03-06

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/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.5.3-dev.2024-02-25
2
+ * Vuetify v3.5.3-dev.2024-03-06
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -4453,7 +4453,8 @@
4453
4453
  ...aliases,
4454
4454
  /* eslint-disable max-len */
4455
4455
  vuetify: ['M8.2241 14.2009L12 21L22 3H14.4459L8.2241 14.2009Z', ['M7.26303 12.4733L7.00113 12L2 3H12.5261C12.5261 3 12.5261 3 12.5261 3L7.26303 12.4733Z', 0.6]],
4456
- 'vuetify-outline': 'svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z'
4456
+ 'vuetify-outline': 'svg:M7.26 12.47 12.53 3H2L7.26 12.47ZM14.45 3 8.22 14.2 12 21 22 3H14.45ZM18.6 5 12 16.88 10.51 14.2 15.62 5ZM7.26 8.35 5.4 5H9.13L7.26 8.35Z',
4457
+ 'vuetify-play': ['m6.376 13.184-4.11-7.192C1.505 4.66 2.467 3 4.003 3h8.532l-.953 1.576-.006.01-.396.677c-.429.732-.214 1.507.194 2.015.404.503 1.092.878 1.869.806a3.72 3.72 0 0 1 1.005.022c.276.053.434.143.523.237.138.146.38.635-.25 2.09-.893 1.63-1.553 1.722-1.847 1.677-.213-.033-.468-.158-.756-.406a4.95 4.95 0 0 1-.8-.927c-.39-.564-1.04-.84-1.66-.846-.625-.006-1.316.27-1.693.921l-.478.826-.911 1.506Z', ['M9.093 11.552c.046-.079.144-.15.32-.148a.53.53 0 0 1 .43.207c.285.414.636.847 1.046 1.2.405.35.914.662 1.516.754 1.334.205 2.502-.698 3.48-2.495l.014-.028.013-.03c.687-1.574.774-2.852-.005-3.675-.37-.391-.861-.586-1.333-.676a5.243 5.243 0 0 0-1.447-.044c-.173.016-.393-.073-.54-.257-.145-.18-.127-.316-.082-.392l.393-.672L14.287 3h5.71c1.536 0 2.499 1.659 1.737 2.992l-7.997 13.996c-.768 1.344-2.706 1.344-3.473 0l-3.037-5.314 1.377-2.278.004-.006.004-.007.481-.831Z', 0.6]]
4457
4458
  /* eslint-enable max-len */
4458
4459
  }
4459
4460
  }, options);
@@ -17258,6 +17259,9 @@
17258
17259
  function getNextMonth(date) {
17259
17260
  return new Date(date.getFullYear(), date.getMonth() + 1, 1);
17260
17261
  }
17262
+ function getPreviousMonth(date) {
17263
+ return new Date(date.getFullYear(), date.getMonth() - 1, 1);
17264
+ }
17261
17265
  function getHours(date) {
17262
17266
  return date.getHours();
17263
17267
  }
@@ -17280,6 +17284,9 @@
17280
17284
  function isAfter(date, comparing) {
17281
17285
  return date.getTime() > comparing.getTime();
17282
17286
  }
17287
+ function isAfterDay(date, comparing) {
17288
+ return isAfter(startOfDay(date), startOfDay(comparing));
17289
+ }
17283
17290
  function isBefore(date, comparing) {
17284
17291
  return date.getTime() < comparing.getTime();
17285
17292
  }
@@ -17292,6 +17299,9 @@
17292
17299
  function isSameMonth(date, comparing) {
17293
17300
  return date.getMonth() === comparing.getMonth() && date.getFullYear() === comparing.getFullYear();
17294
17301
  }
17302
+ function isSameYear(date, comparing) {
17303
+ return date.getFullYear() === comparing.getFullYear();
17304
+ }
17295
17305
  function getDiff(date, comparing, unit) {
17296
17306
  const d = new Date(date);
17297
17307
  const c = new Date(comparing);
@@ -17388,6 +17398,9 @@
17388
17398
  isAfter(date, comparing) {
17389
17399
  return isAfter(date, comparing);
17390
17400
  }
17401
+ isAfterDay(date, comparing) {
17402
+ return isAfterDay(date, comparing);
17403
+ }
17391
17404
  isBefore(date, comparing) {
17392
17405
  return !isAfter(date, comparing) && !isEqual(date, comparing);
17393
17406
  }
@@ -17397,6 +17410,9 @@
17397
17410
  isSameMonth(date, comparing) {
17398
17411
  return isSameMonth(date, comparing);
17399
17412
  }
17413
+ isSameYear(date, comparing) {
17414
+ return isSameYear(date, comparing);
17415
+ }
17400
17416
  setMinutes(date, count) {
17401
17417
  return setMinutes(date, count);
17402
17418
  }
@@ -17424,6 +17440,9 @@
17424
17440
  getNextMonth(date) {
17425
17441
  return getNextMonth(date);
17426
17442
  }
17443
+ getPreviousMonth(date) {
17444
+ return getPreviousMonth(date);
17445
+ }
17427
17446
  getHours(date) {
17428
17447
  return getHours(date);
17429
17448
  }
@@ -25665,7 +25684,7 @@
25665
25684
  goTo
25666
25685
  };
25667
25686
  }
25668
- const version$1 = "3.5.3-dev.2024-02-25";
25687
+ const version$1 = "3.5.3-dev.2024-03-06";
25669
25688
  createVuetify$1.version = version$1;
25670
25689
 
25671
25690
  // Vue's inject() can only be used in setup
@@ -25690,7 +25709,7 @@
25690
25709
  ...options
25691
25710
  });
25692
25711
  };
25693
- const version = "3.5.3-dev.2024-02-25";
25712
+ const version = "3.5.3-dev.2024-03-06";
25694
25713
  createVuetify.version = version;
25695
25714
 
25696
25715
  exports.components = components;