@vuetify/nightly 3.9.5-dev.2025-08-12 → 3.9.5-dev.2025-08-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.
- package/CHANGELOG.md +6 -3
- package/dist/json/attributes.json +2183 -2175
- package/dist/json/importMap-labs.json +40 -40
- package/dist/json/importMap.json +156 -156
- package/dist/json/tags.json +4 -1
- package/dist/json/web-types.json +4199 -4178
- package/dist/vuetify-labs.cjs +202 -98
- package/dist/vuetify-labs.css +5261 -5261
- package/dist/vuetify-labs.d.ts +112 -84
- package/dist/vuetify-labs.esm.js +202 -98
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +202 -98
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +85 -65
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2218 -2218
- package/dist/vuetify.d.ts +91 -63
- package/dist/vuetify.esm.js +85 -65
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +85 -65
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +367 -366
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCard/VCardActions.d.ts +44 -0
- package/lib/components/VCard/VCardActions.js +11 -6
- package/lib/components/VCard/VCardActions.js.map +1 -1
- package/lib/components/VCard/VCardItem.d.ts +25 -0
- package/lib/components/VCard/VCardItem.js +64 -60
- package/lib/components/VCard/VCardItem.js.map +1 -1
- package/lib/composables/filter.d.ts +1 -0
- package/lib/composables/filter.js +13 -0
- package/lib/composables/filter.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +63 -63
- package/lib/framework.js +1 -1
- package/lib/labs/VMaskInput/VMaskInput.d.ts +22 -21
- package/lib/labs/VMaskInput/VMaskInput.js +118 -34
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.9.5-dev.2025-08-
|
|
2
|
+
* Vuetify v3.9.5-dev.2025-08-24
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -13987,6 +13987,7 @@
|
|
|
13987
13987
|
const keys = options?.filterKeys ? wrapInArray(options.filterKeys) : false;
|
|
13988
13988
|
const customFiltersLength = Object.keys(options?.customKeyFilter ?? {}).length;
|
|
13989
13989
|
if (!items?.length) return array;
|
|
13990
|
+
let lookAheadItem = null;
|
|
13990
13991
|
loop: for (let i = 0; i < items.length; i++) {
|
|
13991
13992
|
const [item, transformed = item] = wrapInArray(items[i]);
|
|
13992
13993
|
const customMatches = {};
|
|
@@ -13995,6 +13996,14 @@
|
|
|
13995
13996
|
if ((query || customFiltersLength > 0) && !options?.noFilter) {
|
|
13996
13997
|
if (typeof item === 'object') {
|
|
13997
13998
|
if (item.type === 'divider' || item.type === 'subheader') {
|
|
13999
|
+
if (lookAheadItem?.type === 'divider' && item.type === 'subheader') {
|
|
14000
|
+
array.push(lookAheadItem); // divider before subheader
|
|
14001
|
+
}
|
|
14002
|
+
lookAheadItem = {
|
|
14003
|
+
index: i,
|
|
14004
|
+
matches: {},
|
|
14005
|
+
type: item.type
|
|
14006
|
+
};
|
|
13998
14007
|
continue;
|
|
13999
14008
|
}
|
|
14000
14009
|
const filterKeys = keys || Object.keys(transformed);
|
|
@@ -14020,6 +14029,10 @@
|
|
|
14020
14029
|
if (options?.filterMode === 'union' && customMatchesLength !== customFiltersLength && !defaultMatchesLength) continue;
|
|
14021
14030
|
if (options?.filterMode === 'intersection' && (customMatchesLength !== customFiltersLength || !defaultMatchesLength)) continue;
|
|
14022
14031
|
}
|
|
14032
|
+
if (lookAheadItem) {
|
|
14033
|
+
array.push(lookAheadItem);
|
|
14034
|
+
lookAheadItem = null;
|
|
14035
|
+
}
|
|
14023
14036
|
array.push({
|
|
14024
14037
|
index: i,
|
|
14025
14038
|
matches: {
|
|
@@ -15280,9 +15293,13 @@
|
|
|
15280
15293
|
}
|
|
15281
15294
|
});
|
|
15282
15295
|
|
|
15296
|
+
const makeVCardActionsProps = propsFactory({
|
|
15297
|
+
...makeComponentProps(),
|
|
15298
|
+
...makeTagProps()
|
|
15299
|
+
}, 'VCardActions');
|
|
15283
15300
|
const VCardActions = genericComponent()({
|
|
15284
15301
|
name: 'VCardActions',
|
|
15285
|
-
props:
|
|
15302
|
+
props: makeVCardActionsProps(),
|
|
15286
15303
|
setup(props, _ref) {
|
|
15287
15304
|
let {
|
|
15288
15305
|
slots
|
|
@@ -15293,10 +15310,10 @@
|
|
|
15293
15310
|
variant: 'text'
|
|
15294
15311
|
}
|
|
15295
15312
|
});
|
|
15296
|
-
useRender(() => vue.
|
|
15313
|
+
useRender(() => vue.createVNode(props.tag, {
|
|
15297
15314
|
"class": vue.normalizeClass(['v-card-actions', props.class]),
|
|
15298
15315
|
"style": vue.normalizeStyle(props.style)
|
|
15299
|
-
},
|
|
15316
|
+
}, slots));
|
|
15300
15317
|
return {};
|
|
15301
15318
|
}
|
|
15302
15319
|
});
|
|
@@ -15340,7 +15357,8 @@
|
|
|
15340
15357
|
default: undefined
|
|
15341
15358
|
},
|
|
15342
15359
|
...makeComponentProps(),
|
|
15343
|
-
...makeDensityProps()
|
|
15360
|
+
...makeDensityProps(),
|
|
15361
|
+
...makeTagProps()
|
|
15344
15362
|
}, 'VCardItem');
|
|
15345
15363
|
const VCardItem = genericComponent()({
|
|
15346
15364
|
name: 'VCardItem',
|
|
@@ -15356,68 +15374,70 @@
|
|
|
15356
15374
|
const hasAppend = !!(hasAppendMedia || slots.append);
|
|
15357
15375
|
const hasTitle = !!(props.title != null || slots.title);
|
|
15358
15376
|
const hasSubtitle = !!(props.subtitle != null || slots.subtitle);
|
|
15359
|
-
return vue.
|
|
15377
|
+
return vue.createVNode(props.tag, {
|
|
15360
15378
|
"class": vue.normalizeClass(['v-card-item', props.class]),
|
|
15361
15379
|
"style": vue.normalizeStyle(props.style)
|
|
15362
|
-
}, [hasPrepend && vue.createElementVNode("div", {
|
|
15363
|
-
"key": "prepend",
|
|
15364
|
-
"class": "v-card-item__prepend"
|
|
15365
|
-
}, [!slots.prepend ? vue.createElementVNode(vue.Fragment, null, [props.prependAvatar && vue.createVNode(VAvatar, {
|
|
15366
|
-
"key": "prepend-avatar",
|
|
15367
|
-
"density": props.density,
|
|
15368
|
-
"image": props.prependAvatar
|
|
15369
|
-
}, null), props.prependIcon && vue.createVNode(VIcon, {
|
|
15370
|
-
"key": "prepend-icon",
|
|
15371
|
-
"density": props.density,
|
|
15372
|
-
"icon": props.prependIcon
|
|
15373
|
-
}, null)]) : vue.createVNode(VDefaultsProvider, {
|
|
15374
|
-
"key": "prepend-defaults",
|
|
15375
|
-
"disabled": !hasPrependMedia,
|
|
15376
|
-
"defaults": {
|
|
15377
|
-
VAvatar: {
|
|
15378
|
-
density: props.density,
|
|
15379
|
-
image: props.prependAvatar
|
|
15380
|
-
},
|
|
15381
|
-
VIcon: {
|
|
15382
|
-
density: props.density,
|
|
15383
|
-
icon: props.prependIcon
|
|
15384
|
-
}
|
|
15385
|
-
}
|
|
15386
|
-
}, slots.prepend)]), vue.createElementVNode("div", {
|
|
15387
|
-
"class": "v-card-item__content"
|
|
15388
|
-
}, [hasTitle && vue.createVNode(VCardTitle, {
|
|
15389
|
-
"key": "title"
|
|
15390
|
-
}, {
|
|
15391
|
-
default: () => [slots.title?.() ?? vue.toDisplayString(props.title)]
|
|
15392
|
-
}), hasSubtitle && vue.createVNode(VCardSubtitle, {
|
|
15393
|
-
"key": "subtitle"
|
|
15394
15380
|
}, {
|
|
15395
|
-
default: () => [
|
|
15396
|
-
|
|
15397
|
-
|
|
15398
|
-
|
|
15399
|
-
|
|
15400
|
-
|
|
15401
|
-
|
|
15402
|
-
|
|
15403
|
-
|
|
15404
|
-
|
|
15405
|
-
|
|
15406
|
-
|
|
15407
|
-
|
|
15408
|
-
|
|
15409
|
-
|
|
15410
|
-
|
|
15411
|
-
|
|
15412
|
-
|
|
15413
|
-
|
|
15414
|
-
|
|
15415
|
-
|
|
15416
|
-
|
|
15417
|
-
|
|
15381
|
+
default: () => [hasPrepend && vue.createElementVNode("div", {
|
|
15382
|
+
"key": "prepend",
|
|
15383
|
+
"class": "v-card-item__prepend"
|
|
15384
|
+
}, [!slots.prepend ? vue.createElementVNode(vue.Fragment, null, [props.prependAvatar && vue.createVNode(VAvatar, {
|
|
15385
|
+
"key": "prepend-avatar",
|
|
15386
|
+
"density": props.density,
|
|
15387
|
+
"image": props.prependAvatar
|
|
15388
|
+
}, null), props.prependIcon && vue.createVNode(VIcon, {
|
|
15389
|
+
"key": "prepend-icon",
|
|
15390
|
+
"density": props.density,
|
|
15391
|
+
"icon": props.prependIcon
|
|
15392
|
+
}, null)]) : vue.createVNode(VDefaultsProvider, {
|
|
15393
|
+
"key": "prepend-defaults",
|
|
15394
|
+
"disabled": !hasPrependMedia,
|
|
15395
|
+
"defaults": {
|
|
15396
|
+
VAvatar: {
|
|
15397
|
+
density: props.density,
|
|
15398
|
+
image: props.prependAvatar
|
|
15399
|
+
},
|
|
15400
|
+
VIcon: {
|
|
15401
|
+
density: props.density,
|
|
15402
|
+
icon: props.prependIcon
|
|
15403
|
+
}
|
|
15418
15404
|
}
|
|
15419
|
-
}
|
|
15420
|
-
|
|
15405
|
+
}, slots.prepend)]), vue.createElementVNode("div", {
|
|
15406
|
+
"class": "v-card-item__content"
|
|
15407
|
+
}, [hasTitle && vue.createVNode(VCardTitle, {
|
|
15408
|
+
"key": "title"
|
|
15409
|
+
}, {
|
|
15410
|
+
default: () => [slots.title?.() ?? vue.toDisplayString(props.title)]
|
|
15411
|
+
}), hasSubtitle && vue.createVNode(VCardSubtitle, {
|
|
15412
|
+
"key": "subtitle"
|
|
15413
|
+
}, {
|
|
15414
|
+
default: () => [slots.subtitle?.() ?? vue.toDisplayString(props.subtitle)]
|
|
15415
|
+
}), slots.default?.()]), hasAppend && vue.createElementVNode("div", {
|
|
15416
|
+
"key": "append",
|
|
15417
|
+
"class": "v-card-item__append"
|
|
15418
|
+
}, [!slots.append ? vue.createElementVNode(vue.Fragment, null, [props.appendIcon && vue.createVNode(VIcon, {
|
|
15419
|
+
"key": "append-icon",
|
|
15420
|
+
"density": props.density,
|
|
15421
|
+
"icon": props.appendIcon
|
|
15422
|
+
}, null), props.appendAvatar && vue.createVNode(VAvatar, {
|
|
15423
|
+
"key": "append-avatar",
|
|
15424
|
+
"density": props.density,
|
|
15425
|
+
"image": props.appendAvatar
|
|
15426
|
+
}, null)]) : vue.createVNode(VDefaultsProvider, {
|
|
15427
|
+
"key": "append-defaults",
|
|
15428
|
+
"disabled": !hasAppendMedia,
|
|
15429
|
+
"defaults": {
|
|
15430
|
+
VAvatar: {
|
|
15431
|
+
density: props.density,
|
|
15432
|
+
image: props.appendAvatar
|
|
15433
|
+
},
|
|
15434
|
+
VIcon: {
|
|
15435
|
+
density: props.density,
|
|
15436
|
+
icon: props.appendIcon
|
|
15437
|
+
}
|
|
15438
|
+
}
|
|
15439
|
+
}, slots.append)])]
|
|
15440
|
+
});
|
|
15421
15441
|
});
|
|
15422
15442
|
return {};
|
|
15423
15443
|
}
|
|
@@ -32114,7 +32134,7 @@
|
|
|
32114
32134
|
};
|
|
32115
32135
|
});
|
|
32116
32136
|
}
|
|
32117
|
-
const version$1 = "3.9.5-dev.2025-08-
|
|
32137
|
+
const version$1 = "3.9.5-dev.2025-08-24";
|
|
32118
32138
|
createVuetify$1.version = version$1;
|
|
32119
32139
|
|
|
32120
32140
|
// Vue's inject() can only be used in setup
|
|
@@ -32139,7 +32159,7 @@
|
|
|
32139
32159
|
...options
|
|
32140
32160
|
});
|
|
32141
32161
|
};
|
|
32142
|
-
const version = "3.9.5-dev.2025-08-
|
|
32162
|
+
const version = "3.9.5-dev.2025-08-24";
|
|
32143
32163
|
createVuetify.version = version;
|
|
32144
32164
|
|
|
32145
32165
|
exports.blueprints = index;
|