@vuu-ui/vuu-popups 0.8.14-debug → 0.8.15-debug
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/cjs/index.js +3 -2
- package/cjs/index.js.map +2 -2
- package/esm/index.js +3 -2
- package/esm/index.js.map +2 -2
- package/index.css +13 -4
- package/index.css.map +2 -2
- package/package.json +7 -7
- package/types/tooltip/Tooltip.d.ts +3 -2
package/cjs/index.js
CHANGED
|
@@ -1772,7 +1772,8 @@ var Tooltip = ({
|
|
|
1772
1772
|
onMouseEnter,
|
|
1773
1773
|
onMouseLeave,
|
|
1774
1774
|
placement,
|
|
1775
|
-
status
|
|
1775
|
+
status,
|
|
1776
|
+
style: styleProp
|
|
1776
1777
|
}) => {
|
|
1777
1778
|
const position = useAnchoredPosition2({ anchorElement, placement });
|
|
1778
1779
|
if (position === void 0) {
|
|
@@ -1786,7 +1787,7 @@ var Tooltip = ({
|
|
|
1786
1787
|
}),
|
|
1787
1788
|
"data-align": placement,
|
|
1788
1789
|
id,
|
|
1789
|
-
style: position,
|
|
1790
|
+
style: { ...styleProp, ...position },
|
|
1790
1791
|
children: /* @__PURE__ */ (0, import_jsx_runtime11.jsx)(
|
|
1791
1792
|
"span",
|
|
1792
1793
|
{
|