@vuetify/nightly 3.6.3-master.2024-05-05 → 3.6.3-master.2024-05-06
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 +5 -2
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +90 -90
- package/dist/json/web-types.json +4 -4
- package/dist/vuetify-labs.css +2336 -2076
- package/dist/vuetify-labs.esm.js +10 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -6
- package/dist/vuetify-labs.min.css +3 -3
- package/dist/vuetify.css +5953 -5693
- package/dist/vuetify.d.ts +30 -30
- package/dist/vuetify.esm.js +10 -6
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -6
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +3 -3
- package/dist/vuetify.min.js +7 -7
- package/dist/vuetify.min.js.map +1 -1
- 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/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +30 -30
- package/lib/styles/generic/_colors.scss +1 -0
- package/lib/styles/main.css +260 -0
- package/package.json +1 -1
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-06
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -26740,6 +26740,7 @@
|
|
26740
26740
|
},
|
26741
26741
|
setup(props, _ref) {
|
26742
26742
|
let {
|
26743
|
+
attrs,
|
26743
26744
|
slots
|
26744
26745
|
} = _ref;
|
26745
26746
|
const model = useProxiedModel(props, 'modelValue');
|
@@ -26751,6 +26752,9 @@
|
|
26751
26752
|
backgroundColorClasses,
|
26752
26753
|
backgroundColorStyles
|
26753
26754
|
} = useBackgroundColor(vue.toRef(props, 'bgColor'));
|
26755
|
+
const {
|
26756
|
+
scopeId
|
26757
|
+
} = useScopeId();
|
26754
26758
|
provideDefaults({
|
26755
26759
|
VTab: {
|
26756
26760
|
color: vue.toRef(props, 'color'),
|
@@ -26777,7 +26781,7 @@
|
|
26777
26781
|
}, backgroundColorStyles.value, props.style],
|
26778
26782
|
"role": "tablist",
|
26779
26783
|
"symbol": VTabsSymbol
|
26780
|
-
}), {
|
26784
|
+
}, scopeId, attrs), {
|
26781
26785
|
default: () => [slots.default?.() ?? items.value.map(item => slots.tab?.({
|
26782
26786
|
item
|
26783
26787
|
}) ?? vue.createVNode(VTab, vue.mergeProps(item, {
|
@@ -26788,11 +26792,11 @@
|
|
26788
26792
|
item
|
26789
26793
|
})
|
26790
26794
|
}))]
|
26791
|
-
}), hasWindow && vue.createVNode(VTabsWindow, {
|
26795
|
+
}), hasWindow && vue.createVNode(VTabsWindow, vue.mergeProps({
|
26792
26796
|
"modelValue": model.value,
|
26793
26797
|
"onUpdate:modelValue": $event => model.value = $event,
|
26794
26798
|
"key": "tabs-window"
|
26795
|
-
}, {
|
26799
|
+
}, scopeId), {
|
26796
26800
|
default: () => [items.value.map(item => slots.item?.({
|
26797
26801
|
item
|
26798
26802
|
}) ?? vue.createVNode(VTabsWindowItem, {
|
@@ -27928,7 +27932,7 @@
|
|
27928
27932
|
goTo
|
27929
27933
|
};
|
27930
27934
|
}
|
27931
|
-
const version$1 = "3.6.3-master.2024-05-
|
27935
|
+
const version$1 = "3.6.3-master.2024-05-06";
|
27932
27936
|
createVuetify$1.version = version$1;
|
27933
27937
|
|
27934
27938
|
// Vue's inject() can only be used in setup
|
@@ -27953,7 +27957,7 @@
|
|
27953
27957
|
...options
|
27954
27958
|
});
|
27955
27959
|
};
|
27956
|
-
const version = "3.6.3-master.2024-05-
|
27960
|
+
const version = "3.6.3-master.2024-05-06";
|
27957
27961
|
createVuetify.version = version;
|
27958
27962
|
|
27959
27963
|
exports.blueprints = index;
|