@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.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,
|
@@ -26740,6 +26738,7 @@
|
|
26740
26738
|
},
|
26741
26739
|
setup(props, _ref) {
|
26742
26740
|
let {
|
26741
|
+
attrs,
|
26743
26742
|
slots
|
26744
26743
|
} = _ref;
|
26745
26744
|
const model = useProxiedModel(props, 'modelValue');
|
@@ -26751,6 +26750,9 @@
|
|
26751
26750
|
backgroundColorClasses,
|
26752
26751
|
backgroundColorStyles
|
26753
26752
|
} = useBackgroundColor(vue.toRef(props, 'bgColor'));
|
26753
|
+
const {
|
26754
|
+
scopeId
|
26755
|
+
} = useScopeId();
|
26754
26756
|
provideDefaults({
|
26755
26757
|
VTab: {
|
26756
26758
|
color: vue.toRef(props, 'color'),
|
@@ -26777,7 +26779,7 @@
|
|
26777
26779
|
}, backgroundColorStyles.value, props.style],
|
26778
26780
|
"role": "tablist",
|
26779
26781
|
"symbol": VTabsSymbol
|
26780
|
-
}), {
|
26782
|
+
}, scopeId, attrs), {
|
26781
26783
|
default: () => [slots.default?.() ?? items.value.map(item => slots.tab?.({
|
26782
26784
|
item
|
26783
26785
|
}) ?? vue.createVNode(VTab, vue.mergeProps(item, {
|
@@ -26788,11 +26790,11 @@
|
|
26788
26790
|
item
|
26789
26791
|
})
|
26790
26792
|
}))]
|
26791
|
-
}), hasWindow && vue.createVNode(VTabsWindow, {
|
26793
|
+
}), hasWindow && vue.createVNode(VTabsWindow, vue.mergeProps({
|
26792
26794
|
"modelValue": model.value,
|
26793
26795
|
"onUpdate:modelValue": $event => model.value = $event,
|
26794
26796
|
"key": "tabs-window"
|
26795
|
-
}, {
|
26797
|
+
}, scopeId), {
|
26796
26798
|
default: () => [items.value.map(item => slots.item?.({
|
26797
26799
|
item
|
26798
26800
|
}) ?? vue.createVNode(VTabsWindowItem, {
|
@@ -27928,7 +27930,7 @@
|
|
27928
27930
|
goTo
|
27929
27931
|
};
|
27930
27932
|
}
|
27931
|
-
const version$1 = "3.6.3-master.2024-05-
|
27933
|
+
const version$1 = "3.6.3-master.2024-05-07";
|
27932
27934
|
createVuetify$1.version = version$1;
|
27933
27935
|
|
27934
27936
|
// Vue's inject() can only be used in setup
|
@@ -27953,7 +27955,7 @@
|
|
27953
27955
|
...options
|
27954
27956
|
});
|
27955
27957
|
};
|
27956
|
-
const version = "3.6.3-master.2024-05-
|
27958
|
+
const version = "3.6.3-master.2024-05-07";
|
27957
27959
|
createVuetify.version = version;
|
27958
27960
|
|
27959
27961
|
exports.blueprints = index;
|