@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.cjs.js CHANGED
@@ -39232,6 +39232,184 @@ var LoadingLine = function LoadingLine(_ref) {
39232
39232
  });
39233
39233
  };
39234
39234
 
39235
+ var backgroundColor$6 = {
39236
+ primary: WHITE
39237
+ };
39238
+ var fallbackValues$C = {
39239
+ backgroundColor: backgroundColor$6
39240
+ };
39241
+
39242
+ var fontSize$9 = {
39243
+ "default": "1.375rem",
39244
+ largeTitle: "1.75rem",
39245
+ small: "1.25rem"
39246
+ };
39247
+ var fontWeight$5 = {
39248
+ "default": "600",
39249
+ largeTitle: "700",
39250
+ small: "600"
39251
+ };
39252
+ var fontColor = {
39253
+ "default": CHARADE_GREY,
39254
+ largeTitle: CHARADE_GREY,
39255
+ small: CHARADE_GREY
39256
+ };
39257
+ var lineHeight$3 = {
39258
+ "default": "2rem",
39259
+ largeTitle: "2rem",
39260
+ small: "2rem"
39261
+ };
39262
+ var textAlign = {
39263
+ "default": "left",
39264
+ largeTitle: "left",
39265
+ small: "left"
39266
+ };
39267
+ var titleType = {
39268
+ "default": "h5",
39269
+ largeTitle: "h1",
39270
+ small: "h6"
39271
+ };
39272
+ var titleSpacing = {
39273
+ "default": "0.5rem",
39274
+ largeTitle: "1.125rem",
39275
+ small: "0.5rem"
39276
+ };
39277
+ var boxShadow$1 = {
39278
+ "default": "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
39279
+ largeTitle: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
39280
+ small: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
39281
+ };
39282
+ var borderRadius = {
39283
+ "default": "0.25rem",
39284
+ largeTitle: "0.25rem",
39285
+ small: "0.25rem"
39286
+ };
39287
+ var backgroundColor$7 = {
39288
+ "default": WHITE,
39289
+ largeTitle: WHITE,
39290
+ small: WHITE
39291
+ };
39292
+ var fallbackValues$D = {
39293
+ fontSize: fontSize$9,
39294
+ fontWeight: fontWeight$5,
39295
+ fontColor: fontColor,
39296
+ lineHeight: lineHeight$3,
39297
+ textAlign: textAlign,
39298
+ titleType: titleType,
39299
+ titleSpacing: titleSpacing,
39300
+ boxShadow: boxShadow$1,
39301
+ borderRadius: borderRadius,
39302
+ backgroundColor: backgroundColor$7
39303
+ };
39304
+
39305
+ /*
39306
+ New (01/22) - updated <Module /> to use <Title /> atom
39307
+ Because <Title /> decouples size from element, also gave <Module />
39308
+ two new props: "as" and "fontSize"
39309
+
39310
+ When present, <Module /> will use those values to dictate element type and font size.
39311
+
39312
+ For backwards compatability, <Module /> still computes a themed font size and element type based on old
39313
+ <Heading /> variants. If "fontSize" or "as" is undefined, <Module /> will use themed values.
39314
+ */
39315
+
39316
+ var Module = function Module(_ref) {
39317
+ var _ref$variant = _ref.variant,
39318
+ variant = _ref$variant === void 0 ? "default" : _ref$variant,
39319
+ as = _ref.as,
39320
+ disabled = _ref.disabled,
39321
+ heading = _ref.heading,
39322
+ rightTitleContent = _ref.rightTitleContent,
39323
+ _ref$titleID = _ref.titleID,
39324
+ titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
39325
+ _ref$spacing = _ref.spacing,
39326
+ spacing = _ref$spacing === void 0 ? "1rem" : _ref$spacing,
39327
+ _ref$padding = _ref.padding,
39328
+ padding = _ref$padding === void 0 ? "0" : _ref$padding,
39329
+ _ref$margin = _ref.margin,
39330
+ margin = _ref$margin === void 0 ? "0" : _ref$margin,
39331
+ _ref$spacingBottom = _ref.spacingBottom,
39332
+ spacingBottom = _ref$spacingBottom === void 0 ? "2.5rem" : _ref$spacingBottom,
39333
+ fontSize = _ref.fontSize,
39334
+ themeValues = _ref.themeValues,
39335
+ children = _ref.children;
39336
+ var themedFontSize = variant === "small" ? "1.25rem" : variant === "default" ? "1.375rem" : "2rem";
39337
+ var computedFontSize = fontSize || themedFontSize;
39338
+ var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
39339
+ var computedElemType = as || themedElemType;
39340
+ var disabledStyles = "opacity: 0.40;";
39341
+ var headingText = /*#__PURE__*/React__default.createElement(Title$1, {
39342
+ weight: themeValues.fontWeight,
39343
+ color: themeValues.fontColor,
39344
+ margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
39345
+ textAlign: themeValues.textAlign,
39346
+ as: computedElemType,
39347
+ extraStyles: "font-size: ".concat(computedFontSize, ";"),
39348
+ id: titleID
39349
+ }, heading);
39350
+ return /*#__PURE__*/React__default.createElement(Box, {
39351
+ "aria-disabled": disabled,
39352
+ extraStyles: disabled && disabledStyles,
39353
+ padding: "0",
39354
+ role: "group"
39355
+ }, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React__default.createElement(Cluster, {
39356
+ justify: "space-between",
39357
+ align: "center",
39358
+ nowrap: true
39359
+ }, headingText, rightTitleContent), /*#__PURE__*/React__default.createElement(Box, {
39360
+ padding: "0 0 ".concat(spacingBottom),
39361
+ extraStyles: "margin: ".concat(margin)
39362
+ }, /*#__PURE__*/React__default.createElement(Box, {
39363
+ padding: padding,
39364
+ background: themeValues.backgroundColor,
39365
+ borderRadius: themeValues.borderRadius,
39366
+ boxShadow: themeValues.boxShadow
39367
+ }, children)));
39368
+ };
39369
+ var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
39370
+
39371
+ var WalletName = function WalletName(_ref) {
39372
+ var personName = _ref.personName,
39373
+ _ref$action = _ref.action,
39374
+ action = _ref$action === void 0 ? noop : _ref$action,
39375
+ _ref$text = _ref.text,
39376
+ text = _ref$text === void 0 ? "Not you?" : _ref$text,
39377
+ _ref$actionText = _ref.actionText,
39378
+ actionText = _ref$actionText === void 0 ? "Check out as a guest" : _ref$actionText;
39379
+ var themeContext = React.useContext(styled.ThemeContext);
39380
+ var isMobile = themeContext.isMobile;
39381
+ return /*#__PURE__*/React__default.createElement(React.Fragment, null, /*#__PURE__*/React__default.createElement(Module$1, {
39382
+ spacingBottom: isMobile ? "0" : "1.5rem"
39383
+ }, /*#__PURE__*/React__default.createElement(Box, {
39384
+ padding: "24px",
39385
+ spacingBottom: "0",
39386
+ margin: "0 0 0 0",
39387
+ 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; "
39388
+ }, /*#__PURE__*/React__default.createElement(Box, {
39389
+ padding: "0 0 0"
39390
+ }, /*#__PURE__*/React__default.createElement(Text$1, null, personName)), !isMobile && /*#__PURE__*/React__default.createElement(Box, {
39391
+ padding: "0"
39392
+ }, /*#__PURE__*/React__default.createElement(Text$1, {
39393
+ extraStyles: "font-size: 12px"
39394
+ }, text), /*#__PURE__*/React__default.createElement(ButtonWithAction, {
39395
+ text: actionText,
39396
+ action: action,
39397
+ variant: "smallGhost",
39398
+ extraStyles: "span {font-size: 12px;}"
39399
+ })))), isMobile && /*#__PURE__*/React__default.createElement(Box, {
39400
+ padding: "0",
39401
+ extraStyles: "display: flex; align-items: center; justify-content: flex-end;"
39402
+ }, /*#__PURE__*/React__default.createElement(Text$1, {
39403
+ extraStyles: "font-size: 12px"
39404
+ }, text), /*#__PURE__*/React__default.createElement(ButtonWithAction, {
39405
+ text: actionText,
39406
+ action: action,
39407
+ variant: "smallGhost",
39408
+ extraStyles: "span {font-size: 12px;}"
39409
+ })));
39410
+ };
39411
+ var WalletName$1 = themeComponent(WalletName, "WalletName", fallbackValues$C, "primary");
39412
+
39235
39413
  var Table_styled = styled__default.table.withConfig({
39236
39414
  displayName: "Tablestyled",
39237
39415
  componentId: "sc-mveye7-0"
@@ -39268,10 +39446,10 @@ var TableCell_styled = styled__default.td.withConfig({
39268
39446
  return extraStyles;
39269
39447
  });
39270
39448
 
39271
- var backgroundColor$6 = ALABASTER_WHITE;
39449
+ var backgroundColor$8 = ALABASTER_WHITE;
39272
39450
  var borderColor$3 = GREY_CHATEAU;
39273
- var fallbackValues$C = {
39274
- backgroundColor: backgroundColor$6,
39451
+ var fallbackValues$E = {
39452
+ backgroundColor: backgroundColor$8,
39275
39453
  borderColor: borderColor$3
39276
39454
  };
39277
39455
 
@@ -39292,7 +39470,7 @@ var StyledTableHead = styled__default.thead.withConfig({
39292
39470
 
39293
39471
  var borderColor$4 = GREY_CHATEAU;
39294
39472
  var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
39295
- var fallbackValues$D = {
39473
+ var fallbackValues$F = {
39296
39474
  borderColor: borderColor$4,
39297
39475
  hoverBackgroundColor: hoverBackgroundColor$1
39298
39476
  };
@@ -39331,7 +39509,7 @@ var TableRow = function TableRow(_ref) {
39331
39509
  hoverBackgroundColor: themeValues.hoverBackgroundColor
39332
39510
  }, props), children);
39333
39511
  };
39334
- var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$D);
39512
+ var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$F);
39335
39513
 
39336
39514
  var TableHead = function TableHead(_ref) {
39337
39515
  var children = _ref.children,
@@ -39346,7 +39524,7 @@ var TableHead = function TableHead(_ref) {
39346
39524
  hoverEffect: false
39347
39525
  }, children));
