@zenkigen-inc/component-ui 1.1.0 → 1.1.1

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.
package/dist/index.esm.js CHANGED
@@ -31974,7 +31974,7 @@ function Select(_ref) {
31974
31974
  className: "ml-auto flex items-center",
31975
31975
  children: /*#__PURE__*/jsx(Icon, {
31976
31976
  name: isOptionListOpen ? 'angle-small-up' : 'angle-small-down',
31977
- size: "small"
31977
+ size: size === 'large' ? 'medium' : 'small'
31978
31978
  })
31979
31979
  })]
31980
31980
  }), isOptionListOpen && !isDisabled && /*#__PURE__*/jsx(SelectList$1, {
@@ -32112,7 +32112,7 @@ function SelectSort(_ref) {
32112
32112
  size: size === 'large' ? 'medium' : 'small'
32113
32113
  }) : /*#__PURE__*/jsx(Icon, {
32114
32114
  name: isOptionListOpen ? 'angle-small-up' : 'angle-small-down',
32115
- size: "small"
32115
+ size: size === 'large' ? 'medium' : 'small'
32116
32116
  })
32117
32117
  })]
32118
32118
  }), isOptionListOpen && !isDisabled && /*#__PURE__*/jsx(SelectList, {
@@ -32468,7 +32468,7 @@ function Tooltip(_ref) {
32468
32468
  setIsVisible(false);
32469
32469
  }, []);
32470
32470
  var targetClasses = clsx$1('relative', 'flex', 'items-center', 'justify-center');
32471
- var tooltipBodyClasses = clsx$1('z-tooltip', 'absolute', 'w-max', horizontalAlign === 'left' ? 'left-0' : horizontalAlign === 'right' ? 'right-0' : 'left-auto', 'inline-block', size === 'small' ? 'px-2 pb-1 pt-1.5' : 'px-4 py-3', 'text-text-textOnColor', 'bg-background-uiBackgroundTooltip', 'rounded', 'shadow-floatingShadow', typography.body[size === 'small' ? 'body3regular' : 'body2regular']);
32471
+ var tooltipBodyClasses = clsx$1('z-tooltip', 'absolute', 'w-max', horizontalAlign === 'left' ? 'left-0' : horizontalAlign === 'right' ? 'right-0' : 'left-auto', 'inline-block', size === 'small' ? 'px-2 pb-1 pt-1.5' : 'px-4 py-3', 'text-text-textOnColor', 'bg-background-uiBackgroundTooltip', 'rounded', typography.body[size === 'small' ? 'body3regular' : 'body2regular']);
32472
32472
  return /*#__PURE__*/jsxs("div", {
32473
32473
  ref: targetRef,
32474
32474
  className: targetClasses,