revdev-components 0.254.0 → 0.255.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/index.js +2 -2
- package/build/styles.css +2 -3
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -6069,12 +6069,12 @@ var CopyButton = function (_a) {
|
|
|
6069
6069
|
return (React.createElement(antd.Typography.Text, { className: classNames(s$7.root, className), copyable: { text: value, icon: [React.createElement(RegularIcon, { name: "copy" }), React.createElement(RegularIcon, { name: "check" })] } }));
|
|
6070
6070
|
};
|
|
6071
6071
|
|
|
6072
|
-
var s$6 = {"
|
|
6072
|
+
var s$6 = {"root":"index-module_root__v3fD9","icon":"index-module_icon__-KK3y"};
|
|
6073
6073
|
|
|
6074
6074
|
var HelpTip = function (_a) {
|
|
6075
6075
|
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;
|
|
6076
6076
|
var iconNode = React.createElement(RegularIcon, { name: iconName, className: classNames(s$6.icon, className) });
|
|
6077
|
-
return (React.createElement(AppTooltip, { title: title || children, placement: "top" }, href ? (React.createElement(AppLink, { href: href, target: target, className: s$6.
|
|
6077
|
+
return (React.createElement(AppTooltip, { title: title || children, placement: "top" }, href ? (React.createElement(AppLink, { href: href, target: target, className: s$6.root }, iconNode)) : (iconNode)));
|
|
6078
6078
|
};
|
|
6079
6079
|
|
|
6080
6080
|
var s$5 = {"root":"index-module_root__W7fFh","bar":"index-module_bar__V-ymE","bar__active":"index-module_bar__active__-BwOz","rate":"index-module_rate__A2rzm","code":"index-module_code__aAnic"};
|
package/build/styles.css
CHANGED