@vuetify/nightly 3.9.3-master.2025-08-02 → 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 +8 -3
- package/dist/json/attributes.json +4001 -3997
- package/dist/json/importMap-labs.json +32 -32
- package/dist/json/importMap.json +158 -158
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +6836 -6827
- package/dist/vuetify-labs.cjs +22 -14
- package/dist/vuetify-labs.css +3841 -3840
- package/dist/vuetify-labs.d.ts +63 -58
- package/dist/vuetify-labs.esm.js +22 -14
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +22 -14
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +18 -13
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3353 -3352
- package/dist/vuetify.d.ts +58 -58
- package/dist/vuetify.esm.js +18 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +18 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +461 -460
- 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 +58 -58
- 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/lib/labs/rules/rules.d.ts +10 -3
- package/lib/labs/rules/rules.js +13 -5
- package/lib/labs/rules/rules.js.map +1 -1
- 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
|
*/
|
@@ -7100,9 +7100,14 @@
|
|
7100
7100
|
// Utilities
|
7101
7101
|
const RulesSymbol = Symbol.for('vuetify:rules');
|
7102
7102
|
function useRules(fn) {
|
7103
|
-
const
|
7104
|
-
if (!
|
7105
|
-
|
7103
|
+
const rules = vue.inject(RulesSymbol, null);
|
7104
|
+
if (!fn) {
|
7105
|
+
if (!rules) {
|
7106
|
+
throw new Error('Could not find Vuetify rules injection');
|
7107
|
+
}
|
7108
|
+
return rules.aliases;
|
7109
|
+
}
|
7110
|
+
return rules?.resolve(fn) ?? vue.toRef(fn);
|
7106
7111
|
}
|
7107
7112
|
|
7108
7113
|
// Composables
|
@@ -10928,11 +10933,11 @@
|
|
10928
10933
|
function onScroll(e) {
|
10929
10934
|
data.isActive.value = false;
|
10930
10935
|
}
|
10931
|
-
bindScroll(data.target.value
|
10936
|
+
bindScroll(getTargetEl(data.target.value, data.contentEl.value), onScroll);
|
10932
10937
|
}
|
10933
10938
|
function blockScrollStrategy(data, props) {
|
10934
10939
|
const offsetParent = data.root.value?.offsetParent;
|
10935
|
-
const target =
|
10940
|
+
const target = getTargetEl(data.target.value, data.contentEl.value);
|
10936
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'));
|
10937
10942
|
const scrollbarWidth = window.innerWidth - document.documentElement.offsetWidth;
|
10938
10943
|
const scrollableParent = (el => hasScrollbar(el) && el)(offsetParent || document.documentElement);
|
@@ -10980,7 +10985,7 @@
|
|
10980
10985
|
}
|
10981
10986
|
ric = (typeof requestIdleCallback === 'undefined' ? cb => cb() : requestIdleCallback)(() => {
|
10982
10987
|
scope.run(() => {
|
10983
|
-
bindScroll(data.target.value
|
10988
|
+
bindScroll(getTargetEl(data.target.value, data.contentEl.value), e => {
|
10984
10989
|
if (slow) {
|
10985
10990
|
// If the position calculation is slow,
|
10986
10991
|
// defer updates until scrolling is finished.
|
@@ -11003,10 +11008,10 @@
|
|
11003
11008
|
cancelAnimationFrame(raf);
|
11004
11009
|
});
|
11005
11010
|
}
|
11006
|
-
|
11007
|
-
|
11008
|
-
|
11009
|
-
|
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) {
|
11010
11015
|
const scrollElements = [document, ...getScrollParents(el)];
|
11011
11016
|
scrollElements.forEach(el => {
|
11012
11017
|
el.addEventListener('scroll', onScroll, {
|
@@ -34452,6 +34457,7 @@
|
|
34452
34457
|
|
34453
34458
|
const allowedVariants = ['background', 'player'];
|
34454
34459
|
const makeVVideoProps = propsFactory({
|
34460
|
+
aspectRatio: [String, Number],
|
34455
34461
|
autoplay: Boolean,
|
34456
34462
|
muted: Boolean,
|
34457
34463
|
eager: Boolean,
|
@@ -34768,7 +34774,9 @@
|
|
34768
34774
|
"class": vue.normalizeClass(['v-video', `v-video--variant-${props.variant}`, `v-video--${state.value}`, {
|
34769
34775
|
'v-video--playing': playing.value
|
34770
34776
|
}, themeClasses.value, densityClasses.value, roundedContainerClasses.value, props.class]),
|
34771
|
-
"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]),
|
34772
34780
|
"onKeydown": onKeydown,
|
34773
34781
|
"onClick": onClick
|
34774
34782
|
}, [vue.createElementVNode("div", {
|
@@ -35282,7 +35290,7 @@
|
|
35282
35290
|
};
|
35283
35291
|
});
|
35284
35292
|
}
|
35285
|
-
const version$1 = "3.9.3-master.2025-08-
|
35293
|
+
const version$1 = "3.9.3-master.2025-08-04";
|
35286
35294
|
createVuetify$1.version = version$1;
|
35287
35295
|
|
35288
35296
|
// Vue's inject() can only be used in setup
|
@@ -35580,7 +35588,7 @@
|
|
35580
35588
|
|
35581
35589
|
/* eslint-disable local-rules/sort-imports */
|
35582
35590
|
|
35583
|
-
const version = "3.9.3-master.2025-08-
|
35591
|
+
const version = "3.9.3-master.2025-08-04";
|
35584
35592
|
|
35585
35593
|
/* eslint-disable local-rules/sort-imports */
|
35586
35594
|
|