@vuetify/nightly 3.6.3-master.2024-05-05 → 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 +11 -2
- package/dist/json/attributes.json +148 -8
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +118 -118
- package/dist/json/tags.json +36 -1
- package/dist/json/web-types.json +436 -26
- package/dist/vuetify-labs.css +2038 -1778
- package/dist/vuetify-labs.d.ts +631 -317
- package/dist/vuetify-labs.esm.js +72 -92
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +72 -92
- package/dist/vuetify-labs.min.css +3 -3
- package/dist/vuetify.css +2396 -2136
- package/dist/vuetify.d.ts +276 -318
- package/dist/vuetify.esm.js +19 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +19 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +3 -3
- package/dist/vuetify.min.js +15 -15
- 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/VTabs/VTabs.mjs +8 -3
- package/lib/components/VTabs/VTabs.mjs.map +1 -1
- package/lib/components/VToolbar/VToolbar.css +5 -5
- package/lib/components/VToolbar/_variables.scss +3 -3
- 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 +40 -40
- 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/lib/styles/generic/_colors.scss +1 -0
- package/lib/styles/main.css +260 -0
- 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,
|
@@ -26736,6 +26734,7 @@ const VTabs = genericComponent()({
|
|
26736
26734
|
},
|
26737
26735
|
setup(props, _ref) {
|
26738
26736
|
let {
|
26737
|
+
attrs,
|
26739
26738
|
slots
|
26740
26739
|
} = _ref;
|
26741
26740
|
const model = useProxiedModel(props, 'modelValue');
|
@@ -26747,6 +26746,9 @@ const VTabs = genericComponent()({
|
|
26747
26746
|
backgroundColorClasses,
|
26748
26747
|
backgroundColorStyles
|
26749
26748
|
} = useBackgroundColor(toRef(props, 'bgColor'));
|
26749
|
+
const {
|
26750
|
+
scopeId
|
26751
|
+
} = useScopeId();
|
26750
26752
|
provideDefaults({
|
26751
26753
|
VTab: {
|
26752
26754
|
color: toRef(props, 'color'),
|
@@ -26773,7 +26775,7 @@ const VTabs = genericComponent()({
|
|
26773
26775
|
}, backgroundColorStyles.value, props.style],
|
26774
26776
|
"role": "tablist",
|
26775
26777
|
"symbol": VTabsSymbol
|
26776
|
-
}), {
|
26778
|
+
}, scopeId, attrs), {
|
26777
26779
|
default: () => [slots.default?.() ?? items.value.map(item => slots.tab?.({
|
26778
26780
|
item
|
26779
26781
|
}) ?? createVNode(VTab, mergeProps(item, {
|
@@ -26784,11 +26786,11 @@ const VTabs = genericComponent()({
|
|
26784
26786
|
item
|
26785
26787
|
})
|
26786
26788
|
}))]
|
26787
|
-
}), hasWindow && createVNode(VTabsWindow, {
|
26789
|
+
}), hasWindow && createVNode(VTabsWindow, mergeProps({
|
26788
26790
|
"modelValue": model.value,
|
26789
26791
|
"onUpdate:modelValue": $event => model.value = $event,
|
26790
26792
|
"key": "tabs-window"
|
26791
|
-
}, {
|
26793
|
+
}, scopeId), {
|
26792
26794
|
default: () => [items.value.map(item => slots.item?.({
|
26793
26795
|
item
|
26794
26796
|
}) ?? createVNode(VTabsWindowItem, {
|
@@ -27924,7 +27926,7 @@ function createVuetify$1() {
|
|
27924
27926
|
goTo
|
27925
27927
|
};
|
27926
27928
|
}
|
27927
|
-
const version$1 = "3.6.3-master.2024-05-
|
27929
|
+
const version$1 = "3.6.3-master.2024-05-07";
|
27928
27930
|
createVuetify$1.version = version$1;
|
27929
27931
|
|
27930
27932
|
// Vue's inject() can only be used in setup
|
@@ -27949,7 +27951,7 @@ const createVuetify = function () {
|
|
27949
27951
|
...options
|
27950
27952
|
});
|
27951
27953
|
};
|
27952
|
-
const version = "3.6.3-master.2024-05-
|
27954
|
+
const version = "3.6.3-master.2024-05-07";
|
27953
27955
|
createVuetify.version = version;
|
27954
27956
|
|
27955
27957
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|