@vuetify/nightly 3.6.3-dev.2024-05-06 → 3.6.3-dev.2024-05-14
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 +3 -2
- package/dist/json/attributes.json +16 -0
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +138 -138
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +37 -1
- package/dist/vuetify-labs.css +2041 -2041
- package/dist/vuetify-labs.d.ts +111 -75
- package/dist/vuetify-labs.esm.js +6 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +994 -994
- package/dist/vuetify.d.ts +144 -108
- package/dist/vuetify.esm.js +6 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +7 -7
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -0
- package/lib/components/VAutocomplete/index.d.mts +12 -12
- package/lib/components/VBreadcrumbs/index.d.mts +8 -8
- package/lib/components/VBtn/VBtn.mjs +3 -1
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VBtn/index.d.mts +6 -0
- package/lib/components/VCombobox/index.d.mts +12 -12
- package/lib/components/VFab/index.d.mts +6 -0
- package/lib/components/VList/index.d.mts +12 -12
- package/lib/components/VSelect/index.d.mts +12 -12
- package/lib/components/VTabs/index.d.mts +21 -3
- package/lib/components/index.d.mts +95 -59
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +49 -49
- package/lib/labs/VTreeview/index.d.mts +16 -16
- package/lib/labs/components.d.mts +16 -16
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.6.3-dev.2024-05-
|
2
|
+
* Vuetify v3.6.3-dev.2024-05-14
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -5474,6 +5474,7 @@
|
|
5474
5474
|
type: Boolean,
|
5475
5475
|
default: undefined
|
5476
5476
|
},
|
5477
|
+
activeColor: String,
|
5477
5478
|
baseColor: String,
|
5478
5479
|
symbol: {
|
5479
5480
|
type: null,
|
@@ -5565,10 +5566,11 @@
|
|
5565
5566
|
}
|
5566
5567
|
return group?.isSelected.value;
|
5567
5568
|
});
|
5569
|
+
const color = vue.computed(() => isActive.value ? props.activeColor ?? props.color : props.color);
|
5568
5570
|
const variantProps = vue.computed(() => {
|
5569
5571
|
const showColor = group?.isSelected.value && (!link.isLink.value || link.isActive?.value) || !group || link.isActive?.value;
|
5570
5572
|
return {
|
5571
|
-
color: showColor ?
|
5573
|
+
color: showColor ? color.value ?? props.baseColor : props.baseColor,
|
5572
5574
|
variant: props.variant
|
5573
5575
|
};
|
5574
5576
|
});
|
@@ -29770,7 +29772,7 @@
|
|
29770
29772
|
goTo
|
29771
29773
|
};
|
29772
29774
|
}
|
29773
|
-
const version$1 = "3.6.3-dev.2024-05-
|
29775
|
+
const version$1 = "3.6.3-dev.2024-05-14";
|
29774
29776
|
createVuetify$1.version = version$1;
|
29775
29777
|
|
29776
29778
|
// Vue's inject() can only be used in setup
|
@@ -30023,7 +30025,7 @@
|
|
30023
30025
|
|
30024
30026
|
/* eslint-disable local-rules/sort-imports */
|
30025
30027
|
|
30026
|
-
const version = "3.6.3-dev.2024-05-
|
30028
|
+
const version = "3.6.3-dev.2024-05-14";
|
30027
30029
|
|
30028
30030
|
/* eslint-disable local-rules/sort-imports */
|
30029
30031
|
|