@vuetify/nightly 3.6.3-dev.2024-05-03 → 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 +8 -2
- package/dist/json/attributes.json +20 -0
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +144 -144
- package/dist/json/tags.json +5 -0
- package/dist/json/web-types.json +47 -1
- package/dist/vuetify-labs.css +2500 -2493
- package/dist/vuetify-labs.d.ts +117 -75
- package/dist/vuetify-labs.esm.js +11 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +475 -468
- package/dist/vuetify.d.ts +149 -107
- package/dist/vuetify.esm.js +11 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- 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/VAvatar/VAvatar.css +7 -0
- package/lib/components/VAvatar/VAvatar.mjs +6 -1
- package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
- package/lib/components/VAvatar/VAvatar.sass +1 -0
- package/lib/components/VAvatar/_variables.scss +13 -0
- package/lib/components/VAvatar/index.d.mts +6 -0
- 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 +101 -59
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +48 -48
- 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.esm.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
|
*/
|
@@ -5470,6 +5470,7 @@ const makeVBtnProps = propsFactory({
|
|
5470
5470
|
type: Boolean,
|
5471
5471
|
default: undefined
|
5472
5472
|
},
|
5473
|
+
activeColor: String,
|
5473
5474
|
baseColor: String,
|
5474
5475
|
symbol: {
|
5475
5476
|
type: null,
|
@@ -5561,10 +5562,11 @@ const VBtn = genericComponent()({
|
|
5561
5562
|
}
|
5562
5563
|
return group?.isSelected.value;
|
5563
5564
|
});
|
5565
|
+
const color = computed(() => isActive.value ? props.activeColor ?? props.color : props.color);
|
5564
5566
|
const variantProps = computed(() => {
|
5565
5567
|
const showColor = group?.isSelected.value && (!link.isLink.value || link.isActive?.value) || !group || link.isActive?.value;
|
5566
5568
|
return {
|
5567
|
-
color: showColor ?
|
5569
|
+
color: showColor ? color.value ?? props.baseColor : props.baseColor,
|
5568
5570
|
variant: props.variant
|
5569
5571
|
};
|
5570
5572
|
});
|
@@ -5905,6 +5907,7 @@ const makeVAvatarProps = propsFactory({
|
|
5905
5907
|
icon: IconValue,
|
5906
5908
|
image: String,
|
5907
5909
|
text: String,
|
5910
|
+
...makeBorderProps(),
|
5908
5911
|
...makeComponentProps(),
|
5909
5912
|
...makeDensityProps(),
|
5910
5913
|
...makeRoundedProps(),
|
@@ -5925,6 +5928,9 @@ const VAvatar = genericComponent()({
|
|
5925
5928
|
const {
|
5926
5929
|
themeClasses
|
5927
5930
|
} = provideTheme(props);
|
5931
|
+
const {
|
5932
|
+
borderClasses
|
5933
|
+
} = useBorder(props);
|
5928
5934
|
const {
|
5929
5935
|
colorClasses,
|
5930
5936
|
colorStyles,
|
@@ -5944,7 +5950,7 @@ const VAvatar = genericComponent()({
|
|
5944
5950
|
"class": ['v-avatar', {
|
5945
5951
|
'v-avatar--start': props.start,
|
5946
5952
|
'v-avatar--end': props.end
|
5947
|
-
}, themeClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
|
5953
|
+
}, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
|
5948
5954
|
"style": [colorStyles.value, sizeStyles.value, props.style]
|
5949
5955
|
}, {
|
5950
5956
|
default: () => [!slots.default ? props.image ? createVNode(VImg, {
|
@@ -29762,7 +29768,7 @@ function createVuetify$1() {
|
|
29762
29768
|
goTo
|
29763
29769
|
};
|
29764
29770
|
}
|
29765
|
-
const version$1 = "3.6.3-dev.2024-05-
|
29771
|
+
const version$1 = "3.6.3-dev.2024-05-14";
|
29766
29772
|
createVuetify$1.version = version$1;
|
29767
29773
|
|
29768
29774
|
// Vue's inject() can only be used in setup
|
@@ -30015,7 +30021,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
30015
30021
|
|
30016
30022
|
/* eslint-disable local-rules/sort-imports */
|
30017
30023
|
|
30018
|
-
const version = "3.6.3-dev.2024-05-
|
30024
|
+
const version = "3.6.3-dev.2024-05-14";
|
30019
30025
|
|
30020
30026
|
/* eslint-disable local-rules/sort-imports */
|
30021
30027
|
|