labsense-ui-kit 1.1.58 → 1.1.60

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.
@@ -11,6 +11,8 @@ interface ITooltipProps {
11
11
  maxWidth?: string;
12
12
  position?: 'topLeft' | 'topCenter' | 'topRight' | 'bottomLeft' | 'bottomCenter' | 'bottomRight';
13
13
  tooltipTop?: string;
14
+ border?: string;
15
+ borderRadius?: string;
14
16
  };
15
17
  }
16
18
  declare const IconTooltip: React.FC<ITooltipProps>;
package/dist/index.js CHANGED
@@ -3609,30 +3609,36 @@ var Badge = function Badge(_ref4) {
3609
3609
  };
3610
3610
 
3611
3611
  var _templateObject$3, _templateObject2$3, _templateObject3$1, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12;
3612
- var TooltipContainer = styled__default.div(_templateObject$3 || (_templateObject$3 = _taggedTemplateLiteralLoose(["\n display: flex;\n position: absolute;\n z-index: 10;\n align-items: center;\n justify-content: center;\n visibility: hidden;\n opacity: 0;\n transition: opacity 0.3s;\n border-radius: 4px;\n padding: 6px 8px;\n min-width: ", ";\n min-width: ", ";\n background-color: ", ";\n gap: ", ";\n\n ", "\n\n &::after {\n content: '';\n position: absolute;\n width: 16px;\n height: 8px;\n background-color: ", ";\n clip-path: polygon(50% 0%, 0% 100%, 100% 100%);\n\n ", "\n }\n"])), function (_ref) {
3613
- var $minWidth = _ref.$minWidth;
3614
- return $minWidth != null ? $minWidth : 'auto';
3612
+ var TooltipContainer = styled__default.div(_templateObject$3 || (_templateObject$3 = _taggedTemplateLiteralLoose(["\n display: flex;\n position: absolute;\n z-index: 10;\n align-items: center;\n justify-content: center;\n visibility: hidden;\n opacity: 0;\n transition: opacity 0.3s;\n border-radius: ", ";\n padding: 6px 8px;\n border: ", ";\n min-width: ", ";\n min-width: ", ";\n background-color: ", ";\n gap: ", ";\n\n ", "\n\n &::after {\n content: '';\n position: absolute;\n width: 16px;\n height: 8px;\n background-color: ", ";\n clip-path: polygon(50% 0%, 0% 100%, 100% 100%);\n\n ", "\n }\n"])), function (_ref) {
3613
+ var $borderRadius = _ref.$borderRadius;
3614
+ return $borderRadius != null ? $borderRadius : '4px';
3615
3615
  }, function (_ref2) {
3616
- var $maxWidth = _ref2.$maxWidth;
3617
- return $maxWidth != null ? $maxWidth : 'auto';
3616
+ var $border = _ref2.$border;
3617
+ return $border;
3618
3618
  }, function (_ref3) {
3619
- var $background = _ref3.$background;
3620
- return $background != null ? $background : colorVariables.accent.light_1;
3619
+ var $minWidth = _ref3.$minWidth;
3620
+ return $minWidth != null ? $minWidth : 'auto';
3621
3621
  }, function (_ref4) {
3622
- var $gap = _ref4.$gap;
3623
- return $gap != null ? $gap : '16px';
3622
+ var $maxWidth = _ref4.$maxWidth;
3623
+ return $maxWidth != null ? $maxWidth : 'auto';
3624
3624
  }, function (_ref5) {
3625
- var $tooltipPosition = _ref5.$tooltipPosition,
3626
- $iconSize = _ref5.$iconSize,
3627
- $tooltipTop = _ref5.$tooltipTop;
3625
+ var $background = _ref5.$background;
3626
+ return $background != null ? $background : colorVariables.accent.light_1;
3627
+ }, function (_ref6) {
3628
+ var $gap = _ref6.$gap;
3629
+ return $gap != null ? $gap : '16px';
3630
+ }, function (_ref7) {
3631
+ var $tooltipPosition = _ref7.$tooltipPosition,
3632
+ $iconSize = _ref7.$iconSize,
3633
+ $tooltipTop = _ref7.$tooltipTop;
3628
3634
  var vertical = $tooltipPosition.startsWith('top') ? "bottom: " + ($tooltipTop != null ? $tooltipTop : "calc(50% + " + ($iconSize + 2) + "px)") + ";" : "top: " + ($tooltipTop != null ? $tooltipTop : "calc(50% + " + ($iconSize + 2) + "px)") + ";";
3629
3635
  var horizontal = $tooltipPosition.endsWith('Left') ? styled.css(_templateObject2$3 || (_templateObject2$3 = _taggedTemplateLiteralLoose(["left: calc(100% + 10px); transform: translateX(-99%);"]))) : $tooltipPosition.endsWith('Center') ? styled.css(_templateObject3$1 || (_templateObject3$1 = _taggedTemplateLiteralLoose(["left: 50%; transform: translateX(-50%);"]))) : styled.css(_templateObject4 || (_templateObject4 = _taggedTemplateLiteralLoose(["right: calc(100% + 10px); transform: translateX(99%);"])));
3630
3636
  return styled.css(_templateObject5 || (_templateObject5 = _taggedTemplateLiteralLoose(["", " ", ";"])), vertical, horizontal);
3631
- }, function (_ref6) {
3632
- var $background = _ref6.$background;
3637
+ }, function (_ref8) {
3638
+ var $background = _ref8.$background;
3633
3639
  return $background != null ? $background : colorVariables.accent.light_1;
3634
- }, function (_ref7) {
3635
- var $tooltipPosition = _ref7.$tooltipPosition;
3640
+ }, function (_ref9) {
3641
+ var $tooltipPosition = _ref9.$tooltipPosition;
3636
3642
  if ($tooltipPosition.startsWith('top')) {
3637
3643
  return $tooltipPosition.endsWith('Left') ? styled.css(_templateObject6 || (_templateObject6 = _taggedTemplateLiteralLoose(["top: 100%; right: 10px; transform: rotate(180deg);"]))) : $tooltipPosition.endsWith('Right') ? styled.css(_templateObject7 || (_templateObject7 = _taggedTemplateLiteralLoose(["top: 100%; left: 10px; transform: rotate(180deg);"]))) : styled.css(_templateObject8 || (_templateObject8 = _taggedTemplateLiteralLoose(["top: 100%; left: 50%; transform: translateX(-50%) rotate(180deg);"])));
3638
3644
  } else {
@@ -3640,25 +3646,25 @@ var TooltipContainer = styled__default.div(_templateObject$3 || (_templateObject
3640
3646
  }
3641
3647
  });
3642
3648
  var TooltipWrapper$1 = styled__default.div(_templateObject12 || (_templateObject12 = _taggedTemplateLiteralLoose(["\n display: flex;\n position: relative;\n align-items: center;\n cursor: pointer;\n\n &:hover ", " {\n visibility: visible;\n opacity: 1;\n }\n"])), TooltipContainer);
3643
- var IconTooltip = function IconTooltip(_ref8) {
3649
+ var IconTooltip = function IconTooltip(_ref10) {
3644
3650
  var _tooltipCSS$position;
3645
- var _ref8$icon = _ref8.icon,
3646
- icon = _ref8$icon === void 0 ? {
3651
+ var _ref10$icon = _ref10.icon,
3652
+ icon = _ref10$icon === void 0 ? {
3647
3653
  icon: 'Information',
3648
3654
  size: 12,
3649
3655
  weight: '0px',
3650
3656
  color: colorVariables.text.medium
3651
- } : _ref8$icon,
3652
- infoIcon = _ref8.infoIcon,
3653
- infoText = _ref8.infoText,
3654
- _ref8$tooltipCSS = _ref8.tooltipCSS,
3655
- tooltipCSS = _ref8$tooltipCSS === void 0 ? {
3657
+ } : _ref10$icon,
3658
+ infoIcon = _ref10.infoIcon,
3659
+ infoText = _ref10.infoText,
3660
+ _ref10$tooltipCSS = _ref10.tooltipCSS,
3661
+ tooltipCSS = _ref10$tooltipCSS === void 0 ? {
3656
3662
  background: colorVariables.accent.light_1,
3657
3663
  gap: '4px',
3658
3664
  minWidth: 'max-content',
3659
3665
  position: 'bottomCenter',
3660
3666
  tooltipTop: undefined
3661
- } : _ref8$tooltipCSS;
3667
+ } : _ref10$tooltipCSS;
3662
3668
  return React__default.createElement(TooltipWrapper$1, null, React__default.createElement(Icon, Object.assign({}, icon, {
3663
3669
  onClick: function onClick() {}
3664
3670
  })), React__default.createElement(TooltipContainer, {
@@ -3668,7 +3674,9 @@ var IconTooltip = function IconTooltip(_ref8) {
3668
3674
  "$tooltipTop": tooltipCSS.tooltipTop,
3669
3675
  "$background": tooltipCSS.background,
3670
3676
  "$gap": tooltipCSS.gap,
3671
- "$iconSize": icon.size || 17
3677
+ "$iconSize": icon.size || 17,
3678
+ "$border": tooltipCSS.border,
3679
+ "$borderRadius": tooltipCSS.borderRadius
3672
3680
  }, infoIcon && React__default.createElement(Icon, Object.assign({}, infoIcon)), infoText));
3673
3681
  };
3674
3682