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

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.
@@ -8833,6 +8833,7 @@ declare const VAvatar: {
8833
8833
  theme?: string | undefined;
8834
8834
  color?: string | undefined;
8835
8835
  icon?: IconValue | undefined;
8836
+ border?: string | number | boolean | undefined;
8836
8837
  rounded?: string | number | boolean | undefined;
8837
8838
  } & {
8838
8839
  $children?: vue.VNodeChild | {
@@ -8859,6 +8860,7 @@ declare const VAvatar: {
8859
8860
  theme?: string | undefined;
8860
8861
  color?: string | undefined;
8861
8862
  icon?: IconValue | undefined;
8863
+ border?: string | number | boolean | undefined;
8862
8864
  rounded?: string | number | boolean | undefined;
8863
8865
  } & {
8864
8866
  $children?: vue.VNodeChild | {
@@ -8906,6 +8908,7 @@ declare const VAvatar: {
8906
8908
  theme?: string | undefined;
8907
8909
  color?: string | undefined;
8908
8910
  icon?: IconValue | undefined;
8911
+ border?: string | number | boolean | undefined;
8909
8912
  rounded?: string | number | boolean | undefined;
8910
8913
  } & {
8911
8914
  $children?: vue.VNodeChild | {
@@ -8946,6 +8949,7 @@ declare const VAvatar: {
8946
8949
  theme?: string | undefined;
8947
8950
  color?: string | undefined;
8948
8951
  icon?: IconValue | undefined;
8952
+ border?: string | number | boolean | undefined;
8949
8953
  rounded?: string | number | boolean | undefined;
8950
8954
  } & {
8951
8955
  $children?: vue.VNodeChild | {
@@ -9004,6 +9008,7 @@ declare const VAvatar: {
9004
9008
  type: vue.PropType<vue.StyleValue>;
9005
9009
  default: null;
9006
9010
  };
9011
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
9007
9012
  start: BooleanConstructor;
9008
9013
  end: BooleanConstructor;
9009
9014
  icon: vue.PropType<IconValue>;
@@ -9043,6 +9048,7 @@ declare const VAvatar: {
9043
9048
  type: vue.PropType<vue.StyleValue>;
9044
9049
  default: null;
9045
9050
  };
9051
+ border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
9046
9052
  start: BooleanConstructor;
9047
9053
  end: BooleanConstructor;
9048
9054
  icon: vue.PropType<IconValue>;
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.6.3-dev.2024-05-03
2
+ * Vuetify v3.6.3-dev.2024-05-06
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -5905,6 +5905,7 @@ const makeVAvatarProps = propsFactory({
5905
5905
  icon: IconValue,
5906
5906
  image: String,
5907
5907
  text: String,
5908
+ ...makeBorderProps(),
5908
5909
  ...makeComponentProps(),
5909
5910
  ...makeDensityProps(),
5910
5911
  ...makeRoundedProps(),
@@ -5925,6 +5926,9 @@ const VAvatar = genericComponent()({
5925
5926
  const {
5926
5927
  themeClasses
5927
5928
  } = provideTheme(props);
5929
+ const {
5930
+ borderClasses
5931
+ } = useBorder(props);
5928
5932
  const {
5929
5933
  colorClasses,
5930
5934
  colorStyles,
@@ -5944,7 +5948,7 @@ const VAvatar = genericComponent()({
5944
5948
  "class": ['v-avatar', {
5945
5949
  'v-avatar--start': props.start,
5946
5950
  'v-avatar--end': props.end
5947
- }, themeClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
5951
+ }, themeClasses.value, borderClasses.value, colorClasses.value, densityClasses.value, roundedClasses.value, sizeClasses.value, variantClasses.value, props.class],
5948
5952
  "style": [colorStyles.value, sizeStyles.value, props.style]
5949
5953
  }, {
5950
5954
  default: () => [!slots.default ? props.image ? createVNode(VImg, {
@@ -29762,7 +29766,7 @@ function createVuetify$1() {
29762
29766
  goTo
29763
29767
  };
29764
29768
  }
29765
- const version$1 = "3.6.3-dev.2024-05-03";
29769
+ const version$1 = "3.6.3-dev.2024-05-06";
29766
29770
  createVuetify$1.version = version$1;
29767
29771
 
29768
29772
  // Vue's inject() can only be used in setup
@@ -30015,7 +30019,7 @@ var index = /*#__PURE__*/Object.freeze({
30015
30019
 
30016
30020
  /* eslint-disable local-rules/sort-imports */
30017
30021
 
30018
- const version = "3.6.3-dev.2024-05-03";
30022
+ const version = "3.6.3-dev.2024-05-06";
30019
30023
 
30020
30024
  /* eslint-disable local-rules/sort-imports */
30021
30025