@vuetify/nightly 3.11.8-dev.2026-02-18 → 3.11.8-dev.2026-02-19
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/json/attributes.json +1722 -1722
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +186 -186
- package/dist/json/web-types.json +3151 -3151
- package/dist/vuetify-labs.cjs +13 -11
- package/dist/vuetify-labs.css +6068 -6068
- package/dist/vuetify-labs.d.ts +73 -69
- package/dist/vuetify-labs.esm.js +13 -11
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +13 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +13 -11
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5073 -5073
- package/dist/vuetify.d.ts +73 -69
- package/dist/vuetify.esm.js +13 -11
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbsItem.js.map +1 -1
- package/lib/components/VBtn/VBtn.js +1 -1
- package/lib/components/VBtn/VBtn.js.map +1 -1
- package/lib/components/VCard/VCard.js +1 -1
- package/lib/components/VCard/VCard.js.map +1 -1
- package/lib/components/VChip/VChip.js +1 -1
- package/lib/components/VChip/VChip.js.map +1 -1
- package/lib/components/VList/VListItem.js +1 -1
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/composables/router.d.ts +6 -2
- package/lib/composables/router.js +5 -3
- package/lib/composables/router.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +67 -67
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.11.8-dev.2026-02-
|
|
2
|
+
* Vuetify v3.11.8-dev.2026-02-19
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -5852,7 +5852,9 @@
|
|
|
5852
5852
|
href,
|
|
5853
5853
|
linkProps: vue.reactive({
|
|
5854
5854
|
href
|
|
5855
|
-
})
|
|
5855
|
+
}),
|
|
5856
|
+
route: vue.toRef(() => undefined),
|
|
5857
|
+
navigate: vue.toRef(() => undefined)
|
|
5856
5858
|
};
|
|
5857
5859
|
}
|
|
5858
5860
|
|
|
@@ -5877,8 +5879,8 @@
|
|
|
5877
5879
|
isRouterLink,
|
|
5878
5880
|
isClickable,
|
|
5879
5881
|
isActive,
|
|
5880
|
-
route: link.value?.route,
|
|
5881
|
-
navigate: link.value?.navigate,
|
|
5882
|
+
route: vue.toRef(() => link.value?.route.value),
|
|
5883
|
+
navigate: vue.toRef(() => link.value?.navigate),
|
|
5882
5884
|
href,
|
|
5883
5885
|
linkProps: vue.reactive({
|
|
5884
5886
|
href,
|
|
@@ -6365,7 +6367,7 @@
|
|
|
6365
6367
|
function onClick(e) {
|
|
6366
6368
|
if (isDisabled.value || link.isLink.value && (e.metaKey || e.ctrlKey || e.shiftKey || e.button !== 0 || attrs.target === '_blank')) return;
|
|
6367
6369
|
if (link.isRouterLink.value) {
|
|
6368
|
-
link.navigate?.(e);
|
|
6370
|
+
link.navigate.value?.(e);
|
|
6369
6371
|
} else {
|
|
6370
6372
|
// Group active state for links is handled by useSelectLink
|
|
6371
6373
|
group?.toggle();
|
|
@@ -8856,7 +8858,7 @@
|
|
|
8856
8858
|
function onClick(e) {
|
|
8857
8859
|
emit('click', e);
|
|
8858
8860
|
if (!isClickable.value) return;
|
|
8859
|
-
link.navigate?.(e);
|
|
8861
|
+
link.navigate.value?.(e);
|
|
8860
8862
|
group?.toggle();
|
|
8861
8863
|
}
|
|
8862
8864
|
function onKeyDown(e) {
|
|
@@ -10237,7 +10239,7 @@
|
|
|
10237
10239
|
emit('click', e);
|
|
10238
10240
|
if (['INPUT', 'TEXTAREA'].includes(e.target?.tagName)) return;
|
|
10239
10241
|
if (!isClickable.value) return;
|
|
10240
|
-
link.navigate?.(e);
|
|
10242
|
+
link.navigate.value?.(e);
|
|
10241
10243
|
if (isGroupActivator) return;
|
|
10242
10244
|
if (root.activatable.value) {
|
|
10243
10245
|
activate(!isActivated.value, e);
|
|
@@ -15681,7 +15683,7 @@
|
|
|
15681
15683
|
}, {
|
|
15682
15684
|
default: () => [!link.isLink.value ? slots.default?.() ?? props.title : vue.createElementVNode("a", vue.mergeProps({
|
|
15683
15685
|
"class": "v-breadcrumbs-item--link",
|
|
15684
|
-
"onClick": link.navigate
|
|
15686
|
+
"onClick": link.navigate.value
|
|
15685
15687
|
}, link.linkProps), [slots.default?.() ?? props.title])]
|
|
15686
15688
|
});
|
|
15687
15689
|
});
|
|
@@ -20100,7 +20102,7 @@
|
|
|
20100
20102
|
"style": [colorStyles.value, dimensionStyles.value, locationStyles.value, {
|
|
20101
20103
|
'--v-card-height': convertToUnit(props.height)
|
|
20102
20104
|
}, props.style],
|
|
20103
|
-
"onClick": isClickable && link.navigate,
|
|
20105
|
+
"onClick": isClickable && link.navigate.value,
|
|
20104
20106
|
"tabindex": props.disabled ? -1 : undefined
|
|
20105
20107
|
}), {
|
|
20106
20108
|
default: () => [hasImage && vue.createElementVNode("div", {
|
|
@@ -40094,7 +40096,7 @@
|
|
|
40094
40096
|
};
|
|
40095
40097
|
});
|
|
40096
40098
|
}
|
|
40097
|
-
const version$1 = "3.11.8-dev.2026-02-
|
|
40099
|
+
const version$1 = "3.11.8-dev.2026-02-19";
|
|
40098
40100
|
createVuetify$1.version = version$1;
|
|
40099
40101
|
|
|
40100
40102
|
// Vue's inject() can only be used in setup
|
|
@@ -40397,7 +40399,7 @@
|
|
|
40397
40399
|
|
|
40398
40400
|
/* eslint-disable local-rules/sort-imports */
|
|
40399
40401
|
|
|
40400
|
-
const version = "3.11.8-dev.2026-02-
|
|
40402
|
+
const version = "3.11.8-dev.2026-02-19";
|
|
40401
40403
|
|
|
40402
40404
|
/* eslint-disable local-rules/sort-imports */
|
|
40403
40405
|
|