@thecb/components 7.7.0-beta.0 → 7.7.0-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.
package/dist/index.esm.js CHANGED
@@ -6310,6 +6310,44 @@ var throttle = function throttle(delay, fn) {
6310
6310
  return fn.apply(void 0, arguments);
6311
6311
  };
6312
6312
  };
6313
+ var titleCaseWord = function titleCaseWord(word) {
6314
+ return word.charAt(0).toUpperCase() + word.slice(1);
6315
+ };
6316
+ var titleCaseString = function titleCaseString(string) {
6317
+ return string.split(" ").map(function (word, index, string) {
6318
+ return index === 0 || index === string.length - 1 || word.length > 3 ? titleCaseWord(word.toLowerCase()) : word;
6319
+ }).join(" ");
6320
+ };
6321
+ var renderCardStatus = function renderCardStatus(expirationStatus, expireDate) {
6322
+ var textAlign = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : "right";
6323
+ var as = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : "span";
6324
+
6325
+ switch (expirationStatus) {
6326
+ case ACTIVE:
6327
+ return /*#__PURE__*/React.createElement(Text$1, {
6328
+ as: as,
6329
+ variant: "pXS",
6330
+ color: ASH_GREY,
6331
+ extraStyles: "text-align: ".concat(textAlign, ";")
6332
+ }, "Exp Date ", expireDate);
6333
+
6334
+ case EXPIRING_SOON:
6335
+ return /*#__PURE__*/React.createElement(Text$1, {
6336
+ as: as,
6337
+ variant: "pXS",
6338
+ color: FIRE_YELLOW,
6339
+ extraStyles: "text-align: ".concat(textAlign, ";")
6340
+ }, "Expiring Soon ", expireDate);
6341
+
6342
+ case EXPIRED:
6343
+ return /*#__PURE__*/React.createElement(Text$1, {
6344
+ as: as,
6345
+ variant: "pXS",
6346
+ color: ASH_GREY,
6347
+ extraStyles: "text-align: ".concat(textAlign, ";")
6348
+ }, "Expired");
6349
+ }
6350
+ };
6313
6351
 
6314
6352
  var general = /*#__PURE__*/Object.freeze({
6315
6353
  __proto__: null,
@@ -6327,7 +6365,10 @@ var general = /*#__PURE__*/Object.freeze({
6327
6365
  inputPlaceholderTextStyle: inputPlaceholderTextStyle,
6328
6366
  inputDisabledStyle: inputDisabledStyle,
6329
6367
  MOBILE_WIDTH: MOBILE_WIDTH,
6330
- throttle: throttle
6368
+ throttle: throttle,
6369
+ titleCaseWord: titleCaseWord,
6370
+ titleCaseString: titleCaseString,
6371
+ renderCardStatus: renderCardStatus
6331
6372
  });
6332
6373
 
6333
6374
  var _excluded$1 = ["themeValues", "weight", "color", "textWrap", "extraStyles", "hoverStyles", "onClick", "onKeyPress", "as", "dataQa", "children", "variant"];
@@ -13813,33 +13854,6 @@ var GenericCard = function GenericCard() {
13813
13854
  }));
13814
13855
  };
13815
13856
 
13816
- var BankItemWrapper = styled.div.withConfig({
13817
- displayName: "PaymentIcon__BankItemWrapper",
13818
- componentId: "sc-1k0jl35-0"
13819
- })(["display:flex;justify-content:flex-start;align-items:center;"]);
13820
- var BankAccountText = styled.h4.withConfig({
13821
- displayName: "PaymentIcon__BankAccountText",
13822
- componentId: "sc-1k0jl35-1"
13823
- })(["color:", ";font-size:1rem;font-weight:400;line-height:1.5rem;text-align:left;margin-right:0.5rem;display:inline-block;"], CHARADE_GREY);
13824
- var CHECKING = "CHECKING";
13825
- var SAVINGS = "SAVINGS";
13826
-
13827
- var PaymentIcon = function PaymentIcon(_ref) {
13828
- var lastFour = _ref.lastFour,
13829
- accountType = _ref.accountType,
13830
- autoPay = _ref.autoPay;
13831
- return /*#__PURE__*/React.createElement(BankItemWrapper, null, /*#__PURE__*/React.createElement(Box, {
13832
- padding: "0.25rem 0 0 0",
13833
- extraStyles: "margin-right: 1rem;"
13834
- }, /*#__PURE__*/React.createElement(BankIcon, null)), /*#__PURE__*/React.createElement(Stack, {
13835
- childGap: "0"
13836
- }, accountType === CHECKING && /*#__PURE__*/React.createElement(BankAccountText, null, "Checking Account ending in ", lastFour), accountType === SAVINGS && /*#__PURE__*/React.createElement(BankAccountText, null, "Savings Account ending in ", lastFour), autoPay && /*#__PURE__*/React.createElement(Text$1, {
13837
- variant: "p",
13838
- color: REGENT_GREY,
13839
- extraStyles: "font-style: italic;"
13840
- }, "Autopay Enabled")));
13841
- };
13842
-
13843
13857
  var IconAdd = function IconAdd() {
13844
13858
  return /*#__PURE__*/React.createElement("svg", {
13845
13859
  xmlns: "http://www.w3.org/2000/svg",
@@ -24277,9 +24291,50 @@ var fallbackValues$l = {
24277
24291
  autopayTextColor: autopayTextColor
24278
24292
  };
24279
24293
 
24280
- var ACTIVE = "ACTIVE";
24281
- var EXPIRING_SOON = "EXPIRING_SOON";
24282
- var EXPIRED = "EXPIRED";
24294
+ var BankItemWrapper = styled.div.withConfig({
24295
+ displayName: "FormattedBankAccount__BankItemWrapper",
24296
+ componentId: "sc-18hcgw4-0"
24297
+ })(["display:flex;justify-content:flex-start;align-items:center;"]);
24298
+ var BankAccountText = styled.h4.withConfig({
24299
+ displayName: "FormattedBankAccount__BankAccountText",
24300
+ componentId: "sc-18hcgw4-1"
24301
+ })(["color:", ";font-size:1rem;font-weight:400;line-height:1.5rem;text-align:left;margin-right:0.5rem;display:inline-block;"], function (_ref) {
24302
+ var color = _ref.color;
24303
+ return color;
24304
+ });
24305
+ var CHECKING = "CHECKING";
24306
+ var SAVINGS = "SAVINGS";
24307
+
24308
+ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
24309
+ var lastFour = _ref2.lastFour,
24310
+ accountType = _ref2.accountType,
24311
+ autoPay = _ref2.autoPay,
24312
+ themeValues = _ref2.themeValues;
24313
+ return /*#__PURE__*/React.createElement(BankItemWrapper, null, /*#__PURE__*/React.createElement(Box, {
24314
+ padding: "0.25rem 0 0 0",
24315
+ extraStyles: "margin-right: 1rem;"
24316
+ }, /*#__PURE__*/React.createElement(BankIcon, null)), /*#__PURE__*/React.createElement(Stack, {
24317
+ childGap: "0"
24318
+ }, accountType === CHECKING && /*#__PURE__*/React.createElement(BankAccountText, {
24319
+ color: themeValues.textColor
24320
+ }, "Checking Account ending in ", lastFour), accountType === SAVINGS && /*#__PURE__*/React.createElement(BankAccountText, {
24321
+ color: themeValues.textColor
24322
+ }, "Savings Account ending in ", lastFour), autoPay && /*#__PURE__*/React.createElement(Text$1, {
24323
+ variant: "p",
24324
+ color: themeValues.autopayTextColor,
24325
+ extraStyles: "font-style: italic;"
24326
+ }, "Autopay Enabled")));
24327
+ };
24328
+
24329
+ var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$l);
24330
+
24331
+ var textColor$2 = "".concat(CHARADE_GREY);
24332
+ var autopayTextColor$1 = "".concat(REGENT_GREY);
24333
+ var fallbackValues$m = {
24334
+ textColor: textColor$2,
24335
+ autopayTextColor: autopayTextColor$1
24336
+ };
24337
+
24283
24338
  var CreditCardWrapper = styled.div.withConfig({
24284
24339
  displayName: "FormattedCreditCard__CreditCardWrapper",
24285
24340
  componentId: "sc-s0ta5l-0"
@@ -24295,32 +24350,6 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
24295
24350
  expireDate = _ref.expireDate,
24296
24351
  expirationStatus = _ref.expirationStatus,
24297
24352
  themeValues = _ref.themeValues;
24298
-
24299
- var renderCardStatus = function renderCardStatus() {
24300
- switch (expirationStatus) {
24301
- case ACTIVE:
24302
- return /*#__PURE__*/React.createElement(Paragraph$1, {
24303
- variant: "pXS",
24304
- color: ASH_GREY,
24305
- textAlign: "left"
24306
- }, "Exp Date ", expireDate);
24307
-
24308
- case EXPIRING_SOON:
24309
- return /*#__PURE__*/React.createElement(Paragraph$1, {
24310
- variant: "pXS",
24311
- color: FIRE_YELLOW,
24312
- textAlign: "left"
24313
- }, "Expiring Soon ", expireDate);
24314
-
24315
- case EXPIRED:
24316
- return /*#__PURE__*/React.createElement(Paragraph$1, {
24317
- variant: "pXS",
24318
- color: ASH_GREY,
24319
- textAlign: "left"
24320
- }, "Expired");
24321
- }
24322
- };
24323
-
24324
24353
  return /*#__PURE__*/React.createElement(CreditCardWrapper, null, /*#__PURE__*/React.createElement(CCIconWrapper, null, /*#__PURE__*/React.createElement(GenericCard, null)), /*#__PURE__*/React.createElement(Stack, {
24325
24354
  childGap: "0"
24326
24355
  }, /*#__PURE__*/React.createElement(Box, {
@@ -24331,14 +24360,14 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
24331
24360
  color: themeValues.textColor,
24332
24361
  textAlign: "left",
24333
24362
  extraStyles: "display: inline-block;"
24334
- }, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React.createElement(Fragment$1, null, renderCardStatus())), autoPay && /*#__PURE__*/React.createElement(Text$1, {
24363
+ }, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React.createElement(Fragment$1, null, renderCardStatus(expirationStatus, expireDate, "left", "p"))), autoPay && /*#__PURE__*/React.createElement(Text$1, {
24335
24364
  variant: "p",
24336
24365
  color: themeValues.autopayTextColor,
24337
24366
  extraStyles: "font-style: italic;"
24338
24367
  }, "Autopay Enabled")));
24339
24368
  };
24340
24369
 
24341
- var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$l);
24370
+ var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$m);
24342
24371
 