39348
39526
  };
39349
- var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$C);
39527
+ var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$E);
39350
39528
 
39351
39529
  var TableHeading_styled = styled__default.th.withConfig({
39352
39530
  displayName: "TableHeadingstyled",
@@ -40172,9 +40350,9 @@ AddressForm.reducer = reducer;
40172
40350
  AddressForm.mapStateToProps = mapStateToProps$1;
40173
40351
  AddressForm.mapDispatchToProps = mapDispatchToProps;
40174
40352
 
40175
- var backgroundColor$7 = "#ebeffb";
40176
- var fallbackValues$E = {
40177
- backgroundColor: backgroundColor$7
40353
+ var backgroundColor$9 = "#ebeffb";
40354
+ var fallbackValues$G = {
40355
+ backgroundColor: backgroundColor$9
40178
40356
  };
40179
40357
 
40180
40358
  var Banner = function Banner(_ref) {
@@ -40222,7 +40400,7 @@ var Banner = function Banner(_ref) {
40222
40400
  extraStyles: isMobile && "> svg { width: 176px; }"
40223
40401
  }, /*#__PURE__*/React__default.createElement(Image, null))));
40224
40402
  };
40225
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$E);
40403
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$G);
40226
40404
 
40227
40405
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
40228
40406
  var clearOnDismount = _ref.clearOnDismount,
