@thecb/components 10.4.6-beta.5 → 10.4.6-beta.6

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
@@ -39224,6 +39224,184 @@ var LoadingLine = function LoadingLine(_ref) {
39224
39224
  });
39225
39225
  };
39226
39226
 
39227
+ var backgroundColor$6 = {
39228
+ primary: WHITE
39229
+ };
39230
+ var fallbackValues$C = {
39231
+ backgroundColor: backgroundColor$6
39232
+ };
39233
+
39234
+ var fontSize$9 = {
39235
+ "default": "1.375rem",
39236
+ largeTitle: "1.75rem",
39237
+ small: "1.25rem"
39238
+ };
39239
+ var fontWeight$5 = {
39240
+ "default": "600",
39241
+ largeTitle: "700",
39242
+ small: "600"
39243
+ };
39244
+ var fontColor = {
39245
+ "default": CHARADE_GREY,
39246
+ largeTitle: CHARADE_GREY,
39247
+ small: CHARADE_GREY
39248
+ };
39249
+ var lineHeight$3 = {
39250
+ "default": "2rem",
39251
+ largeTitle: "2rem",
39252
+ small: "2rem"
39253
+ };
39254
+ var textAlign = {
39255
+ "default": "left",
39256
+ largeTitle: "left",
39257
+ small: "left"
39258
+ };
39259
+ var titleType = {
39260
+ "default": "h5",
39261
+ largeTitle: "h1",
39262
+ small: "h6"
39263
+ };
39264
+ var titleSpacing = {
39265
+ "default": "0.5rem",
39266
+ largeTitle: "1.125rem",
39267
+ small: "0.5rem"
39268
+ };
39269
+ var boxShadow$1 = {
39270
+ "default": "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
39271
+ largeTitle: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
39272
+ small: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
39273
+ };
39274
+ var borderRadius = {
39275
+ "default": "0.25rem",
39276
+ largeTitle: "0.25rem",
39277
+ small: "0.25rem"
39278
+ };
39279
+ var backgroundColor$7 = {
39280
+ "default": WHITE,
39281
+ largeTitle: WHITE,
39282
+ small: WHITE
39283
+ };
39284
+ var fallbackValues$D = {
39285
+ fontSize: fontSize$9,
39286
+ fontWeight: fontWeight$5,
39287
+ fontColor: fontColor,
39288
+ lineHeight: lineHeight$3,
39289
+ textAlign: textAlign,
39290
+ titleType: titleType,
39291
+ titleSpacing: titleSpacing,
39292
+ boxShadow: boxShadow$1,
39293
+ borderRadius: borderRadius,
39294
+ backgroundColor: backgroundColor$7
39295
+ };
39296
+
39297
+ /*
39298
+ New (01/22) - updated <Module /> to use <Title /> atom
39299
+ Because <Title /> decouples size from element, also gave <Module />
39300
+ two new props: "as" and "fontSize"
39301
+
39302
+ When present, <Module /> will use those values to dictate element type and font size.
39303
+
39304
+ For backwards compatability, <Module /> still computes a themed font size and element type based on old
39305
+ <Heading /> variants. If "fontSize" or "as" is undefined, <Module /> will use themed values.
39306
+ */
39307
+
39308
+ var Module = function Module(_ref) {
39309
+ var _ref$variant = _ref.variant,
39310
+ variant = _ref$variant === void 0 ? "default" : _ref$variant,
39311
+ as = _ref.as,
39312
+ disabled = _ref.disabled,
39313
+ heading = _ref.heading,
39314
+ rightTitleContent = _ref.rightTitleContent,
39315
+ _ref$titleID = _ref.titleID,
39316
+ titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
39317
+ _ref$spacing = _ref.spacing,
39318
+ spacing = _ref$spacing === void 0 ? "1rem" : _ref$spacing,
39319
+ _ref$padding = _ref.padding,
39320
+ padding = _ref$padding === void 0 ? "0" : _ref$padding,
39321
+ _ref$margin = _ref.margin,
39322
+ margin = _ref$margin === void 0 ? "0" : _ref$margin,
39323
+ _ref$spacingBottom = _ref.spacingBottom,
39324
+ spacingBottom = _ref$spacingBottom === void 0 ? "2.5rem" : _ref$spacingBottom,
39325
+ fontSize = _ref.fontSize,
39326
+ themeValues = _ref.themeValues,
39327
+ children = _ref.children;
39328
+ var themedFontSize = variant === "small" ? "1.25rem" : variant === "default" ? "1.375rem" : "2rem";
39329
+ var computedFontSize = fontSize || themedFontSize;
39330
+ var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
39331
+ var computedElemType = as || themedElemType;
39332
+ var disabledStyles = "opacity: 0.40;";
39333
+ var headingText = /*#__PURE__*/React.createElement(Title$1, {
39334
+ weight: themeValues.fontWeight,
39335
+ color: themeValues.fontColor,
39336
+ margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
39337
+ textAlign: themeValues.textAlign,
39338
+ as: computedElemType,
39339
+ extraStyles: "font-size: ".concat(computedFontSize, ";"),
39340
+ id: titleID
39341
+ }, heading);
39342
+ return /*#__PURE__*/React.createElement(Box, {
39343
+ "aria-disabled": disabled,
39344
+ extraStyles: disabled && disabledStyles,
39345
+ padding: "0",
39346
+ role: "group"
39347
+ }, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React.createElement(Cluster, {
39348
+ justify: "space-between",
39349
+ align: "center",
39350
+ nowrap: true
39351
+ }, headingText, rightTitleContent), /*#__PURE__*/React.createElement(Box, {
39352
+ padding: "0 0 ".concat(spacingBottom),
39353
+ extraStyles: "margin: ".concat(margin)
39354
+ }, /*#__PURE__*/React.createElement(Box, {
39355
+ padding: padding,
39356
+ background: themeValues.backgroundColor,
39357
+ borderRadius: themeValues.borderRadius,
39358
+ boxShadow: themeValues.boxShadow
39359
+ }, children)));
39360
+ };
39361
+ var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
39362
+
39363
+ var WalletName = function WalletName(_ref) {
39364
+ var personName = _ref.personName,
39365
+ _ref$action = _ref.action,
39366
+ action = _ref$action === void 0 ? noop : _ref$action,
39367
+ _ref$text = _ref.text,
39368
+ text = _ref$text === void 0 ? "Not you?" : _ref$text,
39369
+ _ref$actionText = _ref.actionText,
39370
+ actionText = _ref$actionText === void 0 ? "Check out as a guest" : _ref$actionText;
39371
+ var themeContext = useContext(ThemeContext);
39372
+ var isMobile = themeContext.isMobile;
39373
+ return /*#__PURE__*/React.createElement(Fragment$1, null, /*#__PURE__*/React.createElement(Module$1, {
39374
+ spacingBottom: isMobile ? "0" : "1.5rem"
39375
+ }, /*#__PURE__*/React.createElement(Box, {
39376
+ padding: "24px",
39377
+ spacingBottom: "0",
39378
+ margin: "0 0 0 0",
39379
+ extraStyles: isMobile ? "box-shadow: 0px 1px 2px 0px #292A331A; box-shadow: 0px 2px 6px 0px #292A3333; box-shadow: 0px 1px 0px 0px #292A331A inset;\n; display: flex; flex-direction: column; flex-wrap: wrap; \n span {text - align: right;}" : "display: flex; justify-content: space-between; align-items: center; "
39380
+ }, /*#__PURE__*/React.createElement(Box, {
39381
+ padding: "0 0 0"
39382
+ }, /*#__PURE__*/React.createElement(Text$1, null, personName)), !isMobile && /*#__PURE__*/React.createElement(Box, {
39383
+ padding: "0"
39384
+ }, /*#__PURE__*/React.createElement(Text$1, {
39385
+ extraStyles: "font-size: 12px"
39386
+ }, text), /*#__PURE__*/React.createElement(ButtonWithAction, {
39387
+ text: actionText,
39388
+ action: action,
39389
+ variant: "smallGhost",
39390
+ extraStyles: "span {font-size: 12px;}"
39391
+ })))), isMobile && /*#__PURE__*/React.createElement(Box, {
39392
+ padding: "0",
39393
+ extraStyles: "display: flex; align-items: center; justify-content: flex-end;"
39394
+ }, /*#__PURE__*/React.createElement(Text$1, {
39395
+ extraStyles: "font-size: 12px"
39396
+ }, text), /*#__PURE__*/React.createElement(ButtonWithAction, {
39397
+ text: actionText,
39398
+ action: action,
39399
+ variant: "smallGhost",
39400
+ extraStyles: "span {font-size: 12px;}"
39401
+ })));
39402
+ };
39403
+ var WalletName$1 = themeComponent(WalletName, "WalletName", fallbackValues$C, "primary");
39404
+
39227
39405
  var Table_styled = styled.table.withConfig({
39228
39406
  displayName: "Tablestyled",
39229
39407
  componentId: "sc-mveye7-0"
@@ -39260,10 +39438,10 @@ var TableCell_styled = styled.td.withConfig({
39260
39438
  return extraStyles;
39261
39439
  });
39262
39440
 
39263
- var backgroundColor$6 = ALABASTER_WHITE;
39441
+ var backgroundColor$8 = ALABASTER_WHITE;
39264
39442
  var borderColor$3 = GREY_CHATEAU;
39265
- var fallbackValues$C = {
39266
- backgroundColor: backgroundColor$6,
39443
+ var fallbackValues$E = {
39444
+ backgroundColor: backgroundColor$8,
39267
39445
  borderColor: borderColor$3
39268
39446
  };
39269
39447
 
@@ -39284,7 +39462,7 @@ var StyledTableHead = styled.thead.withConfig({
39284
39462
 
39285
39463
  var borderColor$4 = GREY_CHATEAU;
39286
39464
  var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
39287
- var fallbackValues$D = {
39465
+ var fallbackValues$F = {
39288
39466
  borderColor: borderColor$4,
39289
39467
  hoverBackgroundColor: hoverBackgroundColor$1
39290
39468
  };
@@ -39323,7 +39501,7 @@ var TableRow = function TableRow(_ref) {
39323
39501
  hoverBackgroundColor: themeValues.hoverBackgroundColor
39324
39502
  }, props), children);
39325
39503
  };
39326
- var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$D);
39504
+ var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$F);
39327
39505
 
39328
39506
  var TableHead = function TableHead(_ref) {
39329
39507
  var children = _ref.children,
@@ -39338,7 +39516,7 @@ var TableHead = function TableHead(_ref) {
39338
39516
  hoverEffect: false
39339
39517
  }, children));
