@thecb/components 11.2.3-beta.4 → 11.2.4-beta.1

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.
Files changed (25) hide show
  1. package/dist/index.cjs.js +93 -210
  2. package/dist/index.cjs.js.map +1 -1
  3. package/dist/index.esm.js +94 -210
  4. package/dist/index.esm.js.map +1 -1
  5. package/package.json +1 -1
  6. package/src/components/atoms/icons/ExternalLinkIcon.js +2 -1
  7. package/src/components/atoms/layouts/Stack.js +2 -0
  8. package/src/components/atoms/layouts/Stack.styled.js +2 -0
  9. package/src/components/atoms/link/ExternalLink.js +2 -0
  10. package/src/components/atoms/link/ExternalLink.styled.js +4 -1
  11. package/src/components/atoms/link/InternalLink.js +3 -1
  12. package/src/components/atoms/link/InternalLink.styled.js +4 -1
  13. package/src/components/molecules/contact-card/ContactCard.js +59 -25
  14. package/src/components/molecules/contact-card/ContactCard.stories.js +4 -0
  15. package/src/components/molecules/contact-card/ContactCard.styled.js +20 -23
  16. package/src/components/molecules/index.js +0 -1
  17. package/src/util/general.js +0 -36
  18. package/src/components/atoms/.DS_Store +0 -0
  19. package/src/components/molecules/registration-banner/RegistrationBanner.js +0 -112
  20. package/src/components/molecules/registration-banner/RegistrationBanner.mdx +0 -15
  21. package/src/components/molecules/registration-banner/RegistrationBanner.stories.js +0 -80
  22. package/src/components/molecules/registration-banner/RegistrationBanner.styled.js +0 -43
  23. package/src/components/molecules/registration-banner/RegistrationBanner.theme.js +0 -11
  24. package/src/components/molecules/registration-banner/index.d.ts +0 -15
  25. package/src/components/molecules/registration-banner/index.js +0 -3
