@vuetify/nightly 3.6.3-master.2024-05-06 → 3.6.3-master.2024-05-07
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 -2
- package/dist/json/attributes.json +148 -8
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +112 -112
- package/dist/json/tags.json +36 -1
- package/dist/json/web-types.json +433 -23
- package/dist/vuetify-labs.css +1744 -1744
- package/dist/vuetify-labs.d.ts +631 -317
- package/dist/vuetify-labs.esm.js +65 -89
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +65 -89
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4507 -4507
- package/dist/vuetify.d.ts +273 -315
- package/dist/vuetify.esm.js +12 -14
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +12 -14
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +11 -11
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +18 -18
- package/lib/components/VBottomSheet/index.d.mts +9 -15
- package/lib/components/VCarousel/index.d.mts +6 -6
- package/lib/components/VCombobox/index.d.mts +18 -18
- package/lib/components/VDialog/index.d.mts +27 -33
- package/lib/components/VFileInput/VFileInput.mjs +1 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.mts +9 -9
- package/lib/components/VImg/index.d.mts +6 -6
- package/lib/components/VList/VListItem.mjs +3 -2
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +6 -6
- package/lib/components/VMenu/index.d.mts +27 -33
- package/lib/components/VOverlay/VOverlay.mjs +2 -5
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/VOverlay/index.d.mts +9 -15
- package/lib/components/VResponsive/VResponsive.mjs +1 -1
- package/lib/components/VResponsive/VResponsive.mjs.map +1 -1
- package/lib/components/VResponsive/index.d.mts +6 -6
- package/lib/components/VSelect/index.d.mts +18 -18
- package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/index.d.mts +41 -47
- package/lib/components/VSpeedDial/index.d.mts +9 -15
- package/lib/components/VTooltip/index.d.mts +27 -33
- package/lib/components/index.d.mts +236 -278
- package/lib/composables/component.mjs +1 -1
- package/lib/composables/component.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +37 -37
- package/lib/labs/VNumberInput/VNumberInput.mjs +57 -81
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/index.d.mts +402 -34
- package/lib/labs/VSnackbarQueue/index.d.mts +41 -47
- package/lib/labs/VTreeview/index.d.mts +6 -6
- package/lib/labs/components.d.mts +442 -86
- package/package.json +2 -2
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.3-master.2024-05-
|
2
|
+
* Vuetify v3.6.3-master.2024-05-07
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -1226,7 +1226,7 @@
|
|
1226
1226
|
|
1227
1227
|
// Composables
|
1228
1228
|
const makeComponentProps = propsFactory({
|
1229
|
-
class: [String, Array],
|
1229
|
+
class: [String, Array, Object],
|
1230
1230
|
style: {
|
1231
1231
|
type: [String, Array, Object],
|
1232
1232
|
default: null
|
@@ -3445,7 +3445,7 @@
|
|
3445
3445
|
}
|
3446
3446
|
const makeVResponsiveProps = propsFactory({
|
3447
3447
|
aspectRatio: [String, Number],
|
3448
|
-
contentClass:
|
3448
|
+
contentClass: null,
|
3449
3449
|
inline: Boolean,
|
3450
3450
|
...makeComponentProps(),
|
3451
3451
|
...makeDimensionProps()
|
@@ -8992,7 +8992,7 @@
|
|
8992
8992
|
appendIcon: IconValue,
|
8993
8993
|
baseColor: String,
|
8994
8994
|
disabled: Boolean,
|
8995
|
-
lines: String,
|
8995
|
+
lines: [Boolean, String],
|
8996
8996
|
link: {
|
8997
8997
|
type: Boolean,
|
8998
8998
|
default: undefined
|
@@ -9103,8 +9103,9 @@
|
|
9103
9103
|
}));
|
9104
9104
|
function onClick(e) {
|
9105
9105
|
emit('click', e);
|
9106
|
-
if (
|
9106
|
+
if (!isClickable.value) return;
|
9107
9107
|
link.navigate?.(e);
|
9108
|
+
if (isGroupActivator) return;
|
9108
9109
|
if (root.activatable.value) {
|
9109
9110
|
activate(!isActivated.value, e);
|
9110
9111
|
} else if (root.selectable.value) {
|
@@ -10918,10 +10919,7 @@
|
|
10918
10919
|
disabled: Boolean,
|
10919
10920
|
opacity: [Number, String],
|
10920
10921
|
noClickAnimation: Boolean,
|
10921
|
-
modelValue:
|
10922
|
-
type: Boolean,
|
10923
|
-
default: null
|
10924
|
-
},
|
10922
|
+
modelValue: Boolean,
|
10925
10923
|
persistent: Boolean,
|
10926
10924
|
scrim: {
|
10927
10925
|
type: [Boolean, String],
|
@@ -10964,7 +10962,7 @@
|
|
10964
10962
|
} = _ref;
|
10965
10963
|
const model = useProxiedModel(props, 'modelValue');
|
10966
10964
|
const isActive = vue.computed({
|
10967
|
-
get: () =>
|
10965
|
+
get: () => model.value,
|
10968
10966
|
set: v => {
|
10969
10967
|
if (!(v && props.disabled)) model.value = v;
|
10970
10968
|
}
|
@@ -13201,7 +13199,7 @@
|
|
13201
13199
|
select(displayItems.value[0]);
|
13202
13200
|
}
|
13203
13201
|
menu.value = false;
|
13204
|
-
search.value = '';
|
13202
|
+
if (props.multiple || hasSelectionSlot.value) search.value = '';
|
13205
13203
|
selectionIndex.value = -1;
|
13206
13204
|
}
|
13207
13205
|
});
|
@@ -22796,7 +22794,7 @@
|
|
22796
22794
|
const {
|
22797
22795
|
t
|
22798
22796
|
} = useLocale();
|
22799
|
-
const model = useProxiedModel(props, 'modelValue', props.modelValue, val => wrapInArray(val), val => props.multiple || Array.isArray(props.modelValue) ? val : val[0]);
|
22797
|
+
const model = useProxiedModel(props, 'modelValue', props.modelValue, val => wrapInArray(val), val => props.multiple || Array.isArray(props.modelValue) ? val : val[0] ?? null);
|
22800
22798
|
const {
|
22801
22799
|
isFocused,
|
22802
22800
|
focus,
|
@@ -27932,7 +27930,7 @@
|
|
27932
27930
|
goTo
|
27933
27931
|
};
|
27934
27932
|
}
|
27935
|
-
const version$1 = "3.6.3-master.2024-05-
|
27933
|
+
const version$1 = "3.6.3-master.2024-05-07";
|
27936
27934
|
createVuetify$1.version = version$1;
|
27937
27935
|
|
27938
27936
|
// Vue's inject() can only be used in setup
|
@@ -27957,7 +27955,7 @@
|
|
27957
27955
|
...options
|
27958
27956
|
});
|
27959
27957
|
};
|
27960
|
-
const version = "3.6.3-master.2024-05-
|
27958
|
+
const version = "3.6.3-master.2024-05-07";
|
27961
27959
|
createVuetify.version = version;
|
27962
27960
|
|
27963
27961
|
exports.blueprints = index;
|