39340
39518
  };
39341
- var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$C);
39519
+ var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$E);
39342
39520
 
39343
39521
  var TableHeading_styled = styled.th.withConfig({
39344
39522
  displayName: "TableHeadingstyled",
@@ -40164,9 +40342,9 @@ AddressForm.reducer = reducer;
40164
40342
  AddressForm.mapStateToProps = mapStateToProps$1;
40165
40343
  AddressForm.mapDispatchToProps = mapDispatchToProps;
40166
40344
 
40167
- var backgroundColor$7 = "#ebeffb";
40168
- var fallbackValues$E = {
40169
- backgroundColor: backgroundColor$7
40345
+ var backgroundColor$9 = "#ebeffb";
40346
+ var fallbackValues$G = {
40347
+ backgroundColor: backgroundColor$9
40170
40348
  };
40171
40349
 
40172
40350
  var Banner = function Banner(_ref) {
@@ -40214,7 +40392,7 @@ var Banner = function Banner(_ref) {
40214
40392
  extraStyles: isMobile && "> svg { width: 176px; }"
40215
40393
  }, /*#__PURE__*/React.createElement(Image, null))));
40216
40394
  };
40217
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$E);
40395
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$G);
40218
40396
 
40219
40397
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
40220
40398
  var clearOnDismount = _ref.clearOnDismount,