package/dist/index.esm.js CHANGED
@@ -6248,38 +6248,6 @@ var adjustHexColor = function adjustHexColor(hex, percent, action) {
6248
6248
  return "#".concat(((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1).padStart(6, "0"));
6249
6249
  };
6250
6250
 
6251
- /**
6252
- * Converts a hex color code to an RGBA color string with the specified alpha value.
6253
- *
6254
- * @param {string} hex - The hex color code (e.g., "#3498db" or "3498db").
6255
- * @param {number} alpha - The alpha value (opacity) between 0 and 1.
6256
- * @returns {string} - The RGBA color string (e.g., "rgba(52, 152, 219, 0.5)").
6257
- * @throws {Error} - Throws an error if the hex code is not a valid 3 or 6-digit hex color.
6258
- */
6259
- var hexToRGBA = function hexToRGBA(hex, alpha) {
6260
- // Remove hash at the start if present
6261
- hex = hex.replace(/^\s*#/, "");
6262
-
6263
- // If hex is 3 characters, convert it to 6 characters.
6264
- if (hex.length === 3) {
6265
- hex = hex.split("").map(function (_char) {
6266
- return _char + _char;
6267
- }).join("");
6268
- }
6269
-
6270
- // Validate hex length
6271
- if (hex.length !== 6) {
6272
- throw new Error("Invalid hex color provided. Expected a 3 or 6-digit hex color.");
6273
- }
6274
-
6275
- // Parse the hex color components
6276
- var bigint = parseInt(hex, 16);
6277
- var r = bigint >> 16 & 255;
6278
- var g = bigint >> 8 & 255;
6279
- var b = bigint & 255;
6280
- return "rgba(".concat(r, ", ").concat(g, ", ").concat(b, ", ").concat(alpha, ")");
6281
- };
6282
-
6283
6251
  var general = /*#__PURE__*/Object.freeze({
6284
6252
  __proto__: null,
6285
6253
  noop: noop$1,
@@ -6301,8 +6269,7 @@ var general = /*#__PURE__*/Object.freeze({
6301
6269
  titleCaseString: titleCaseString,
6302
6270
  kebabCaseString: kebabCaseString,
6303
6271
  wrapIndex: wrapIndex,
6304
- adjustHexColor: adjustHexColor,
6305
- hexToRGBA: hexToRGBA
6272
+ adjustHexColor: adjustHexColor
6306
6273
  });
6307
6274
 
6308
6275
  var _excluded$1 = ["themeValues", "weight", "color", "textWrap", "extraStyles", "hoverStyles", "onClick", "onKeyPress", "as", "dataQa", "children", "variant"];
@@ -6817,7 +6784,7 @@ var Sidebar = function Sidebar(_ref) {
6817
6784
  var StackWrapper = styled.div.withConfig({
6818
6785
  displayName: "Stackstyled__StackWrapper",
6819
6786
  componentId: "sc-ejhezz-0"
6820
- })(["box-sizing:border-box;display:flex;flex-direction:", ";justify-content:", ";height:", ";> *{margin-top:0;margin-bottom:0;}> * + *{", "}", ";"], function (_ref) {
6787
+ })(["box-sizing:border-box;display:flex;flex-direction:", ";justify-content:", ";height:", ";> *{margin-top:0;margin-bottom:0;}> * + *{", "}", ";", ""], function (_ref) {
6821
6788
  var direction = _ref.direction;
6822
6789
  return direction;
6823
6790
  }, function (_ref2) {
@@ -6834,9 +6801,12 @@ var StackWrapper = styled.div.withConfig({
6834
6801
  var bottomItem = _ref5.bottomItem,
6835
6802
  direction = _ref5.direction;
6836
6803
  return bottomItem ? "\n > :nth-child(".concat(bottomItem, ") {\n ").concat(direction === "row" ? "margin-left: auto;" : "margin-top: auto;", "\n }\n ") : "";
6804
+ }, function (_ref6) {
6805
+ var extraStyles = _ref6.extraStyles;
6806
+ return extraStyles;
6837
6807
  });
6838
6808
 
6839
- var _excluded$a = ["childGap", "bottomItem", "fullHeight", "children", "direction", "justify"];
6809
+ var _excluded$a = ["childGap", "bottomItem", "fullHeight", "children", "direction", "justify", "extraStyles"];
6840
6810
 
6841
6811
  /*
6842
6812
  Component to impose margin-top between a list of child elements
@@ -6858,13 +6828,15 @@ var Stack = function Stack(_ref) {
6858
6828
  _ref$direction = _ref.direction,
6859
6829
  direction = _ref$direction === void 0 ? "column" : _ref$direction,
6860
6830
  justify = _ref.justify,
6831
+ extraStyles = _ref.extraStyles,
6861
6832
  rest = _objectWithoutProperties(_ref, _excluded$a);
6862
6833
  return /*#__PURE__*/React.createElement(StackWrapper, _extends({
6863
6834
  childGap: childGap,
6864
6835
  bottomItem: bottomItem,
6865
6836
  fullHeight: fullHeight,
6866
6837
  direction: direction,
6867
- justify: justify
6838
+ justify: justify,
6839
+ extraStyles: extraStyles
6868
6840
  }, rest), safeChildren(children, /*#__PURE__*/React.createElement(Fragment$1, null)));
6869
6841
  };
6870
6842
 
@@ -16162,13 +16134,16 @@ var ErroredIcon = function ErroredIcon() {
16162
16134
 
16163
16135
  var ExternalLinkIcon = function ExternalLinkIcon(_ref) {
16164
16136
  var linkColor = _ref.linkColor,
16165
- text = _ref.text;
16137
+ text = _ref.text,
16138
+ _ref$ariaLabel = _ref.ariaLabel,
16139
+ ariaLabel = _ref$ariaLabel === void 0 ? "External Link" : _ref$ariaLabel;
16166
16140
  return /*#__PURE__*/React.createElement("svg", {
16167
16141
  width: "14",
16168
16142
  height: "14",
16169
16143
  viewBox: "0 0 14 14",
16170
16144
  fill: "none",
16171
- xmlns: "http://www.w3.org/2000/svg"
16145
+ xmlns: "http://www.w3.org/2000/svg",
16146
+ "aria-label": ariaLabel
16172
16147
  }, /*#__PURE__*/React.createElement("path", {
16173
16148
  fillRule: "evenodd",
16174
16149
  clipRule: "evenodd",
@@ -22283,7 +22258,7 @@ var StyledExternalLink = styled( /*#__PURE__*/forwardRef(function (_ref, ref) {
22283
22258
  })).withConfig({
22284
22259
  displayName: "ExternalLinkstyled__StyledExternalLink",
22285
22260
  componentId: "sc-m1q2m2-0"
22286
- })(["display:flex;font-size:", ";color:", ";font-weight:", ";font-family:", ";line-height:", ";text-decoration:", ";&:hover{color:", ";}&:focus{outline:3px solid ", ";outline-offset:2px;}&:active{color:", ";}", ""], function (_ref2) {
22261
+ })(["display:flex;font-size:", ";color:", ";font-weight:", ";font-family:", ";line-height:", ";text-decoration:", ";&:hover{color:", ";text-decoration:", ";}&:focus{outline:3px solid ", ";outline-offset:2px;text-decoration:", ";}&:active{color:", ";}", ""], function (_ref2) {
22287
22262
  var size = _ref2.size;
22288
22263
  return size;
22289
22264
  }, function (_ref3) {
@@ -22298,14 +22273,17 @@ var StyledExternalLink = styled( /*#__PURE__*/forwardRef(function (_ref, ref) {
22298
22273
  }, function (_ref6) {
22299
22274
  var lineheight = _ref6.lineheight;
22300
22275
  return lineheight;
22301
- }, LINK_TEXT_DECORATION$3, function (_ref7) {
22302
- var hoverColor = _ref7.hoverColor;
22276
+ }, function (_ref7) {
22277
+ var isUnderlined = _ref7.isUnderlined;
22278
+ return isUnderlined ? LINK_TEXT_DECORATION$3 : "none";
22279
+ }, function (_ref8) {
22280
+ var hoverColor = _ref8.hoverColor;
22303
22281
  return hoverColor;
22304
- }, ROYAL_BLUE$1, function (_ref8) {
22305
- var activeColor = _ref8.activeColor;
22282
+ }, LINK_TEXT_DECORATION$3, ROYAL_BLUE$1, LINK_TEXT_DECORATION$3, function (_ref9) {
22283
+ var activeColor = _ref9.activeColor;
22306
22284
  return activeColor;
22307
- }, function (_ref9) {
22308
- var extrastyles = _ref9.extrastyles;
22285
+ }, function (_ref10) {
22286
+ var extrastyles = _ref10.extrastyles;
22309
22287
  return extrastyles;
22310
22288
  });
22311
22289
  /* eslint-enable no-unused-vars */
@@ -22331,6 +22309,8 @@ var ExternalLink = /*#__PURE__*/forwardRef(function (_ref, ref) {
22331
22309
  tabIndex = _ref$tabIndex === void 0 ? "0" : _ref$tabIndex,
22332
22310
  dataQa = _ref.dataQa,
22333
22311
  ariaLabel = _ref.ariaLabel,
22312
+ _ref$isUnderlined = _ref.isUnderlined,
22313
+ isUnderlined = _ref$isUnderlined === void 0 ? true : _ref$isUnderlined,
22334
22314
  children = _ref.children;
22335
22315
  var themeContext = useContext(ThemeContext);
22336
22316
  var themeValues = createThemeValues(themeContext, fallbackValues$a, "Link", variant);
@@ -22363,6 +22343,7 @@ var ExternalLink = /*#__PURE__*/forwardRef(function (_ref, ref) {
22363
22343
  rel: newTab ? "noopener" : "",
22364
22344
  "data-qa": dataQa,
22365
22345
  "aria-label": ariaLabel,
22346
+ isUnderlined: isUnderlined,
22366
22347
  ref: ref
22367
22348
  }, safeChildren(children, /*#__PURE__*/React.createElement("span", null))));
22368
22349
  });
@@ -22390,7 +22371,7 @@ var StyledInternalLink = styled( /*#__PURE__*/forwardRef(function (_ref, ref) {
22390
22371
  })).withConfig({
22391
22372
  displayName: "InternalLinkstyled__StyledInternalLink",
22392
22373
  componentId: "sc-cuqxud-0"
22393
- })(["display:flex;color:", ";font-weight:", ";line-height:", ";font-size:", ";font-family:", ";margin:", ";text-decoration:", ";&:hover{color:", ";}&:focus{outline:3px solid ", ";outline-offset:2px;}&:active{color:", ";}", ""], function (_ref2) {
22374
+ })(["display:flex;color:", ";font-weight:", ";line-height:", ";font-size:", ";font-family:", ";margin:", ";text-decoration:", ";&:hover{color:", ";text-decoration:", ";}&:focus{outline:3px solid ", ";outline-offset:2px;text-decoration:", ";}&:active{color:", ";}", ""], function (_ref2) {
22394
22375
  var color = _ref2.color,
22395
22376
  active = _ref2.active,
22396
22377
  activeColor = _ref2.activeColor;
@@ -22410,14 +22391,17 @@ var StyledInternalLink = styled( /*#__PURE__*/forwardRef(function (_ref, ref) {
22410
22391
  }, function (_ref7) {
22411
22392
  var margin = _ref7.margin;
22412
22393
  return margin;
22413
- }, LINK_TEXT_DECORATION$4, function (_ref8) {
22414
- var hoverColor = _ref8.hoverColor;
22394
+ }, function (_ref8) {
22395
+ var isUnderlined = _ref8.isUnderlined;
22396
+ return isUnderlined ? LINK_TEXT_DECORATION$4 : "none";
22397
+ }, function (_ref9) {
22398
+ var hoverColor = _ref9.hoverColor;
22415
22399
  return hoverColor;
22416
- }, ROYAL_BLUE$2, function (_ref9) {
22417
- var activeColor = _ref9.activeColor;
22400
+ }, LINK_TEXT_DECORATION$4, ROYAL_BLUE$2, LINK_TEXT_DECORATION$4, function (_ref10) {
22401
+ var activeColor = _ref10.activeColor;
22418
22402
  return activeColor;
22419
- }, function (_ref10) {
22420
- var extrastyles = _ref10.extrastyles;
22403
+ }, function (_ref11) {
22404
+ var extrastyles = _ref11.extrastyles;
22421
22405
  return extrastyles;
22422
22406
  });
22423
22407
  /* eslint-enable no-unused-vars */
@@ -22438,7 +22422,9 @@ var InternalLink = /*#__PURE__*/forwardRef(function (_ref, ref) {
22438
22422
  tabIndex = _ref$tabIndex === void 0 ? "0" : _ref$tabIndex,
22439
22423
  dataQa = _ref.dataQa,
22440
22424
  _ref$extraStyles = _ref.extraStyles,
22441
- extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles;
22425
+ extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
22426
+ _ref$isUnderlined = _ref.isUnderlined,
22427
+ isUnderlined = _ref$isUnderlined === void 0 ? true : _ref$isUnderlined;
22442
22428
  var themeContext = useContext(ThemeContext);
22443
22429
  var themeValues = createThemeValues(themeContext, fallbackValues$a, "Link", variant);
22444
22430
  return /*#__PURE__*/React.createElement(StyledInternalLink, {
@@ -22455,6 +22441,7 @@ var InternalLink = /*#__PURE__*/forwardRef(function (_ref, ref) {
22455
22441
  tabIndex: tabIndex,
22456
22442
  extrastyles: extraStyles,
22457
22443
  "data-qa": dataQa,
22444
+ isUnderlined: isUnderlined,
22458
22445
  ref: ref
22459
22446
  }, safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
22460
22447
  });
@@ -49737,118 +49724,6 @@ var RadioSection = function RadioSection(_ref) {
49737
49724
  };
49738
49725
  var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$T);
49739
49726
 
49740
- var fallbackValues$U = {
49741
- primaryColor: ROYAL_BLUE_VIVID,
49742
- secondaryColor: CHARADE_GREY,
49743
- background: CORNFLOWER_BLUE
49744
- };
49745
-
49746
- var BannerContainer = styled(Cluster).withConfig({
49747
- displayName: "RegistrationBannerstyled__BannerContainer",
49748
- componentId: "sc-1m1lm4y-0"
49749
- })(["background:", ";padding:", ";"], function (_ref) {
49750
- var themeValues = _ref.themeValues;
49751
- return hexToRGBA(themeValues.background, 0.9);
49752
- }, function (_ref2) {
49753
- var isMobile = _ref2.isMobile;
49754
- return isMobile ? "1rem 2rem" : " 2rem 8.25rem";
49755
- });
49756
- var ContentContainer = styled(Cluster).withConfig({
49757
- displayName: "RegistrationBannerstyled__ContentContainer",
49758
- componentId: "sc-1m1lm4y-1"
49759
- })(["padding:0;width:", ";> div{flex-direction:", ";}"], function (_ref3) {
49760
- var isMobile = _ref3.isMobile;
49761
- return isMobile ? "296px" : " 1176px";
49762
- }, function (_ref4) {
49763
- var isMobile = _ref4.isMobile;
49764
- return isMobile ? "column" : "row";
49765
- });
49766
- var ButtonContainer = styled(Stack).withConfig({
49767
- displayName: "RegistrationBannerstyled__ButtonContainer",
49768
- componentId: "sc-1m1lm4y-2"
49769
- })(["align-items:center;> a{width:", ";}"], function (_ref5) {
49770
- var isMobile = _ref5.isMobile;
49771
- return isMobile ? "296px" : "222px";
49772
- });
49773
- var RegisterLink = styled(ButtonWithLink).withConfig({
49774
- displayName: "RegistrationBannerstyled__RegisterLink",
49775
- componentId: "sc-1m1lm4y-3"
49776
- })(["border-radius:100px;margin:0;width:100%;"]);
49777
- var LoginLink = styled(ButtonWithLink).withConfig({
49778
- displayName: "RegistrationBannerstyled__LoginLink",
49779
- componentId: "sc-1m1lm4y-4"
49780
- })(["border-radius:100px;padding:0;margin:0;width:100%;min-height:2rem;margin-top:0px;border:none;&:hover{text-decoration:none;}"]);
49781
-
49782
- var RegistrationBanner = function RegistrationBanner(_ref) {
49783
- var clientName = _ref.clientName,
49784
- extraStyles = _ref.extraStyles,
49785
- _ref$loginLink = _ref.loginLink,
49786
- loginLink = _ref$loginLink === void 0 ? "/login" : _ref$loginLink,
49787
- _ref$registrationLink = _ref.registrationLink,
49788
- registrationLink = _ref$registrationLink === void 0 ? "/registration" : _ref$registrationLink,
49789
- themeValues = _ref.themeValues,
49790
- titleAs = _ref.titleAs,
49791
- titleVariant = _ref.titleVariant;
49792
- var themeContext = useContext(ThemeContext);
49793
- var isMobile = themeContext.isMobile;
49794
- return /*#__PURE__*/React.createElement(BannerContainer, {
49795
- extraStyles: extraStyles,
49796
- themeValues: themeValues,
49797
- isMobile: isMobile,
49798
- role: "banner",
49799
- "aria-label": "Registration Banner",
49800
- justify: "center"
49801
- }, /*#__PURE__*/React.createElement(ContentContainer, {
49802
- role: "main",
49803
- align: "center",
49804
- justify: "space-between",
49805
- overflow: "visible",
49806
- isMobile: isMobile
49807
- }, /*#__PURE__*/React.createElement(Box, {
49808
- padding: "0",
49809
- textAlign: "left"
49810
- }, /*#__PURE__*/React.createElement(Heading$1, {
49811
- as: titleAs,
49812
- color: themeValues.primaryColor,
49813
- fontSize: isMobile ? FONT_SIZE.XL : "1.5rem",
49814
- variant: titleVariant,
49815
- weight: FONT_WEIGHT_SEMIBOLD
49816
- }, "Register for a ", clientName, " Wallet Account"), /*#__PURE__*/React.createElement(Text$1, {
49817
- extraStyles: "\n display: block;\n padding: ".concat(isMobile ? ".125rem 0 1rem" : "0", "\n "),
49818
- fontSize: isMobile ? FONT_SIZE.SM : FONT_SIZE.LG,
49819
- color: themeValues.secondaryColor
49820
- }, "Save payment methods and information for fast, easy, and safe payments with ", clientName)), /*#__PURE__*/React.createElement(ButtonContainer, {
49821
- justify: "space-between",
49822
- fullHeight: true,
49823
- childGap: "0.5rem",
49824
- isMobile: isMobile
49825
- }, /*#__PURE__*/React.createElement(RegisterLink, {
49826
- variant: "secondary",
49827
- color: themeValues.primaryColor,
49828
- contentOverride: true,
49829
- fontWeight: FONT_WEIGHT_SEMIBOLD,
49830
- url: registrationLink
49831
- }, /*#__PURE__*/React.createElement(Cluster, {
49832
- justify: "center",
49833
- align: "center"
49834
- }, /*#__PURE__*/React.createElement(Text$1, {
49835
- extraStyles: "margin-right: 0.5rem",
49836
- fontSize: isMobile ? FONT_SIZE.MD : FONT_SIZE.LG,
49837
- color: themeValues.primaryColor,
49838
- weight: FONT_WEIGHT_SEMIBOLD
49839
- }, "Register Now"), /*#__PURE__*/React.createElement(ArrowRightIcon, null))), /*#__PURE__*/React.createElement(LoginLink, {
49840
- text: "Log In",
49841
- variant: "secondary",
49842
- contentOverride: true,
49843
- url: loginLink
49844
- }, /*#__PURE__*/React.createElement(Text$1, {
49845
- fontSize: isMobile ? FONT_SIZE.SM : FONT_SIZE.MD,
49846
- color: themeValues.primaryColor,
49847
- weight: FONT_WEIGHT_SEMIBOLD
49848
- }, "or Log In")))));
49849
- };
49850
- var RegistrationBanner$1 = withWindowSize(themeComponent(RegistrationBanner, "RegistrationBanner", fallbackValues$U));
49851
-
49852
49727
  var RegistrationForm = function RegistrationForm(_ref) {
49853
49728
  var clearOnDismount = _ref.clearOnDismount,
49854
49729
  fields = _ref.fields,
@@ -49967,13 +49842,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
49967
49842
 
49968
49843
  var GRECIAN_GREY$1 = GRECIAN_GREY;
49969
49844
  var bannerBackgroundColor = GRECIAN_GREY$1;
49970
- var fallbackValues$V = {
49845
+ var fallbackValues$U = {
49971
49846
  bannerBackgroundColor: bannerBackgroundColor
49972
49847
  };
49973
49848
 
49974
49849
  var ResetConfirmationForm = function ResetConfirmationForm() {
49975
49850
  var themeContext = useContext(ThemeContext);
49976
- var themeValues = createThemeValues(themeContext, fallbackValues$V, "ResetConfirmationForm");
49851
+ var themeValues = createThemeValues(themeContext, fallbackValues$U, "ResetConfirmationForm");
49977
49852
  var isMobile = themeContext.isMobile;
49978
49853
  return /*#__PURE__*/React.createElement(Box, {
49979
49854
  padding: "0",
@@ -50088,13 +49963,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
50088
49963
 
50089
49964
  var GRECIAN_GREY$2 = GRECIAN_GREY;
50090
49965
  var bannerBackgroundColor$1 = GRECIAN_GREY$2;
50091
- var fallbackValues$W = {
49966
+ var fallbackValues$V = {
50092
49967
  bannerBackgroundColor: bannerBackgroundColor$1
50093
49968
  };
50094
49969
 
50095
49970
  var ResetPasswordSuccess = function ResetPasswordSuccess() {
50096
49971
  var themeContext = useContext(ThemeContext);
50097
- var themeValues = createThemeValues(themeContext, fallbackValues$W, "ResetPasswordSuccess");
49972
+ var themeValues = createThemeValues(themeContext, fallbackValues$V, "ResetPasswordSuccess");
50098
49973
  var isMobile = themeContext.isMobile;
50099
49974
  return /*#__PURE__*/React.createElement(Box, {
50100
49975
  padding: "0",
@@ -50143,7 +50018,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
50143
50018
  var activeTabBackground = "#FFFFFF";
50144
50019
  var activeTabAccent = "#15749D";
50145
50020
  var activeTabHover = "#B8D5E1";
50146
- var fallbackValues$X = {
50021
+ var fallbackValues$W = {
50147
50022
  activeTabBackground: activeTabBackground,
50148
50023
  activeTabAccent: activeTabAccent,
50149
50024
  activeTabHover: activeTabHover
@@ -50211,12 +50086,12 @@ var Tabs = function Tabs(_ref) {
50211
50086
  }, tab.content);
50212
50087
  }))));
50213
50088
  };
50214
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$X);
50089
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$W);
50215
50090
 
50216
50091
  var activeTabBackground$1 = "#FFFFFF";
50217
50092
  var activeTabAccent$1 = "#15749D";
50218
50093
  var activeTabHover$1 = "#B8D5E1";
50219
- var fallbackValues$Y = {
50094
+ var fallbackValues$X = {
50220
50095
  activeTabBackground: activeTabBackground$1,
50221
50096
  activeTabAccent: activeTabAccent$1,
50222
50097
  activeTabHover: activeTabHover$1
@@ -50273,7 +50148,7 @@ var TabSidebar = function TabSidebar(_ref) {
50273
50148
  }, text)))));
50274
50149
  })));
50275
50150
  };
50276
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$Y);
50151
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$X);
50277
50152
 
50278
50153
  var Timeout = function Timeout(_ref) {
50279
50154
  var onLogout = _ref.onLogout;
@@ -50394,7 +50269,7 @@ var fontColor$1 = WHITE;
50394
50269
  var textAlign$1 = "left";
50395
50270
  var headerBackgroundColor$1 = BRIGHT_GREY;
50396
50271
  var imageBackgroundColor$1 = MATISSE_BLUE;
50397
- var fallbackValues$Z = {
50272
+ var fallbackValues$Y = {
50398
50273
  fontWeight: fontWeight$8,
50399
50274
  fontColor: fontColor$1,
50400
50275
  textAlign: textAlign$1,
@@ -50439,7 +50314,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
50439
50314
  src: welcomeImage
50440
50315
  })))));
50441
50316
  };
50442
- var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$Z));
50317
+ var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$Y));
50443
50318
 
50444
50319
  var WorkflowTile = function WorkflowTile(_ref) {
50445
50320
  var _ref$workflowName = _ref.workflowName,
@@ -50499,7 +50374,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
50499
50374
  var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
50500
50375
  var menuItemHoverBackgroundColorDelete = BLUSH_RED;
50501
50376
  var menuItemHoverColor = ROYAL_BLUE_VIVID;
50502
- var fallbackValues$_ = {
50377
+ var fallbackValues$Z = {
50503
50378
  menuItemBackgroundColor: menuItemBackgroundColor,
50504
50379
  menuItemColor: menuItemColor,
50505
50380
  menuItemColorDelete: menuItemColorDelete,
@@ -50566,13 +50441,13 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
50566
50441
  extraStyles: textExtraStyles
50567
50442
  }, text)));
50568
50443
  };
