@vuetify/nightly 3.6.7-master.2024-05-22 → 3.6.7-master.2024-05-24

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 (47) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/importMap-labs.json +16 -16
  3. package/dist/json/importMap.json +122 -122
  4. package/dist/json/web-types.json +3 -3
  5. package/dist/vuetify-labs.css +1966 -1966
  6. package/dist/vuetify-labs.esm.js +60 -57
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +59 -56
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +2523 -2523
  11. package/dist/vuetify.d.ts +42 -42
  12. package/dist/vuetify.esm.js +60 -57
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +59 -56
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +298 -297
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VExpansionPanel/VExpansionPanel.mjs +1 -1
  20. package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
  21. package/lib/components/VExpansionPanel/VExpansionPanelText.mjs +1 -1
  22. package/lib/components/VExpansionPanel/VExpansionPanelText.mjs.map +1 -1
  23. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +1 -1
  24. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  25. package/lib/components/VExpansionPanel/VExpansionPanels.mjs +1 -1
  26. package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
  27. package/lib/components/VExpansionPanel/index.d.mts +36 -36
  28. package/lib/components/VExpansionPanel/shared.mjs +4 -0
  29. package/lib/components/VExpansionPanel/shared.mjs.map +1 -0
  30. package/lib/components/VStepper/VStepper.mjs +1 -1
  31. package/lib/components/VStepper/VStepper.mjs.map +1 -1
  32. package/lib/components/VStepper/VStepperItem.mjs +1 -1
  33. package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
  34. package/lib/components/VStepper/VStepperWindow.mjs +2 -2
  35. package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
  36. package/lib/components/VStepper/shared.mjs +4 -0
  37. package/lib/components/VStepper/shared.mjs.map +1 -0
  38. package/lib/composables/defaults.mjs +3 -1
  39. package/lib/composables/defaults.mjs.map +1 -1
  40. package/lib/entry-bundler.mjs +1 -1
  41. package/lib/framework.mjs +1 -1
  42. package/lib/index.d.mts +42 -42
  43. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +1 -2
  44. package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -1
  45. package/lib/labs/VTreeview/VTreeviewItem.mjs +2 -2
  46. package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
  47. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.7-master.2024-05-22
2
+ * Vuetify v3.6.7-master.2024-05-24
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -1261,6 +1261,53 @@
1261
1261
 
1262
1262
  // Types
1263
1263
 
1264
+ function getCurrentInstance(name, message) {
1265
+ const vm = vue.getCurrentInstance();
1266
+ if (!vm) {
1267
+ throw new Error(`[Vuetify] ${name} ${message || 'must be called from inside a setup function'}`);
1268
+ }
1269
+ return vm;
1270
+ }
1271
+ function getCurrentInstanceName() {
1272
+ let name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'composables';
1273
+ const vm = getCurrentInstance(name).type;
1274
+ return toKebabCase(vm?.aliasName || vm?.name);
1275
+ }
1276
+ let _uid = 0;
1277
+ let _map = new WeakMap();
1278
+ function getUid() {
1279
+ const vm = getCurrentInstance('getUid');
1280
+ if (_map.has(vm)) return _map.get(vm);else {
1281
+ const uid = _uid++;
1282
+ _map.set(vm, uid);
1283
+ return uid;
1284
+ }
1285
+ }
1286
+ getUid.reset = () => {
1287
+ _uid = 0;
1288
+ _map = new WeakMap();
1289
+ };
1290
+
1291
+ // Utilities
1292
+
1293
+ // Types
1294
+
1295
+ function injectSelf(key) {
1296
+ let vm = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentInstance('injectSelf');
1297
+ const {
1298
+ provides
1299
+ } = vm;
1300
+ if (provides && key in provides) {
1301
+ // TS doesn't allow symbol as index type
1302
+ return provides[key];
1303
+ }
1304
+ return undefined;
1305
+ }
1306
+
1307
+ // Utilities
1308
+
1309
+ // Types
1310
+
1264
1311
  const DefaultsSymbol = Symbol.for('vuetify:defaults');
1265
1312
  function createDefaults(options) {
1266
1313
  return vue.ref(options);
@@ -1486,37 +1533,6 @@
1486
1533
  }, {});
1487
1534
  }
1488
1535
 
