@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.
Files changed (45) hide show
  1. package/CHANGELOG.md +8 -2
  2. package/dist/json/attributes.json +20 -0
  3. package/dist/json/importMap-labs.json +4 -4
  4. package/dist/json/importMap.json +144 -144
  5. package/dist/json/tags.json +5 -0
  6. package/dist/json/web-types.json +47 -1
  7. package/dist/vuetify-labs.css +2500 -2493
  8. package/dist/vuetify-labs.d.ts +117 -75
  9. package/dist/vuetify-labs.esm.js +11 -5
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +11 -5
  12. package/dist/vuetify-labs.min.css +2 -2
  13. package/dist/vuetify.css +475 -468
  14. package/dist/vuetify.d.ts +149 -107
  15. package/dist/vuetify.esm.js +11 -5
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +11 -5
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +2 -2
  20. package/dist/vuetify.min.js +10 -10
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAppBar/index.d.mts +6 -0
  23. package/lib/components/VAutocomplete/index.d.mts +12 -12
  24. package/lib/components/VAvatar/VAvatar.css +7 -0
  25. package/lib/components/VAvatar/VAvatar.mjs +6 -1
  26. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  27. package/lib/components/VAvatar/VAvatar.sass +1 -0
  28. package/lib/components/VAvatar/_variables.scss +13 -0
  29. package/lib/components/VAvatar/index.d.mts +6 -0
  30. package/lib/components/VBreadcrumbs/index.d.mts +8 -8
  31. package/lib/components/VBtn/VBtn.mjs +3 -1
  32. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  33. package/lib/components/VBtn/index.d.mts +6 -0
  34. package/lib/components/VCombobox/index.d.mts +12 -12
  35. package/lib/components/VFab/index.d.mts +6 -0
  36. package/lib/components/VList/index.d.mts +12 -12
  37. package/lib/components/VSelect/index.d.mts +12 -12
  38. package/lib/components/VTabs/index.d.mts +21 -3
  39. package/lib/components/index.d.mts +101 -59
  40. package/lib/entry-bundler.mjs +1 -1
  41. package/lib/framework.mjs +1 -1
  42. package/lib/index.d.mts +48 -48
  43. package/lib/labs/VTreeview/index.d.mts +16 -16
  44. package/lib/labs/components.d.mts +16 -16
  45. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.3-dev.2024-05-03
2
+ * Vuetify v3.6.3-dev.2024-05-14
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -5707,6 +5707,7 @@
5707
5707
  type: Boolean,
5708
5708
  default: undefined
5709
5709
  },
5710
+ activeColor: String,
5710
5711
  baseColor: String,
5711
5712
  symbol: {
5712
5713
  type: null,
@@ -5798,10 +5799,11 @@
5798
5799
  }
5799
5800
  return group?.isSelected.value;
5800
5801
  });
5802
+ const color = vue.computed(() => isActive.value ? props.activeColor ?? props.color : props.color);
5801
5803
  const variantProps = vue.computed(() => {
5802
5804
  const showColor = group?.isSelected.value && (!link.isLink.value || link.isActive?.value) || !group || link.isActive?.value;
5803
5805
  return {
5804
- color: showColor ? props.color ?? props.baseColor : props.baseColor,
5806
+ color: showColor ? color.value ?? props.baseColor : props.baseColor,
5805
5807
  variant: props.variant
5806
5808
  };
5807
5809
  });
@@ -6142,6 +6144,7 @@
6142
6144
  icon: IconValue,
6143
6145
  image: String,
6144
6146
  text: String,
6147
+ ...makeBorderProps(),
6145
6148
  ...makeComponentProps(),
6146
6149
  ...makeDensityProps(),
6147
6150
  ...makeRoundedProps(),
@@ -6162,6 +6165,9 @@
6162
6165
  const {
6163
6166
  themeClasses
6164
6167
  } = provideTheme(props);
6168
+ const {
6169
+ borderClasses
6170
+ } = useBorder(props);
6165
6171
  const {
6166
6172
  colorClasses,
6167
6173
  colorStyles,
@@ -6181,7 +6187,7 @@
6181
6187
  "class": ['v-avatar', {
6182
6188
  'v-avatar--start': props.start,
6183
6189
  'v-avatar--end': props.end
6184
- }, themeClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
6190
+ }, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
6185
6191
  "style": [colorStyles.value, sizeStyles.value, props.style]
6186
6192
  }, {
6187
6193
  default: () => [!slots.default ? props.image ? vue.createVNode(VImg, {
@@ -27926,7 +27932,7 @@
27926
27932
  goTo
27927
27933
  };
27928
27934
  }
27929
- const version$1 = "3.6.3-dev.2024-05-03";
27935
+ const version$1 = "3.6.3-dev.2024-05-14";
27930
27936
  createVuetify$1.version = version$1;
27931
27937
 
27932
27938
  // Vue's inject() can only be used in setup
@@ -27951,7 +27957,7 @@
27951
27957
  ...options
27952
27958
  });
27953
27959
  };
27954
- const version = "3.6.3-dev.2024-05-03";
27960
+ const version = "3.6.3-dev.2024-05-14";
27955
27961
  createVuetify.version = version;
27956
27962
 
27957
27963
  exports.blueprints = index;