frst-components 0.31.3 → 0.31.4
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.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2218,7 +2218,6 @@ const TooltipV2 = ({ children, content, direction = 'bottom', style }) => {
|
|
|
2218
2218
|
display: 'inline-block'
|
|
2219
2219
|
}, children: children }), isVisible &&
|
|
2220
2220
|
ReactDOM__default["default"].createPortal(jsxRuntime.jsx("div", { style: {
|
|
2221
|
-
...tooltipStyle,
|
|
2222
2221
|
zIndex: 9999,
|
|
2223
2222
|
background: '#fff',
|
|
2224
2223
|
border: '1px solid #ccc',
|
|
@@ -2228,7 +2227,8 @@ const TooltipV2 = ({ children, content, direction = 'bottom', style }) => {
|
|
|
2228
2227
|
fontSize: '14px',
|
|
2229
2228
|
lineHeight: '18px',
|
|
2230
2229
|
fontWeight: '400',
|
|
2231
|
-
color: '#757575'
|
|
2230
|
+
color: '#757575',
|
|
2231
|
+
...tooltipStyle
|
|
2232
2232
|
}, children: content }), document.body)] }));
|
|
2233
2233
|
};
|
|
2234
2234
|
|