50569
- var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$_);
50444
+ var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$Z);
50570
50445
 
50571
50446
  var hoverColor$5 = "#116285";
50572
50447
  var activeColor$a = "#0E506D";
50573
50448
  var menuTriggerColor = "#15749D";
50574
50449
  var backgroundColor$e = "white";
50575
- var fallbackValues$$ = {
50450
+ var fallbackValues$_ = {
50576
50451
  hoverColor: hoverColor$5,
50577
50452
  activeColor: activeColor$a,
50578
50453
  menuTriggerColor: menuTriggerColor,
@@ -50708,13 +50583,13 @@ var PopupMenu = function PopupMenu(_ref) {
50708
50583
  }, item));
50709
50584
  })));
50710
50585
  };
50711
- var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$$);
50586
+ var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$_);
50712
50587
 
50713
50588
  var primaryColor$1 = WHITE;
50714
50589
  var primaryHoverColor = INFO_BLUE;
50715
50590
  var secondaryColor = MATISSE_BLUE;
50716
50591
  var secondaryHoverColor = "#115D7E";
50717
- var fallbackValues$10 = {
50592
+ var fallbackValues$$ = {
50718
50593
  primaryColor: primaryColor$1,
50719
50594
  primaryHoverColor: primaryHoverColor,
50720
50595
  secondaryColor: secondaryColor,
@@ -51416,28 +51291,24 @@ var MultipleSelectFilter = function MultipleSelectFilter(_ref) {
51416
51291
  ariaLabel: "Apply all filters"
51417
51292
  }))));
