@vuetify/nightly 3.6.3-dev.2024-05-06 → 3.6.3-dev.2024-05-29

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 (42) hide show
  1. package/CHANGELOG.md +4 -2
  2. package/dist/json/attributes.json +40 -0
  3. package/dist/json/importMap-labs.json +20 -20
  4. package/dist/json/importMap.json +144 -144
  5. package/dist/json/tags.json +11 -1
  6. package/dist/json/web-types.json +91 -1
  7. package/dist/vuetify-labs.css +1766 -1766
  8. package/dist/vuetify-labs.d.ts +147 -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 +1119 -1119
  14. package/dist/vuetify.d.ts +183 -111
  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/VBreadcrumbs/index.d.mts +8 -8
  25. package/lib/components/VBtn/VBtn.mjs +3 -1
  26. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  27. package/lib/components/VBtn/index.d.mts +6 -0
  28. package/lib/components/VCombobox/index.d.mts +12 -12
  29. package/lib/components/VFab/index.d.mts +6 -0
  30. package/lib/components/VGrid/VContainer.mjs +6 -1
  31. package/lib/components/VGrid/VContainer.mjs.map +1 -1
  32. package/lib/components/VGrid/index.d.mts +36 -0
  33. package/lib/components/VList/index.d.mts +12 -12
  34. package/lib/components/VSelect/index.d.mts +12 -12
  35. package/lib/components/VTabs/index.d.mts +21 -3
  36. package/lib/components/index.d.mts +131 -59
  37. package/lib/entry-bundler.mjs +1 -1
  38. package/lib/framework.mjs +1 -1
  39. package/lib/index.d.mts +52 -52
  40. package/lib/labs/VTreeview/index.d.mts +16 -16
  41. package/lib/labs/components.d.mts +16 -16
  42. package/package.json +1 -1
package/dist/vuetify.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.3-dev.2024-05-06
2
+ * Vuetify v3.6.3-dev.2024-05-29
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
  });
@@ -21053,6 +21055,7 @@
21053
21055
  default: false
21054
21056
  },
21055
21057
  ...makeComponentProps(),
21058
+ ...makeDimensionProps(),
21056
21059
  ...makeTagProps()
21057
21060
  }, 'VContainer');
21058
21061
  const VContainer = genericComponent()({
@@ -21065,11 +21068,14 @@
21065
21068
  const {
21066
21069
  rtlClasses
21067
21070
  } = useRtl();
21071
+ const {
21072
+ dimensionStyles
21073
+ } = useDimension(props);
21068
21074
  useRender(() => vue.createVNode(props.tag, {
21069
21075
  "class": ['v-container', {
21070
21076
  'v-container--fluid': props.fluid
21071
21077
  }, rtlClasses.value, props.class],
21072
- "style": props.style
21078
+ "style": [dimensionStyles.value, props.style]
21073
21079
  }, slots));
21074
21080
  return {};
21075
21081
  }
@@ -27930,7 +27936,7 @@
27930
27936
  goTo
27931
27937
  };
27932
27938
  }
27933
- const version$1 = "3.6.3-dev.2024-05-06";
27939
+ const version$1 = "3.6.3-dev.2024-05-29";
27934
27940
  createVuetify$1.version = version$1;
27935
27941
 
27936
27942
  // Vue's inject() can only be used in setup
@@ -27955,7 +27961,7 @@
27955
27961
  ...options
27956
27962
  });
27957
27963
  };
27958
- const version = "3.6.3-dev.2024-05-06";
27964
+ const version = "3.6.3-dev.2024-05-29";
27959
27965
  createVuetify.version = version;
27960
27966
 
27961
27967
  exports.blueprints = index;