24343
24372
  var Hamburger = styled.button.withConfig({
24344
24373
  displayName: "HamburgerButton__Hamburger",
@@ -24420,7 +24449,7 @@ var fontSize$8 = {
24420
24449
  h5: "1.375rem",
24421
24450
  h6: "1.25rem"
24422
24451
  };
24423
- var fallbackValues$m = {
24452
+ var fallbackValues$n = {
24424
24453
  fontFamily: fontFamily$5,
24425
24454
  fontSize: fontSize$8
24426
24455
  };
@@ -24462,7 +24491,7 @@ var Heading = function Heading(_ref) {
24462
24491
  }, rest), safeChildren(children, /*#__PURE__*/React.createElement("span", null)));
24463
24492
  };
24464
24493
 
24465
- var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$m, "h1");
24494
+ var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$n, "h1");
24466
24495
 
24467
24496
  var Jumbo = function Jumbo(_ref) {
24468
24497
  var showButton = _ref.showButton,
@@ -24536,7 +24565,7 @@ var fontWeight$4 = {
24536
24565
  pL: "600",
24537
24566
  h6: "700"
24538
24567
  };
24539
- var fallbackValues$n = {
24568
+ var fallbackValues$o = {
24540
24569
  fontWeight: fontWeight$4
24541
24570
  };
24542
24571
 
@@ -24564,7 +24593,7 @@ var LabeledAmount = function LabeledAmount(_ref) {
24564
24593
  }, amount));
24565
24594
  };
24566
24595
 
24567
- var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$n, "default");
24596
+ var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$o, "default");
24568
24597
 
24569
24598
  var weightTitle = {
24570
24599
  "default": "600",
@@ -24574,7 +24603,7 @@ var paragraphVariant = {
24574
24603
  "default": "pL",
24575
24604
  small: "pS"
24576
24605
  };
24577
- var fallbackValues$o = {
24606
+ var fallbackValues$p = {
24578
24607
  weightTitle: weightTitle,
24579
24608
  paragraphVariant: paragraphVariant
24580
24609
  };
@@ -24603,10 +24632,10 @@ var LineItem = function LineItem(_ref) {
24603
24632
  }, amount));
24604
24633
  };
24605
24634
 
24606
- var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$o, "default");
24635
+ var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$p, "default");
24607
24636
 
24608
24637
  var color$8 = "#15749D";
24609
- var fallbackValues$p = {
24638
+ var fallbackValues$q = {
24610
24639
  color: color$8
24611
24640
  };
24612
24641
 
@@ -24645,7 +24674,7 @@ var Spinner$1 = function Spinner(_ref4) {
24645
24674
  })));
24646
24675
  };
24647
24676
 
24648
- var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$p);
24677
+ var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$q);
24649
24678
 
24650
24679
  var Loading = function Loading() {
24651
24680
  return /*#__PURE__*/React.createElement(Box, {
@@ -24911,7 +24940,7 @@ var height$1 = {
24911
24940
  "default": "3rem",
24912
24941
  large: "192px"
24913
24942
  };
24914
- var fallbackValues$q = {
24943
+ var fallbackValues$r = {
24915
24944
  color: color$9,
24916
24945
  height: height$1
24917
24946
  };
@@ -25020,12 +25049,12 @@ var Placeholder = function Placeholder(_ref2) {
25020
25049
  }, text)))))))))));