51418
51293
  };
51419
- var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues$10);
51294
+ var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues$$);
51420
51295
 
51296
+ var TextWrapStyles = css(["word-wrap:break-word;overflow-wrap:break-word;white-space:normal;max-width:100%;"]);
51421
51297
  var Container$1 = styled(Box).withConfig({
51422
51298
  displayName: "ContactCardstyled__Container",
51423
51299
  componentId: "sc-1v62a1n-0"
51424
- })(["height:fit-content;display:flex;padding:1rem;flex-direction:column;align-items:flex-start;gap:1.5rem;border-radius:8px;"]);
51300
+ })(["height:fit-content;display:flex;padding:1rem;flex-direction:column;align-items:flex-start;gap:1.5rem;border-radius:8px;", ""], function (_ref) {
51301
+ var extraStyles = _ref.extraStyles;
51302
+ return extraStyles;
51303
+ });
51425
51304
  var Title$3 = styled(Heading$1).withConfig({
51426
51305
  displayName: "ContactCardstyled__Title",
51427
51306
  componentId: "sc-1v62a1n-1"
51428
- })(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;background-color:transparent;font-weight:", ";"], FONT_WEIGHT_SEMIBOLD);
51307
+ })(["", ""], TextWrapStyles);
51429
51308
  var Content = styled(Box).withConfig({
51430
51309
  displayName: "ContactCardstyled__Content",
51431
51310
  componentId: "sc-1v62a1n-2"
51432
- })(["padding:0;font-size:", ";line-height:1.313rem;overflow-wrap:normal;letter-spacing:0.14px;"], FONT_SIZE.SM);
51433
- var Footer$1 = styled(Stack).withConfig({
51434
- displayName: "ContactCardstyled__Footer",
51435
- componentId: "sc-1v62a1n-3"
51436
- })(["width:100%;"]);
51437
- var Divider = styled(Box).withConfig({
51438
- displayName: "ContactCardstyled__Divider",
51439
- componentId: "sc-1v62a1n-4"
51440
- })(["padding:0;height:1px;width:100%;"]);
51311
+ })(["word-break:break-word;padding:0;font-size:", ";line-height:1.313rem;letter-spacing:0.14px;", " p{margin:0;}p,span{line-height:1.313rem;}"], FONT_SIZE.SM, TextWrapStyles);
51441
51312
 
