revdev-components 0.205.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 +7 -4
- 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);
|
|
@@ -672,18 +677,16 @@ body {
|
|
|
672
677
|
.index-module_root__W7fFh {
|
|
673
678
|
display: flex;
|
|
674
679
|
flex-flow: row nowrap;
|
|
675
|
-
|
|
680
|
+
place-items: flex-start flex-start;
|
|
681
|
+
gap: 0.3em;
|
|
676
682
|
color: var(--levelBadgeColor);
|
|
677
683
|
}
|
|
678
684
|
|
|
679
685
|
.index-module_bar__V-ymE {
|
|
680
686
|
display: flex;
|
|
681
|
-
justify-content: center;
|
|
682
|
-
align-items: center;
|
|
683
687
|
height: 1em;
|
|
684
688
|
width: 1.2em;
|
|
685
689
|
position: relative;
|
|
686
|
-
line-height: 1em;
|
|
687
690
|
}
|
|
688
691
|
|
|
689
692
|
.index-module_rate__A2rzm {
|