25021
25050
  };
25022
25051
 
25023
- var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$q, "default");
25052
+ var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$r, "default");
25024
25053
 
25025
25054
  var backgroundColor$4 = {
25026
25055
  "default": "".concat(WHITE)
25027
25056
  };
25028
- var fallbackValues$r = {
25057
+ var fallbackValues$s = {
25029
25058
  backgroundColor: backgroundColor$4
25030
25059
  };
25031
25060
 
@@ -25053,7 +25082,7 @@ var ProcessingFee = function ProcessingFee(_ref) {
25053
25082
  }));
25054
25083
  };
25055
25084
 
25056
- var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$r, "default");
25085
+ var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$s, "default");
25057
25086
 
25058
25087
 
25059
25088
 
@@ -25115,7 +25144,7 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref) {
25115
25144
 
25116
25145
  var activeColor$5 = "".concat(MATISSE_BLUE);
25117
25146
  var inactiveColor = "".concat(GREY_CHATEAU);
25118
- var fallbackValues$s = {
25147
+ var fallbackValues$t = {
25119
25148
  activeColor: activeColor$5,
25120
25149
  inactiveColor: inactiveColor
25121
25150
  };
@@ -25205,12 +25234,12 @@ var RadioButton$1 = function RadioButton(_ref2) {
25205
25234
  })));
25206
25235
  };
25207
25236
 
25208
- var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$s);
25237
+ var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$t);
25209
25238
 
25210
25239
  var border$2 = {
25211
25240
  "default": "1px solid #caced8"
25212
25241
  };
25213
- var fallbackValues$t = {
25242
+ var fallbackValues$u = {
25214
25243
  border: border$2
25215
25244
  };
25216
25245
 
@@ -25285,7 +25314,7 @@ var SearchableSelect = function SearchableSelect(_ref) {
25285
25314
  })))));
25286
25315
  };
25287
25316
 
25288
- var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$t, "default");
25317
+ var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$u, "default");
25289
25318
 
25290
25319
  var borderColor$2 = {
25291
25320
  "default": "".concat(GREY_CHATEAU)
@@ -25293,7 +25322,7 @@ var borderColor$2 = {
25293
25322
  var borderSize = {
25294
25323
  "default": "1px"
25295
25324
  };
25296
- var fallbackValues$u = {
25325
+ var fallbackValues$v = {
25297
25326
  borderColor: borderColor$2,
25298
25327
  borderSize: borderSize
25299
25328
  };
@@ -25310,7 +25339,7 @@ var SolidDivider = function SolidDivider(_ref) {
25310
25339
  });
25311
25340
  };
25312
25341
 
25313
- var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$u, "default");
25342
+ var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$v, "default");
25314
25343
 
25315
25344
  var placeHolderOptionUS = {
25316
25345
  text: "Please select state",
@@ -35894,7 +35923,7 @@ var offBackground = "".concat(REGENT_GREY);
35894
35923
  var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
35895
35924
  var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
35896
35925
  var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
35897
- var fallbackValues$v = {
35926
+ var fallbackValues$w = {
35898
35927
  onBackground: onBackground,
35899
35928
  disabledBackground: disabledBackground,
35900
35929
  white: white,
@@ -36070,7 +36099,7 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
36070
36099
  }, label))));
36071
36100
  };
36072
36101
 
36073
- var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$v);
36102
+ var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$w);
36074
36103
 
36075
36104
  var background$1 = "".concat(ATHENS_GREY);
36076
36105
  var white$1 = "".concat(WHITE);
@@ -36119,7 +36148,7 @@ var backgroundColor$5 = WHITE;
36119
36148
  var imageBackgroundColor = INFO_BLUE;
36120
36149
  var headerBackgroundColor = STORM_GREY;
36121
36150
  var headerColor = WHITE;
36122
- var fallbackValues$w = {
36151
+ var fallbackValues$x = {
36123
36152
  backgroundColor: backgroundColor$5,
36124
36153
  imageBackgroundColor: imageBackgroundColor,
36125
36154
  headerBackgroundColor: headerBackgroundColor,
@@ -36142,11 +36171,11 @@ var CardImage = styled.img.withConfig({
36142
36171
 
36143
36172
  var titleColor = BRIGHT_GREY;
36144
36173
  var titleWeight = FONT_WEIGHT_BOLD;
36145
- var textColor$2 = BRIGHT_GREY;
36146
- var fallbackValues$x = {
36174
+ var textColor$3 = BRIGHT_GREY;
36175
+ var fallbackValues$y = {
36147
36176
  titleColor: titleColor,
36148
36177
  titleWeight: titleWeight,
36149
- textColor: textColor$2
36178
+ textColor: textColor$3
36150
36179
  };
36151
36180
 
36152
36181
  var CardText = function CardText(_ref) {
@@ -36167,7 +36196,7 @@ var CardText = function CardText(_ref) {
36167
36196
  color: themeValues.textColor
36168
36197
  }, text))));
36169
36198
  };
36170
- var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$x);
36199
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$y);
36171
36200
 
36172
36201
  var CardHeader = function CardHeader(_ref) {
36173
36202
  var backgroundColor = _ref.backgroundColor,
@@ -36264,12 +36293,12 @@ var Card = function Card(_ref) {
36264
36293
  }), children)));
36265
36294
  };
36266
36295
 
36267
- var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$w);
36296
+ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$x);
36268
36297
 
36269
36298
  var fontFamily$6 = "Public Sans, sans-serif";
36270
36299
  var activeColor$6 = MATISSE_BLUE;
36271
36300
  var linkColor$3 = CHARADE_GREY;
36272
- var fallbackValues$y = {
36301
+ var fallbackValues$z = {
36273
36302
  fontFamily: fontFamily$6,
36274
36303
  activeColor: activeColor$6,
36275
36304
  linkColor: linkColor$3
@@ -36302,7 +36331,7 @@ var NavTab = function NavTab(_ref) {
36302
36331
  }, label));
36303
36332
  };
36304
36333
 
36305
- var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$y);
36334
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$z);
36306
36335
 
36307
36336
  var NavTabs = function NavTabs(_ref) {
36308
36337
  var tabsConfig = _ref.tabsConfig,
@@ -38260,7 +38289,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
38260
38289
  AddressForm.mapDispatchToProps = mapDispatchToProps;
38261
38290
 
38262
38291
  var backgroundColor$6 = "#ebeffb";
38263
- var fallbackValues$z = {
38292
+ var fallbackValues$A = {
38264
38293
  backgroundColor: backgroundColor$6
38265
38294
  };
38266
38295
 
@@ -38312,7 +38341,7 @@ var Banner = function Banner(_ref) {
38312
38341
  }, /*#__PURE__*/React.createElement(Image, null))));
38313
38342
  };
38314
38343
 
38315
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$z);
38344
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$A);
38316
38345
 
38317
38346
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
38318
38347
  var _newPasswordErrorMess;
@@ -38454,7 +38483,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
38454
38483
  var titleColor$1 = "#292A33";
