@vuetify/nightly 3.7.5-master.2024-12-03 → 3.7.5-master.2024-12-11
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/dist/json/attributes.json +3131 -3131
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +5557 -5557
- package/dist/vuetify-labs.css +4449 -4451
- package/dist/vuetify-labs.esm.js +9 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +9 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1291 -1293
- package/dist/vuetify.d.ts +56 -56
- package/dist/vuetify.esm.js +9 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +9 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +12 -11
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VRangeSlider/VRangeSlider.mjs +2 -2
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.css +1 -3
- package/lib/components/VSelectionControl/VSelectionControl.sass +1 -5
- package/lib/composables/virtual.mjs +4 -0
- package/lib/composables/virtual.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +56 -56
- package/package.json +1 -1
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.5-master.2024-12-
|
2
|
+
* Vuetify v3.7.5-master.2024-12-11
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -12064,6 +12064,7 @@ function useVirtual(props, items) {
|
|
12064
12064
|
}
|
12065
12065
|
}
|
12066
12066
|
});
|
12067
|
+
let scrollTimeout = -1;
|
12067
12068
|
function handleScroll() {
|
12068
12069
|
if (!containerRef.value || !markerRef.value) return;
|
12069
12070
|
const scrollTop = containerRef.value.scrollTop;
|
@@ -12080,12 +12081,15 @@ function useVirtual(props, items) {
|
|
12080
12081
|
}
|
12081
12082
|
lastScrollTop = scrollTop;
|
12082
12083
|
lastScrollTime = scrollTime;
|
12084
|
+
window.clearTimeout(scrollTimeout);
|
12085
|
+
scrollTimeout = window.setTimeout(handleScrollend, 500);
|
12083
12086
|
calculateVisibleItems();
|
12084
12087
|
}
|
12085
12088
|
function handleScrollend() {
|
12086
12089
|
if (!containerRef.value || !markerRef.value) return;
|
12087
12090
|
scrollVelocity = 0;
|
12088
12091
|
lastScrollTime = 0;
|
12092
|
+
window.clearTimeout(scrollTimeout);
|
12089
12093
|
calculateVisibleItems();
|
12090
12094
|
}
|
12091
12095
|
let raf = -1;
|
@@ -24856,7 +24860,7 @@ const VRangeSlider = genericComponent()({
|
|
24856
24860
|
// the thumbs are on top of each other
|
24857
24861
|
// and they are both at minimum value
|
24858
24862
|
// but only if focused from outside.
|
24859
|
-
if (model.value[0] === model.value[1] && model.value[1] === min.value && e.relatedTarget !== stopThumbRef.value?.$el) {
|
24863
|
+
if (max.value !== min.value && model.value[0] === model.value[1] && model.value[1] === min.value && e.relatedTarget !== stopThumbRef.value?.$el) {
|
24860
24864
|
startThumbRef.value?.$el.blur();
|
24861
24865
|
stopThumbRef.value?.$el.focus();
|
24862
24866
|
}
|
@@ -24885,7 +24889,7 @@ const VRangeSlider = genericComponent()({
|
|
24885
24889
|
// the thumbs are on top of each other
|
24886
24890
|
// and they are both at maximum value
|
24887
24891
|
// but only if focused from outside.
|
24888
|
-
if (model.value[0] === model.value[1] && model.value[0] === max.value && e.relatedTarget !== startThumbRef.value?.$el) {
|
24892
|
+
if (max.value !== min.value && model.value[0] === model.value[1] && model.value[0] === max.value && e.relatedTarget !== startThumbRef.value?.$el) {
|
24889
24893
|
stopThumbRef.value?.$el.blur();
|
24890
24894
|
startThumbRef.value?.$el.focus();
|
24891
24895
|
}
|
@@ -30406,7 +30410,7 @@ function createVuetify$1() {
|
|
30406
30410
|
goTo
|
30407
30411
|
};
|
30408
30412
|
}
|
30409
|
-
const version$1 = "3.7.5-master.2024-12-
|
30413
|
+
const version$1 = "3.7.5-master.2024-12-11";
|
30410
30414
|
createVuetify$1.version = version$1;
|
30411
30415
|
|
30412
30416
|
// Vue's inject() can only be used in setup
|
@@ -30659,7 +30663,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
30659
30663
|
|
30660
30664
|
/* eslint-disable local-rules/sort-imports */
|
30661
30665
|
|
30662
|
-
const version = "3.7.5-master.2024-12-
|
30666
|
+
const version = "3.7.5-master.2024-12-11";
|
30663
30667
|
|
30664
30668
|
/* eslint-disable local-rules/sort-imports */
|
30665
30669
|
|