@@ -40348,7 +40526,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
40348
40526
  var titleColor$1 = "#292A33";
40349
40527
  var headingBackgroundColor = "transparent";
40350
40528
  var bodyBackgroundColor = "transparent";
40351
- var fallbackValues$F = {
40529
+ var fallbackValues$H = {
40352
40530
  titleColor: titleColor$1,
40353
40531
  headingBackgroundColor: headingBackgroundColor,
40354
40532
  bodyBackgroundColor: bodyBackgroundColor
@@ -40473,7 +40651,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
40473
40651
  "aria-labelledby": "".concat(id, "-button")
40474
40652
  }, children))));
40475
40653
  };
40476
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$F);
40654
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$H);
40477
40655
 
40478
40656
  var ClipboardIcon = function ClipboardIcon(_ref) {
40479
40657
  var themeValues = _ref.themeValues;
@@ -41049,7 +41227,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
41049
41227
 
41050
41228
  var footerBackgroundColor = BRIGHT_GREY;
41051
41229
  var subfooterBackgroundColor = STORM_GREY;
41052
- var fallbackValues$G = {
41230
+ var fallbackValues$I = {
41053
41231
  footerBackgroundColor: footerBackgroundColor,
41054
41232
  subfooterBackgroundColor: subfooterBackgroundColor
41055
41233
  };
@@ -41080,7 +41258,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
41080
41258
  rightContent: rightSubfooterContent
41081
41259
  }));
