@vuetify/nightly 3.9.0-master.2025-07-09 → 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 +13 -3
- package/dist/json/attributes.json +3158 -3158
- package/dist/json/importMap.json +158 -158
- package/dist/json/web-types.json +5951 -5951
- package/dist/vuetify-labs.cjs +18 -8
- package/dist/vuetify-labs.css +5319 -5319
- package/dist/vuetify-labs.d.ts +53 -53
- package/dist/vuetify-labs.esm.js +18 -8
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +18 -8
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +18 -8
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3411 -3411
- package/dist/vuetify.d.ts +53 -53
- package/dist/vuetify.esm.js +18 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +18 -8
- 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/VList/VList.js +5 -1
- package/lib/components/VList/VList.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 +53 -53
- package/lib/framework.js +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,
|
@@ -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;
|