revdev-components 0.186.0 → 0.187.0
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/build/helpTip/index.d.ts +1 -2
- package/build/index.js +2 -2
- package/package.json +1 -1
package/build/helpTip/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -5787,9 +5787,9 @@ var AudioPlayer = function (_a) {
|
|
|
5787
5787
|
var s = {"icon":"index-module_icon__-KK3y"};
|
|
5788
5788
|
|
|
5789
5789
|
var HelpTip = function (_a) {
|
|
5790
|
-
var title = _a.title, className = _a.className, _b = _a.iconName, iconName = _b === void 0 ? "help" : _b, href = _a.href, target = _a.target
|
|
5790
|
+
var title = _a.title, className = _a.className, _b = _a.iconName, iconName = _b === void 0 ? "help" : _b, href = _a.href, target = _a.target;
|
|
5791
5791
|
var iconNode = React.createElement(RegularIcon, { name: iconName, className: classNames(s.icon, className) });
|
|
5792
|
-
return (React.createElement(AppTooltip, { title: title
|
|
5792
|
+
return (React.createElement(AppTooltip, { title: title, placement: "top" }, href ? (React.createElement(AppLink, { href: href, target: target }, iconNode)) : (iconNode)));
|
|
5793
5793
|
};
|
|
5794
5794
|
|
|
5795
5795
|
exports.AlfaAttributor = AlfaAttributor;
|