41082
41260
  };
41083
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$G);
41261
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$I);
41084
41262
 
41085
41263
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
41086
41264
  var fields = _ref.fields,
@@ -41126,10 +41304,10 @@ ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
41126
41304
  ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
41127
41305
 
41128
41306
  var textColor$4 = "#ffffff";
41129
- var backgroundColor$8 = "#182848";
41130
- var fallbackValues$H = {
41307
+ var backgroundColor$a = "#182848";
41308
+ var fallbackValues$J = {
41131
41309
  textColor: textColor$4,
41132
- backgroundColor: backgroundColor$8
41310
+ backgroundColor: backgroundColor$a
41133
41311
  };
41134
41312
 
41135
41313
  // this component needs some fix'n
@@ -41186,7 +41364,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
41186
41364
  }, t));
41187
41365
  }), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
41188
41366
  };
41189
- var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$H);
41367
+ var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$J);
41190
41368
 
41191
41369
  var AccountBillIcon = function AccountBillIcon() {
41192
41370
  return /*#__PURE__*/React.createElement("svg", {
@@ -42651,7 +42829,7 @@ var disabledColor$1 = {
42651
42829
  var activeBackgroundColor$1 = {
42652
42830
  primary: CORNFLOWER_BLUE
42653
42831
  };
42654
- var backgroundColor$9 = {
42832
+ var backgroundColor$b = {
42655
42833
  primary: LINK_WATER
42656
42834
  };
42657
42835
  var borderColor$5 = {
@@ -42660,12 +42838,12 @@ var borderColor$5 = {
42660
42838
  var color$b = {
42661
42839
  primary: ROYAL_BLUE_VIVID
42662
42840
  };
42663
- var fallbackValues$I = {
42841
+ var fallbackValues$K = {
42664
42842
  disabledBackgroundColor: disabledBackgroundColor$1,
42665
42843
  disabledBorderColor: disabledBorderColor$1,
42666
42844
  disabledColor: disabledColor$1,
42667
42845
  activeBackgroundColor: activeBackgroundColor$1,
42668
- backgroundColor: backgroundColor$9,
42846
+ backgroundColor: backgroundColor$b,
42669
42847
  borderColor: borderColor$5,
42670
42848
  color: color$b
42671
42849
  };
@@ -42781,7 +42959,7 @@ var LinkCard = function LinkCard(_ref) {
42781
42959
  extraStyles: "margin-right: auto;"
42782
42960
  }), showRight && !!rightContent && rightContent))));
42783
42961
  };
42784
- var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I, "primary");
42962
+ var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$K, "primary");
42785
42963
 
42786
42964
  var LoginForm = function LoginForm(_ref) {
42787
42965
  var clearOnDismount = _ref.clearOnDismount,
@@ -46420,136 +46598,7 @@ var Modal$1 = function Modal(_ref) {
46420
46598
  }))))))))), children);
46421
46599
  };
46422
46600
 