38455
38484
  var headingBackgroundColor = "transparent";
38456
38485
  var bodyBackgroundColor = "transparent";
38457
- var fallbackValues$A = {
38486
+ var fallbackValues$B = {
38458
38487
  titleColor: titleColor$1,
38459
38488
  headingBackgroundColor: headingBackgroundColor,
38460
38489
  bodyBackgroundColor: bodyBackgroundColor
@@ -38581,7 +38610,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
38581
38610
  }, children))));
38582
38611
  };
38583
38612
 
38584
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$A);
38613
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$B);
38585
38614
 
38586
38615
  var ClipboardIcon = function ClipboardIcon(_ref) {
38587
38616
  var themeValues = _ref.themeValues;
@@ -39167,7 +39196,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
39167
39196
 
39168
39197
  var footerBackgroundColor = BRIGHT_GREY;
39169
39198
  var subfooterBackgroundColor = STORM_GREY;
39170
- var fallbackValues$B = {
39199
+ var fallbackValues$C = {
39171
39200
  footerBackgroundColor: footerBackgroundColor,
39172
39201
  subfooterBackgroundColor: subfooterBackgroundColor
39173
39202
  };
@@ -39199,7 +39228,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
39199
39228
  }));
39200
39229
  };
39201
39230
 
39202
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$B);
39231
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$C);
39203
39232
 
39204
39233
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
39205
39234
  var _EmailErrorMessages;
@@ -39249,10 +39278,10 @@ ForgotPasswordForm.reducer = reducer$4;
39249
39278
  ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
39250
39279
  ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
39251
39280
 
39252
- var textColor$3 = "#ffffff";
39281
+ var textColor$4 = "#ffffff";
39253
39282
  var backgroundColor$7 = "#182848";
39254
- var fallbackValues$C = {
39255
- textColor: textColor$3,
39283
+ var fallbackValues$D = {
39284
+ textColor: textColor$4,
39256
39285
  backgroundColor: backgroundColor$7
39257
39286
  };
39258
39287
 
@@ -39308,7 +39337,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
39308
39337
  }), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
39309
39338
  };
39310
39339
 
39311
- var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$C));
39340
+ var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$D));
39312
39341
 
39313
39342
  var AccountBillIcon = function AccountBillIcon() {
39314
39343
  return /*#__PURE__*/React.createElement("svg", {
@@ -44460,7 +44489,7 @@ var backgroundColor$8 = {
44460
44489
  largeTitle: WHITE,
44461
44490
  small: WHITE
44462
44491
  };
44463
- var fallbackValues$D = {
44492
+ var fallbackValues$E = {
44464
44493
  fontSize: fontSize$9,
44465
44494
  fontWeight: fontWeight$5,
44466
44495
  fontColor: fontColor,
@@ -44519,7 +44548,7 @@ var Module = function Module(_ref) {
44519
44548
  }, children)));
44520
44549
  };
44521
44550
 
44522
- var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
44551
+ var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$E, "default"));
44523
44552
 
44524
44553
  var backgroundColor$9 = {
44525
44554
  profile: "#3b414d",
@@ -44529,7 +44558,7 @@ var shadowColor = {
44529
44558
  profile: "#292A33",
44530
44559
  cms: "#292A33"
44531
44560
  };
44532
- var fallbackValues$E = {
44561
+ var fallbackValues$F = {
44533
44562
  backgroundColor: backgroundColor$9,
44534
44563
  shadowColor: shadowColor
44535
44564
  };
@@ -44570,7 +44599,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
44570
44599
  }, menuContent));
44571
44600
  };
44572
44601
 
44573
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$E, "profile");
44602
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$F, "profile");
44574
44603
 
44575
44604
  var menu = posed.div({
44576
44605
  invisible: {
@@ -44626,7 +44655,11 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
44626
44655
  }, menuContent));
44627
44656
  };
44628
44657
 
44629
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$E, "profile");
44658
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$F, "profile");
44659
+
44660
+ var ACH_METHOD = "BANK_ACCOUNT";
44661
+ var CC_METHOD = "CREDIT_CARD";
44662
+ var CASH_METHOD = "CASH";
44630
44663
 