@@ -40356,7 +40534,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
40356
40534
  var titleColor$1 = "#292A33";
40357
40535
  var headingBackgroundColor = "transparent";
40358
40536
  var bodyBackgroundColor = "transparent";
40359
- var fallbackValues$F = {
40537
+ var fallbackValues$H = {
40360
40538
  titleColor: titleColor$1,
40361
40539
  headingBackgroundColor: headingBackgroundColor,
40362
40540
  bodyBackgroundColor: bodyBackgroundColor
@@ -40481,7 +40659,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
40481
40659
  "aria-labelledby": "".concat(id, "-button")
40482
40660
  }, children))));
40483
40661
  };
40484
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$F);
40662
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$H);
40485
40663
 
40486
40664
  var ClipboardIcon = function ClipboardIcon(_ref) {
40487
40665
  var themeValues = _ref.themeValues;
@@ -41057,7 +41235,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
41057
41235
 
41058
41236
  var footerBackgroundColor = BRIGHT_GREY;
41059
41237
  var subfooterBackgroundColor = STORM_GREY;
41060
- var fallbackValues$G = {
41238
+ var fallbackValues$I = {
41061
41239
  footerBackgroundColor: footerBackgroundColor,
41062
41240
  subfooterBackgroundColor: subfooterBackgroundColor
41063
41241
  };
@@ -41088,7 +41266,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
41088
41266
  rightContent: rightSubfooterContent
41089
41267
  }));