46423
- var fontSize$9 = {
46424
- "default": "1.375rem",
46425
- largeTitle: "1.75rem",
46426
- small: "1.25rem"
46427
- };
46428
- var fontWeight$5 = {
46429
- "default": "600",
46430
- largeTitle: "700",
46431
- small: "600"
46432
- };
46433
- var fontColor = {
46434
- "default": CHARADE_GREY,
46435
- largeTitle: CHARADE_GREY,
46436
- small: CHARADE_GREY
46437
- };
46438
- var lineHeight$3 = {
46439
- "default": "2rem",
46440
- largeTitle: "2rem",
46441
- small: "2rem"
46442
- };
46443
- var textAlign = {
46444
- "default": "left",
46445
- largeTitle: "left",
46446
- small: "left"
46447
- };
46448
- var titleType = {
46449
- "default": "h5",
46450
- largeTitle: "h1",
46451
- small: "h6"
46452
- };
46453
- var titleSpacing = {
46454
- "default": "0.5rem",
46455
- largeTitle: "1.125rem",
46456
- small: "0.5rem"
46457
- };
46458
- var boxShadow$1 = {
46459
- "default": "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
46460
- largeTitle: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
46461
- small: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
46462
- };
46463
- var borderRadius = {
46464
- "default": "0.25rem",
46465
- largeTitle: "0.25rem",
46466
- small: "0.25rem"
46467
- };
46468
- var backgroundColor$a = {
46469
- "default": WHITE,
46470
- largeTitle: WHITE,
46471
- small: WHITE
46472
- };
46473
- var fallbackValues$J = {
46474
- fontSize: fontSize$9,
46475
- fontWeight: fontWeight$5,
46476
- fontColor: fontColor,
46477
- lineHeight: lineHeight$3,
46478
- textAlign: textAlign,
46479
- titleType: titleType,
46480
- titleSpacing: titleSpacing,
46481
- boxShadow: boxShadow$1,
46482
- borderRadius: borderRadius,
46483
- backgroundColor: backgroundColor$a
46484
- };
46485
-
46486
- /*
46487
- New (01/22) - updated <Module /> to use <Title /> atom
46488
- Because <Title /> decouples size from element, also gave <Module />
46489
- two new props: "as" and "fontSize"
46490
-
46491
- When present, <Module /> will use those values to dictate element type and font size.
46492
-
46493
- For backwards compatability, <Module /> still computes a themed font size and element type based on old
46494
- <Heading /> variants. If "fontSize" or "as" is undefined, <Module /> will use themed values.
46495
- */
46496
-
46497
- var Module = function Module(_ref) {
46498
- var _ref$variant = _ref.variant,
46499
- variant = _ref$variant === void 0 ? "default" : _ref$variant,
46500
- as = _ref.as,
46501
- disabled = _ref.disabled,
46502
- heading = _ref.heading,
46503
- rightTitleContent = _ref.rightTitleContent,
46504
- _ref$titleID = _ref.titleID,
46505
- titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
46506
- _ref$spacing = _ref.spacing,
46507
- spacing = _ref$spacing === void 0 ? "1rem" : _ref$spacing,
46508
- _ref$padding = _ref.padding,
46509
- padding = _ref$padding === void 0 ? "0" : _ref$padding,
46510
- _ref$margin = _ref.margin,
46511
- margin = _ref$margin === void 0 ? "0" : _ref$margin,
46512
- _ref$spacingBottom = _ref.spacingBottom,
46513
- spacingBottom = _ref$spacingBottom === void 0 ? "2.5rem" : _ref$spacingBottom,
46514
- fontSize = _ref.fontSize,
46515
- themeValues = _ref.themeValues,
46516
- children = _ref.children;
46517
- var themedFontSize = variant === "small" ? "1.25rem" : variant === "default" ? "1.375rem" : "2rem";
46518
- var computedFontSize = fontSize || themedFontSize;
46519
- var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
46520
- var computedElemType = as || themedElemType;
46521
- var disabledStyles = "opacity: 0.40;";
46522
- var headingText = /*#__PURE__*/React.createElement(Title$1, {
46523
- weight: themeValues.fontWeight,
46524
- color: themeValues.fontColor,
46525
- margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
46526
- textAlign: themeValues.textAlign,
46527
- as: computedElemType,
46528
- extraStyles: "font-size: ".concat(computedFontSize, ";"),
46529
- id: titleID
46530
- }, heading);
46531
- return /*#__PURE__*/React.createElement(Box, {
46532
- "aria-disabled": disabled,
46533
- extraStyles: disabled && disabledStyles,
46534
- padding: "0",
46535
- role: "group"
46536
- }, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React.createElement(Cluster, {
46537
- justify: "space-between",
46538
- align: "center",
46539
- nowrap: true
46540
- }, headingText, rightTitleContent), /*#__PURE__*/React.createElement(Box, {
46541
- padding: "0 0 ".concat(spacingBottom),
46542
- extraStyles: "margin: ".concat(margin)
46543
- }, /*#__PURE__*/React.createElement(Box, {
46544
- padding: padding,
46545
- background: themeValues.backgroundColor,
46546
- borderRadius: themeValues.borderRadius,
46547
- boxShadow: themeValues.boxShadow
46548
- }, children)));
46549
- };
46550
- var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$J, "default"));
46551
-
46552
- var backgroundColor$b = {
46601
+ var backgroundColor$c = {
46553
46602
  profile: "#3b414d",
46554
46603
  cms: "#3b414d"
46555
46604
  };
@@ -46557,8 +46606,8 @@ var shadowColor = {
46557
46606
  profile: "#292A33",
46558
46607
  cms: "#292A33"
46559
46608
  };
46560
- var fallbackValues$K = {
46561
- backgroundColor: backgroundColor$b,
46609
+ var fallbackValues$L = {
46610
+ backgroundColor: backgroundColor$c,
46562
46611
  shadowColor: shadowColor
46563
46612
  };
46564
46613
 
@@ -46597,7 +46646,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
46597
46646
  onBlur: onBlur
46598
46647
  }, menuContent));