44631
44664
  var IconsModule = function IconsModule(_ref) {
44632
44665
  var icon = _ref.icon,
@@ -44683,7 +44716,7 @@ var activeColor$7 = "#0E506D";
44683
44716
  var linkColor$4 = "#3176AA";
44684
44717
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
44685
44718
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
44686
- var fallbackValues$F = {
44719
+ var fallbackValues$G = {
44687
44720
  color: color$a,
44688
44721
  hoverColor: hoverColor$5,
44689
44722
  activeColor: activeColor$7,
@@ -44707,13 +44740,27 @@ var AutopayModal = function AutopayModal(_ref) {
44707
44740
  isPaymentPlan = _ref.isPaymentPlan,
44708
44741
  nextAutopayDate = _ref.nextAutopayDate,
44709
44742
  dueDate = _ref.dueDate,
44710
- inactive = _ref.inactive;
44711
- var planType = isPaymentPlan ? "Payment Plan" : "Autopay";
44743
+ inactive = _ref.inactive,
44744
+ description = _ref.description,
44745
+ subDescription = _ref.subDescription,
44746
+ allowedPaymentInstruments = _ref.allowedPaymentInstruments;
44747
+
44748
+ var generateMethodNeededText = function generateMethodNeededText(planText, allowedPaymentInstruments) {
44749
+ var allowsCard = allowedPaymentInstruments.includes(CC_METHOD);
44750
+ var allowsACH = allowedPaymentInstruments.includes(ACH_METHOD);
44751
+ var methodRequired = allowsCard && !allowsACH ? "debit or credit card payment method" : !allowsCard && allowsACH ? "checking account payment method" : "payment method";
44752
+ return "To setup ".concat(planText, " you must have a saved ").concat(methodRequired, " and address in your profile. Do you want to save these now?");
44753
+ };
44754
+
44755
+ var plan = isPaymentPlan ? "your payment plan" : "autopay";
44756
+ var shortPlan = isPaymentPlan ? "Payment Plan" : "Autopay";
44757
+ var deactivateText = "deactivate ".concat(shortPlan, " for ").concat(description, ": ").concat(subDescription);
44758
+ var activateText = "Set Up ".concat(shortPlan, " for ").concat(description, ": ").concat(subDescription);
44712
44759
  var nextDate = dueDate || nextAutopayDate;
44713
44760
  var modalExtraProps = {
44714
- modalHeaderText: autoPayActive ? "Deactivate ".concat(planType) : "Set Up ".concat(planType),
44715
- modalBodyText: autoPayActive ? "Are you sure you want to deactivate ".concat(isPaymentPlan ? "your payment plan" : "autopay", "? ").concat(!inactive && nextDate ? "Your next payment will be due on ".concat(nextDate, ".") : "") : "To set up ".concat(isPaymentPlan ? "a payment plan" : "autopay", " you must save a payment method and address in your profile. Do you want to save these now?"),
44716
- continueButtonText: autoPayActive ? "Disable ".concat(planType) : "Add to Profile",
44761
+ modalHeaderText: autoPayActive ? titleCaseString(deactivateText) : titleCaseString(activateText),
44762
+ modalBodyText: autoPayActive ? "Are you sure you want to deactivate ".concat(plan, "? ").concat(!inactive && nextDate ? "Your next payment will be due on ".concat(nextDate, ".") : "") : generateMethodNeededText(plan, allowedPaymentInstruments),
44763
+ continueButtonText: autoPayActive ? "Disable ".concat(shortPlan) : "Add to Profile",
44717
44764
  useDangerButton: autoPayActive,
44718
44765
  continueAction: autoPayActive ? function () {
44719
44766
  deactivatePaymentSchedule(isPaymentPlan ? paymentPlanSchedule : autoPaySchedule, isPaymentPlan);
@@ -44729,7 +44776,7 @@ var AutopayModal = function AutopayModal(_ref) {
44729
44776
  case "secondary":
44730
44777
  {
44731
44778
  return /*#__PURE__*/React.createElement(ButtonWithAction, {
44732
- text: autoPayActive ? "Turn off ".concat(planType) : "Set Up ".concat(planType),
44779
+ text: autoPayActive ? "Turn off ".concat(shortPlan) : "Set Up ".concat(shortPlan),
44733
44780
  variant: "secondary",
44734
44781
  action: function action() {
44735
44782
  toggleModal(true);
@@ -44742,7 +44789,7 @@ var AutopayModal = function AutopayModal(_ref) {
44742
44789
  case "tertiary":
44743
44790
  {
44744
44791
  return /*#__PURE__*/React.createElement(ButtonWithAction, {
44745
- text: autoPayActive ? "Manage ".concat(planType) : "Set Up ".concat(planType),
44792
+ text: autoPayActive ? "Manage ".concat(shortPlan) : "Set Up ".concat(shortPlan),
44746
44793
  variant: "tertiary",
44747
44794
  action: function action() {
44748
44795
  toggleModal(true);
@@ -44774,12 +44821,12 @@ var AutopayModal = function AutopayModal(_ref) {
44774
44821
  e.key === "Enter" && toggleModal(true);
44775
44822
  },
44776
44823
  tabIndex: "0",
44777
- dataQa: "".concat(planType, " On"),
44824
+ dataQa: "".concat(shortPlan, " On"),
44778
44825
  color: SEA_GREEN,
44779
44826
  weight: themeValues.fontWeight,
44780
44827
  hoverStyles: themeValues.modalLinkHoverFocus,
44781
44828
  extraStyles: "padding-left: 0.25rem;"
44782
- }, "".concat(planType, " ").concat(nextAutopayDate))));
44829
+ }, "".concat(shortPlan, " ").concat(nextAutopayDate))));
44783
44830
  }
44784
44831
  }
44785
44832
  };
@@ -44795,7 +44842,7 @@ var AutopayModal = function AutopayModal(_ref) {
44795
44842
  }, modalExtraProps), renderAutoPayControl());
44796
44843
  };
44797
44844
 
44798
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$F);
44845
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$G);
44799
44846
 
44800
44847
  var AmountModule = function AmountModule(_ref) {
44801
44848
  var totalAmountDue = _ref.totalAmountDue,
@@ -44806,7 +44853,10 @@ var AmountModule = function AmountModule(_ref) {
44806
44853
  autoPaySchedule = _ref.autoPaySchedule,
44807
44854
  paymentPlanSchedule = _ref.paymentPlanSchedule,
44808
44855
  isPaymentPlan = _ref.isPaymentPlan,
44809
- nextAutopayDate = _ref.nextAutopayDate;
44856
+ nextAutopayDate = _ref.nextAutopayDate,
44857
+ description = _ref.description,
44858
+ subDescription = _ref.subDescription,
44859
+ allowedPaymentInstruments = _ref.allowedPaymentInstruments;
44810
44860
 
44811
44861
  var _useState = useState(false),
44812
44862
  _useState2 = _slicedToArray(_useState, 2),
@@ -44835,7 +44885,10 @@ var AmountModule = function AmountModule(_ref) {
44835
44885
  paymentPlanSchedule: paymentPlanSchedule,
44836
44886
  isPaymentPlan: isPaymentPlan,
44837
44887
  nextAutopayDate: nextAutopayDate,
44838
- controlType: "link"
44888
+ controlType: "link",
44889
+ description: description,
44890
+ subDescription: subDescription,
44891
+ allowedPaymentInstruments: allowedPaymentInstruments
44839
44892
  })));
44840
44893
  };
44841
44894
 
@@ -44854,7 +44907,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
44854
44907
  isPaymentPlan = _ref.isPaymentPlan,
44855
44908
  nextAutopayDate = _ref.nextAutopayDate,
44856
44909
  obligationAssocID = _ref.obligationAssocID,
44857
- dueDate = _ref.dueDate;
44910
+ dueDate = _ref.dueDate,
44911
+ description = _ref.description,
44912
+ subDescription = _ref.subDescription,
44913
+ allowedPaymentInstruments = _ref.allowedPaymentInstruments;
44858
44914
  var planType = isPaymentPlan ? "Payment Plan" : "Autopay";
44859
44915
 
44860
44916
  var _useState = useState(false),
@@ -44910,7 +44966,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
44910
44966
  autoPaySchedule: autoPaySchedule,
44911
44967
  paymentPlanSchedule: paymentPlanSchedule,
44912
44968
  isPaymentPlan: isPaymentPlan,
