@symbo.ls/uikit 2.11.186 → 2.11.189
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.cjs.js +16 -12
- package/dist/index.cjs.js.map +2 -2
- package/package.json +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -13645,20 +13645,24 @@ var TooltipHidden = {
|
|
|
13645
13645
|
})
|
|
13646
13646
|
};
|
|
13647
13647
|
var TooltipParent = {
|
|
13648
|
-
props: ({ Tooltip: Tooltip2, TooltipHidden: TooltipHidden2 }) =>
|
|
13649
|
-
|
|
13650
|
-
|
|
13651
|
-
|
|
13652
|
-
"
|
|
13653
|
-
|
|
13654
|
-
|
|
13655
|
-
|
|
13656
|
-
|
|
13657
|
-
|
|
13648
|
+
props: ({ Tooltip: Tooltip2, TooltipHidden: TooltipHidden2 }) => {
|
|
13649
|
+
const TooltipElem = Tooltip2 || TooltipHidden2;
|
|
13650
|
+
const TooltipActive = TooltipElem && TooltipElem[".active"];
|
|
13651
|
+
return {
|
|
13652
|
+
position: "relative",
|
|
13653
|
+
zIndex: 999,
|
|
13654
|
+
style: {
|
|
13655
|
+
"&:hover, &:focus-visible": {
|
|
13656
|
+
zIndex: 1e3,
|
|
13657
|
+
"& [tooltip]": TooltipActive || {
|
|
13658
|
+
transform: "translate3d(-50%,0,0)",
|
|
13659
|
+
opacity: 1,
|
|
13660
|
+
visibility: "visible"
|
|
13661
|
+
}
|
|
13658
13662
|
}
|
|
13659
13663
|
}
|
|
13660
|
-
}
|
|
13661
|
-
}
|
|
13664
|
+
};
|
|
13665
|
+
}
|
|
13662
13666
|
};
|
|
13663
13667
|
|
|
13664
13668
|
// Pills/index.js
|