46599
46648
  };
46600
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$K, "profile");
46649
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$L, "profile");
46601
46650
 
46602
46651
  var menu = posed.div({
46603
46652
  invisible: {
@@ -46657,7 +46706,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
46657
46706
  background: themeValues.backgroundColor
46658
46707
  }, menuContent));
46659
46708
  };
46660
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$K, "profile");
46709
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$L, "profile");
46661
46710
 
46662
46711
  var IconsModule = function IconsModule(_ref) {
46663
46712
  var icon = _ref.icon,
@@ -46711,7 +46760,7 @@ var activeColor$8 = "#0E506D";
46711
46760
  var linkColor$4 = "#3176AA";
46712
46761
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
46713
46762
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
46714
- var fallbackValues$L = {
46763
+ var fallbackValues$M = {
46715
46764
  color: color$c,
46716
46765
  hoverColor: hoverColor$5,
46717
46766
  activeColor: activeColor$8,
@@ -46837,7 +46886,7 @@ var AutopayModal = function AutopayModal(_ref) {
46837
46886
  modalOpen: modalOpen
46838
46887
  }, modalExtraProps), renderAutoPayControl());
46839
46888
  };
46840
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$L);
46889
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$M);
46841
46890
 
46842
46891
  var AmountModule = function AmountModule(_ref) {
46843
46892
  var totalAmountDue = _ref.totalAmountDue,
@@ -47527,7 +47576,7 @@ var numberColor = MATISSE_BLUE;
47527
47576
  var hoverBackgroundColor$2 = ALABASTER_WHITE;
47528
47577
  var activeBackgroundColor$2 = WHITE;
47529
47578
  var activeColor$9 = MATISSE_BLUE;
47530
- var fallbackValues$M = {
47579
+ var fallbackValues$N = {
47531
47580
  activeColor: activeColor$9,
47532
47581
  activeBackgroundColor: activeBackgroundColor$2,
47533
47582
  arrowColor: arrowColor,
@@ -47721,7 +47770,7 @@ var Pagination = function Pagination(_ref3) {
47721
47770
  buttonWidth: buttonWidth
47722
47771
  }));
47723
47772
  };
47724
- var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$M);
47773
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$N);
47725
47774
 
47726
47775
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
47727
47776
  var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
@@ -47802,7 +47851,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
47802
47851
  }, !hideBackButton && /*#__PURE__*/React.createElement(Fragment$1, null, backButton), !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton), !hideAdditionalButton && /*#__PURE__*/React.createElement(Fragment$1, null, additionalButton))));
47803
47852
  };
47804
47853
 
47805
- var backgroundColor$c = {
47854
+ var backgroundColor$d = {
47806
47855
  "default": "transparent",
47807
47856
  small: "transparent"
47808
47857
  };
@@ -47818,8 +47867,8 @@ var labeledAmountTotal = {
47818
47867
  "default": "large",
47819
47868
  small: "small"
47820
47869
  };
47821
- var fallbackValues$N = {
47822
- backgroundColor: backgroundColor$c,
47870
+ var fallbackValues$O = {
47871
+ backgroundColor: backgroundColor$d,
47823
47872
  lineItem: lineItem,
47824
47873
  labeledAmountSubtotal: labeledAmountSubtotal,
47825
47874
  labeledAmountTotal: labeledAmountTotal
@@ -48189,7 +48238,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
48189
48238
  isError: isError
48190
48239
  });
48191
48240
  };
48192
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$N, "default");
48241
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$O, "default");
48193
48242
 