1489
- // Utilities
1490
-
1491
- // Types
1492
-
1493
- function getCurrentInstance(name, message) {
1494
- const vm = vue.getCurrentInstance();
1495
- if (!vm) {
1496
- throw new Error(`[Vuetify] ${name} ${message || 'must be called from inside a setup function'}`);
1497
- }
1498
- return vm;
1499
- }
1500
- function getCurrentInstanceName() {
1501
- let name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'composables';
1502
- const vm = getCurrentInstance(name).type;
1503
- return toKebabCase(vm?.aliasName || vm?.name);
1504
- }
1505
- let _uid = 0;
1506
- let _map = new WeakMap();
1507
- function getUid() {
1508
- const vm = getCurrentInstance('getUid');
1509
- if (_map.has(vm)) return _map.get(vm);else {
1510
- const uid = _uid++;
1511
- _map.set(vm, uid);
1512
- return uid;
1513
- }
1514
- }
1515
- getUid.reset = () => {
1516
- _uid = 0;
1517
- _map = new WeakMap();
1518
- };
1519
-
1520
1536
  function getScrollParent(el) {
1521
1537
  let includeHidden = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
1522
1538
  while (el) {
@@ -1546,22 +1562,6 @@
1546
1562
  return ['scroll', 'auto'].includes(style.overflowY);
1547
1563
  }
1548
1564
 
1549
- // Utilities
1550
-
1551
- // Types
1552
-
1553
- function injectSelf(key) {
1554
- let vm = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentInstance('injectSelf');
1555
- const {
1556
- provides
1557
- } = vm;
1558
- if (provides && key in provides) {
1559
- // TS doesn't allow symbol as index type
1560
- return provides[key];
1561
- }
1562
- return undefined;
1563
- }
1564
-
1565
1565
  function isFixedPosition(el) {
1566
1566
  while (el) {
1567
1567
  if (window.getComputedStyle(el).position === 'fixed') {
@@ -22249,6 +22249,10 @@
22249
22249
  }
22250
22250
  });
22251
22251
 
22252
+ // Types
22253
+
22254
+ const VExpansionPanelSymbol = Symbol.for('vuetify:v-expansion-panel');
22255
+
22252
22256
  const makeVExpansionPanelTextProps = propsFactory({
22253
22257
  ...makeComponentProps(),
22254
22258
  ...makeLazyProps()
@@ -22429,7 +22433,6 @@
22429
22433
 
22430
22434
  // Types
22431
22435
 
22432
- const VExpansionPanelSymbol = Symbol.for('vuetify:v-expansion-panel');
22433
22436
  const allowedVariants = ['default', 'accordion', 'inset', 'popout'];
22434
22437
  const makeVExpansionPanelsProps = propsFactory({
22435
22438
  flat: Boolean,
@@ -25773,6 +25776,10 @@
25773
25776
 
25774
25777
  // Types
25775
25778
 
25779
+ const VStepperSymbol = Symbol.for('vuetify:v-stepper');
25780
+
25781
+ // Types
25782
+
25776
25783
  const makeVStepperActionsProps = propsFactory({
25777
25784
  color: String,
25778
25785
  disabled: {
@@ -25960,9 +25967,6 @@
25960
25967
  }
25961
25968
  });
25962
25969
 
25963
- // Types
25964
-
25965
- const VStepperSymbol$1 = Symbol.for('vuetify:v-stepper');
25966
25970
  const makeVStepperWindowProps = propsFactory({
25967
25971
  ...omit(makeVWindowProps(), ['continuous', 'nextIcon', 'prevIcon', 'showArrows', 'touch', 'mandatory'])
25968
25972
  }, 'VStepperWindow');
@@ -25976,7 +25980,7 @@
25976
25980
  let {
25977
25981
  slots
25978
25982
  } = _ref;
25979
- const group = vue.inject(VStepperSymbol$1, null);
25983
+ const group = vue.inject(VStepperSymbol, null);
25980
25984
  const _model = useProxiedModel(props, 'modelValue');
25981
25985
  const model = vue.computed({
25982
25986
  get() {
@@ -26034,7 +26038,6 @@
26034
26038
 
26035
26039
  // Types
26036
26040
 
26037
- const VStepperSymbol = Symbol.for('vuetify:v-stepper');
26038
26041
  const makeStepperProps = propsFactory({
26039
26042
  altLabels: Boolean,
26040
26043
  bgColor: String,
@@ -30127,7 +30130,7 @@
30127
30130
  goTo
30128
30131
  };
30129
30132
  }
30130
- const version$1 = "3.6.7-master.2024-05-22";
30133
+ const version$1 = "3.6.7-master.2024-05-24";
30131
30134
  createVuetify$1.version = version$1;
30132
30135
 
30133
30136
  // Vue's inject() can only be used in setup
@@ -30380,7 +30383,7 @@
30380
30383
 
30381
30384
  /* eslint-disable local-rules/sort-imports */
30382
30385
 
30383
- const version = "3.6.7-master.2024-05-22";
30386
+ const version = "3.6.7-master.2024-05-24";
30384
30387
 
30385
30388
  /* eslint-disable local-rules/sort-imports */
30386
30389