@vuetify/nightly 3.7.11-master.2025-02-08 → 3.7.11-master.2025-02-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/CHANGELOG.md +8 -4
- package/dist/json/attributes.json +1459 -1471
- package/dist/json/importMap-labs.json +34 -34
- package/dist/json/importMap.json +256 -256
- package/dist/json/tags.json +0 -3
- package/dist/json/web-types.json +2831 -2858
- package/dist/vuetify-labs.css +5299 -5298
- package/dist/vuetify-labs.d.ts +20 -38
- package/dist/vuetify-labs.esm.js +33 -20
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +33 -20
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4586 -4585
- package/dist/vuetify.d.ts +63 -75
- package/dist/vuetify.esm.js +31 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +31 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +17 -12
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +2 -2
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +12 -24
- package/lib/components/VOverlay/VOverlay.css +2 -1
- package/lib/components/VOverlay/VOverlay.sass +2 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VSlider/slider.mjs +25 -12
- package/lib/components/VSlider/slider.mjs.map +1 -1
- package/lib/components/index.d.mts +12 -24
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/list-items.mjs +3 -3
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +51 -51
- package/lib/labs/VDateInput/VDateInput.mjs +2 -2
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +8 -14
- package/lib/labs/components.d.mts +8 -14
- package/package.json +3 -3
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.11-master.2025-02-
|
2
|
+
* Vuetify v3.7.11-master.2025-02-11
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -9637,7 +9637,7 @@
|
|
9637
9637
|
};
|
9638
9638
|
}
|
9639
9639
|
function transformItems$3(props, items) {
|
9640
|
-
const _props =
|
9640
|
+
const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'returnObject', 'valueComparator']);
|
9641
9641
|
const array = [];
|
9642
9642
|
for (const item of items) {
|
9643
9643
|
array.push(transformItem$3(_props, item));
|
@@ -9680,7 +9680,7 @@
|
|
9680
9680
|
const _returnObject = props.returnObject;
|
9681
9681
|
const hasValueComparator = !!props.valueComparator;
|
9682
9682
|
const valueComparator = props.valueComparator || deepEqual;
|
9683
|
-
const _props =
|
9683
|
+
const _props = pick(props, ['itemTitle', 'itemValue', 'itemChildren', 'itemProps', 'returnObject', 'valueComparator']);
|
9684
9684
|
const returnValue = [];
|
9685
9685
|
main: for (const v of _value) {
|
9686
9686
|
// When the model value is null, return an InternalItem
|
@@ -15827,6 +15827,8 @@
|
|
15827
15827
|
const trackContainerRef = vue.ref();
|
15828
15828
|
const activeThumbRef = vue.ref();
|
15829
15829
|
function parseMouseMove(e) {
|
15830
|
+
const el = trackContainerRef.value?.$el;
|
15831
|
+
if (!el) return;
|
15830
15832
|
const vertical = props.direction === 'vertical';
|
15831
15833
|
const start = vertical ? 'top' : 'left';
|
15832
15834
|
const length = vertical ? 'height' : 'width';
|
@@ -15834,7 +15836,7 @@
|
|
15834
15836
|
const {
|
15835
15837
|
[start]: trackStart,
|
15836
15838
|
[length]: trackLength
|
15837
|
-
} =
|
15839
|
+
} = el.getBoundingClientRect();
|
15838
15840
|
const clickOffset = getPosition(e, position);
|
15839
15841
|
|
15840
15842
|
// It is possible for left to be NaN, force to number
|
@@ -15843,13 +15845,17 @@
|
|
15843
15845
|
return roundValue(min.value + clickPos * (max.value - min.value));
|
15844
15846
|
}
|
15845
15847
|
const handleStop = e => {
|
15846
|
-
|
15847
|
-
|
15848
|
-
|
15848
|
+
const value = parseMouseMove(e);
|
15849
|
+
if (value != null) {
|
15850
|
+
onSliderEnd({
|
15851
|
+
value
|
15852
|
+
});
|
15853
|
+
}
|
15849
15854
|
mousePressed.value = false;
|
15850
15855
|
startOffset.value = 0;
|
15851
15856
|
};
|
15852
15857
|
const handleStart = e => {
|
15858
|
+
const value = parseMouseMove(e);
|
15853
15859
|
activeThumbRef.value = getActiveThumb(e);
|
15854
15860
|
if (!activeThumbRef.value) return;
|
15855
15861
|
mousePressed.value = true;
|
@@ -15857,13 +15863,17 @@
|
|
15857
15863
|
startOffset.value = getOffset(e, activeThumbRef.value, props.direction);
|
15858
15864
|
} else {
|
15859
15865
|
startOffset.value = 0;
|
15860
|
-
|
15861
|
-
|
15866
|
+
if (value != null) {
|
15867
|
+
onSliderMove({
|
15868
|
+
value
|
15869
|
+
});
|
15870
|
+
}
|
15871
|
+
}
|
15872
|
+
if (value != null) {
|
15873
|
+
onSliderStart({
|
15874
|
+
value
|
15862
15875
|
});
|
15863
15876
|
}
|
15864
|
-
onSliderStart({
|
15865
|
-
value: parseMouseMove(e)
|
15866
|
-
});
|
15867
15877
|
vue.nextTick(() => activeThumbRef.value?.focus());
|
15868
15878
|
};
|
15869
15879
|
const moveListenerOptions = {
|
@@ -15871,9 +15881,12 @@
|
|
15871
15881
|
capture: true
|
15872
15882
|
};
|
15873
15883
|
function onMouseMove(e) {
|
15874
|
-
|
15875
|
-
|
15876
|
-
|
15884
|
+
const value = parseMouseMove(e);
|
15885
|
+
if (value != null) {
|
15886
|
+
onSliderMove({
|
15887
|
+
value
|
15888
|
+
});
|
15889
|
+
}
|
15877
15890
|
}
|
15878
15891
|
function onSliderMouseUp(e) {
|
15879
15892
|
e.stopPropagation();
|
@@ -22006,7 +22019,7 @@
|
|
22006
22019
|
type: String,
|
22007
22020
|
default: 'picker-reverse-transition'
|
22008
22021
|
},
|
22009
|
-
...makeCalendarProps()
|
22022
|
+
...omit(makeCalendarProps(), ['displayValue'])
|
22010
22023
|
}, 'VDatePickerMonth');
|
22011
22024
|
const VDatePickerMonth = genericComponent()({
|
22012
22025
|
name: 'VDatePickerMonth',
|
@@ -28387,7 +28400,7 @@
|
|
28387
28400
|
goTo
|
28388
28401
|
};
|
28389
28402
|
}
|
28390
|
-
const version$1 = "3.7.11-master.2025-02-
|
28403
|
+
const version$1 = "3.7.11-master.2025-02-11";
|
28391
28404
|
createVuetify$1.version = version$1;
|
28392
28405
|
|
28393
28406
|
// Vue's inject() can only be used in setup
|
@@ -28412,7 +28425,7 @@
|
|
28412
28425
|
...options
|
28413
28426
|
});
|
28414
28427
|
};
|
28415
|
-
const version = "3.7.11-master.2025-02-
|
28428
|
+
const version = "3.7.11-master.2025-02-11";
|
28416
28429
|
createVuetify.version = version;
|
28417
28430
|
|
28418
28431
|
exports.blueprints = index;
|