48194
48243
  var linkColor$5 = {
48195
48244
  "default": "#3176AA"
@@ -48209,7 +48258,7 @@ var modalLinkHoverFocus$1 = {
48209
48258
  var linkTextDecoration = {
48210
48259
  "default": LINK_TEXT_DECORATION
48211
48260
  };
48212
- var fallbackValues$O = {
48261
+ var fallbackValues$P = {
48213
48262
  linkColor: linkColor$5,
48214
48263
  fontSize: fontSize$a,
48215
48264
  lineHeight: lineHeight$4,
@@ -48275,9 +48324,9 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
48275
48324
  className: "modal-trigger"
48276
48325
  }, link));
48277
48326
  };
48278
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$O, "default");
48327
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$P, "default");
48279
48328
 
48280
- var backgroundColor$d = {
48329
+ var backgroundColor$e = {
48281
48330
  "default": "#ffffff",
48282
48331
  footer: "#ffffff"
48283
48332
  };
@@ -48310,8 +48359,8 @@ var modalLinkTextDecoration = {
48310
48359
  "default": LINK_TEXT_DECORATION,
48311
48360
  footer: "none"
48312
48361
  };
48313
- var fallbackValues$P = {
48314
- backgroundColor: backgroundColor$d,
48362
+ var fallbackValues$Q = {
48363
+ backgroundColor: backgroundColor$e,
48315
48364
  linkColor: linkColor$6,
48316
48365
  border: border$3,
48317
48366
  fontSize: fontSize$b,
@@ -48382,7 +48431,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
48382
48431
  className: "modal-trigger"
48383
48432
  }, link));
48384
48433
  };
48385
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
48434
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$Q, "default");
48386
48435
 
48387
48436
  var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
48388
48437
  var onCheck = _ref.onCheck,
@@ -49145,7 +49194,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
49145
49194
  var bodyBackgroundColor$1 = "#eeeeee";
49146
49195
  var borderColor$6 = "".concat(GHOST_GREY);
49147
49196
  var focusStyles = "outline: none;";
49148
- var fallbackValues$Q = {
49197
+ var fallbackValues$R = {
49149
49198
  headingBackgroundColor: headingBackgroundColor$1,
49150
49199
  headingDisabledColor: headingDisabledColor,
49151
49200
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -49447,7 +49496,7 @@ var RadioSection = function RadioSection(_ref) {
49447
49496
  });
49448
49497
  })));
49449
49498
  };
49450
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$Q);
49499
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$R);
49451
49500
 
49452
49501
  var RegistrationForm = function RegistrationForm(_ref) {
49453
49502
  var clearOnDismount = _ref.clearOnDismount,
@@ -49729,7 +49778,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
49729
49778
  var activeTabBackground = "#FFFFFF";
49730
49779
  var activeTabAccent = "#15749D";
49731
49780
  var activeTabHover = "#B8D5E1";
49732
- var fallbackValues$R = {
49781
+ var fallbackValues$S = {
49733
49782
  activeTabBackground: activeTabBackground,
49734
49783
  activeTabAccent: activeTabAccent,
49735
49784
  activeTabHover: activeTabHover
@@ -49797,12 +49846,12 @@ var Tabs = function Tabs(_ref) {
49797
49846
  }, tab.content);
49798
49847
  }))));
49799
49848
  };
49800
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$R);
49849
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$S);
49801
49850
 
49802
49851
  var activeTabBackground$1 = "#FFFFFF";
49803
49852
  var activeTabAccent$1 = "#15749D";
49804
49853
  var activeTabHover$1 = "#B8D5E1";
49805
- var fallbackValues$S = {
49854
+ var fallbackValues$T = {
49806
49855
  activeTabBackground: activeTabBackground$1,
49807
49856
  activeTabAccent: activeTabAccent$1,
49808
49857
  activeTabHover: activeTabHover$1
@@ -49857,7 +49906,7 @@ var TabSidebar = function TabSidebar(_ref) {
49857
49906
  }, text)))));
49858
49907
  })));
49859
49908
  };
49860
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$S);
49909
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$T);
49861
49910
 
49862
49911
  var Timeout = function Timeout(_ref) {
49863
49912
  var onLogout = _ref.onLogout;
@@ -49942,7 +49991,7 @@ var fontColor$1 = WHITE;
49942
49991
  var textAlign$1 = "left";
49943
49992
  var headerBackgroundColor$1 = BRIGHT_GREY;
49944
49993
  var imageBackgroundColor$1 = MATISSE_BLUE;
49945
- var fallbackValues$T = {
49994
+ var fallbackValues$U = {
49946
49995
  fontWeight: fontWeight$9,
49947
49996
  fontColor: fontColor$1,
49948
49997
  textAlign: textAlign$1,
@@ -49987,7 +50036,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
49987
50036
  src: welcomeImage
49988
50037
  })))));
