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

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 +4 -4
  3. package/dist/json/importMap.json +112 -112
  4. package/dist/json/web-types.json +3 -3
  5. package/dist/vuetify-labs.css +2177 -2177
  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 +2390 -2390
  11. package/dist/vuetify.d.ts +33 -33
  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 +33 -33
  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
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.7-master.2024-05-22
2
+ * Vuetify v3.6.7-master.2024-05-23
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -1255,6 +1255,53 @@
1255
1255
 
1256
1256
  // Types
1257
1257
 
1258
+ function getCurrentInstance(name, message) {
1259
+ const vm = vue.getCurrentInstance();
1260
+ if (!vm) {
1261
+ throw new Error(`[Vuetify] ${name} ${message || 'must be called from inside a setup function'}`);
1262
+ }
1263
+ return vm;
1264
+ }
1265
+ function getCurrentInstanceName() {
1266
+ let name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'composables';
1267
+ const vm = getCurrentInstance(name).type;
1268
+ return toKebabCase(vm?.aliasName || vm?.name);
1269
+ }
1270
+ let _uid = 0;
1271
+ let _map = new WeakMap();
1272
+ function getUid() {
1273
+ const vm = getCurrentInstance('getUid');
1274
+ if (_map.has(vm)) return _map.get(vm);else {
1275
+ const uid = _uid++;
1276
+ _map.set(vm, uid);
1277
+ return uid;
1278
+ }
1279
+ }
1280
+ getUid.reset = () => {
1281
+ _uid = 0;
1282
+ _map = new WeakMap();
1283
+ };
1284
+
1285
+ // Utilities
1286
+
1287
+ // Types
1288
+
1289
+ function injectSelf(key) {
1290
+ let vm = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentInstance('injectSelf');
1291
+ const {
1292
+ provides
1293
+ } = vm;
1294
+ if (provides && key in provides) {
1295
+ // TS doesn't allow symbol as index type
1296
+ return provides[key];
1297
+ }
1298
+ return undefined;
1299
+ }
1300
+
1301
+ // Utilities
1302
+
1303
+ // Types
1304
+
1258
1305
  const DefaultsSymbol = Symbol.for('vuetify:defaults');
1259
1306
  function createDefaults(options) {
1260
1307
  return vue.ref(options);
@@ -1480,37 +1527,6 @@
1480
1527
  }, {});
1481
1528
  }
1482
1529
 
1483
- // Utilities
1484
-
1485
- // Types
1486
-
1487
- function getCurrentInstance(name, message) {
1488
- const vm = vue.getCurrentInstance();
1489
- if (!vm) {
1490
- throw new Error(`[Vuetify] ${name} ${message || 'must be called from inside a setup function'}`);
1491
- }
1492
- return vm;
1493
- }
1494
- function getCurrentInstanceName() {
1495
- let name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'composables';
1496
- const vm = getCurrentInstance(name).type;
1497
- return toKebabCase(vm?.aliasName || vm?.name);
1498
- }
1499
- let _uid = 0;
1500
- let _map = new WeakMap();
1501
- function getUid() {
1502
- const vm = getCurrentInstance('getUid');
1503
- if (_map.has(vm)) return _map.get(vm);else {
1504
- const uid = _uid++;
1505
- _map.set(vm, uid);
1506
- return uid;
1507
- }
1508
- }
1509
- getUid.reset = () => {
1510
- _uid = 0;
1511
- _map = new WeakMap();
1512
- };
1513
-
1514
1530
  function getScrollParent(el) {
1515
1531
  let includeHidden = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
1516
1532
  while (el) {
@@ -1540,22 +1556,6 @@
1540
1556
  return ['scroll', 'auto'].includes(style.overflowY);
1541
1557
  }
1542
1558
 
1543
- // Utilities
1544
-
1545
- // Types
1546
-
1547
- function injectSelf(key) {
1548
- let vm = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentInstance('injectSelf');
1549
- const {
1550
- provides
1551
- } = vm;
1552
- if (provides && key in provides) {
1553
- // TS doesn't allow symbol as index type
1554
- return provides[key];
1555
- }
1556
- return undefined;
1557
- }
1558
-
1559
1559
  function isFixedPosition(el) {
1560
1560
  while (el) {
1561
1561
  if (window.getComputedStyle(el).position === 'fixed') {
@@ -22482,6 +22482,10 @@
22482
22482
  }
22483
22483
  });
22484
22484
 
22485
+ // Types
22486
+
22487
+ const VExpansionPanelSymbol = Symbol.for('vuetify:v-expansion-panel');
22488
+
22485
22489
  const makeVExpansionPanelTextProps = propsFactory({
22486
22490
  ...makeComponentProps(),
22487
22491
  ...makeLazyProps()
@@ -22662,7 +22666,6 @@
22662
22666
 
22663
22667
  // Types
22664
22668
 
22665
- const VExpansionPanelSymbol = Symbol.for('vuetify:v-expansion-panel');
22666
22669
  const allowedVariants = ['default', 'accordion', 'inset', 'popout'];
22667
22670
  const makeVExpansionPanelsProps = propsFactory({
22668
22671
  flat: Boolean,
@@ -26006,6 +26009,10 @@
26006
26009
 
26007
26010
  // Types
26008
26011
 
26012
+ const VStepperSymbol = Symbol.for('vuetify:v-stepper');
26013
+
26014
+ // Types
26015
+
26009
26016
  const makeVStepperActionsProps = propsFactory({
26010
26017
  color: String,
26011
26018
  disabled: {
@@ -26193,9 +26200,6 @@
26193
26200
  }
26194
26201
  });
26195
26202
 
26196
- // Types
26197
-
26198
- const VStepperSymbol$1 = Symbol.for('vuetify:v-stepper');
26199
26203
  const makeVStepperWindowProps = propsFactory({
26200
26204
  ...omit(makeVWindowProps(), ['continuous', 'nextIcon', 'prevIcon', 'showArrows', 'touch', 'mandatory'])
26201
26205
  }, 'VStepperWindow');
@@ -26209,7 +26213,7 @@
26209
26213
  let {
26210
26214
  slots
26211
26215
  } = _ref;
26212
- const group = vue.inject(VStepperSymbol$1, null);
26216
+ const group = vue.inject(VStepperSymbol, null);
26213
26217
  const _model = useProxiedModel(props, 'modelValue');
26214
26218
  const model = vue.computed({
26215
26219
  get() {
@@ -26267,7 +26271,6 @@
26267
26271
 
26268
26272
  // Types
26269
26273
 
26270
- const VStepperSymbol = Symbol.for('vuetify:v-stepper');
26271
26274
  const makeStepperProps = propsFactory({
26272
26275
  altLabels: Boolean,
26273
26276
  bgColor: String,
@@ -28037,7 +28040,7 @@
28037
28040
  goTo
28038
28041
  };
28039
28042
  }
28040
- const version$1 = "3.6.7-master.2024-05-22";
28043
+ const version$1 = "3.6.7-master.2024-05-23";
28041
28044
  createVuetify$1.version = version$1;
28042
28045
 
28043
28046
  // Vue's inject() can only be used in setup
@@ -28062,7 +28065,7 @@
28062
28065
  ...options
28063
28066
  });
28064
28067
  };
28065
- const version = "3.6.7-master.2024-05-22";
28068
+ const version = "3.6.7-master.2024-05-23";
28066
28069
  createVuetify.version = version;
28067
28070
 
28068
28071
  exports.blueprints = index;