41090
41268
  };
41091
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$G);
41269
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$I);
41092
41270
 
41093
41271
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
41094
41272
  var fields = _ref.fields,
@@ -41134,10 +41312,10 @@ ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
41134
41312
  ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
41135
41313
 
41136
41314
  var textColor$4 = "#ffffff";
41137
- var backgroundColor$8 = "#182848";
41138
- var fallbackValues$H = {
41315
+ var backgroundColor$a = "#182848";
41316
+ var fallbackValues$J = {
41139
41317
  textColor: textColor$4,
41140
- backgroundColor: backgroundColor$8
41318
+ backgroundColor: backgroundColor$a
41141
41319
  };
41142
41320
 
41143
41321
  // this component needs some fix'n
@@ -41194,7 +41372,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
41194
41372
  }, t));
41195
41373
  }), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
41196
41374
  };
41197
- var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$H);
41375
+ var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$J);
41198
41376
 
41199
41377
  var AccountBillIcon = function AccountBillIcon() {
41200
41378
  return /*#__PURE__*/React__default.createElement("svg", {
@@ -42659,7 +42837,7 @@ var disabledColor$1 = {
42659
42837
  var activeBackgroundColor$1 = {
42660
42838
  primary: CORNFLOWER_BLUE
42661
42839
  };
42662
- var backgroundColor$9 = {
42840
+ var backgroundColor$b = {
42663
42841
  primary: LINK_WATER
42664
42842
  };
42665
42843
  var borderColor$5 = {
@@ -42668,12 +42846,12 @@ var borderColor$5 = {
42668
42846
  var color$b = {
42669
42847
  primary: ROYAL_BLUE_VIVID
42670
42848
  };
42671
- var fallbackValues$I = {
42849
+ var fallbackValues$K = {
42672
42850
  disabledBackgroundColor: disabledBackgroundColor$1,
42673
42851
  disabledBorderColor: disabledBorderColor$1,
42674
42852
  disabledColor: disabledColor$1,
42675
42853
  activeBackgroundColor: activeBackgroundColor$1,
42676
- backgroundColor: backgroundColor$9,
42854
+ backgroundColor: backgroundColor$b,
42677
42855
  borderColor: borderColor$5,
42678
42856
  color: color$b
42679
42857
  };
@@ -42789,7 +42967,7 @@ var LinkCard = function LinkCard(_ref) {
42789
42967
  extraStyles: "margin-right: auto;"
42790
42968
  }), showRight && !!rightContent && rightContent))));
42791
42969
  };
42792
- var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I, "primary");
42970
+ var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$K, "primary");
42793
42971
 
42794
42972
  var LoginForm = function LoginForm(_ref) {
42795
42973
  var clearOnDismount = _ref.clearOnDismount,
@@ -46428,136 +46606,7 @@ var Modal$1 = function Modal(_ref) {
46428
46606
  }))))))))), children);
46429
46607
  };
46430
46608
 
