@thecb/components 10.2.1-beta.4 → 10.2.1-beta.5

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 CHANGED
@@ -48071,6 +48071,10 @@ var modalLinkHoverFocus$2 = {
48071
48071
  "default": standardInteractionStyles,
48072
48072
  footer: standardInteractionStyles
48073
48073
  };
48074
+ var modalLinkTextDecoration = {
48075
+ "default": LINK_TEXT_DECORATION,
48076
+ footer: "none"
48077
+ };
48074
48078
  var fallbackValues$P = {
48075
48079
  backgroundColor: backgroundColor$d,
48076
48080
  linkColor: linkColor$6,
@@ -48078,7 +48082,8 @@ var fallbackValues$P = {
48078
48082
  fontSize: fontSize$b,
48079
48083
  lineHeight: lineHeight$5,
48080
48084
  fontWeight: fontWeight$8,
48081
- modalLinkHoverFocus: modalLinkHoverFocus$2
48085
+ modalLinkHoverFocus: modalLinkHoverFocus$2,
48086
+ modalLinkTextDecoration: modalLinkTextDecoration
48082
48087
  };
48083
48088
 
48084
48089
  var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
@@ -48135,7 +48140,8 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
48135
48140
  color: themeValues.linkColor,
48136
48141
  weight: themeValues.fontWeight,
48137
48142
  hoverStyles: themeValues.modalLinkHoverFocus,
48138
- extraStyles: "text-decoration: underline; display: inline-block; width: fit-content; cursor: pointer",
48143
+ textDecoration: themeValues.modalLinkTextDecoration,
48144
+ extraStyles: "display: inline-block; width: fit-content; cursor: pointer",
48139
48145
  role: "button" // This should always be a "button" since it opens a modal
48140
48146
  ,
48141
48147
  className: "modal-trigger"