@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
@@ -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
  */
@@ -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 ? props.color ?? props.baseColor : props.baseColor,
5573
+ color: showColor ? color.value ?? props.baseColor : props.baseColor,
5572
5574
  variant: props.variant
5573
5575
  };
5574
5576
  });
@@ -20820,6 +20822,7 @@
20820
20822
  default: false
20821
20823
  },
20822
20824
  ...makeComponentProps(),
20825
+ ...makeDimensionProps(),
20823
20826
  ...makeTagProps()
20824
20827
  }, 'VContainer');
20825
20828
  const VContainer = genericComponent()({
@@ -20832,11 +20835,14 @@
20832
20835
  const {
20833
20836
  rtlClasses
20834
20837
  } = useRtl();
20838
+ const {
20839
+ dimensionStyles
20840
+ } = useDimension(props);
20835
20841
  useRender(() => vue.createVNode(props.tag, {
20836
20842
  "class": ['v-container', {
20837
20843
  'v-container--fluid': props.fluid
20838
20844
  }, rtlClasses.value, props.class],
20839
- "style": props.style
20845
+ "style": [dimensionStyles.value, props.style]
20840
20846
  }, slots));
20841
20847
  return {};
20842
20848
  }
@@ -29770,7 +29776,7 @@
29770
29776
  goTo
29771
29777
  };
29772
29778
  }
29773
- const version$1 = "3.6.3-dev.2024-05-06";
29779
+ const version$1 = "3.6.3-dev.2024-05-29";
29774
29780
  createVuetify$1.version = version$1;
29775
29781
 
29776
29782
  // Vue's inject() can only be used in setup
@@ -30023,7 +30029,7 @@
30023
30029
 
30024
30030
  /* eslint-disable local-rules/sort-imports */
30025
30031
 
30026
- const version = "3.6.3-dev.2024-05-06";
30032
+ const version = "3.6.3-dev.2024-05-29";
30027
30033
 
30028
30034
  /* eslint-disable local-rules/sort-imports */
30029
30035