46431
- var fontSize$9 = {
46432
- "default": "1.375rem",
46433
- largeTitle: "1.75rem",
46434
- small: "1.25rem"
46435
- };
46436
- var fontWeight$5 = {
46437
- "default": "600",
46438
- largeTitle: "700",
46439
- small: "600"
46440
- };
46441
- var fontColor = {
46442
- "default": CHARADE_GREY,
46443
- largeTitle: CHARADE_GREY,
46444
- small: CHARADE_GREY
46445
- };
46446
- var lineHeight$3 = {
46447
- "default": "2rem",
46448
- largeTitle: "2rem",
46449
- small: "2rem"
46450
- };
46451
- var textAlign = {
46452
- "default": "left",
46453
- largeTitle: "left",
46454
- small: "left"
46455
- };
46456
- var titleType = {
46457
- "default": "h5",
46458
- largeTitle: "h1",
46459
- small: "h6"
46460
- };
46461
- var titleSpacing = {
46462
- "default": "0.5rem",
46463
- largeTitle: "1.125rem",
46464
- small: "0.5rem"
46465
- };
46466
- var boxShadow$1 = {
46467
- "default": "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
46468
- largeTitle: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
46469
- small: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
46470
- };
46471
- var borderRadius = {
46472
- "default": "0.25rem",
46473
- largeTitle: "0.25rem",
46474
- small: "0.25rem"
46475
- };
46476
- var backgroundColor$a = {
46477
- "default": WHITE,
46478
- largeTitle: WHITE,
46479
- small: WHITE
46480
- };
46481
- var fallbackValues$J = {
46482
- fontSize: fontSize$9,
46483
- fontWeight: fontWeight$5,
46484
- fontColor: fontColor,
46485
- lineHeight: lineHeight$3,
46486
- textAlign: textAlign,
46487
- titleType: titleType,
46488
- titleSpacing: titleSpacing,
46489
- boxShadow: boxShadow$1,
46490
- borderRadius: borderRadius,
46491
- backgroundColor: backgroundColor$a
46492
- };
46493
-
46494
- /*
46495
- New (01/22) - updated <Module /> to use <Title /> atom
46496
- Because <Title /> decouples size from element, also gave <Module />
46497
- two new props: "as" and "fontSize"
46498
-
46499
- When present, <Module /> will use those values to dictate element type and font size.
46500
-
46501
- For backwards compatability, <Module /> still computes a themed font size and element type based on old
46502
- <Heading /> variants. If "fontSize" or "as" is undefined, <Module /> will use themed values.
46503
- */
46504
-
46505
- var Module = function Module(_ref) {
46506
- var _ref$variant = _ref.variant,
46507
- variant = _ref$variant === void 0 ? "default" : _ref$variant,
46508
- as = _ref.as,
46509
- disabled = _ref.disabled,
46510
- heading = _ref.heading,
46511
- rightTitleContent = _ref.rightTitleContent,
46512
- _ref$titleID = _ref.titleID,
46513
- titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
46514
- _ref$spacing = _ref.spacing,
46515
- spacing = _ref$spacing === void 0 ? "1rem" : _ref$spacing,
46516
- _ref$padding = _ref.padding,
46517
- padding = _ref$padding === void 0 ? "0" : _ref$padding,
46518
- _ref$margin = _ref.margin,
46519
- margin = _ref$margin === void 0 ? "0" : _ref$margin,
46520
- _ref$spacingBottom = _ref.spacingBottom,
46521
- spacingBottom = _ref$spacingBottom === void 0 ? "2.5rem" : _ref$spacingBottom,
46522
- fontSize = _ref.fontSize,
46523
- themeValues = _ref.themeValues,
46524
- children = _ref.children;
46525
- var themedFontSize = variant === "small" ? "1.25rem" : variant === "default" ? "1.375rem" : "2rem";
46526
- var computedFontSize = fontSize || themedFontSize;
46527
- var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
46528
- var computedElemType = as || themedElemType;
46529
- var disabledStyles = "opacity: 0.40;";
46530
- var headingText = /*#__PURE__*/React__default.createElement(Title$1, {
46531
- weight: themeValues.fontWeight,
46532
- color: themeValues.fontColor,
46533
- margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
46534
- textAlign: themeValues.textAlign,
46535
- as: computedElemType,
46536
- extraStyles: "font-size: ".concat(computedFontSize, ";"),
46537
- id: titleID
46538
- }, heading);
46539
- return /*#__PURE__*/React__default.createElement(Box, {
46540
- "aria-disabled": disabled,
46541
- extraStyles: disabled && disabledStyles,
46542
- padding: "0",
46543
- role: "group"
46544
- }, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React__default.createElement(Cluster, {
46545
- justify: "space-between",
46546
- align: "center",
46547
- nowrap: true
46548
- }, headingText, rightTitleContent), /*#__PURE__*/React__default.createElement(Box, {
46549
- padding: "0 0 ".concat(spacingBottom),
46550
- extraStyles: "margin: ".concat(margin)
46551
- }, /*#__PURE__*/React__default.createElement(Box, {
46552
- padding: padding,
46553
- background: themeValues.backgroundColor,
46554
- borderRadius: themeValues.borderRadius,
46555
- boxShadow: themeValues.boxShadow
46556
- }, children)));
46557
- };
46558
- var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$J, "default"));
46559
-
46560
- var backgroundColor$b = {
46609
+ var backgroundColor$c = {
46561
46610
  profile: "#3b414d",
46562
46611
  cms: "#3b414d"
46563
46612
  };
@@ -46565,8 +46614,8 @@ var shadowColor = {
46565
46614
  profile: "#292A33",
46566
46615
  cms: "#292A33"
46567
46616
  };
46568
- var fallbackValues$K = {
46569
- backgroundColor: backgroundColor$b,
46617
+ var fallbackValues$L = {
46618
+ backgroundColor: backgroundColor$c,
46570
46619
  shadowColor: shadowColor
46571
46620
  };
46572
46621
 
@@ -46605,7 +46654,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
46605
46654
  onBlur: onBlur
46606
46655
  }, menuContent));