51442
51313
  var ContactCard = function ContactCard(_ref) {
51443
51314
  var title = _ref.title,
@@ -51463,9 +51334,10 @@ var ContactCard = function ContactCard(_ref) {
51463
51334
  var linkThemeValues = createThemeValues(themeContext, linkFallbackValues, "Link", linkVariant);
51464
51335
  return /*#__PURE__*/React.createElement(Container$1, {
51465
51336
  borderRadius: "8px",
51337
+ background: WHITE,
51466
51338
  boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.25)",
51467
51339
  dataQa: createIdFromString(title, "contact-card"),
51468
- maxWidth: isMobile ? "100%" : "208px",
51340
+ maxWidth: "100%",
51469
51341
  minWidth: isMobile ? "240px" : "208px",
51470
51342
  minHeight: "141px",
51471
51343
  padding: "1.5rem",
@@ -51486,7 +51358,8 @@ var ContactCard = function ContactCard(_ref) {
51486
51358
  }, /*#__PURE__*/React.createElement(Title$3, {
51487
51359
  variant: titleVariant,
51488
51360
  margin: 0,
51489
- fontSize: FONT_SIZE.MD
51361
+ fontSize: FONT_SIZE.MD,
51362
+ weight: FONT_WEIGHT_SEMIBOLD
51490
51363
  }, title)), /*#__PURE__*/React.createElement(Box, {
51491
51364
  padding: "0",
51492
51365
  width: "100%"
@@ -51503,33 +51376,44 @@ var ContactCard = function ContactCard(_ref) {
51503
51376
  }, /*#__PURE__*/React.createElement(Title$3, {
51504
51377
  variant: titleVariant,
51505
51378
  margin: 0,
51506
- fontSize: FONT_SIZE.MD
51379
+ fontSize: FONT_SIZE.MD,
51380
+ weight: FONT_WEIGHT_SEMIBOLD
51507
51381
  }, secondTitle), /*#__PURE__*/React.createElement(Stack, {
51508
51382
  childGap: "4px",
51509
51383
  justify: "space-between",
51510
- style: {
51511
- width: "100%"
51512
- },
51384
+ extraStyles: "width: 100%;",
51513
51385
  fullHeight: true
51514
51386
  }, links.map(function (link) {
51515
51387
  var linkID = createIdFromString(link.text, "contact-card-link");
51516
- return /*#__PURE__*/React.createElement(ExternalLink, {
51388
+ return /*#__PURE__*/React.createElement(React.Fragment, null, test(URL_TEST, link.link) ? /*#__PURE__*/React.createElement(ExternalLink, {
51517
51389
  key: linkID,
51518
51390
  dataQa: linkID,
51519
51391
  href: link.link,
51520
51392
  newTab: true,
51521
- extraStyles: "\n flex-direction: row;\n align-items: center;\n align-content: flex-start;\n justify-content: space-between;\n ",
51393
+ isUnderlined: false,
51394
+ extraStyles: "\n flex-direction: row;\n align-items: center;\n align-content: flex-start;\n justify-content: space-between;\n word-break: break-word;\n ".concat(TextWrapStyles, "\n "),
51522
51395
  size: FONT_SIZE.SM,
51523
51396
  lineHeight: "1.313rem"
51524
51397
  }, link.text, /*#__PURE__*/React.createElement(ExternalLinkIcon, {
51525
51398
  linkColor: linkThemeValues.externalLinkColor,
51526
- text: link.text
51527
- }));
51399
+ text: link.text,
51400
+ ariaLabel: "(Opens in a new tab)"
51401
+ })) : /*#__PURE__*/React.createElement(InternalLink, {
51402
+ key: linkID,
51403
+ to: link.link,
51404
+ dataQa: linkID,
51405
+ fontSize: FONT_SIZE.SM,
51406
+ color: linkThemeValues.externalLinkColor,
51407
+ isUnderlined: false,
51408
+ active: false,
51409
+ lineheight: "1.313rem",
51410
+ extraStyles: "\n word-break: break-word;\n ".concat(TextWrapStyles, "\n ")
51411
+ }, link.text));
51528
51412
  })))));
