@vuetify/nightly 3.9.3-master.2025-08-03 → 3.9.3-master.2025-08-04
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 +3449 -3445
- package/dist/json/importMap-labs.json +50 -50
- package/dist/json/importMap.json +140 -140
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +6332 -6323
- package/dist/vuetify-labs.cjs +14 -11
- package/dist/vuetify-labs.css +3682 -3681
- package/dist/vuetify-labs.d.ts +65 -60
- package/dist/vuetify-labs.esm.js +14 -11
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +14 -11
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +10 -10
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4880 -4879
- package/dist/vuetify.d.ts +60 -60
- package/dist/vuetify.esm.js +10 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +459 -459
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VColorPicker/VColorPickerCanvas.css +1 -0
- package/lib/components/VColorPicker/VColorPickerCanvas.sass +1 -0
- package/lib/components/VOverlay/scrollStrategies.js +7 -7
- package/lib/components/VOverlay/scrollStrategies.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +60 -60
- package/lib/framework.js +1 -1
- package/lib/labs/VVideo/VVideo.css +3 -3
- package/lib/labs/VVideo/VVideo.d.ts +10 -0
- package/lib/labs/VVideo/VVideo.js +4 -1
- package/lib/labs/VVideo/VVideo.js.map +1 -1
- package/lib/labs/VVideo/VVideo.sass +2 -2
- package/lib/labs/VVideo/_variables.scss +3 -2
- package/package.json +1 -1
package/dist/vuetify-labs.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.3-master.2025-08-
|
2
|
+
* Vuetify v3.9.3-master.2025-08-04
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -10933,11 +10933,11 @@
|
|
10933
10933
|
function onScroll(e) {
|
10934
10934
|
data.isActive.value = false;
|
10935
10935
|
}
|
10936
|
-
bindScroll(data.target.value
|
10936
|
+
bindScroll(getTargetEl(data.target.value, data.contentEl.value), onScroll);
|
10937
10937
|
}
|
10938
10938
|
function blockScrollStrategy(data, props) {
|
10939
10939
|
const offsetParent = data.root.value?.offsetParent;
|
10940
|
-
const target =
|
10940
|
+
const target = getTargetEl(data.target.value, data.contentEl.value);
|
10941
10941
|
const scrollElements = [...new Set([...getScrollParents(target, props.contained ? offsetParent : undefined), ...getScrollParents(data.contentEl.value, props.contained ? offsetParent : undefined)])].filter(el => !el.classList.contains('v-overlay-scroll-blocked'));
|
10942
10942
|
const scrollbarWidth = window.innerWidth - document.documentElement.offsetWidth;
|
10943
10943
|
const scrollableParent = (el => hasScrollbar(el) && el)(offsetParent || document.documentElement);
|
@@ -10985,7 +10985,7 @@
|
|
10985
10985
|
}
|
10986
10986
|
ric = (typeof requestIdleCallback === 'undefined' ? cb => cb() : requestIdleCallback)(() => {
|
10987
10987
|
scope.run(() => {
|
10988
|
-
bindScroll(data.target.value
|
10988
|
+
bindScroll(getTargetEl(data.target.value, data.contentEl.value), e => {
|
10989
10989
|
if (slow) {
|
10990
10990
|
// If the position calculation is slow,
|
10991
10991
|
// defer updates until scrolling is finished.
|
@@ -11008,10 +11008,10 @@
|
|
11008
11008
|
cancelAnimationFrame(raf);
|
11009
11009
|
});
|
11010
11010
|
}
|
11011
|
-
|
11012
|
-
|
11013
|
-
|
11014
|
-
|
11011
|
+
function getTargetEl(target, contentEl) {
|
11012
|
+
return Array.isArray(target) ? document.elementsFromPoint(...target).find(el => !contentEl?.contains(el)) : target ?? contentEl;
|
11013
|
+
}
|
11014
|
+
function bindScroll(el, onScroll) {
|
11015
11015
|
const scrollElements = [document, ...getScrollParents(el)];
|
11016
11016
|
scrollElements.forEach(el => {
|
11017
11017
|
el.addEventListener('scroll', onScroll, {
|
@@ -34457,6 +34457,7 @@
|
|
34457
34457
|
|
34458
34458
|
const allowedVariants = ['background', 'player'];
|
34459
34459
|
const makeVVideoProps = propsFactory({
|
34460
|
+
aspectRatio: [String, Number],
|
34460
34461
|
autoplay: Boolean,
|
34461
34462
|
muted: Boolean,
|
34462
34463
|
eager: Boolean,
|
@@ -34773,7 +34774,9 @@
|
|
34773
34774
|
"class": vue.normalizeClass(['v-video', `v-video--variant-${props.variant}`, `v-video--${state.value}`, {
|
34774
34775
|
'v-video--playing': playing.value
|
34775
34776
|
}, themeClasses.value, densityClasses.value, roundedContainerClasses.value, props.class]),
|
34776
|
-
"style": vue.normalizeStyle([
|
34777
|
+
"style": vue.normalizeStyle([{
|
34778
|
+
'--v-video-aspect-ratio': props.aspectRatio
|
34779
|
+
}, props.variant === 'background' ? [] : pick(dimensionStyles.value, ['width', 'minWidth', 'maxWidth']), props.style]),
|
34777
34780
|
"onKeydown": onKeydown,
|
34778
34781
|
"onClick": onClick
|
34779
34782
|
}, [vue.createElementVNode("div", {
|
@@ -35287,7 +35290,7 @@
|
|
35287
35290
|
};
|
35288
35291
|
});
|
35289
35292
|
}
|
35290
|
-
const version$1 = "3.9.3-master.2025-08-
|
35293
|
+
const version$1 = "3.9.3-master.2025-08-04";
|
35291
35294
|
createVuetify$1.version = version$1;
|
35292
35295
|
|
35293
35296
|
// Vue's inject() can only be used in setup
|
@@ -35585,7 +35588,7 @@
|
|
35585
35588
|
|
35586
35589
|
/* eslint-disable local-rules/sort-imports */
|
35587
35590
|
|
35588
|
-
const version = "3.9.3-master.2025-08-
|
35591
|
+
const version = "3.9.3-master.2025-08-04";
|
35589
35592
|
|
35590
35593
|
/* eslint-disable local-rules/sort-imports */
|
35591
35594
|
|