46607
46656
  };
46608
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$K, "profile");
46657
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$L, "profile");
46609
46658
 
46610
46659
  var menu = posed.div({
46611
46660
  invisible: {
@@ -46665,7 +46714,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
46665
46714
  background: themeValues.backgroundColor
46666
46715
  }, menuContent));
46667
46716
  };
46668
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$K, "profile");
46717
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$L, "profile");
46669
46718
 
46670
46719
  var IconsModule = function IconsModule(_ref) {
46671
46720
  var icon = _ref.icon,
@@ -46719,7 +46768,7 @@ var activeColor$8 = "#0E506D";
46719
46768
  var linkColor$4 = "#3176AA";
46720
46769
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
46721
46770
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
46722
- var fallbackValues$L = {
46771
+ var fallbackValues$M = {
46723
46772
  color: color$c,
46724
46773
  hoverColor: hoverColor$5,
46725
46774
  activeColor: activeColor$8,
@@ -46845,7 +46894,7 @@ var AutopayModal = function AutopayModal(_ref) {
46845
46894
  modalOpen: modalOpen
46846
46895
  }, modalExtraProps), renderAutoPayControl());
46847
46896
  };
46848
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$L);
46897
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$M);
46849
46898
 
46850
46899
  var AmountModule = function AmountModule(_ref) {
46851
46900
  var totalAmountDue = _ref.totalAmountDue,
@@ -47535,7 +47584,7 @@ var numberColor = MATISSE_BLUE;
47535
47584
  var hoverBackgroundColor$2 = ALABASTER_WHITE;
47536
47585
  var activeBackgroundColor$2 = WHITE;
47537
47586
  var activeColor$9 = MATISSE_BLUE;
47538
- var fallbackValues$M = {
47587
+ var fallbackValues$N = {
47539
47588
  activeColor: activeColor$9,
47540
47589
  activeBackgroundColor: activeBackgroundColor$2,
47541
47590
  arrowColor: arrowColor,
@@ -47729,7 +47778,7 @@ var Pagination = function Pagination(_ref3) {
47729
47778
  buttonWidth: buttonWidth
47730
47779
  }));
47731
47780
  };
47732
- var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$M);
47781
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$N);
47733
47782
 
47734
47783
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
47735
47784
  var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
@@ -47810,7 +47859,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
47810
47859
  }, !hideBackButton && /*#__PURE__*/React__default.createElement(React.Fragment, null, backButton), !hideForwardButton && /*#__PURE__*/React__default.createElement(React.Fragment, null, forwardButton), !hideAdditionalButton && /*#__PURE__*/React__default.createElement(React.Fragment, null, additionalButton))));
47811
47860
  };
47812
47861
 
47813
- var backgroundColor$c = {
47862
+ var backgroundColor$d = {
47814
47863
  "default": "transparent",
47815
47864
  small: "transparent"
47816
47865
  };
@@ -47826,8 +47875,8 @@ var labeledAmountTotal = {
47826
47875
  "default": "large",
47827
47876
  small: "small"
47828
47877
  };
47829
- var fallbackValues$N = {
47830
- backgroundColor: backgroundColor$c,
47878
+ var fallbackValues$O = {
47879
+ backgroundColor: backgroundColor$d,
47831
47880
  lineItem: lineItem,
47832
47881
  labeledAmountSubtotal: labeledAmountSubtotal,
47833
47882
  labeledAmountTotal: labeledAmountTotal
@@ -48197,7 +48246,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
48197
48246
  isError: isError
48198
48247
  });
48199
48248
  };
48200
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$N, "default");
48249
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$O, "default");
48201
48250
 
48202
48251
  var linkColor$5 = {
48203
48252
  "default": "#3176AA"
@@ -48217,7 +48266,7 @@ var modalLinkHoverFocus$1 = {
48217
48266
  var linkTextDecoration = {
48218
48267
  "default": LINK_TEXT_DECORATION
48219
48268
  };
48220
- var fallbackValues$O = {
48269
+ var fallbackValues$P = {
48221
48270
  linkColor: linkColor$5,
48222
48271
  fontSize: fontSize$a,
48223
48272
  lineHeight: lineHeight$4,
@@ -48283,9 +48332,9 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
48283
48332
  className: "modal-trigger"
48284
48333
  }, link));
48285
48334
  };