51529
51413
  };
51530
51414
 
51531
51415
  var pageBackground = "#FBFCFD";
51532
- var fallbackValues$11 = {
51416
+ var fallbackValues$10 = {
51533
51417
  pageBackground: pageBackground
51534
51418
  };
51535
51419
 
@@ -51577,7 +51461,7 @@ var CenterSingle = function CenterSingle(_ref) {
51577
51461
  padding: "0"
51578
51462
  })));
51579
51463
  };
51580
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$11));
51464
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$10));
51581
51465
 
51582
51466
  var CenterStack = function CenterStack(_ref) {
51583
51467
  var header = _ref.header,
@@ -51620,7 +51504,7 @@ var CenterStack = function CenterStack(_ref) {
51620
51504
  padding: "0"
51621
51505
  })));
51622
51506
  };
51623
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$11));
51507
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$10));
51624
51508
 
51625
51509
  var CenterSingle$2 = function CenterSingle(_ref) {
51626
51510
  var header = _ref.header,
@@ -51666,7 +51550,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
51666
51550
  padding: "0"
51667
51551
  })));
51668
51552
  };
51669
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$11));
51553
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$10));
51670
51554
 
51671
51555
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
51672
51556
  var header = _ref.header,
@@ -51719,7 +51603,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
51719
51603
  padding: "0"
