@vuetify/nightly 3.11.8-dev.2026-02-11 → 3.11.8-dev.2026-02-12
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 +7 -3
- package/dist/json/attributes.json +3838 -3838
- package/dist/json/importMap-labs.json +28 -28
- package/dist/json/importMap.json +160 -160
- package/dist/json/web-types.json +7160 -7160
- package/dist/vuetify-labs.cjs +21 -12
- package/dist/vuetify-labs.css +3922 -3920
- package/dist/vuetify-labs.d.ts +62 -62
- package/dist/vuetify-labs.esm.js +21 -12
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +21 -12
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +21 -12
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2481 -2479
- package/dist/vuetify.d.ts +62 -62
- package/dist/vuetify.esm.js +21 -12
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +21 -12
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +15 -12
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VCard/VCard.js +4 -2
- package/lib/components/VCard/VCard.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerYears.js +8 -3
- package/lib/components/VDatePicker/VDatePickerYears.js.map +1 -1
- package/lib/components/VDialog/VDialog.css +2 -2
- package/lib/components/VDialog/VDialog.sass +2 -2
- package/lib/components/VTabs/VTab.js +7 -5
- package/lib/components/VTabs/VTab.js.map +1 -1
- package/lib/components/VTabs/VTabs.css +2 -0
- package/lib/components/VTabs/VTabs.sass +2 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +62 -62
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.11.8-dev.2026-02-
|
|
2
|
+
* Vuetify v3.11.8-dev.2026-02-12
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -20396,7 +20396,9 @@
|
|
|
20396
20396
|
'v-card--hover': props.hover && !(props.disabled || props.flat),
|
|
20397
20397
|
'v-card--link': isClickable
|
|
20398
20398
|
}, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, elevationClasses.value, loaderClasses.value, positionClasses.value, roundedClasses.value, variantClasses.value, props.class],
|
|
20399
|
-
"style": [colorStyles.value, dimensionStyles.value, locationStyles.value,
|
|
20399
|
+
"style": [colorStyles.value, dimensionStyles.value, locationStyles.value, {
|
|
20400
|
+
'--v-card-height': convertToUnit(props.height)
|
|
20401
|
+
}, props.style],
|
|
20400
20402
|
"onClick": isClickable && link.navigate,
|
|
20401
20403
|
"tabindex": props.disabled ? -1 : undefined
|
|
20402
20404
|
}), {
|
|
@@ -28029,11 +28031,15 @@
|
|
|
28029
28031
|
vue.watchEffect(() => {
|
|
28030
28032
|
model.value = model.value ?? adapter.getYear(adapter.date());
|
|
28031
28033
|
});
|
|
28034
|
+
const containerRef = templateRef();
|
|
28032
28035
|
const yearRef = templateRef();
|
|
28033
28036
|
function focusSelectedYear() {
|
|
28034
|
-
|
|
28035
|
-
|
|
28036
|
-
|
|
28037
|
+
const container = containerRef.el;
|
|
28038
|
+
const target = yearRef.el;
|
|
28039
|
+
if (!container || !target) return;
|
|
28040
|
+
const containerRect = container.getBoundingClientRect();
|
|
28041
|
+
const targetRect = target.getBoundingClientRect();
|
|
28042
|
+
container.scrollTop += targetRect.top - containerRect.top - container.clientHeight / 2 + targetRect.height / 2;
|
|
28037
28043
|
}
|
|
28038
28044
|
function isYearAllowed(year) {
|
|
28039
28045
|
if (Array.isArray(props.allowedYears) && props.allowedYears.length) {
|
|
@@ -28046,6 +28052,7 @@
|
|
|
28046
28052
|
}
|
|
28047
28053
|
useRender(() => vue.withDirectives(vue.createElementVNode("div", {
|
|
28048
28054
|
"class": "v-date-picker-years",
|
|
28055
|
+
"ref": containerRef,
|
|
28049
28056
|
"style": {
|
|
28050
28057
|
height: convertToUnit(props.height)
|
|
28051
28058
|
}
|
|
@@ -34118,7 +34125,7 @@
|
|
|
34118
34125
|
const prevEl = rootEl.value?.$el.parentElement?.querySelector('.v-tab--selected .v-tab__slider');
|
|
34119
34126
|
const nextEl = sliderEl.value;
|
|
34120
34127
|
if (!prevEl || !nextEl) return;
|
|
34121
|
-
const color = getComputedStyle(prevEl).
|
|
34128
|
+
const color = getComputedStyle(prevEl).backgroundColor;
|
|
34122
34129
|
const keyframes = {
|
|
34123
34130
|
fade,
|
|
34124
34131
|
grow,
|
|
@@ -34130,7 +34137,7 @@
|
|
|
34130
34137
|
shift: 225
|
|
34131
34138
|
}[props.sliderTransition ?? 'shift'] ?? 225);
|
|
34132
34139
|
animate(nextEl, {
|
|
34133
|
-
backgroundColor: [color,
|
|
34140
|
+
backgroundColor: [color, color],
|
|
34134
34141
|
...keyframes(nextEl, prevEl)
|
|
34135
34142
|
}, {
|
|
34136
34143
|
duration,
|
|
@@ -34144,7 +34151,9 @@
|
|
|
34144
34151
|
"symbol": VTabsSymbol,
|
|
34145
34152
|
"ref": rootEl,
|
|
34146
34153
|
"class": ['v-tab', props.class, isSelected.value && props.inset ? insetColorClasses.value : []],
|
|
34147
|
-
"style": [props.style, isSelected.value && props.inset ? insetColorStyles.value : []
|
|
34154
|
+
"style": [props.style, isSelected.value && props.inset ? insetColorStyles.value : [], {
|
|
34155
|
+
backgroundColor: isSelected.value && props.inset ? 'transparent !important' : undefined
|
|
34156
|
+
}],
|
|
34148
34157
|
"tabindex": isSelected.value ? 0 : -1,
|
|
34149
34158
|
"role": "tab",
|
|
34150
34159
|
"aria-selected": String(isSelected.value),
|
|
@@ -34157,8 +34166,8 @@
|
|
|
34157
34166
|
...slots,
|
|
34158
34167
|
default: () => vue.createElementVNode(vue.Fragment, null, [slots.default?.() ?? props.text, !props.hideSlider && vue.createElementVNode("div", {
|
|
34159
34168
|
"ref": sliderEl,
|
|
34160
|
-
"class": vue.normalizeClass(['v-tab__slider', sliderColorClasses.value]),
|
|
34161
|
-
"style": vue.normalizeStyle(sliderColorStyles.value)
|
|
34169
|
+
"class": vue.normalizeClass(['v-tab__slider', props.inset ? insetColorClasses.value : sliderColorClasses.value]),
|
|
34170
|
+
"style": vue.normalizeStyle([sliderColorStyles.value, props.inset ? insetColorStyles.value : sliderColorClasses.value])
|
|
34162
34171
|
}, null)])
|
|
34163
34172
|
});
|
|
34164
34173
|
});
|
|
@@ -37036,7 +37045,7 @@
|
|
|
37036
37045
|
};
|
|
37037
37046
|
});
|
|
37038
37047
|
}
|
|
37039
|
-
const version$1 = "3.11.8-dev.2026-02-
|
|
37048
|
+
const version$1 = "3.11.8-dev.2026-02-12";
|
|
37040
37049
|
createVuetify$1.version = version$1;
|
|
37041
37050
|
|
|
37042
37051
|
// Vue's inject() can only be used in setup
|
|
@@ -37061,7 +37070,7 @@
|
|
|
37061
37070
|
...options
|
|
37062
37071
|
});
|
|
37063
37072
|
};
|
|
37064
|
-
const version = "3.11.8-dev.2026-02-
|
|
37073
|
+
const version = "3.11.8-dev.2026-02-12";
|
|
37065
37074
|
createVuetify.version = version;
|
|
37066
37075
|
|
|
37067
37076
|
exports.blueprints = index;
|