sag_components 2.0.0-beta200 → 2.0.0-beta201
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
|
@@ -2413,8 +2413,8 @@ const Tooltip$2 = props => {
|
|
|
2413
2413
|
className: className
|
|
2414
2414
|
}, /*#__PURE__*/React$1.createElement(TooltipWrapper$2, {
|
|
2415
2415
|
className: "tooltip-wrapper",
|
|
2416
|
-
onMouseEnter: showTip,
|
|
2417
|
-
onMouseLeave: hideTip
|
|
2416
|
+
onMouseEnter: showToolTip && showTip,
|
|
2417
|
+
onMouseLeave: showToolTip && hideTip
|
|
2418
2418
|
}, children, active && !hideTooltip && /*#__PURE__*/React$1.createElement(TooltipTip$1, {
|
|
2419
2419
|
className: `controls ${direction || 'top'}`,
|
|
2420
2420
|
topFactor: topFactor
|
|
@@ -12253,16 +12253,13 @@ const Td$1 = styled.td`
|
|
|
12253
12253
|
`;
|
|
12254
12254
|
const Tr = styled.tr`
|
|
12255
12255
|
border-bottom: 1px solid #f3f4f6;
|
|
12256
|
-
${
|
|
12257
|
-
|
|
12258
|
-
|
|
12259
|
-
|
|
12260
|
-
} = _ref;
|
|
12261
|
-
return enableHover && `&:hover {
|
|
12256
|
+
${({
|
|
12257
|
+
enableHover,
|
|
12258
|
+
selectHoverColor
|
|
12259
|
+
}) => enableHover && `&:hover {
|
|
12262
12260
|
background-color: ${selectHoverColor};
|
|
12263
12261
|
cursor: pointer;
|
|
12264
|
-
}
|
|
12265
|
-
}}
|
|
12262
|
+
}`}
|
|
12266
12263
|
`;
|
|
12267
12264
|
const InfoText = styled.div`
|
|
12268
12265
|
font-weight: 400;
|