@thecb/components 10.2.1-beta.6 → 10.2.1-beta.7
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/dist/index.cjs.js +6 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +6 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.js +1 -0
- package/src/components/molecules/account-and-routing-modal/AccountAndRoutingModal.theme.js +10 -2
package/dist/index.cjs.js
CHANGED
|
@@ -47976,12 +47976,16 @@ var fontWeight$7 = {
|
|
|
47976
47976
|
var modalLinkHoverFocus$1 = {
|
|
47977
47977
|
"default": "outline: none; text-decoration: underline;"
|
|
47978
47978
|
};
|
|
47979
|
+
var linkTextDecoration = {
|
|
47980
|
+
"default": LINK_TEXT_DECORATION
|
|
47981
|
+
};
|
|
47979
47982
|
var fallbackValues$O = {
|
|
47980
47983
|
linkColor: linkColor$5,
|
|
47981
47984
|
fontSize: fontSize$a,
|
|
47982
47985
|
lineHeight: lineHeight$4,
|
|
47983
47986
|
fontWeight: fontWeight$7,
|
|
47984
|
-
modalLinkHoverFocus: modalLinkHoverFocus$1
|
|
47987
|
+
modalLinkHoverFocus: modalLinkHoverFocus$1,
|
|
47988
|
+
linkTextDecoration: linkTextDecoration
|
|
47985
47989
|
};
|
|
47986
47990
|
|
|
47987
47991
|
var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
@@ -48035,6 +48039,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
48035
48039
|
color: themeValues.linkColor,
|
|
48036
48040
|
weight: themeValues.fontWeight,
|
|
48037
48041
|
hoverStyles: themeValues.modalLinkHoverFocus,
|
|
48042
|
+
textDecoration: themeValues.linkTextDecoration,
|
|
48038
48043
|
extraStyles: "cursor: pointer;",
|
|
48039
48044
|
role: "button",
|
|
48040
48045
|
className: "modal-trigger"
|