44913
- nextAutopayDate: nextAutopayDate
44969
+ nextAutopayDate: nextAutopayDate,
44970
+ description: description,
44971
+ subDescription: subDescription,
44972
+ allowedPaymentInstruments: allowedPaymentInstruments
44914
44973
  }))), /*#__PURE__*/React.createElement(Box, {
44915
44974
  padding: isMobile ? "16px" : "0"
44916
44975
  }, /*#__PURE__*/React.createElement(Cluster, {
@@ -44950,7 +45009,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
44950
45009
  paymentPlanSchedule: paymentPlanSchedule,
44951
45010
  isPaymentPlan: isPaymentPlan,
44952
45011
  nextAutopayDate: nextAutopayDate,
44953
- dueDate: dueDate
45012
+ dueDate: dueDate,
45013
+ description: description,
45014
+ subDescription: subDescription,
45015
+ allowedPaymentInstruments: allowedPaymentInstruments
44954
45016
  })), !isMobile && /*#__PURE__*/React.createElement(Box, {
44955
45017
  padding: "0"
44956
45018
  }, /*#__PURE__*/React.createElement(ButtonWithAction, {
@@ -45040,7 +45102,10 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
45040
45102
  dueDate = _ref.dueDate,
45041
45103
  agencyName = _ref.agencyName,
45042
45104
  configType = _ref.configType,
45043
- actions = _ref.actions;
45105
+ actions = _ref.actions,
45106
+ description = _ref.description,
45107
+ subDescription = _ref.subDescription,
45108
+ allowedPaymentInstruments = _ref.allowedPaymentInstruments;
45044
45109
 
45045
45110
  var _useState = useState(false),
45046
45111
  _useState2 = _slicedToArray(_useState, 2),
@@ -45079,7 +45144,10 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
45079
45144
  obligationAssocID: obligationAssocID,
45080
45145
  dueDate: dueDate,
45081
45146
  controlType: "secondary",
45082
- inactive: true
45147
+ inactive: true,
45148
+ description: description,
45149
+ subDescription: subDescription,
45150
+ allowedPaymentInstruments: allowedPaymentInstruments
45083
45151
  })), /*#__PURE__*/React.createElement(Box, {
45084
45152
  padding: "0",
45085
45153
  extraStyles: "flex-grow: 1;"
@@ -45121,7 +45189,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
45121
45189
  };
45122
45190
 
45123
45191
  var Obligation = function Obligation(_ref) {
45124
- var _firstObligation$cust, _firstObligation$desc, _firstObligation$subD;
45192
+ var _obligations$, _firstObligation$cust;
45125
45193
 
45126
45194
  var config = _ref.config,
45127
45195
  obligations = _ref.obligations,
@@ -45156,7 +45224,13 @@ var Obligation = function Obligation(_ref) {
45156
45224
  The top level desc/subdesc for all obligations in a collection is the same
45157
45225
  (Collection accounts look different in the Account Details page)
45158
45226
  */
45159
- var firstObligation = obligations[0];
45227
+ var firstObligation = (_obligations$ = obligations === null || obligations === void 0 ? void 0 : obligations[0]) !== null && _obligations$ !== void 0 ? _obligations$ : {};
45228
+ var _firstObligation$allo = firstObligation.allowedPaymentInstruments,
45229
+ allowedPaymentInstruments = _firstObligation$allo === void 0 ? [CASH_METHOD, CC_METHOD, ACH_METHOD] : _firstObligation$allo,
45230
+ _firstObligation$desc = firstObligation.description,
45231
+ description = _firstObligation$desc === void 0 ? "Account" : _firstObligation$desc,
45232
+ _firstObligation$subD = firstObligation.subDescription,
45233
+ subDescription = _firstObligation$subD === void 0 ? obligationAssocID : _firstObligation$subD;
45160
45234
  var customAttributes = (_firstObligation$cust = firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.customAttributes) !== null && _firstObligation$cust !== void 0 ? _firstObligation$cust : {};
45161
45235
  var boxShadowValue = "0px 2px 4px rgba(41, 42, 51, 0.1), 0px 1px 1px 2px rgba(41, 42, 51, 0.1);";
45162
45236
  var activeObligation = /*#__PURE__*/React.createElement(Box, {
@@ -45164,7 +45238,7 @@ var Obligation = function Obligation(_ref) {
45164
45238
  borderRadius: "4px",
45165
45239
  boxShadow: boxShadowValue,
45166
45240
  as: "section",
45167
- "aria-label": "".concat((_firstObligation$desc = firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.description) !== null && _firstObligation$desc !== void 0 ? _firstObligation$desc : "account", " ").concat((_firstObligation$subD = firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.subDescription) !== null && _firstObligation$subD !== void 0 ? _firstObligation$subD : obligationAssocID),
45241
+ "aria-label": "".concat(description, " - ").concat(subDescription),
45168
45242
  border: "1px solid ".concat(GRECIAN_GREY),
45169
45243
  borderWidthOverride: "1px 0 0 0"
45170
45244
  }, /*#__PURE__*/React.createElement(Box, {
@@ -45193,8 +45267,8 @@ var Obligation = function Obligation(_ref) {
45193
45267
  iconValue: config.iconValue,
45194
45268
  customAttributes: customAttributes
45195
45269
  }), /*#__PURE__*/React.createElement(TitleModule, {
45196
- title: firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.description,
45197
- subtitle: firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.subDescription,
45270
+ title: description,
45271
+ subtitle: subDescription,
45198
45272
  titleColor: BRIGHT_GREY,
45199
45273
  isMobile: isMobile
45200
45274
  }))), !isMobile && /*#__PURE__*/React.createElement(AmountModule, {
@@ -45208,7 +45282,10 @@ var Obligation = function Obligation(_ref) {
45208
45282
  autoPaySchedule: autoPaySchedule,
45209
45283
  paymentPlanSchedule: paymentPlanSchedule,
45210
45284
  isPaymentPlan: isPaymentPlan,
45211
- nextAutopayDate: nextAutopayDate
45285
+ nextAutopayDate: nextAutopayDate,
45286
+ description: description,
45287
+ subDescription: subDescription,
45288
+ allowedPaymentInstruments: allowedPaymentInstruments
45212
45289
  }))), !isMobile && /*#__PURE__*/React.createElement(PaymentDetailsActions, {
45213
45290
  obligations: obligations,
45214
45291
  autoPayEnabled: autoPayEnabled,
@@ -45223,7 +45300,10 @@ var Obligation = function Obligation(_ref) {
45223
45300
  isMobile: isMobile,
45224
45301
  isPaymentPlan: isPaymentPlan,
45225
45302
  nextAutopayDate: nextAutopayDate,
45226
- obligationAssocID: obligationAssocID
45303
+ obligationAssocID: obligationAssocID,
45304
+ description: description,
45305
+ subDescription: subDescription,
45306
+ allowedPaymentInstruments: allowedPaymentInstruments
45227
45307
  }))), isMobile && /*#__PURE__*/React.createElement(PaymentDetailsActions, {
45228
45308
  obligations: obligations,
45229
45309
  autoPayEnabled: autoPayEnabled,
@@ -45238,7 +45318,10 @@ var Obligation = function Obligation(_ref) {
45238
45318
  isMobile: isMobile,
45239
45319
  isPaymentPlan: isPaymentPlan,
45240
45320
  nextAutopayDate: nextAutopayDate,
45241
- obligationAssocID: obligationAssocID
45321
+ obligationAssocID: obligationAssocID,
45322
+ description: description,
45323
+ subDescription: subDescription,
45324
+ allowedPaymentInstruments: allowedPaymentInstruments
45242
45325
  }));
45243
45326
  var inactiveObligation = /*#__PURE__*/React.createElement(Box, {
45244
45327
  padding: "0",
@@ -45291,7 +45374,10 @@ var Obligation = function Obligation(_ref) {
45291
45374
  obligationAssocID: obligationAssocID,
45292
45375
  dueDate: dueDate,
45293
45376
  agencyName: agencyName,
45294
- configType: config.type
45377
+ configType: config.type,
45378
+ description: description,
45379
+ subDescription: subDescription,
45380
+ allowedPaymentInstruments: allowedPaymentInstruments
45295
45381
  }))), isMobile && /*#__PURE__*/React.createElement(InactiveControlsModule, {
45296
45382
  obligations: obligations,
45297
45383
  autoPayEnabled: autoPayEnabled,
@@ -45305,7 +45391,10 @@ var Obligation = function Obligation(_ref) {
45305
45391
  obligationAssocID: obligationAssocID,
45306
45392
  dueDate: dueDate,
45307
45393
  agencyName: agencyName,
45308
- configType: config.type
45394
+ configType: config.type,
45395
+ description: description,
45396
+ subDescription: subDescription,
45397
+ allowedPaymentInstruments: allowedPaymentInstruments
45309
45398
  }))));
