@vuetify/nightly 3.8.2-master.2025-04-17 → 3.8.2-master.2025-04-19

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.8.2-master.2025-04-17
2
+ * Vuetify v3.8.2-master.2025-04-19
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -29446,10 +29446,7 @@
29446
29446
  hideOverlay: Boolean,
29447
29447
  icon: [String, Function, Object],
29448
29448
  iconColor: String,
29449
- iconSize: {
29450
- type: [Number, String],
29451
- default: 'default'
29452
- },
29449
+ iconSize: [Number, String],
29453
29450
  iconSizes: {
29454
29451
  type: Array,
29455
29452
  default: () => [['x-small', 10], ['small', 16], ['default', 24], ['large', 28], ['x-large', 32]]
@@ -29534,13 +29531,14 @@
29534
29531
  }
29535
29532
  useRender(() => {
29536
29533
  const icon = isActive.value ? props.activeIcon ?? props.icon : props.icon;
29537
- const size = props.size;
29538
- const hasNamedSize = btnSizeMap.has(size);
29539
- const btnSize = hasNamedSize ? btnSizeMap.get(size) : size;
29534
+ const _btnSize = props.size;
29535
+ const hasNamedSize = btnSizeMap.has(_btnSize);
29536
+ const btnSize = hasNamedSize ? btnSizeMap.get(_btnSize) : _btnSize;
29540
29537
  const btnHeight = props.height ?? btnSize;
29541
29538
  const btnWidth = props.width ?? btnSize;
29542
- const _iconSize = hasNamedSize ? size : props.iconSize ?? size;
29543
- const iconSize = iconSizeMap.get(_iconSize) ?? _iconSize;
29539
+ const _iconSize = props.iconSize;
29540
+ const hasNamedIconSize = iconSizeMap.has(_iconSize);
29541
+ const iconSize = !_iconSize ? hasNamedSize ? iconSizeMap.get(_btnSize) : iconSizeMap.get('default') : hasNamedIconSize ? iconSizeMap.get(_iconSize) : _iconSize;
29544
29542
  const iconProps = {
29545
29543
  icon,
29546
29544
  size: iconSize,
@@ -31495,7 +31493,7 @@
31495
31493
  };
31496
31494
  });
31497
31495
  }
31498
- const version$1 = "3.8.2-master.2025-04-17";
31496
+ const version$1 = "3.8.2-master.2025-04-19";
31499
31497
  createVuetify$1.version = version$1;
31500
31498
 
31501
31499
  // Vue's inject() can only be used in setup
@@ -31793,7 +31791,7 @@
31793
31791
 
31794
31792
  /* eslint-disable local-rules/sort-imports */
31795
31793
 
31796
- const version = "3.8.2-master.2025-04-17";
31794
+ const version = "3.8.2-master.2025-04-19";
31797
31795
 
31798
31796
  /* eslint-disable local-rules/sort-imports */
31799
31797