49989
50038
  };
49990
- var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$T));
50039
+ var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$U));
49991
50040
 
49992
50041
  var WorkflowTile = function WorkflowTile(_ref) {
49993
50042
  var _ref$workflowName = _ref.workflowName,
@@ -50047,7 +50096,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
50047
50096
  var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
50048
50097
  var menuItemHoverBackgroundColorDelete = BLUSH_RED;
50049
50098
  var menuItemHoverColor = ROYAL_BLUE_VIVID;
50050
- var fallbackValues$U = {
50099
+ var fallbackValues$V = {
50051
50100
  menuItemBackgroundColor: menuItemBackgroundColor,
50052
50101
  menuItemColor: menuItemColor,
50053
50102
  menuItemColorDelete: menuItemColorDelete,
@@ -50114,17 +50163,17 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
50114
50163
  extraStyles: textExtraStyles
50115
50164
  }, text)));
50116
50165
  };
50117
- var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$U);
50166
+ var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$V);
50118
50167
 
50119
50168
  var hoverColor$6 = "#116285";
50120
50169
  var activeColor$a = "#0E506D";
50121
50170
  var menuTriggerColor = "#15749D";
50122
- var backgroundColor$e = "white";
50123
- var fallbackValues$V = {
50171
+ var backgroundColor$f = "white";
50172
+ var fallbackValues$W = {
50124
50173
  hoverColor: hoverColor$6,
50125
50174
  activeColor: activeColor$a,
50126
50175
  menuTriggerColor: menuTriggerColor,
50127
- backgroundColor: backgroundColor$e
50176
+ backgroundColor: backgroundColor$f
50128
50177
  };
50129
50178
 
50130
50179
  var PopupMenuContainer = styled(Box).withConfig({
@@ -50256,10 +50305,10 @@ var PopupMenu = function PopupMenu(_ref) {
50256
50305
  }, item));
50257
50306
  })));
50258
50307
  };
50259
- var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$V);
50308
+ var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$W);
50260
50309
 
50261
50310
  var pageBackground = "#FBFCFD";
50262
- var fallbackValues$W = {
50311
+ var fallbackValues$X = {
50263
50312
  pageBackground: pageBackground
50264
50313
  };
50265
50314
 
@@ -50307,7 +50356,7 @@ var CenterSingle = function CenterSingle(_ref) {
50307
50356
  padding: "0"
50308
50357
  })));
50309
50358
  };
50310
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$W));
50359
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$X));
50311
50360
 
50312
50361
  var CenterStack = function CenterStack(_ref) {
50313
50362
  var header = _ref.header,
@@ -50350,7 +50399,7 @@ var CenterStack = function CenterStack(_ref) {
50350
50399
  padding: "0"
50351
50400
  })));
50352
50401
  };
50353
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$W));
50402
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$X));
50354
50403
 
50355
50404
  var CenterSingle$2 = function CenterSingle(_ref) {
50356
50405
  var header = _ref.header,
@@ -50396,7 +50445,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
50396
50445
  padding: "0"
50397
50446
  })));
50398
50447
  };
50399
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$W));
50448
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$X));
50400
50449
 
50401
50450
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
50402
50451
  var header = _ref.header,
@@ -50449,7 +50498,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
50449
50498
  padding: "0"
50450
50499
  })));
50451
50500
  };
50452
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$W));
50501
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$X));
50453
50502
 
50454
50503
  var SidebarStackContent = function SidebarStackContent(_ref) {
50455
50504
  var header = _ref.header,
@@ -50519,7 +50568,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
50519
50568
  key: "footer-box"
50520
50569
  })));
50521
50570
  };
50522
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$W));
50571
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$X));
50523
50572
 
50524
50573
  var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
50525
50574
  var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
@@ -50551,5 +50600,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
50551
50600
  useToastNotification: useToastNotification
50552
50601
  });
50553
50602
 
50554
- 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, 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, 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, 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, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, 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$1 as Modal, Module$1 as Module, Motion, MultiCartIcon, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, 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, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, 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, 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, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as 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, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
50603
+ 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, 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, 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, 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, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, 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$1 as Modal, Module$1 as Module, Motion, MultiCartIcon, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, 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, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, 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, 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, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as 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$1 as 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 };
50555
50604
  //# sourceMappingURL=index.esm.js.map