@vuetify/nightly 3.9.0-master.2025-07-08 → 3.9.0-master.2025-07-10
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 +22 -3
- package/dist/json/attributes.json +3735 -3735
- package/dist/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +188 -188
- package/dist/json/web-types.json +6238 -6238
- package/dist/vuetify-labs.cjs +38 -28
- package/dist/vuetify-labs.css +3384 -3384
- package/dist/vuetify-labs.d.ts +64 -64
- package/dist/vuetify-labs.esm.js +38 -28
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +38 -28
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +30 -20
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3059 -3059
- package/dist/vuetify.d.ts +64 -64
- package/dist/vuetify.esm.js +30 -20
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +30 -20
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +491 -483
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataTable/VDataTableFooter.js +7 -7
- package/lib/components/VDataTable/VDataTableFooter.js.map +1 -1
- package/lib/components/VFileInput/VFileInput.js +1 -1
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VList/VList.js +5 -1
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +2 -2
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.js +1 -1
- package/lib/components/VSnackbar/VSnackbar.js.map +1 -1
- package/lib/components/VTreeview/VTreeview.js +1 -1
- package/lib/components/VTreeview/VTreeview.js.map +1 -1
- package/lib/composables/layout.js +2 -2
- package/lib/composables/layout.js.map +1 -1
- package/lib/composables/list-items.d.ts +5 -2
- package/lib/composables/list-items.js +9 -3
- package/lib/composables/list-items.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +64 -64
- package/lib/framework.js +1 -1
- package/lib/labs/VColorInput/VColorInput.js +1 -1
- package/lib/labs/VColorInput/VColorInput.js.map +1 -1
- package/lib/labs/VDateInput/VDateInput.js +1 -1
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VFileUpload/VFileUpload.js +1 -1
- package/lib/labs/VFileUpload/VFileUpload.js.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVertical.js +4 -4
- package/lib/labs/VStepperVertical/VStepperVertical.js.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVerticalItem.js +1 -1
- package/lib/labs/VStepperVertical/VStepperVerticalItem.js.map +1 -1
- package/lib/util/helpers.d.ts +1 -1
- package/lib/util/helpers.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.0-master.2025-07-
|
2
|
+
* Vuetify v3.9.0-master.2025-07-10
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -2433,7 +2433,7 @@
|
|
2433
2433
|
};
|
2434
2434
|
if (!isMounted.value) return styles;
|
2435
2435
|
const item = items.value[index.value];
|
2436
|
-
if (!item)
|
2436
|
+
if (!item) consoleWarn(`[Vuetify] Could not find layout item "${id}"`);
|
2437
2437
|
const overlap = computedOverlaps.value.get(id);
|
2438
2438
|
if (overlap) {
|
2439
2439
|
item[overlap.position] += overlap.amount;
|
@@ -10193,12 +10193,16 @@
|
|
10193
10193
|
returnObject: Boolean,
|
10194
10194
|
valueComparator: Function
|
10195
10195
|
}, 'list-items');
|
10196
|
+
const itemTypes$1 = new Set(['item', 'divider', 'subheader']);
|
10196
10197
|
function transformItem$3(props, item) {
|
10197
10198
|
const title = getPropertyFromItem(item, props.itemTitle, item);
|
10198
10199
|
const value = getPropertyFromItem(item, props.itemValue, title);
|
10199
10200
|
const children = getPropertyFromItem(item, props.itemChildren);
|
10200
|
-
const type = getPropertyFromItem(item, props.itemType, 'item');
|
10201
10201
|
const itemProps = props.itemProps === true ? typeof item === 'object' && item != null && !Array.isArray(item) ? 'children' in item ? omit(item, ['children']) : item : undefined : getPropertyFromItem(item, props.itemProps);
|
10202
|
+
let type = getPropertyFromItem(item, props.itemType, 'item');
|
10203
|
+
if (!itemTypes$1.has(type)) {
|
10204
|
+
type = 'item';
|
10205
|
+
}
|
10202
10206
|
const _props = {
|
10203
10207
|
title,
|
10204
10208
|
value,
|
@@ -10213,8 +10217,10 @@
|
|
10213
10217
|
raw: item
|
10214
10218
|
};
|
10215
10219
|
}
|
10220
|
+
transformItem$3.neededProps = ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'itemType'];
|
10216
10221
|
function transformItems$3(props, items) {
|
10217
|
-
|
10222
|
+
// avoid reactive access in the loop
|
10223
|
+
const _props = pick(props, transformItem$3.neededProps);
|
10218
10224
|
const array = [];
|
10219
10225
|
for (const item of items) {
|
10220
10226
|
array.push(transformItem$3(_props, item));
|
@@ -10256,7 +10262,7 @@
|
|
10256
10262
|
const _returnObject = props.returnObject;
|
10257
10263
|
const hasValueComparator = !!props.valueComparator;
|
10258
10264
|
const valueComparator = props.valueComparator || deepEqual;
|
10259
|
-
const _props = pick(props,
|
10265
|
+
const _props = pick(props, transformItem$3.neededProps);
|
10260
10266
|
const returnValue = [];
|
10261
10267
|
main: for (const v of value) {
|
10262
10268
|
// When the model value is null, return an InternalItem
|
@@ -10315,12 +10321,16 @@
|
|
10315
10321
|
|
10316
10322
|
// Types
|
10317
10323
|
|
10324
|
+
const itemTypes = new Set(['item', 'divider', 'subheader']);
|
10318
10325
|
function transformItem$2(props, item) {
|
10319
|
-
const type = getPropertyFromItem(item, props.itemType, 'item');
|
10320
10326
|
const title = isPrimitive(item) ? item : getPropertyFromItem(item, props.itemTitle);
|
10321
10327
|
const value = isPrimitive(item) ? item : getPropertyFromItem(item, props.itemValue, undefined);
|
10322
10328
|
const children = getPropertyFromItem(item, props.itemChildren);
|
10323
10329
|
const itemProps = props.itemProps === true ? omit(item, ['children']) : getPropertyFromItem(item, props.itemProps);
|
10330
|
+
let type = getPropertyFromItem(item, props.itemType, 'item');
|
10331
|
+
if (!itemTypes.has(type)) {
|
10332
|
+
type = 'item';
|
10333
|
+
}
|
10324
10334
|
const _props = {
|
10325
10335
|
title,
|
10326
10336
|
value,
|
@@ -20864,7 +20874,7 @@
|
|
20864
20874
|
"onUpdate:modelValue": v => setItemsPerPage(Number(v)),
|
20865
20875
|
"density": "compact",
|
20866
20876
|
"variant": "outlined",
|
20867
|
-
"
|
20877
|
+
"hideDetails": true
|
20868
20878
|
}, null)]), vue.createElementVNode("div", {
|
20869
20879
|
"class": "v-data-table-footer__info"
|
20870
20880
|
}, [vue.createElementVNode("div", null, [t(props.pageText, !itemsLength.value ? 0 : startIndex.value + 1, stopIndex.value, itemsLength.value)])]), vue.createElementVNode("div", {
|
@@ -20873,14 +20883,14 @@
|
|
20873
20883
|
"modelValue": page.value,
|
20874
20884
|
"onUpdate:modelValue": $event => page.value = $event,
|
20875
20885
|
"density": "comfortable",
|
20876
|
-
"
|
20877
|
-
"
|
20886
|
+
"firstAriaLabel": props.firstPageLabel,
|
20887
|
+
"lastAriaLabel": props.lastPageLabel,
|
20878
20888
|
"length": pageCount.value,
|
20879
|
-
"
|
20880
|
-
"
|
20889
|
+
"nextAriaLabel": props.nextPageLabel,
|
20890
|
+
"previousAriaLabel": props.prevPageLabel,
|
20881
20891
|
"rounded": true,
|
20882
|
-
"
|
20883
|
-
"
|
20892
|
+
"showFirstLastPage": true,
|
20893
|
+
"totalVisible": props.showCurrentPage ? 1 : 0,
|
20884
20894
|
"variant": "plain"
|
20885
20895
|
}, paginationProps), null)])]);
|
20886
20896
|
});
|
@@ -24551,7 +24561,7 @@
|
|
24551
24561
|
} = _ref3;
|
24552
24562
|
return vue.createVNode(VField, vue.mergeProps({
|
24553
24563
|
"ref": vFieldRef,
|
24554
|
-
"
|
24564
|
+
"prependIcon": props.prependIcon,
|
24555
24565
|
"onMousedown": onControlMousedown,
|
24556
24566
|
"onClick": onControlClick,
|
24557
24567
|
"onClick:clear": onClear,
|
@@ -26584,8 +26594,8 @@
|
|
26584
26594
|
"value": model.value.join('')
|
26585
26595
|
}), null), vue.createVNode(VOverlay, {
|
26586
26596
|
"contained": true,
|
26587
|
-
"
|
26588
|
-
"
|
26597
|
+
"contentClass": "v-otp-input__loader",
|
26598
|
+
"modelValue": !!props.loading,
|
26589
26599
|
"persistent": true
|
26590
26600
|
}, {
|
26591
26601
|
default: () => [slots.loader?.() ?? vue.createVNode(VProgressCircular, {
|
@@ -27560,7 +27570,7 @@
|
|
27560
27570
|
"ref": timerRef,
|
27561
27571
|
"color": typeof props.timer === 'string' ? props.timer : 'info',
|
27562
27572
|
"max": props.timeout,
|
27563
|
-
"
|
27573
|
+
"modelValue": countdown.time.value
|
27564
27574
|
}, null)]), hasContent && vue.createElementVNode("div", {
|
27565
27575
|
"key": "content",
|
27566
27576
|
"class": "v-snackbar__content",
|
@@ -30853,7 +30863,7 @@
|
|
30853
30863
|
"class": ['v-treeview', {
|
30854
30864
|
'v-treeview--fluid': props.fluid
|
30855
30865
|
}, props.class],
|
30856
|
-
"
|
30866
|
+
"openStrategy": "multiple",
|
30857
30867
|
"style": props.style,
|
30858
30868
|
"opened": opened.value,
|
30859
30869
|
"activated": activated.value,
|
@@ -31386,7 +31396,7 @@
|
|
31386
31396
|
};
|
31387
31397
|
});
|
31388
31398
|
}
|
31389
|
-
const version$1 = "3.9.0-master.2025-07-
|
31399
|
+
const version$1 = "3.9.0-master.2025-07-10";
|
31390
31400
|
createVuetify$1.version = version$1;
|
31391
31401
|
|
31392
31402
|
// Vue's inject() can only be used in setup
|
@@ -31411,7 +31421,7 @@
|
|
31411
31421
|
...options
|
31412
31422
|
});
|
31413
31423
|
};
|
31414
|
-
const version = "3.9.0-master.2025-07-
|
31424
|
+
const version = "3.9.0-master.2025-07-10";
|
31415
31425
|
createVuetify.version = version;
|
31416
31426
|
|
31417
31427
|
exports.blueprints = index;
|