@app-studio/web 0.8.41 → 0.8.43

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.
@@ -2390,7 +2390,7 @@
2390
2390
  ariaLabel,
2391
2391
  // Initializes default values for the ButtonProps object; useful for defining states like isAuto, isFilled, etc.
2392
2392
  externalHref,
2393
- isAuto,
2393
+ isAuto = false,
2394
2394
  // Determines if button should be active based on isDisabled and isLoading properties.
2395
2395
  isFilled = false,
2396
2396
  // Prepares default properties for the native button element based on isActive state.
@@ -2468,7 +2468,7 @@
2468
2468
  var buttonSizeStyles = ButtonSizes[size];
2469
2469
  var buttonVariant = ButtonVariants[variant];
2470
2470
  var scaleWidth = {
2471
- minWidth: isAuto ? 'fit-content' : isFilled ? '100%' : buttonSizeStyles.width
2471
+ width: isAuto === true ? 'fit-content' : isFilled ? '100%' : buttonSizeStyles.width
2472
2472
  };
2473
2473
  var changePadding = isIconRounded ? IconSizes$1[size] : ButtonSizes[size];
2474
2474
  var content = /*#__PURE__*/React__default.createElement(Horizontal, {