revdev-components 0.182.0 → 0.183.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 +2 -1
- package/build/index.js +2 -2
- package/package.json +1 -1
package/build/helpTip/index.d.ts
CHANGED
package/build/index.js
CHANGED
|
@@ -5780,9 +5780,9 @@ var AudioPlayer = function (_a) {
|
|
|
5780
5780
|
var s = {"icon":"index-module_icon__-KK3y"};
|
|
5781
5781
|
|
|
5782
5782
|
var HelpTip = function (_a) {
|
|
5783
|
-
var title = _a.title, className = _a.className, _b = _a.iconName, iconName = _b === void 0 ? "help" : _b, href = _a.href, target = _a.target;
|
|
5783
|
+
var title = _a.title, className = _a.className, _b = _a.iconName, iconName = _b === void 0 ? "help" : _b, href = _a.href, target = _a.target, children = _a.children;
|
|
5784
5784
|
var iconNode = React.createElement(RegularIcon, { name: iconName, className: classNames(s.icon, className) });
|
|
5785
|
-
return (React.createElement(AppTooltip, { title: title, placement: "top" }, href ? (React.createElement(AppLink, { href: href, target: target }, iconNode)) : (iconNode)));
|
|
5785
|
+
return (React.createElement(AppTooltip, { title: title || children, placement: "top" }, href ? (React.createElement(AppLink, { href: href, target: target }, iconNode)) : (iconNode)));
|
|
5786
5786
|
};
|
|
5787
5787
|
|
|
5788
5788
|
exports.AlfaAttributor = AlfaAttributor;
|