@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.esm.js
CHANGED
|
@@ -47968,12 +47968,16 @@ var fontWeight$7 = {
|
|
|
47968
47968
|
var modalLinkHoverFocus$1 = {
|
|
47969
47969
|
"default": "outline: none; text-decoration: underline;"
|
|
47970
47970
|
};
|
|
47971
|
+
var linkTextDecoration = {
|
|
47972
|
+
"default": LINK_TEXT_DECORATION
|
|
47973
|
+
};
|
|
47971
47974
|
var fallbackValues$O = {
|
|
47972
47975
|
linkColor: linkColor$5,
|
|
47973
47976
|
fontSize: fontSize$a,
|
|
47974
47977
|
lineHeight: lineHeight$4,
|
|
47975
47978
|
fontWeight: fontWeight$7,
|
|
47976
|
-
modalLinkHoverFocus: modalLinkHoverFocus$1
|
|
47979
|
+
modalLinkHoverFocus: modalLinkHoverFocus$1,
|
|
47980
|
+
linkTextDecoration: linkTextDecoration
|
|
47977
47981
|
};
|
|
47978
47982
|
|
|
47979
47983
|
var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
@@ -48027,6 +48031,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
48027
48031
|
color: themeValues.linkColor,
|
|
48028
48032
|
weight: themeValues.fontWeight,
|
|
48029
48033
|
hoverStyles: themeValues.modalLinkHoverFocus,
|
|
48034
|
+
textDecoration: themeValues.linkTextDecoration,
|
|
48030
48035
|
extraStyles: "cursor: pointer;",
|
|
48031
48036
|
role: "button",
|
|
48032
48037
|
className: "modal-trigger"
|