@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-labs.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
|
*/
|
@@ -26507,6 +26507,7 @@
|
|
26507
26507
|
},
|
26508
26508
|
setup(props, _ref) {
|
26509
26509
|
let {
|
26510
|
+
attrs,
|
26510
26511
|
slots
|
26511
26512
|
} = _ref;
|
26512
26513
|
const model = useProxiedModel(props, 'modelValue');
|
@@ -26518,6 +26519,9 @@
|
|
26518
26519
|
backgroundColorClasses,
|
26519
26520
|
backgroundColorStyles
|
26520
26521
|
} = useBackgroundColor(vue.toRef(props, 'bgColor'));
|
26522
|
+
const {
|
26523
|
+
scopeId
|
26524
|
+
} = useScopeId();
|
26521
26525
|
provideDefaults({
|
26522
26526
|
VTab: {
|
26523
26527
|
color: vue.toRef(props, 'color'),
|
@@ -26544,7 +26548,7 @@
|
|
26544
26548
|
}, backgroundColorStyles.value, props.style],
|
26545
26549
|
"role": "tablist",
|
26546
26550
|
"symbol": VTabsSymbol
|
26547
|
-
}), {
|
26551
|
+
}, scopeId, attrs), {
|
26548
26552
|
default: () => [slots.default?.() ?? items.value.map(item => slots.tab?.({
|
26549
26553
|
item
|
26550
26554
|
}) ?? vue.createVNode(VTab, vue.mergeProps(item, {
|
@@ -26555,11 +26559,11 @@
|
|
26555
26559
|
item
|
26556
26560
|
})
|
26557
26561
|
}))]
|
26558
|
-
}), hasWindow && vue.createVNode(VTabsWindow, {
|
26562
|
+
}), hasWindow && vue.createVNode(VTabsWindow, vue.mergeProps({
|
26559
26563
|
"modelValue": model.value,
|
26560
26564
|
"onUpdate:modelValue": $event => model.value = $event,
|
26561
26565
|
"key": "tabs-window"
|
26562
|
-
}, {
|
26566
|
+
}, scopeId), {
|
26563
26567
|
default: () => [items.value.map(item => slots.item?.({
|
26564
26568
|
item
|
26565
26569
|
}) ?? vue.createVNode(VTabsWindowItem, {
|
@@ -29768,7 +29772,7 @@
|
|
29768
29772
|
goTo
|
29769
29773
|
};
|
29770
29774
|
}
|
29771
|
-
const version$1 = "3.6.3-master.2024-05-
|
29775
|
+
const version$1 = "3.6.3-master.2024-05-06";
|
29772
29776
|
createVuetify$1.version = version$1;
|
29773
29777
|
|
29774
29778
|
// Vue's inject() can only be used in setup
|
@@ -30021,7 +30025,7 @@
|
|
30021
30025
|
|
30022
30026
|
/* eslint-disable local-rules/sort-imports */
|
30023
30027
|
|
30024
|
-
const version = "3.6.3-master.2024-05-
|
30028
|
+
const version = "3.6.3-master.2024-05-06";
|
30025
30029
|
|
30026
30030
|
/* eslint-disable local-rules/sort-imports */
|
30027
30031
|
|