@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.
- package/CHANGELOG.md +7 -2
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +112 -112
- package/dist/json/web-types.json +3 -3
- package/dist/vuetify-labs.css +2177 -2177
- package/dist/vuetify-labs.esm.js +60 -57
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +59 -56
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2390 -2390
- package/dist/vuetify.d.ts +33 -33
- package/dist/vuetify.esm.js +60 -57
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +59 -56
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +298 -297
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanelText.mjs +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanelText.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +36 -36
- package/lib/components/VExpansionPanel/shared.mjs +4 -0
- package/lib/components/VExpansionPanel/shared.mjs.map +1 -0
- package/lib/components/VStepper/VStepper.mjs +1 -1
- package/lib/components/VStepper/VStepper.mjs.map +1 -1
- package/lib/components/VStepper/VStepperItem.mjs +1 -1
- package/lib/components/VStepper/VStepperItem.mjs.map +1 -1
- package/lib/components/VStepper/VStepperWindow.mjs +2 -2
- package/lib/components/VStepper/VStepperWindow.mjs.map +1 -1
- package/lib/components/VStepper/shared.mjs +4 -0
- package/lib/components/VStepper/shared.mjs.map +1 -0
- package/lib/composables/defaults.mjs +3 -1
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +33 -33
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs +1 -2
- package/lib/labs/VStepperVertical/VStepperVerticalItem.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeviewItem.mjs +2 -2
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.7-master.2024-05-
|
2
|
+
* Vuetify v3.6.7-master.2024-05-23
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
6
6
|
|
7
|
-
import { shallowRef, Fragment, reactive, computed, watchEffect, toRefs, capitalize, isVNode, Comment, readonly, unref, warn, ref, provide, inject as inject$1, defineComponent as defineComponent$1, camelize, h,
|
7
|
+
import { shallowRef, Fragment, reactive, computed, watchEffect, toRefs, capitalize, isVNode, Comment, readonly, unref, warn, getCurrentInstance as getCurrentInstance$1, ref, provide, inject as inject$1, defineComponent as defineComponent$1, camelize, h, onBeforeUnmount, watch, nextTick, onDeactivated, onActivated, onScopeDispose, effectScope, toRaw, createVNode, Suspense, TransitionGroup, Transition, mergeProps, isRef, toRef, onBeforeMount, withDirectives, resolveDirective, vShow, onMounted, onUpdated, Text, resolveDynamicComponent, markRaw, Teleport, cloneVNode, createTextVNode, onUnmounted, onBeforeUpdate, withModifiers, toDisplayString, vModelText, resolveComponent, render } from 'vue';
|
8
8
|
|
9
9
|
// Types
|
10
10
|
// eslint-disable-line vue/prefer-import-from-vue
|
@@ -1257,6 +1257,53 @@ function getForeground(color) {
|
|
1257
1257
|
|
1258
1258
|
// Types
|
1259
1259
|
|
1260
|
+
function getCurrentInstance(name, message) {
|
1261
|
+
const vm = getCurrentInstance$1();
|
1262
|
+
if (!vm) {
|
1263
|
+
throw new Error(`[Vuetify] ${name} ${message || 'must be called from inside a setup function'}`);
|
1264
|
+
}
|
1265
|
+
return vm;
|
1266
|
+
}
|
1267
|
+
function getCurrentInstanceName() {
|
1268
|
+
let name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'composables';
|
1269
|
+
const vm = getCurrentInstance(name).type;
|
1270
|
+
return toKebabCase(vm?.aliasName || vm?.name);
|
1271
|
+
}
|
1272
|
+
let _uid = 0;
|
1273
|
+
let _map = new WeakMap();
|
1274
|
+
function getUid() {
|
1275
|
+
const vm = getCurrentInstance('getUid');
|
1276
|
+
if (_map.has(vm)) return _map.get(vm);else {
|
1277
|
+
const uid = _uid++;
|
1278
|
+
_map.set(vm, uid);
|
1279
|
+
return uid;
|
1280
|
+
}
|
1281
|
+
}
|
1282
|
+
getUid.reset = () => {
|
1283
|
+
_uid = 0;
|
1284
|
+
_map = new WeakMap();
|
1285
|
+
};
|
1286
|
+
|
1287
|
+
// Utilities
|
1288
|
+
|
1289
|
+
// Types
|
1290
|
+
|
1291
|
+
function injectSelf(key) {
|
1292
|
+
let vm = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentInstance('injectSelf');
|
1293
|
+
const {
|
1294
|
+
provides
|
1295
|
+
} = vm;
|
1296
|
+
if (provides && key in provides) {
|
1297
|
+
// TS doesn't allow symbol as index type
|
1298
|
+
return provides[key];
|
1299
|
+
}
|
1300
|
+
return undefined;
|
1301
|
+
}
|
1302
|
+
|
1303
|
+
// Utilities
|
1304
|
+
|
1305
|
+
// Types
|
1306
|
+
|
1260
1307
|
const DefaultsSymbol = Symbol.for('vuetify:defaults');
|
1261
1308
|
function createDefaults(options) {
|
1262
1309
|
return ref(options);
|
@@ -1482,37 +1529,6 @@ function getPrefixedEventHandlers(attrs, suffix, getData) {
|
|
1482
1529
|
}, {});
|
1483
1530
|
}
|
1484
1531
|
|
1485
|
-
// Utilities
|
1486
|
-
|
1487
|
-
// Types
|
1488
|
-
|
1489
|
-
function getCurrentInstance(name, message) {
|
1490
|
-
const vm = getCurrentInstance$1();
|
1491
|
-
if (!vm) {
|
1492
|
-
throw new Error(`[Vuetify] ${name} ${message || 'must be called from inside a setup function'}`);
|
1493
|
-
}
|
1494
|
-
return vm;
|
1495
|
-
}
|
1496
|
-
function getCurrentInstanceName() {
|
1497
|
-
let name = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'composables';
|
1498
|
-
const vm = getCurrentInstance(name).type;
|
1499
|
-
return toKebabCase(vm?.aliasName || vm?.name);
|
1500
|
-
}
|
1501
|
-
let _uid = 0;
|
1502
|
-
let _map = new WeakMap();
|
1503
|
-
function getUid() {
|
1504
|
-
const vm = getCurrentInstance('getUid');
|
1505
|
-
if (_map.has(vm)) return _map.get(vm);else {
|
1506
|
-
const uid = _uid++;
|
1507
|
-
_map.set(vm, uid);
|
1508
|
-
return uid;
|
1509
|
-
}
|
1510
|
-
}
|
1511
|
-
getUid.reset = () => {
|
1512
|
-
_uid = 0;
|
1513
|
-
_map = new WeakMap();
|
1514
|
-
};
|
1515
|
-
|
1516
1532
|
function getScrollParent(el) {
|
1517
1533
|
let includeHidden = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
|
1518
1534
|
while (el) {
|
@@ -1542,22 +1558,6 @@ function isPotentiallyScrollable(el) {
|
|
1542
1558
|
return ['scroll', 'auto'].includes(style.overflowY);
|
1543
1559
|
}
|
1544
1560
|
|
1545
|
-
// Utilities
|
1546
|
-
|
1547
|
-
// Types
|
1548
|
-
|
1549
|
-
function injectSelf(key) {
|
1550
|
-
let vm = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : getCurrentInstance('injectSelf');
|
1551
|
-
const {
|
1552
|
-
provides
|
1553
|
-
} = vm;
|
1554
|
-
if (provides && key in provides) {
|
1555
|
-
// TS doesn't allow symbol as index type
|
1556
|
-
return provides[key];
|
1557
|
-
}
|
1558
|
-
return undefined;
|
1559
|
-
}
|
1560
|
-
|
1561
1561
|
function isFixedPosition(el) {
|
1562
1562
|
while (el) {
|
1563
1563
|
if (window.getComputedStyle(el).position === 'fixed') {
|
@@ -22245,6 +22245,10 @@ const VEmptyState = genericComponent()({
|
|
22245
22245
|
}
|
22246
22246
|
});
|
22247
22247
|
|
22248
|
+
// Types
|
22249
|
+
|
22250
|
+
const VExpansionPanelSymbol = Symbol.for('vuetify:v-expansion-panel');
|
22251
|
+
|
22248
22252
|
const makeVExpansionPanelTextProps = propsFactory({
|
22249
22253
|
...makeComponentProps(),
|
22250
22254
|
...makeLazyProps()
|
@@ -22425,7 +22429,6 @@ const VExpansionPanel = genericComponent()({
|
|
22425
22429
|
|
22426
22430
|
// Types
|
22427
22431
|
|
22428
|
-
const VExpansionPanelSymbol = Symbol.for('vuetify:v-expansion-panel');
|
22429
22432
|
const allowedVariants = ['default', 'accordion', 'inset', 'popout'];
|
22430
22433
|
const makeVExpansionPanelsProps = propsFactory({
|
22431
22434
|
flat: Boolean,
|
@@ -25769,6 +25772,10 @@ const VSpeedDial = genericComponent()({
|
|
25769
25772
|
|
25770
25773
|
// Types
|
25771
25774
|
|
25775
|
+
const VStepperSymbol = Symbol.for('vuetify:v-stepper');
|
25776
|
+
|
25777
|
+
// Types
|
25778
|
+
|
25772
25779
|
const makeVStepperActionsProps = propsFactory({
|
25773
25780
|
color: String,
|
25774
25781
|
disabled: {
|
@@ -25956,9 +25963,6 @@ const VStepperItem = genericComponent()({
|
|
25956
25963
|
}
|
25957
25964
|
});
|
25958
25965
|
|
25959
|
-
// Types
|
25960
|
-
|
25961
|
-
const VStepperSymbol$1 = Symbol.for('vuetify:v-stepper');
|
25962
25966
|
const makeVStepperWindowProps = propsFactory({
|
25963
25967
|
...omit(makeVWindowProps(), ['continuous', 'nextIcon', 'prevIcon', 'showArrows', 'touch', 'mandatory'])
|
25964
25968
|
}, 'VStepperWindow');
|
@@ -25972,7 +25976,7 @@ const VStepperWindow = genericComponent()({
|
|
25972
25976
|
let {
|
25973
25977
|
slots
|
25974
25978
|
} = _ref;
|
25975
|
-
const group = inject$1(VStepperSymbol
|
25979
|
+
const group = inject$1(VStepperSymbol, null);
|
25976
25980
|
const _model = useProxiedModel(props, 'modelValue');
|
25977
25981
|
const model = computed({
|
25978
25982
|
get() {
|
@@ -26030,7 +26034,6 @@ const VStepperWindowItem = genericComponent()({
|
|
26030
26034
|
|
26031
26035
|
// Types
|
26032
26036
|
|
26033
|
-
const VStepperSymbol = Symbol.for('vuetify:v-stepper');
|
26034
26037
|
const makeStepperProps = propsFactory({
|
26035
26038
|
altLabels: Boolean,
|
26036
26039
|
bgColor: String,
|
@@ -30123,7 +30126,7 @@ function createVuetify$1() {
|
|
30123
30126
|
goTo
|
30124
30127
|
};
|
30125
30128
|
}
|
30126
|
-
const version$1 = "3.6.7-master.2024-05-
|
30129
|
+
const version$1 = "3.6.7-master.2024-05-23";
|
30127
30130
|
createVuetify$1.version = version$1;
|
30128
30131
|
|
30129
30132
|
// Vue's inject() can only be used in setup
|
@@ -30376,7 +30379,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
30376
30379
|
|
30377
30380
|
/* eslint-disable local-rules/sort-imports */
|
30378
30381
|
|
30379
|
-
const version = "3.6.7-master.2024-05-
|
30382
|
+
const version = "3.6.7-master.2024-05-23";
|
30380
30383
|
|
30381
30384
|
/* eslint-disable local-rules/sort-imports */
|
30382
30385
|
|