48286
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$O, "default");
48335
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$P, "default");
48287
48336
 
48288
- var backgroundColor$d = {
48337
+ var backgroundColor$e = {
48289
48338
  "default": "#ffffff",
48290
48339
  footer: "#ffffff"
48291
48340
  };
@@ -48318,8 +48367,8 @@ var modalLinkTextDecoration = {
48318
48367
  "default": LINK_TEXT_DECORATION,
48319
48368
  footer: "none"
48320
48369
  };
48321
- var fallbackValues$P = {
48322
- backgroundColor: backgroundColor$d,
48370
+ var fallbackValues$Q = {
48371
+ backgroundColor: backgroundColor$e,
48323
48372
  linkColor: linkColor$6,
48324
48373
  border: border$3,
48325
48374
  fontSize: fontSize$b,
@@ -48390,7 +48439,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
48390
48439
  className: "modal-trigger"
48391
48440
  }, link));
48392
48441
  };
48393
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
48442
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$Q, "default");
48394
48443
 
48395
48444
  var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
48396
48445
  var onCheck = _ref.onCheck,
@@ -49153,7 +49202,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
49153
49202
  var bodyBackgroundColor$1 = "#eeeeee";
49154
49203
  var borderColor$6 = "".concat(GHOST_GREY);
49155
49204
  var focusStyles = "outline: none;";
49156
- var fallbackValues$Q = {
49205
+ var fallbackValues$R = {
49157
49206
  headingBackgroundColor: headingBackgroundColor$1,
49158
49207
  headingDisabledColor: headingDisabledColor,
49159
49208
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -49455,7 +49504,7 @@ var RadioSection = function RadioSection(_ref) {
49455
49504
  });
49456
49505
  })));
49457
49506
  };
49458
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$Q);
49507
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$R);
49459
49508
 
49460
49509
  var RegistrationForm = function RegistrationForm(_ref) {
49461
49510
  var clearOnDismount = _ref.clearOnDismount,
@@ -49737,7 +49786,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
49737
49786
  var activeTabBackground = "#FFFFFF";
49738
49787
  var activeTabAccent = "#15749D";
49739
49788
  var activeTabHover = "#B8D5E1";
49740
- var fallbackValues$R = {
49789
+ var fallbackValues$S = {
49741
49790
  activeTabBackground: activeTabBackground,
49742
49791
  activeTabAccent: activeTabAccent,
49743
49792
  activeTabHover: activeTabHover
@@ -49805,12 +49854,12 @@ var Tabs = function Tabs(_ref) {
49805
49854
  }, tab.content);
49806
49855
  }))));
49807
49856
  };
49808
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$R);
49857
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$S);
49809
49858
 
49810
49859
  var activeTabBackground$1 = "#FFFFFF";
49811
49860
  var activeTabAccent$1 = "#15749D";
49812
49861
  var activeTabHover$1 = "#B8D5E1";
49813
- var fallbackValues$S = {
49862
+ var fallbackValues$T = {
49814
49863
  activeTabBackground: activeTabBackground$1,
49815
49864
  activeTabAccent: activeTabAccent$1,
49816
49865
  activeTabHover: activeTabHover$1
@@ -49865,7 +49914,7 @@ var TabSidebar = function TabSidebar(_ref) {
49865
49914
  }, text)))));
49866
49915
  })));
49867
49916
  };
49868
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$S);
49917
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$T);
49869
49918
 
49870
49919
  var Timeout = function Timeout(_ref) {
49871
49920
  var onLogout = _ref.onLogout;
@@ -49950,7 +49999,7 @@ var fontColor$1 = WHITE;
49950
49999
  var textAlign$1 = "left";
49951
50000
  var headerBackgroundColor$1 = BRIGHT_GREY;
49952
50001
  var imageBackgroundColor$1 = MATISSE_BLUE;
49953
- var fallbackValues$T = {
50002
+ var fallbackValues$U = {
49954
50003
  fontWeight: fontWeight$9,
49955
50004
  fontColor: fontColor$1,
49956
50005
  textAlign: textAlign$1,
@@ -49995,7 +50044,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
49995
50044
  src: welcomeImage
49996
50045
  })))));