45310
45399
  return inactive ? inactiveObligation : activeObligation;
45311
45400
  };
@@ -45607,7 +45696,7 @@ var labeledAmountTotal = {
45607
45696
  "default": "h6",
45608
45697
  small: "p"
45609
45698
  };
45610
- var fallbackValues$G = {
45699
+ var fallbackValues$H = {
45611
45700
  backgroundColor: backgroundColor$a,
45612
45701
  lineItem: lineItem,
45613
45702
  labeledAmountSubtotal: labeledAmountSubtotal,
@@ -45858,7 +45947,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
45858
45947
  });
45859
45948
  };
45860
45949
 
45861
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$G, "default");
45950
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$H, "default");
45862
45951
 
45863
45952
  var linkColor$5 = {
45864
45953
  "default": "#3176AA"
@@ -45875,7 +45964,7 @@ var fontWeight$7 = {
45875
45964
  var modalLinkHoverFocus$1 = {
45876
45965
  "default": "outline: none; text-decoration: underline;"
45877
45966
  };
45878
- var fallbackValues$H = {
45967
+ var fallbackValues$I = {
45879
45968
  linkColor: linkColor$5,
45880
45969
  fontSize: fontSize$a,
45881
45970
  lineHeight: lineHeight$4,
@@ -45934,7 +46023,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
45934
46023
  }, link));
45935
46024
  };
45936
46025
 
45937
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$H, "default");
46026
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$I, "default");
45938
46027
 
45939
46028
  var PaymentFormACH = function PaymentFormACH(_ref) {
45940
46029
  var _routingNumberErrors, _accountNumberErrors;
@@ -46530,7 +46619,7 @@ var RadioGroup = function RadioGroup(_ref) {
46530
46619
  groupName: groupName,
46531
46620
  setValue: setValue,
46532
46621
  handleChange: handleChange,
46533
- "aria-invalid": field.dirty && field.hasErrors || field.hasErrors
46622
+ "aria-invalid": field.dirty && field.hasErrors || field.hasErrors && showErrors
46534
46623
  }));
46535
46624
  })));
46536
46625
  };
@@ -46540,7 +46629,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
46540
46629
  var bodyBackgroundColor$1 = "#eeeeee";
46541
46630
  var borderColor$3 = "".concat(GREY_CHATEAU);
46542
46631
  var focusStyles = "outline: none;";
46543
- var fallbackValues$I = {
46632
+ var fallbackValues$J = {
46544
46633
  headingBackgroundColor: headingBackgroundColor$1,
46545
46634
  headingDisabledColor: headingDisabledColor,
46546
46635
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -46557,7 +46646,8 @@ var fallbackValues$I = {
46557
46646
  hideRadioButton: boolean, (keeps section displayed but hides radio and disables open/close function),
46558
46647
  hidden: boolean, (hides section entirely)
46559
46648
  dataQa: string,
46560
- content: <React Component(s)> e.g.: <Box><Stack>cool content stuff</Stack></Box> (any collection of components will work)
46649
+ content: <React Component(s)> e.g.: <Box><Stack>cool content stuff</Stack></Box> (any collection of components will work),
46650
+ rightTitleContent: <React Component(s)> (rendered on the very right of the title section, use to supplement "rightIcons" with text, as in expired CC status, or render other custom content)
46561
46651
  }
46562
46652
 
46563
46653
  Also takes an "openSection" which should equal the id of the section that should be open
@@ -46570,10 +46660,6 @@ var fallbackValues$I = {
46570
46660
 
46571
46661
  */
46572
46662
 
46573
- var ACTIVE$2 = "ACTIVE";
46574
- var EXPIRING_SOON$1 = "EXPIRING_SOON";
46575
- var EXPIRED$2 = "EXPIRED";
46576
-
46577
46663
  var RadioSection = function RadioSection(_ref) {
46578
46664
  var themeValues = _ref.themeValues,
46579
46665
  isMobile = _ref.isMobile,
@@ -46596,34 +46682,6 @@ var RadioSection = function RadioSection(_ref) {
46596
46682
  }
46597
46683
  };
46598
46684
 
46599
- var renderCardStatus = function renderCardStatus(item) {
46600
- var expirationStatus = item.expirationStatus,
46601
- expireDate = item.expireDate;
46602
-
46603
- switch (expirationStatus) {
46604
- case ACTIVE$2:
46605
- return /*#__PURE__*/React.createElement(Text$1, {
46606
- variant: "pXS",
46607
- color: ASH_GREY,
46608
- extraStyles: "text-align: right;"
46609
- }, "Exp Date ", expireDate);
46610
-
46611
- case EXPIRING_SOON$1:
46612
- return /*#__PURE__*/React.createElement(Text$1, {
46613
- variant: "pXS",
46614
- color: FIRE_YELLOW,
46615
- extraStyles: "text-align: right;"
46616
- }, "Expiring Soon ", expireDate);
46617
-
46618
- case EXPIRED$2:
46619
- return /*#__PURE__*/React.createElement(Text$1, {
46620
- variant: "pXS",
46621
- color: ASH_GREY,
46622
- extraStyles: "text-align: right;"
46623
- }, "Expired");
46624
- }
46625
- };
46626
-
46627
46685
  var wrapper = {
46628
46686
  open: {
46629
46687
  height: openHeight,
@@ -46677,13 +46735,13 @@ var RadioSection = function RadioSection(_ref) {
46677
46735
  return /*#__PURE__*/React.createElement(Motion, {
46678
46736
  tabIndex: section.hideRadioButton || section.disabled ? "-1" : "0",
46679
46737
  onKeyDown: function onKeyDown(e) {
46680
- return handleKeyDown(section.id, e);
46738
+ return !section.disabled && handleKeyDown(section.id, e);
46681
46739
  },
46682
46740
  onFocus: function onFocus() {
46683
- return setFocused(section.id);
46741
+ return !section.disabled && setFocused(section.id);
46684
46742
  },
46685
46743
  onBlur: function onBlur() {
46686
- return setFocused(null);
46744
+ return !section.disabled && setFocused(null);
46687
46745
  },
46688
46746
  hoverStyles: themeValues.focusStyles,
46689
46747
  animate: openSection === section.id ? "open" : "closed",
@@ -46698,7 +46756,7 @@ var RadioSection = function RadioSection(_ref) {
46698
46756
  onClick: isMobile && supportsTouch || section.disabled ? noop : function () {
46699
46757
  return toggleOpenSection(section.id);
46700
46758
  },
46701
- onTouchEnd: isMobile && supportsTouch || !section.disabled ? function () {
46759
+ onTouchEnd: isMobile && supportsTouch && !section.disabled ? function () {
46702
46760
  return toggleOpenSection(section.id);
46703
46761
  } : noop,
46704
46762
  key: "header-".concat(section.id),
@@ -46743,7 +46801,7 @@ var RadioSection = function RadioSection(_ref) {
46743
46801
  isMobile: isMobile,
46744
46802
  alt: icon.altText
46745
46803
  });
46746
- })), section.shouldDisplayCardExpiration && /*#__PURE__*/React.createElement(Fragment$1, null, renderCardStatus(section)))), /*#__PURE__*/React.createElement(AnimatePresence, {
46804
+ })), section.rightTitleContent && /*#__PURE__*/React.createElement(Fragment$1, null, rightTitleContent))), /*#__PURE__*/React.createElement(AnimatePresence, {
46747
46805
  initial: false
46748
46806
  }, openSection === section.id && /*#__PURE__*/React.createElement(Motion, {
46749
46807
  key: "content-".concat(section.id),
@@ -46759,7 +46817,7 @@ var RadioSection = function RadioSection(_ref) {
46759
46817
  })));
46760
46818
  };
