revdev-components 0.207.0 → 0.208.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 +5 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -5801,12 +5801,12 @@ var AudioPlayer = function (_a) {
|
|
|
5801
5801
|
React.createElement(Button, { onClick: handlePlay, icon: active ? "audio" : "play-arrow", className: classNames((_b = {}, _b[classes.playing] = active, _b)), isPrimary: active })));
|
|
5802
5802
|
};
|
|
5803
5803
|
|
|
5804
|
-
var s$1 = {"icon":"index-module_icon__-KK3y"};
|
|
5804
|
+
var s$1 = {"link":"index-module_link__0nACX","icon":"index-module_icon__-KK3y"};
|
|
5805
5805
|
|
|
5806
5806
|
var HelpTip = function (_a) {
|
|
5807
5807
|
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;
|
|
5808
5808
|
var iconNode = React.createElement(RegularIcon, { name: iconName, className: classNames(s$1.icon, className) });
|
|
5809
|
-
return (React.createElement(AppTooltip, { title: title || children, placement: "top" }, href ? (React.createElement(AppLink, { href: href, target: target }, iconNode)) : (iconNode)));
|
|
5809
|
+
return (React.createElement(AppTooltip, { title: title || children, placement: "top" }, href ? (React.createElement(AppLink, { href: href, target: target, className: s$1.link }, iconNode)) : (iconNode)));
|
|
5810
5810
|
};
|
|
5811
5811
|
|
|
5812
5812
|
var s = {"root":"index-module_root__W7fFh","bar":"index-module_bar__V-ymE","rate":"index-module_rate__A2rzm","code":"index-module_code__aAnic"};
|
package/build/styles.css
CHANGED
|
@@ -665,6 +665,11 @@ body {
|
|
|
665
665
|
transform: scale(1);
|
|
666
666
|
}
|
|
667
667
|
}
|
|
668
|
+
.index-module_link__0nACX {
|
|
669
|
+
display: flex;
|
|
670
|
+
place-items: center;
|
|
671
|
+
}
|
|
672
|
+
|
|
668
673
|
.index-module_icon__-KK3y {
|
|
669
674
|
font-size: var(--helpTipFontSize);
|
|
670
675
|
margin: var(--helpTipMargin);
|
|
@@ -682,7 +687,6 @@ body {
|
|
|
682
687
|
height: 1em;
|
|
683
688
|
width: 1.2em;
|
|
684
689
|
position: relative;
|
|
685
|
-
line-height: 1em;
|
|
686
690
|
}
|
|
687
691
|
|
|
688
692
|
.index-module_rate__A2rzm {
|