@vuetify/nightly 3.11.8-dev.2026-02-01 → 3.11.8-dev.2026-02-07
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 +4 -3
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3962 -3918
- package/dist/json/importMap-labs.json +18 -14
- package/dist/json/importMap.json +156 -156
- package/dist/json/tags.json +16 -0
- package/dist/json/web-types.json +7051 -6886
- package/dist/vuetify-labs.cjs +86 -3
- package/dist/vuetify-labs.css +4728 -4680
- package/dist/vuetify-labs.d.ts +350 -55
- package/dist/vuetify-labs.esm.js +86 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +86 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +3 -3
- package/dist/vuetify.css +3116 -3116
- package/dist/vuetify.d.ts +55 -54
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +3 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +55 -54
- package/lib/framework.js +1 -1
- package/lib/labs/VAvatarGroup/VAvatarGroup.css +49 -0
- package/lib/labs/VAvatarGroup/VAvatarGroup.d.ts +401 -0
- package/lib/labs/VAvatarGroup/VAvatarGroup.js +91 -0
- package/lib/labs/VAvatarGroup/VAvatarGroup.js.map +1 -0
- package/lib/labs/VAvatarGroup/VAvatarGroup.scss +79 -0
- package/lib/labs/VAvatarGroup/_variables.scss +6 -0
- package/lib/labs/VAvatarGroup/index.d.ts +1 -0
- package/lib/labs/VAvatarGroup/index.js +2 -0
- package/lib/labs/VAvatarGroup/index.js.map +1 -0
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.11.8-dev.2026-02-
|
|
2
|
+
* Vuetify v3.11.8-dev.2026-02-07
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -36185,6 +36185,88 @@ const VValidation = genericComponent()({
|
|
|
36185
36185
|
|
|
36186
36186
|
// Types
|
|
36187
36187
|
|
|
36188
|
+
const makeVAvatarGroupProps = propsFactory({
|
|
36189
|
+
border: [Boolean, Number, String],
|
|
36190
|
+
gap: [Number, String],
|
|
36191
|
+
hoverable: Boolean,
|
|
36192
|
+
items: {
|
|
36193
|
+
type: Array,
|
|
36194
|
+
default: () => []
|
|
36195
|
+
},
|
|
36196
|
+
itemProps: {
|
|
36197
|
+
type: [Boolean, String, Array, Function],
|
|
36198
|
+
default: null
|
|
36199
|
+
},
|
|
36200
|
+
limit: Number,
|
|
36201
|
+
overflowText: String,
|
|
36202
|
+
reverse: Boolean,
|
|
36203
|
+
size: [Number, String],
|
|
36204
|
+
vertical: Boolean,
|
|
36205
|
+
...makeComponentProps(),
|
|
36206
|
+
...makeTagProps()
|
|
36207
|
+
}, 'VAvatarGroup');
|
|
36208
|
+
const VAvatarGroup = genericComponent()({
|
|
36209
|
+
name: 'VAvatarGroup',
|
|
36210
|
+
props: makeVAvatarGroupProps(),
|
|
36211
|
+
setup(props, _ref) {
|
|
36212
|
+
let {
|
|
36213
|
+
slots
|
|
36214
|
+
} = _ref;
|
|
36215
|
+
const items = computed(() => {
|
|
36216
|
+
const visibleItems = props.limit ? props.items.slice(0, props.limit) : props.items;
|
|
36217
|
+
const orderedItems = props.reverse ? visibleItems.toReversed() : visibleItems;
|
|
36218
|
+
return orderedItems.map(item => {
|
|
36219
|
+
const avatarProps = props.itemProps === true ? isObject(item) ? item : {
|
|
36220
|
+
image: item
|
|
36221
|
+
} : getPropertyFromItem(item, props.itemProps, item);
|
|
36222
|
+
if (avatarProps != null) return avatarProps;
|
|
36223
|
+
if (!isObject(item)) return {
|
|
36224
|
+
image: item
|
|
36225
|
+
};
|
|
36226
|
+
return item;
|
|
36227
|
+
});
|
|
36228
|
+
});
|
|
36229
|
+
const overflow = computed(() => props.limit ? Math.max(props.items.length - props.limit, 0) : 0);
|
|
36230
|
+
const overflowText = computed(() => props.overflowText ?? (overflow.value ? `+${overflow.value}` : ''));
|
|
36231
|
+
const overflowItem = () => slots.overflow?.({
|
|
36232
|
+
overflow: overflow.value
|
|
36233
|
+
}) ?? createVNode(VAvatar, {
|
|
36234
|
+
"class": "v-avatar-group__overflow",
|
|
36235
|
+
"text": overflowText.value
|
|
36236
|
+
}, null);
|
|
36237
|
+
useRender(() => createVNode(props.tag, {
|
|
36238
|
+
"class": normalizeClass(['v-avatar-group', `v-avatar-group--${props.vertical ? 'vertical' : 'horizontal'}`, {
|
|
36239
|
+
'v-avatar-group--hoverable': props.hoverable,
|
|
36240
|
+
'v-avatar-group--reverse': props.reverse
|
|
36241
|
+
}, props.class]),
|
|
36242
|
+
"style": normalizeStyle([{
|
|
36243
|
+
'--v-avatar-group-gap': convertToUnit(props.gap)
|
|
36244
|
+
}, props.style])
|
|
36245
|
+
}, {
|
|
36246
|
+
default: () => [slots.prepend?.(), createElementVNode("div", {
|
|
36247
|
+
"class": "v-avatar-group__content"
|
|
36248
|
+
}, [createVNode(VDefaultsProvider, {
|
|
36249
|
+
"defaults": {
|
|
36250
|
+
VAvatar: {
|
|
36251
|
+
size: props.size,
|
|
36252
|
+
border: props.border
|
|
36253
|
+
}
|
|
36254
|
+
}
|
|
36255
|
+
}, {
|
|
36256
|
+
default: () => [slots.default?.() ?? createElementVNode(Fragment, null, [props.reverse && overflowText.value && overflowItem(), items.value.map((item, index) => slots.item?.({
|
|
36257
|
+
props: item,
|
|
36258
|
+
index
|
|
36259
|
+
}) ?? createVNode(VAvatar, mergeProps({
|
|
36260
|
+
"key": index
|
|
36261
|
+
}, item), null)), !props.reverse && overflowText.value && overflowItem()])]
|
|
36262
|
+
})]), slots.append?.()]
|
|
36263
|
+
}));
|
|
36264
|
+
return {};
|
|
36265
|
+
}
|
|
36266
|
+
});
|
|
36267
|
+
|
|
36268
|
+
// Types
|
|
36269
|
+
|
|
36188
36270
|
const availablePipLocations = ['prepend', 'prepend-inner', 'append', 'append-inner'];
|
|
36189
36271
|
const makeVColorInputProps = propsFactory({
|
|
36190
36272
|
hidePip: Boolean,
|
|
@@ -39441,6 +39523,7 @@ var components = /*#__PURE__*/Object.freeze({
|
|
|
39441
39523
|
VAppBarTitle: VAppBarTitle,
|
|
39442
39524
|
VAutocomplete: VAutocomplete,
|
|
39443
39525
|
VAvatar: VAvatar,
|
|
39526
|
+
VAvatarGroup: VAvatarGroup,
|
|
39444
39527
|
VBadge: VBadge,
|
|
39445
39528
|
VBanner: VBanner,
|
|
39446
39529
|
VBannerActions: VBannerActions,
|
|
@@ -39942,7 +40025,7 @@ function createVuetify$1() {
|
|
|
39942
40025
|
};
|
|
39943
40026
|
});
|
|
39944
40027
|
}
|
|
39945
|
-
const version$1 = "3.11.8-dev.2026-02-
|
|
40028
|
+
const version$1 = "3.11.8-dev.2026-02-07";
|
|
39946
40029
|
createVuetify$1.version = version$1;
|
|
39947
40030
|
|
|
39948
40031
|
// Vue's inject() can only be used in setup
|
|
@@ -40245,7 +40328,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
|
40245
40328
|
|
|
40246
40329
|
/* eslint-disable local-rules/sort-imports */
|
|
40247
40330
|
|
|
40248
|
-
const version = "3.11.8-dev.2026-02-
|
|
40331
|
+
const version = "3.11.8-dev.2026-02-07";
|
|
40249
40332
|
|
|
40250
40333
|
/* eslint-disable local-rules/sort-imports */
|
|
40251
40334
|
|