46761
46819
 
46762
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$I);
46820
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$J);
46763
46821
 
46764
46822
  var RegistrationForm = function RegistrationForm(_ref) {
46765
46823
  var _emailErrorMessages, _passwordErrorMessage;
@@ -47056,7 +47114,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
47056
47114
  var activeTabBackground = "#FFFFFF";
47057
47115
  var activeTabAccent = "#15749D";
47058
47116
  var activeTabHover = "#B8D5E1";
47059
- var fallbackValues$J = {
47117
+ var fallbackValues$K = {
47060
47118
  activeTabBackground: activeTabBackground,
47061
47119
  activeTabAccent: activeTabAccent,
47062
47120
  activeTabHover: activeTabHover
@@ -47135,12 +47193,12 @@ var Tabs = function Tabs(_ref) {
47135
47193
  }))));
47136
47194
  };
47137
47195
 
47138
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$J);
47196
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$K);
47139
47197
 
47140
47198
  var activeTabBackground$1 = "#FFFFFF";
47141
47199
  var activeTabAccent$1 = "#15749D";
47142
47200
  var activeTabHover$1 = "#B8D5E1";
47143
- var fallbackValues$K = {
47201
+ var fallbackValues$L = {
47144
47202
  activeTabBackground: activeTabBackground$1,
47145
47203
  activeTabAccent: activeTabAccent$1,
47146
47204
  activeTabHover: activeTabHover$1
@@ -47196,7 +47254,7 @@ var TabSidebar = function TabSidebar(_ref) {
47196
47254
  })));
47197
47255
  };
47198
47256
 
47199
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$K);
47257
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$L);
47200
47258
 
47201
47259
  var backgroundColor$b = {
47202
47260
  "default": "#ffffff",
@@ -47227,7 +47285,7 @@ var modalLinkHoverFocus$2 = {
47227
47285
  "default": standardInteractionStyles,
47228
47286
  footer: standardInteractionStyles
47229
47287
  };
47230
- var fallbackValues$L = {
47288
+ var fallbackValues$M = {
47231
47289
  backgroundColor: backgroundColor$b,
47232
47290
  linkColor: linkColor$6,
47233
47291
  border: border$3,
@@ -47289,7 +47347,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
47289
47347
  }, link));
47290
47348
  };
47291
47349
 
47292
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$L, "default");
47350
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$M, "default");
47293
47351
 
47294
47352
  var TermsAndConditions = function TermsAndConditions(_ref) {
47295
47353
  var onCheck = _ref.onCheck,
@@ -47364,7 +47422,7 @@ var fontColor$1 = WHITE;
47364
47422
  var textAlign$1 = "left";
47365
47423
  var headerBackgroundColor$1 = BRIGHT_GREY;
47366
47424
  var imageBackgroundColor$1 = MATISSE_BLUE;
47367
- var fallbackValues$M = {
47425
+ var fallbackValues$N = {
47368
47426
  fontWeight: fontWeight$9,
47369
47427
  fontColor: fontColor$1,
47370
47428
  textAlign: textAlign$1,
@@ -47411,7 +47469,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
47411
47469
  })))));
47412
47470
  };
47413
47471
 
47414
- var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$M));
47472
+ var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$N));
47415
47473
 
47416
47474
  var WorkflowTile = function WorkflowTile(_ref) {
47417
47475
  var _ref$workflowName = _ref.workflowName,
@@ -47466,7 +47524,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
47466
47524
  };
47467
47525
 
47468
47526
  var pageBackground = "#FBFCFD";
47469
- var fallbackValues$N = {
47527
+ var fallbackValues$O = {
47470
47528
  pageBackground: pageBackground
47471
47529
  };
47472
47530
 
@@ -47513,7 +47571,7 @@ var CenterSingle = function CenterSingle(_ref) {
47513
47571
  })));
47514
47572
  };
47515
47573
 
47516
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$N));
47574
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$O));
47517
47575
 
47518
47576
  var CenterStack = function CenterStack(_ref) {
47519
47577
  var header = _ref.header,
@@ -47555,7 +47613,7 @@ var CenterStack = function CenterStack(_ref) {
47555
47613
  })));
47556
47614
  };
47557
47615
 
47558
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$N));
47616
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$O));
47559
47617
 
47560
47618
  var CenterSingle$2 = function CenterSingle(_ref) {
47561
47619
  var header = _ref.header,
@@ -47600,7 +47658,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
47600
47658
  })));
47601
47659
  };
47602
47660
 
47603
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$N));
47661
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$O));
47604
47662
 
47605
47663
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
47606
47664
  var header = _ref.header,
@@ -47654,7 +47712,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
47654
47712
  })));
47655
47713
  };
47656
47714
 
47657
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$N));
47715
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$O));
47658
47716
 
47659
47717
  var SidebarStackContent = function SidebarStackContent(_ref) {
47660
47718
  var header = _ref.header,
@@ -47725,7 +47783,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
47725
47783
  })));
47726
47784
  };
47727
47785
 
47728
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$N));
47786
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$O));
47729
47787
 
47730
- export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, AutopayOnIcon, BankIcon, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackReversalIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, 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, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, IconAdd, IconQuitLarge, Imposter, InternalLink, Jumbo$1 as Jumbo, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentIcon, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, Popover$1 as Popover, 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, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, Switcher, TabSidebar$1 as TabSidebar, TableListItem, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
47788
+ export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, AutopayOnIcon, BankIcon, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackReversalIcon, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, 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, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, IconAdd, IconQuitLarge, Imposter, InternalLink, Jumbo$1 as Jumbo, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, 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, PaymentsIconSmall$1 as PaymentsIconSmall, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, Popover$1 as Popover, 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, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, Switcher, TabSidebar$1 as TabSidebar, TableListItem, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
47731
47789
  //# sourceMappingURL=index.esm.js.map