@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.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
|
*/
|
@@ -12301,6 +12301,7 @@
|
|
12301
12301
|
}
|
12302
12302
|
}
|
12303
12303
|
});
|
12304
|
+
let scrollTimeout = -1;
|
12304
12305
|
function handleScroll() {
|
12305
12306
|
if (!containerRef.value || !markerRef.value) return;
|
12306
12307
|
const scrollTop = containerRef.value.scrollTop;
|
@@ -12317,12 +12318,15 @@
|
|
12317
12318
|
}
|
12318
12319
|
lastScrollTop = scrollTop;
|
12319
12320
|
lastScrollTime = scrollTime;
|
12321
|
+
window.clearTimeout(scrollTimeout);
|
12322
|
+
scrollTimeout = window.setTimeout(handleScrollend, 500);
|
12320
12323
|
calculateVisibleItems();
|
12321
12324
|
}
|
12322
12325
|
function handleScrollend() {
|
12323
12326
|
if (!containerRef.value || !markerRef.value) return;
|
12324
12327
|
scrollVelocity = 0;
|
12325
12328
|
lastScrollTime = 0;
|
12329
|
+
window.clearTimeout(scrollTimeout);
|
12326
12330
|
calculateVisibleItems();
|
12327
12331
|
}
|
12328
12332
|
let raf = -1;
|
@@ -25093,7 +25097,7 @@
|
|
25093
25097
|
// the thumbs are on top of each other
|
25094
25098
|
// and they are both at minimum value
|
25095
25099
|
// but only if focused from outside.
|
25096
|
-
if (model.value[0] === model.value[1] && model.value[1] === min.value && e.relatedTarget !== stopThumbRef.value?.$el) {
|
25100
|
+
if (max.value !== min.value && model.value[0] === model.value[1] && model.value[1] === min.value && e.relatedTarget !== stopThumbRef.value?.$el) {
|
25097
25101
|
startThumbRef.value?.$el.blur();
|
25098
25102
|
stopThumbRef.value?.$el.focus();
|
25099
25103
|
}
|
@@ -25122,7 +25126,7 @@
|
|
25122
25126
|
// the thumbs are on top of each other
|
25123
25127
|
// and they are both at maximum value
|
25124
25128
|
// but only if focused from outside.
|
25125
|
-
if (model.value[0] === model.value[1] && model.value[0] === max.value && e.relatedTarget !== startThumbRef.value?.$el) {
|
25129
|
+
if (max.value !== min.value && model.value[0] === model.value[1] && model.value[0] === max.value && e.relatedTarget !== startThumbRef.value?.$el) {
|
25126
25130
|
stopThumbRef.value?.$el.blur();
|
25127
25131
|
startThumbRef.value?.$el.focus();
|
25128
25132
|
}
|
@@ -28266,7 +28270,7 @@
|
|
28266
28270
|
goTo
|
28267
28271
|
};
|
28268
28272
|
}
|
28269
|
-
const version$1 = "3.7.5-master.2024-12-
|
28273
|
+
const version$1 = "3.7.5-master.2024-12-11";
|
28270
28274
|
createVuetify$1.version = version$1;
|
28271
28275
|
|
28272
28276
|
// Vue's inject() can only be used in setup
|
@@ -28291,7 +28295,7 @@
|
|
28291
28295
|
...options
|
28292
28296
|
});
|
28293
28297
|
};
|
28294
|
-
const version = "3.7.5-master.2024-12-
|
28298
|
+
const version = "3.7.5-master.2024-12-11";
|
28295
28299
|
createVuetify.version = version;
|
28296
28300
|
|
28297
28301
|
exports.blueprints = index;
|