revdev-components 0.118.0 → 0.120.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 +3 -3
- package/build/styles.css +7 -0
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -5058,7 +5058,7 @@ var FlatButton = function (_a) {
|
|
|
5058
5058
|
children ? React.createElement("span", null, children) : null));
|
|
5059
5059
|
};
|
|
5060
5060
|
|
|
5061
|
-
var s$i = {"root":"index-module_root__r-dVh"};
|
|
5061
|
+
var s$i = {"root":"index-module_root__r-dVh","noneDecoration":"index-module_noneDecoration__N4OkH"};
|
|
5062
5062
|
|
|
5063
5063
|
function AppLink(_a) {
|
|
5064
5064
|
var _b;
|
|
@@ -5070,7 +5070,7 @@ function AppLink(_a) {
|
|
|
5070
5070
|
}
|
|
5071
5071
|
}
|
|
5072
5072
|
return (React.createElement(Link, __assign({ href: href, as: as, shallow: shallow, title: title, className: classNames(s$i.root, className, (_b = {},
|
|
5073
|
-
_b[s$i.
|
|
5073
|
+
_b[s$i.noneDecoration] = noneDecoration,
|
|
5074
5074
|
_b[s$i.show__underline] = showUnderline,
|
|
5075
5075
|
_b)), ref: aRef }, rest), children));
|
|
5076
5076
|
}
|
|
@@ -5263,7 +5263,7 @@ var Content = function (_a) {
|
|
|
5263
5263
|
var Button = function (_a) {
|
|
5264
5264
|
var tooltip = _a.tooltip, tooltipPlacement = _a.tooltipPlacement, hoverOpenDelay = _a.hoverOpenDelay, href = _a.href, props = __rest(_a, ["tooltip", "tooltipPlacement", "hoverOpenDelay", "href"]);
|
|
5265
5265
|
if (href) {
|
|
5266
|
-
return (React.createElement(AppLink, { href: href,
|
|
5266
|
+
return (React.createElement(AppLink, { href: href, noneDecoration: true },
|
|
5267
5267
|
React.createElement(Content, __assign({}, props, { href: href }))));
|
|
5268
5268
|
}
|
|
5269
5269
|
return tooltip ? (React.createElement(AppTooltip, { placement: tooltipPlacement, title: tooltip, mouseEnterDelay: hoverOpenDelay },
|
package/build/styles.css
CHANGED
|
@@ -228,6 +228,13 @@ body {
|
|
|
228
228
|
color: var(--linkColor);
|
|
229
229
|
text-decoration: underline;
|
|
230
230
|
}
|
|
231
|
+
|
|
232
|
+
.index-module_noneDecoration__N4OkH {
|
|
233
|
+
text-decoration: none !important;
|
|
234
|
+
}
|
|
235
|
+
.index-module_noneDecoration__N4OkH:hover {
|
|
236
|
+
text-decoration: none !important;
|
|
237
|
+
}
|
|
231
238
|
.index-module_root__gpEkZ {
|
|
232
239
|
display: inline;
|
|
233
240
|
color: var(--linkColor) !important;
|