@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.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
|
*/
|
@@ -5703,6 +5703,7 @@ const makeVBtnProps = propsFactory({
|
|
5703
5703
|
type: Boolean,
|
5704
5704
|
default: undefined
|
5705
5705
|
},
|
5706
|
+
activeColor: String,
|
5706
5707
|
baseColor: String,
|
5707
5708
|
symbol: {
|
5708
5709
|
type: null,
|
@@ -5794,10 +5795,11 @@ const VBtn = genericComponent()({
|
|
5794
5795
|
}
|
5795
5796
|
return group?.isSelected.value;
|
5796
5797
|
});
|
5798
|
+
const color = computed(() => isActive.value ? props.activeColor ?? props.color : props.color);
|
5797
5799
|
const variantProps = computed(() => {
|
5798
5800
|
const showColor = group?.isSelected.value && (!link.isLink.value || link.isActive?.value) || !group || link.isActive?.value;
|
5799
5801
|
return {
|
5800
|
-
color: showColor ?
|
5802
|
+
color: showColor ? color.value ?? props.baseColor : props.baseColor,
|
5801
5803
|
variant: props.variant
|
5802
5804
|
};
|
5803
5805
|
});
|
@@ -6138,6 +6140,7 @@ const makeVAvatarProps = propsFactory({
|
|
6138
6140
|
icon: IconValue,
|
6139
6141
|
image: String,
|
6140
6142
|
text: String,
|
6143
|
+
...makeBorderProps(),
|
6141
6144
|
...makeComponentProps(),
|
6142
6145
|
...makeDensityProps(),
|
6143
6146
|
...makeRoundedProps(),
|
@@ -6158,6 +6161,9 @@ const VAvatar = genericComponent()({
|
|
6158
6161
|
const {
|
6159
6162
|
themeClasses
|
6160
6163
|
} = provideTheme(props);
|
6164
|
+
const {
|
6165
|
+
borderClasses
|
6166
|
+
} = useBorder(props);
|
6161
6167
|
const {
|
6162
6168
|
colorClasses,
|
6163
6169
|
colorStyles,
|
@@ -6177,7 +6183,7 @@ const VAvatar = genericComponent()({
|
|
6177
6183
|
"class": ['v-avatar', {
|
6178
6184
|
'v-avatar--start': props.start,
|
6179
6185
|
'v-avatar--end': props.end
|
6180
|
-
}, themeClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
|
6186
|
+
}, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
|
6181
6187
|
"style": [colorStyles.value, sizeStyles.value, props.style]
|
6182
6188
|
}, {
|
6183
6189
|
default: () => [!slots.default ? props.image ? createVNode(VImg, {
|
@@ -27922,7 +27928,7 @@ function createVuetify$1() {
|
|
27922
27928
|
goTo
|
27923
27929
|
};
|
27924
27930
|
}
|
27925
|
-
const version$1 = "3.6.3-dev.2024-05-
|
27931
|
+
const version$1 = "3.6.3-dev.2024-05-14";
|
27926
27932
|
createVuetify$1.version = version$1;
|
27927
27933
|
|
27928
27934
|
// Vue's inject() can only be used in setup
|
@@ -27947,7 +27953,7 @@ const createVuetify = function () {
|
|
27947
27953
|
...options
|
27948
27954
|
});
|
27949
27955
|
};
|
27950
|
-
const version = "3.6.3-dev.2024-05-
|
27956
|
+
const version = "3.6.3-dev.2024-05-14";
|
27951
27957
|
createVuetify.version = version;
|
27952
27958
|
|
27953
27959
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|