@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.esm.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
|
*/
|
@@ -1222,7 +1222,7 @@ function propsFactory(props, source) {
|
|
1222
1222
|
|
1223
1223
|
// Composables
|
1224
1224
|
const makeComponentProps = propsFactory({
|
1225
|
-
class: [String, Array],
|
1225
|
+
class: [String, Array, Object],
|
1226
1226
|
style: {
|
1227
1227
|
type: [String, Array, Object],
|
1228
1228
|
default: null
|
@@ -3441,7 +3441,7 @@ function useAspectStyles(props) {
|
|
3441
3441
|
}
|
3442
3442
|
const makeVResponsiveProps = propsFactory({
|
3443
3443
|
aspectRatio: [String, Number],
|
3444
|
-
contentClass:
|
3444
|
+
contentClass: null,
|
3445
3445
|
inline: Boolean,
|
3446
3446
|
...makeComponentProps(),
|
3447
3447
|
...makeDimensionProps()
|
@@ -8988,7 +8988,7 @@ const makeVListItemProps = propsFactory({
|
|
8988
8988
|
appendIcon: IconValue,
|
8989
8989
|
baseColor: String,
|
8990
8990
|
disabled: Boolean,
|
8991
|
-
lines: String,
|
8991
|
+
lines: [Boolean, String],
|
8992
8992
|
link: {
|
8993
8993
|
type: Boolean,
|
8994
8994
|
default: undefined
|
@@ -9099,8 +9099,9 @@ const VListItem = genericComponent()({
|
|
9099
9099
|
}));
|
9100
9100
|
function onClick(e) {
|
9101
9101
|
emit('click', e);
|
9102
|
-
if (
|
9102
|
+
if (!isClickable.value) return;
|
9103
9103
|
link.navigate?.(e);
|
9104
|
+
if (isGroupActivator) return;
|
9104
9105
|
if (root.activatable.value) {
|
9105
9106
|
activate(!isActivated.value, e);
|
9106
9107
|
} else if (root.selectable.value) {
|
@@ -10914,10 +10915,7 @@ const makeVOverlayProps = propsFactory({
|
|
10914
10915
|
disabled: Boolean,
|
10915
10916
|
opacity: [Number, String],
|
10916
10917
|
noClickAnimation: Boolean,
|
10917
|
-
modelValue:
|
10918
|
-
type: Boolean,
|
10919
|
-
default: null
|
10920
|
-
},
|
10918
|
+
modelValue: Boolean,
|
10921
10919
|
persistent: Boolean,
|
10922
10920
|
scrim: {
|
10923
10921
|
type: [Boolean, String],
|
@@ -10960,7 +10958,7 @@ const VOverlay = genericComponent()({
|
|
10960
10958
|
} = _ref;
|
10961
10959
|
const model = useProxiedModel(props, 'modelValue');
|
10962
10960
|
const isActive = computed({
|
10963
|
-
get: () =>
|
10961
|
+
get: () => model.value,
|
10964
10962
|
set: v => {
|
10965
10963
|
if (!(v && props.disabled)) model.value = v;
|
10966
10964
|
}
|
@@ -13197,7 +13195,7 @@ const VAutocomplete = genericComponent()({
|
|
13197
13195
|
select(displayItems.value[0]);
|
13198
13196
|
}
|
13199
13197
|
menu.value = false;
|
13200
|
-
search.value = '';
|
13198
|
+
if (props.multiple || hasSelectionSlot.value) search.value = '';
|
13201
13199
|
selectionIndex.value = -1;
|
13202
13200
|
}
|
13203
13201
|
});
|
@@ -22792,7 +22790,7 @@ const VFileInput = genericComponent()({
|
|
22792
22790
|
const {
|
22793
22791
|
t
|
22794
22792
|
} = useLocale();
|
22795
|
-
const model = useProxiedModel(props, 'modelValue', props.modelValue, val => wrapInArray(val), val => props.multiple || Array.isArray(props.modelValue) ? val : val[0]);
|
22793
|
+
const model = useProxiedModel(props, 'modelValue', props.modelValue, val => wrapInArray(val), val => props.multiple || Array.isArray(props.modelValue) ? val : val[0] ?? null);
|
22796
22794
|
const {
|
22797
22795
|
isFocused,
|
22798
22796
|
focus,
|
@@ -27928,7 +27926,7 @@ function createVuetify$1() {
|
|
27928
27926
|
goTo
|
27929
27927
|
};
|
27930
27928
|
}
|
27931
|
-
const version$1 = "3.6.3-master.2024-05-
|
27929
|
+
const version$1 = "3.6.3-master.2024-05-07";
|
27932
27930
|
createVuetify$1.version = version$1;
|
27933
27931
|
|
27934
27932
|
// Vue's inject() can only be used in setup
|
@@ -27953,7 +27951,7 @@ const createVuetify = function () {
|
|
27953
27951
|
...options
|
27954
27952
|
});
|
27955
27953
|
};
|
27956
|
-
const version = "3.6.3-master.2024-05-
|
27954
|
+
const version = "3.6.3-master.2024-05-07";
|
27957
27955
|
createVuetify.version = version;
|
27958
27956
|
|
27959
27957
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|