51720
51604
  })));
51721
51605
  };
51722
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$11));
51606
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$10));
51723
51607
 
51724
51608
  var SidebarStackContent = function SidebarStackContent(_ref) {
51725
51609
  var header = _ref.header,
@@ -51789,7 +51673,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
51789
51673
  key: "footer-box"
51790
51674
  })));
51791
51675
  };
51792
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$11));
51676
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$10));
51793
51677
 
51794
51678
  var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
51795
51679
  var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
@@ -51860,5 +51744,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
51860
51744
  useLogoutTimers: useLogoutTimers
51861
51745
  });
51862
51746
 
51863
- export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, AgencyIcon, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CaretArrowDown$1 as CaretArrowDown, CaretArrowUp$1 as CaretArrowUp, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, ContactCard, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, IdleModal, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, MultipleSelectFilter$1 as MultipleSelectFilter, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentStatusIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PersonIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationBanner$1 as RegistrationBanner, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, Search$1 as Search, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, SortableTableHeading$1 as SortableTableHeading, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
51747
+ export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, AgencyIcon, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CaretArrowDown$1 as CaretArrowDown, CaretArrowUp$1 as CaretArrowUp, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, ContactCard, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, IdleModal, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, MultipleSelectFilter$1 as MultipleSelectFilter, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentStatusIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PersonIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, PopupMenu$1 as PopupMenu, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, Search$1 as Search, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, SortableTableHeading$1 as SortableTableHeading, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToastNotification, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
51864
51748
  //# sourceMappingURL=index.esm.js.map