49997
50046
  };
49998
- var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$T));
50047
+ var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$U));
49999
50048
 
50000
50049
  var WorkflowTile = function WorkflowTile(_ref) {
50001
50050
  var _ref$workflowName = _ref.workflowName,
@@ -50055,7 +50104,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
50055
50104
  var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
50056
50105
  var menuItemHoverBackgroundColorDelete = BLUSH_RED;
50057
50106
  var menuItemHoverColor = ROYAL_BLUE_VIVID;
50058
- var fallbackValues$U = {
50107
+ var fallbackValues$V = {
50059
50108
  menuItemBackgroundColor: menuItemBackgroundColor,
50060
50109
  menuItemColor: menuItemColor,
50061
50110
  menuItemColorDelete: menuItemColorDelete,
@@ -50122,17 +50171,17 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
50122
50171
  extraStyles: textExtraStyles
50123
50172
  }, text)));
50124
50173
  };
50125
- var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$U);
50174
+ var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$V);
50126
50175
 
50127
50176
  var hoverColor$6 = "#116285";
50128
50177
  var activeColor$a = "#0E506D";
50129
50178
  var menuTriggerColor = "#15749D";
50130
- var backgroundColor$e = "white";
50131
- var fallbackValues$V = {
50179
+ var backgroundColor$f = "white";
50180
+ var fallbackValues$W = {
50132
50181
  hoverColor: hoverColor$6,
50133
50182
  activeColor: activeColor$a,
50134
50183
  menuTriggerColor: menuTriggerColor,
50135
- backgroundColor: backgroundColor$e
50184
+ backgroundColor: backgroundColor$f
50136
50185
  };
50137
50186
 
50138
50187
  var PopupMenuContainer = styled__default(Box).withConfig({
@@ -50264,10 +50313,10 @@ var PopupMenu = function PopupMenu(_ref) {
50264
50313
  }, item));
50265
50314
  })));
50266
50315
  };
50267
- var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$V);
50316
+ var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$W);
50268
50317
 
50269
50318
  var pageBackground = "#FBFCFD";
50270
- var fallbackValues$W = {
50319
+ var fallbackValues$X = {
50271
50320
  pageBackground: pageBackground
50272
50321
  };
50273
50322
 
@@ -50315,7 +50364,7 @@ var CenterSingle = function CenterSingle(_ref) {
50315
50364
  padding: "0"
50316
50365
  })));
50317
50366
  };
50318
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$W));
50367
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$X));
50319
50368
 
50320
50369
  var CenterStack = function CenterStack(_ref) {
50321
50370
  var header = _ref.header,
@@ -50358,7 +50407,7 @@ var CenterStack = function CenterStack(_ref) {
50358
50407
  padding: "0"
50359
50408
  })));
50360
50409
  };
50361
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$W));
50410
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$X));
50362
50411
 
50363
50412
  var CenterSingle$2 = function CenterSingle(_ref) {
50364
50413
  var header = _ref.header,
@@ -50404,7 +50453,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
50404
50453
  padding: "0"
50405
50454
  })));
50406
50455
  };
50407
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$W));
50456
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$X));
50408
50457
 
50409
50458
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
50410
50459
  var header = _ref.header,
@@ -50457,7 +50506,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
50457
50506
  padding: "0"
50458
50507
  })));
50459
50508
  };
50460
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$W));
50509
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$X));
50461
50510
 
50462
50511
  var SidebarStackContent = function SidebarStackContent(_ref) {
50463
50512
  var header = _ref.header,
@@ -50527,7 +50576,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
50527
50576
  key: "footer-box"
50528
50577
  })));
50529
50578
  };
50530
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$W));
50579
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$X));
50531
50580
 
50532
50581
  var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
50533
50582
  var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
@@ -50766,6 +50815,7 @@ exports.VoidedIcon = VoidedIcon;
50766
50815
  exports.WalletBannerIcon = WalletBannerIcon$1;
50767
50816
  exports.WalletIcon = WalletIcon$1;
50768
50817
  exports.WalletIconSmall = WalletIconSmall$1;
50818
+ exports.WalletName = WalletName$1;
50769
50819
  exports.WarningIconXS = WarningIconXS;
50770
50820
  exports.WelcomeModule = WelcomeModule$1;
50771
50821
  exports.WorkflowTile = WorkflowTile;