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

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,190 @@ var LoadingLine = function LoadingLine(_ref) {
39232
39232
  });
39233
39233
  };
39234
39234
 
39235
+ var backgroundColor$6 = {
39236
+ primary: WHITE
39237
+ };
39238
+ var boxShadow$1 = {
39239
+ primary: "box-shadow: 0px 1px 2px 0px #292A331A;\n box-shadow: 0px 2px 6px 0px #292a3333; box-shadow: 0px 1px 0px 0px #292A331A inset;"
39240
+ };
39241
+ var fallbackValues$C = {
39242
+ backgroundColor: backgroundColor$6,
39243
+ boxShadow: boxShadow$1
39244
+ };
39245
+
39246
+ var fontSize$9 = {
39247
+ "default": "1.375rem",
39248
+ largeTitle: "1.75rem",
39249
+ small: "1.25rem"
39250
+ };
39251
+ var fontWeight$5 = {
39252
+ "default": "600",
39253
+ largeTitle: "700",
39254
+ small: "600"
39255
+ };
39256
+ var fontColor = {
39257
+ "default": CHARADE_GREY,
39258
+ largeTitle: CHARADE_GREY,
39259
+ small: CHARADE_GREY
39260
+ };
39261
+ var lineHeight$3 = {
39262
+ "default": "2rem",
39263
+ largeTitle: "2rem",
39264
+ small: "2rem"
39265
+ };
39266
+ var textAlign = {
39267
+ "default": "left",
39268
+ largeTitle: "left",
39269
+ small: "left"
39270
+ };
39271
+ var titleType = {
39272
+ "default": "h5",
39273
+ largeTitle: "h1",
39274
+ small: "h6"
39275
+ };
39276
+ var titleSpacing = {
39277
+ "default": "0.5rem",
39278
+ largeTitle: "1.125rem",
39279
+ small: "0.5rem"
39280
+ };
39281
+ var boxShadow$2 = {
39282
+ "default": "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
39283
+ largeTitle: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
39284
+ small: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
39285
+ };
39286
+ var borderRadius = {
39287
+ "default": "0.25rem",
39288
+ largeTitle: "0.25rem",
39289
+ small: "0.25rem"
39290
+ };
39291
+ var backgroundColor$7 = {
39292
+ "default": WHITE,
39293
+ largeTitle: WHITE,
39294
+ small: WHITE
39295
+ };
39296
+ var fallbackValues$D = {
39297
+ fontSize: fontSize$9,
39298
+ fontWeight: fontWeight$5,
39299
+ fontColor: fontColor,
39300
+ lineHeight: lineHeight$3,
39301
+ textAlign: textAlign,
39302
+ titleType: titleType,
39303
+ titleSpacing: titleSpacing,
39304
+ boxShadow: boxShadow$2,
39305
+ borderRadius: borderRadius,
39306
+ backgroundColor: backgroundColor$7
39307
+ };
39308
+
39309
+ /*
39310
+ New (01/22) - updated <Module /> to use <Title /> atom
39311
+ Because <Title /> decouples size from element, also gave <Module />
39312
+ two new props: "as" and "fontSize"
39313
+
39314
+ When present, <Module /> will use those values to dictate element type and font size.
39315
+
39316
+ For backwards compatability, <Module /> still computes a themed font size and element type based on old
39317
+ <Heading /> variants. If "fontSize" or "as" is undefined, <Module /> will use themed values.
39318
+ */
39319
+
39320
+ var Module = function Module(_ref) {
39321
+ var _ref$variant = _ref.variant,
39322
+ variant = _ref$variant === void 0 ? "default" : _ref$variant,
39323
+ as = _ref.as,
39324
+ disabled = _ref.disabled,
39325
+ heading = _ref.heading,
39326
+ rightTitleContent = _ref.rightTitleContent,
39327
+ _ref$titleID = _ref.titleID,
39328
+ titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
39329
+ _ref$spacing = _ref.spacing,
39330
+ spacing = _ref$spacing === void 0 ? "1rem" : _ref$spacing,
39331
+ _ref$padding = _ref.padding,
39332
+ padding = _ref$padding === void 0 ? "0" : _ref$padding,
39333
+ _ref$margin = _ref.margin,
39334
+ margin = _ref$margin === void 0 ? "0" : _ref$margin,
39335
+ _ref$spacingBottom = _ref.spacingBottom,
39336
+ spacingBottom = _ref$spacingBottom === void 0 ? "2.5rem" : _ref$spacingBottom,
39337
+ fontSize = _ref.fontSize,
39338
+ themeValues = _ref.themeValues,
39339
+ children = _ref.children;
39340
+ var themedFontSize = variant === "small" ? "1.25rem" : variant === "default" ? "1.375rem" : "2rem";
39341
+ var computedFontSize = fontSize || themedFontSize;
39342
+ var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
39343
+ var computedElemType = as || themedElemType;
39344
+ var disabledStyles = "opacity: 0.40;";
39345
+ var headingText = /*#__PURE__*/React__default.createElement(Title$1, {
39346
+ weight: themeValues.fontWeight,
39347
+ color: themeValues.fontColor,
39348
+ margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
39349
+ textAlign: themeValues.textAlign,
39350
+ as: computedElemType,
39351
+ extraStyles: "font-size: ".concat(computedFontSize, ";"),
39352
+ id: titleID
39353
+ }, heading);
39354
+ return /*#__PURE__*/React__default.createElement(Box, {
39355
+ "aria-disabled": disabled,
39356
+ extraStyles: disabled && disabledStyles,
39357
+ padding: "0",
39358
+ role: "group"
39359
+ }, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React__default.createElement(Cluster, {
39360
+ justify: "space-between",
39361
+ align: "center",
39362
+ nowrap: true
39363
+ }, headingText, rightTitleContent), /*#__PURE__*/React__default.createElement(Box, {
39364
+ padding: "0 0 ".concat(spacingBottom),
39365
+ extraStyles: "margin: ".concat(margin)
39366
+ }, /*#__PURE__*/React__default.createElement(Box, {
39367
+ padding: padding,
39368
+ background: themeValues.backgroundColor,
39369
+ borderRadius: themeValues.borderRadius,
39370
+ boxShadow: themeValues.boxShadow
39371
+ }, children)));
39372
+ };
39373
+ var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
39374
+
39375
+ var WalletName = function WalletName(_ref) {
39376
+ var personName = _ref.personName,
39377
+ _ref$action = _ref.action,
39378
+ action = _ref$action === void 0 ? noop : _ref$action,
39379
+ _ref$text = _ref.text,
39380
+ text = _ref$text === void 0 ? "Not you?" : _ref$text,
39381
+ _ref$actionText = _ref.actionText,
39382
+ actionText = _ref$actionText === void 0 ? "Check out as a guest" : _ref$actionText,
39383
+ themeValues = _ref.themeValues;
39384
+ var themeContext = React.useContext(styled.ThemeContext);
39385
+ var isMobile = themeContext.isMobile;
39386
+ return /*#__PURE__*/React__default.createElement(React.Fragment, null, /*#__PURE__*/React__default.createElement(Module$1, {
39387
+ spacingBottom: isMobile ? "0" : "1.5rem"
39388
+ }, /*#__PURE__*/React__default.createElement(Box, {
39389
+ padding: "24px",
39390
+ boxShadow: themeValues.boxShadow,
39391
+ spacingBottom: "0",
39392
+ margin: "0 0 0 0",
39393
+ extraStyles: isMobile ? "display: flex; flex-direction: column; flex-wrap: wrap; span {text - align: right;}" : "display: flex; justify-content: space-between; align-items: center;"
39394
+ }, /*#__PURE__*/React__default.createElement(Box, {
39395
+ padding: "0 0 0"
39396
+ }, /*#__PURE__*/React__default.createElement(Text$1, null, personName)), !isMobile && /*#__PURE__*/React__default.createElement(Box, {
39397
+ padding: "0"
39398
+ }, /*#__PURE__*/React__default.createElement(Text$1, {
39399
+ extraStyles: "font-size: 12px"
39400
+ }, text), /*#__PURE__*/React__default.createElement(ButtonWithAction, {
39401
+ text: actionText,
39402
+ action: action,
39403
+ variant: "smallGhost",
39404
+ extraStyles: "span {font-size: 12px;}"
39405
+ })))), isMobile && /*#__PURE__*/React__default.createElement(Box, {
39406
+ padding: "0 0 24px",
39407
+ extraStyles: "display: flex; align-items: center; justify-content: flex-end;"
39408
+ }, /*#__PURE__*/React__default.createElement(Text$1, {
39409
+ extraStyles: "font-size: 12px"
39410
+ }, text), /*#__PURE__*/React__default.createElement(ButtonWithAction, {
39411
+ text: actionText,
39412
+ action: action,
39413
+ variant: "smallGhost",
39414
+ extraStyles: "span {font-size: 12px;}"
39415
+ })));
39416
+ };
39417
+ var WalletName$1 = themeComponent(WalletName, "WalletName", fallbackValues$C, "primary");
39418
+
39235
39419
  var Table_styled = styled__default.table.withConfig({
39236
39420
  displayName: "Tablestyled",
39237
39421
  componentId: "sc-mveye7-0"
@@ -39268,10 +39452,10 @@ var TableCell_styled = styled__default.td.withConfig({
39268
39452
  return extraStyles;
39269
39453
  });
39270
39454
 
39271
- var backgroundColor$6 = ALABASTER_WHITE;
39455
+ var backgroundColor$8 = ALABASTER_WHITE;
39272
39456
  var borderColor$3 = GREY_CHATEAU;
39273
- var fallbackValues$C = {
39274
- backgroundColor: backgroundColor$6,
39457
+ var fallbackValues$E = {
39458
+ backgroundColor: backgroundColor$8,
39275
39459
  borderColor: borderColor$3
39276
39460
  };
39277
39461
 
@@ -39292,7 +39476,7 @@ var StyledTableHead = styled__default.thead.withConfig({
39292
39476
 
39293
39477
  var borderColor$4 = GREY_CHATEAU;
39294
39478
  var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
39295
- var fallbackValues$D = {
39479
+ var fallbackValues$F = {
39296
39480
  borderColor: borderColor$4,
39297
39481
  hoverBackgroundColor: hoverBackgroundColor$1
39298
39482
  };
@@ -39331,7 +39515,7 @@ var TableRow = function TableRow(_ref) {
39331
39515
  hoverBackgroundColor: themeValues.hoverBackgroundColor
39332
39516
  }, props), children);
39333
39517
  };
39334
- var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$D);
39518
+ var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$F);
39335
39519
 
39336
39520
  var TableHead = function TableHead(_ref) {
39337
39521
  var children = _ref.children,
@@ -39346,7 +39530,7 @@ var TableHead = function TableHead(_ref) {
39346
39530
  hoverEffect: false
39347
39531
  }, children));
39348
39532
  };
39349
- var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$C);
39533
+ var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$E);
39350
39534
 
39351
39535
  var TableHeading_styled = styled__default.th.withConfig({
39352
39536
  displayName: "TableHeadingstyled",
@@ -40172,9 +40356,9 @@ AddressForm.reducer = reducer;
40172
40356
  AddressForm.mapStateToProps = mapStateToProps$1;
40173
40357
  AddressForm.mapDispatchToProps = mapDispatchToProps;
40174
40358
 
40175
- var backgroundColor$7 = "#ebeffb";
40176
- var fallbackValues$E = {
40177
- backgroundColor: backgroundColor$7
40359
+ var backgroundColor$9 = "#ebeffb";
40360
+ var fallbackValues$G = {
40361
+ backgroundColor: backgroundColor$9
40178
40362
  };
40179
40363
 
40180
40364
  var Banner = function Banner(_ref) {
@@ -40222,7 +40406,7 @@ var Banner = function Banner(_ref) {
40222
40406
  extraStyles: isMobile && "> svg { width: 176px; }"
40223
40407
  }, /*#__PURE__*/React__default.createElement(Image, null))));
40224
40408
  };
40225
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$E);
40409
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$G);
40226
40410
 
40227
40411
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
40228
40412
  var clearOnDismount = _ref.clearOnDismount,
@@ -40356,7 +40540,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
40356
40540
  var titleColor$1 = "#292A33";
40357
40541
  var headingBackgroundColor = "transparent";
40358
40542
  var bodyBackgroundColor = "transparent";
40359
- var fallbackValues$F = {
40543
+ var fallbackValues$H = {
40360
40544
  titleColor: titleColor$1,
40361
40545
  headingBackgroundColor: headingBackgroundColor,
40362
40546
  bodyBackgroundColor: bodyBackgroundColor
@@ -40481,7 +40665,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
40481
40665
  "aria-labelledby": "".concat(id, "-button")
40482
40666
  }, children))));
40483
40667
  };
40484
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$F);
40668
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$H);
40485
40669
 
40486
40670
  var ClipboardIcon = function ClipboardIcon(_ref) {
40487
40671
  var themeValues = _ref.themeValues;
@@ -41057,7 +41241,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
41057
41241
 
41058
41242
  var footerBackgroundColor = BRIGHT_GREY;
41059
41243
  var subfooterBackgroundColor = STORM_GREY;
41060
- var fallbackValues$G = {
41244
+ var fallbackValues$I = {
41061
41245
  footerBackgroundColor: footerBackgroundColor,
41062
41246
  subfooterBackgroundColor: subfooterBackgroundColor
41063
41247
  };
@@ -41088,7 +41272,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
41088
41272
  rightContent: rightSubfooterContent
41089
41273
  }));
41090
41274
  };
41091
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$G);
41275
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$I);
41092
41276
 
41093
41277
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
41094
41278
  var fields = _ref.fields,
@@ -41134,10 +41318,10 @@ ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
41134
41318
  ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
41135
41319
 
41136
41320
  var textColor$4 = "#ffffff";
41137
- var backgroundColor$8 = "#182848";
41138
- var fallbackValues$H = {
41321
+ var backgroundColor$a = "#182848";
41322
+ var fallbackValues$J = {
41139
41323
  textColor: textColor$4,
41140
- backgroundColor: backgroundColor$8
41324
+ backgroundColor: backgroundColor$a
41141
41325
  };
41142
41326
 
41143
41327
  // this component needs some fix'n
@@ -41194,7 +41378,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
41194
41378
  }, t));
41195
41379
  }), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
41196
41380
  };
41197
- var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$H);
41381
+ var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$J);
41198
41382
 
41199
41383
  var AccountBillIcon = function AccountBillIcon() {
41200
41384
  return /*#__PURE__*/React__default.createElement("svg", {
@@ -42659,7 +42843,7 @@ var disabledColor$1 = {
42659
42843
  var activeBackgroundColor$1 = {
42660
42844
  primary: CORNFLOWER_BLUE
42661
42845
  };
42662
- var backgroundColor$9 = {
42846
+ var backgroundColor$b = {
42663
42847
  primary: LINK_WATER
42664
42848
  };
42665
42849
  var borderColor$5 = {
@@ -42668,12 +42852,12 @@ var borderColor$5 = {
42668
42852
  var color$b = {
42669
42853
  primary: ROYAL_BLUE_VIVID
42670
42854
  };
42671
- var fallbackValues$I = {
42855
+ var fallbackValues$K = {
42672
42856
  disabledBackgroundColor: disabledBackgroundColor$1,
42673
42857
  disabledBorderColor: disabledBorderColor$1,
42674
42858
  disabledColor: disabledColor$1,
42675
42859
  activeBackgroundColor: activeBackgroundColor$1,
42676
- backgroundColor: backgroundColor$9,
42860
+ backgroundColor: backgroundColor$b,
42677
42861
  borderColor: borderColor$5,
42678
42862
  color: color$b
42679
42863
  };
@@ -42789,7 +42973,7 @@ var LinkCard = function LinkCard(_ref) {
42789
42973
  extraStyles: "margin-right: auto;"
42790
42974
  }), showRight && !!rightContent && rightContent))));
42791
42975
  };
42792
- var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I, "primary");
42976
+ var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$K, "primary");
42793
42977
 
42794
42978
  var LoginForm = function LoginForm(_ref) {
42795
42979
  var clearOnDismount = _ref.clearOnDismount,
@@ -46428,136 +46612,7 @@ var Modal$1 = function Modal(_ref) {
46428
46612
  }))))))))), children);
46429
46613
  };
46430
46614
 
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 = {
46615
+ var backgroundColor$c = {
46561
46616
  profile: "#3b414d",
46562
46617
  cms: "#3b414d"
46563
46618
  };
@@ -46565,8 +46620,8 @@ var shadowColor = {
46565
46620
  profile: "#292A33",
46566
46621
  cms: "#292A33"
46567
46622
  };
46568
- var fallbackValues$K = {
46569
- backgroundColor: backgroundColor$b,
46623
+ var fallbackValues$L = {
46624
+ backgroundColor: backgroundColor$c,
46570
46625
  shadowColor: shadowColor
46571
46626
  };
46572
46627
 
@@ -46605,7 +46660,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
46605
46660
  onBlur: onBlur
46606
46661
  }, menuContent));
46607
46662
  };
46608
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$K, "profile");
46663
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$L, "profile");
46609
46664
 
46610
46665
  var menu = posed.div({
46611
46666
  invisible: {
@@ -46665,7 +46720,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
46665
46720
  background: themeValues.backgroundColor
46666
46721
  }, menuContent));
46667
46722
  };
46668
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$K, "profile");
46723
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$L, "profile");
46669
46724
 
46670
46725
  var IconsModule = function IconsModule(_ref) {
46671
46726
  var icon = _ref.icon,
@@ -46719,7 +46774,7 @@ var activeColor$8 = "#0E506D";
46719
46774
  var linkColor$4 = "#3176AA";
46720
46775
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
46721
46776
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
46722
- var fallbackValues$L = {
46777
+ var fallbackValues$M = {
46723
46778
  color: color$c,
46724
46779
  hoverColor: hoverColor$5,
46725
46780
  activeColor: activeColor$8,
@@ -46845,7 +46900,7 @@ var AutopayModal = function AutopayModal(_ref) {
46845
46900
  modalOpen: modalOpen
46846
46901
  }, modalExtraProps), renderAutoPayControl());
46847
46902
  };
46848
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$L);
46903
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$M);
46849
46904
 
46850
46905
  var AmountModule = function AmountModule(_ref) {
46851
46906
  var totalAmountDue = _ref.totalAmountDue,
@@ -47535,7 +47590,7 @@ var numberColor = MATISSE_BLUE;
47535
47590
  var hoverBackgroundColor$2 = ALABASTER_WHITE;
47536
47591
  var activeBackgroundColor$2 = WHITE;
47537
47592
  var activeColor$9 = MATISSE_BLUE;
47538
- var fallbackValues$M = {
47593
+ var fallbackValues$N = {
47539
47594
  activeColor: activeColor$9,
47540
47595
  activeBackgroundColor: activeBackgroundColor$2,
47541
47596
  arrowColor: arrowColor,
@@ -47729,7 +47784,7 @@ var Pagination = function Pagination(_ref3) {
47729
47784
  buttonWidth: buttonWidth
47730
47785
  }));
47731
47786
  };
47732
- var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$M);
47787
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$N);
47733
47788
 
47734
47789
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
47735
47790
  var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
@@ -47810,7 +47865,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
47810
47865
  }, !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
47866
  };
47812
47867
 
47813
- var backgroundColor$c = {
47868
+ var backgroundColor$d = {
47814
47869
  "default": "transparent",
47815
47870
  small: "transparent"
47816
47871
  };
@@ -47826,8 +47881,8 @@ var labeledAmountTotal = {
47826
47881
  "default": "large",
47827
47882
  small: "small"
47828
47883
  };
47829
- var fallbackValues$N = {
47830
- backgroundColor: backgroundColor$c,
47884
+ var fallbackValues$O = {
47885
+ backgroundColor: backgroundColor$d,
47831
47886
  lineItem: lineItem,
47832
47887
  labeledAmountSubtotal: labeledAmountSubtotal,
47833
47888
  labeledAmountTotal: labeledAmountTotal
@@ -48197,7 +48252,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
48197
48252
  isError: isError
48198
48253
  });
48199
48254
  };
48200
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$N, "default");
48255
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$O, "default");
48201
48256
 
48202
48257
  var linkColor$5 = {
48203
48258
  "default": "#3176AA"
@@ -48217,7 +48272,7 @@ var modalLinkHoverFocus$1 = {
48217
48272
  var linkTextDecoration = {
48218
48273
  "default": LINK_TEXT_DECORATION
48219
48274
  };
48220
- var fallbackValues$O = {
48275
+ var fallbackValues$P = {
48221
48276
  linkColor: linkColor$5,
48222
48277
  fontSize: fontSize$a,
48223
48278
  lineHeight: lineHeight$4,
@@ -48265,27 +48320,25 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
48265
48320
  toggleOpen(false);
48266
48321
  },
48267
48322
  initialFocusSelector: "[name='Close']"
48268
- }, /*#__PURE__*/React__default.createElement(Text$1, {
48269
- variant: "pS",
48323
+ }, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
48324
+ variant: "ghost",
48325
+ tabIndex: "0",
48270
48326
  onClick: function onClick() {
48271
48327
  return toggleOpen(true);
48272
48328
  },
48273
48329
  onKeyPress: function onKeyPress(e) {
48274
48330
  return e.key === "Enter" && toggleOpen(true);
48275
48331
  },
48276
- tabIndex: "0",
48277
- color: themeValues.linkColor,
48278
- weight: themeValues.fontWeight,
48279
- hoverStyles: themeValues.modalLinkHoverFocus,
48280
- textDecoration: themeValues.linkTextDecoration,
48281
- extraStyles: "cursor: pointer;",
48282
- role: "button",
48283
- className: "modal-trigger"
48284
- }, link));
48332
+ extraStyles: "min-width: 0; min-height: 0;margin: 0; padding: 0; text-transform: none;",
48333
+ text: /*#__PURE__*/React__default.createElement(Text$1, {
48334
+ variant: "pS",
48335
+ color: "inherit"
48336
+ }, link)
48337
+ }));
48285
48338
  };
48286
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$O, "default");
48339
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$P, "default");
48287
48340
 
48288
- var backgroundColor$d = {
48341
+ var backgroundColor$e = {
48289
48342
  "default": "#ffffff",
48290
48343
  footer: "#ffffff"
48291
48344
  };
@@ -48318,8 +48371,8 @@ var modalLinkTextDecoration = {
48318
48371
  "default": LINK_TEXT_DECORATION,
48319
48372
  footer: "none"
48320
48373
  };
48321
- var fallbackValues$P = {
48322
- backgroundColor: backgroundColor$d,
48374
+ var fallbackValues$Q = {
48375
+ backgroundColor: backgroundColor$e,
48323
48376
  linkColor: linkColor$6,
48324
48377
  border: border$3,
48325
48378
  fontSize: fontSize$b,
@@ -48390,7 +48443,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
48390
48443
  className: "modal-trigger"
48391
48444
  }, link));
48392
48445
  };
48393
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
48446
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$Q, "default");
48394
48447
 
48395
48448
  var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
48396
48449
  var onCheck = _ref.onCheck,
@@ -49153,7 +49206,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
49153
49206
  var bodyBackgroundColor$1 = "#eeeeee";
49154
49207
  var borderColor$6 = "".concat(GHOST_GREY);
49155
49208
  var focusStyles = "outline: none;";
49156
- var fallbackValues$Q = {
49209
+ var fallbackValues$R = {
49157
49210
  headingBackgroundColor: headingBackgroundColor$1,
49158
49211
  headingDisabledColor: headingDisabledColor,
49159
49212
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -49455,7 +49508,7 @@ var RadioSection = function RadioSection(_ref) {
49455
49508
  });
49456
49509
  })));
49457
49510
  };
49458
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$Q);
49511
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$R);
49459
49512
 
49460
49513
  var RegistrationForm = function RegistrationForm(_ref) {
49461
49514
  var clearOnDismount = _ref.clearOnDismount,
@@ -49737,7 +49790,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
49737
49790
  var activeTabBackground = "#FFFFFF";
49738
49791
  var activeTabAccent = "#15749D";
49739
49792
  var activeTabHover = "#B8D5E1";
49740
- var fallbackValues$R = {
49793
+ var fallbackValues$S = {
49741
49794
  activeTabBackground: activeTabBackground,
49742
49795
  activeTabAccent: activeTabAccent,
49743
49796
  activeTabHover: activeTabHover
@@ -49805,12 +49858,12 @@ var Tabs = function Tabs(_ref) {
49805
49858
  }, tab.content);
49806
49859
  }))));
49807
49860
  };
49808
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$R);
49861
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$S);
49809
49862
 
49810
49863
  var activeTabBackground$1 = "#FFFFFF";
49811
49864
  var activeTabAccent$1 = "#15749D";
49812
49865
  var activeTabHover$1 = "#B8D5E1";
49813
- var fallbackValues$S = {
49866
+ var fallbackValues$T = {
49814
49867
  activeTabBackground: activeTabBackground$1,
49815
49868
  activeTabAccent: activeTabAccent$1,
49816
49869
  activeTabHover: activeTabHover$1
@@ -49865,7 +49918,7 @@ var TabSidebar = function TabSidebar(_ref) {
49865
49918
  }, text)))));
49866
49919
  })));
49867
49920
  };
49868
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$S);
49921
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$T);
49869
49922
 
49870
49923
  var Timeout = function Timeout(_ref) {
49871
49924
  var onLogout = _ref.onLogout;
@@ -49950,7 +50003,7 @@ var fontColor$1 = WHITE;
49950
50003
  var textAlign$1 = "left";
49951
50004
  var headerBackgroundColor$1 = BRIGHT_GREY;
49952
50005
  var imageBackgroundColor$1 = MATISSE_BLUE;
49953
- var fallbackValues$T = {
50006
+ var fallbackValues$U = {
49954
50007
  fontWeight: fontWeight$9,
49955
50008
  fontColor: fontColor$1,
49956
50009
  textAlign: textAlign$1,
@@ -49995,7 +50048,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
49995
50048
  src: welcomeImage
49996
50049
  })))));
49997
50050
  };
49998
- var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$T));
50051
+ var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$U));
49999
50052
 
50000
50053
  var WorkflowTile = function WorkflowTile(_ref) {
50001
50054
  var _ref$workflowName = _ref.workflowName,
@@ -50055,7 +50108,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
50055
50108
  var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
50056
50109
  var menuItemHoverBackgroundColorDelete = BLUSH_RED;
50057
50110
  var menuItemHoverColor = ROYAL_BLUE_VIVID;
50058
- var fallbackValues$U = {
50111
+ var fallbackValues$V = {
50059
50112
  menuItemBackgroundColor: menuItemBackgroundColor,
50060
50113
  menuItemColor: menuItemColor,
50061
50114
  menuItemColorDelete: menuItemColorDelete,
@@ -50122,17 +50175,17 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
50122
50175
  extraStyles: textExtraStyles
50123
50176
  }, text)));
50124
50177
  };
50125
- var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$U);
50178
+ var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$V);
50126
50179
 
50127
50180
  var hoverColor$6 = "#116285";
50128
50181
  var activeColor$a = "#0E506D";
50129
50182
  var menuTriggerColor = "#15749D";
50130
- var backgroundColor$e = "white";
50131
- var fallbackValues$V = {
50183
+ var backgroundColor$f = "white";
50184
+ var fallbackValues$W = {
50132
50185
  hoverColor: hoverColor$6,
50133
50186
  activeColor: activeColor$a,
50134
50187
  menuTriggerColor: menuTriggerColor,
50135
- backgroundColor: backgroundColor$e
50188
+ backgroundColor: backgroundColor$f
50136
50189
  };
50137
50190
 
50138
50191
  var PopupMenuContainer = styled__default(Box).withConfig({
@@ -50264,10 +50317,10 @@ var PopupMenu = function PopupMenu(_ref) {
50264
50317
  }, item));
50265
50318
  })));
50266
50319
  };
50267
- var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$V);
50320
+ var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$W);
50268
50321
 
50269
50322
  var pageBackground = "#FBFCFD";
50270
- var fallbackValues$W = {
50323
+ var fallbackValues$X = {
50271
50324
  pageBackground: pageBackground
50272
50325
  };
50273
50326
 
@@ -50315,7 +50368,7 @@ var CenterSingle = function CenterSingle(_ref) {
50315
50368
  padding: "0"
50316
50369
  })));
50317
50370
  };
50318
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$W));
50371
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$X));
50319
50372
 
50320
50373
  var CenterStack = function CenterStack(_ref) {
50321
50374
  var header = _ref.header,
@@ -50358,7 +50411,7 @@ var CenterStack = function CenterStack(_ref) {
50358
50411
  padding: "0"
50359
50412
  })));
50360
50413
  };
50361
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$W));
50414
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$X));
50362
50415
 
50363
50416
  var CenterSingle$2 = function CenterSingle(_ref) {
50364
50417
  var header = _ref.header,
@@ -50404,7 +50457,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
50404
50457
  padding: "0"
50405
50458
  })));
50406
50459
  };
50407
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$W));
50460
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$X));
50408
50461
 
50409
50462
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
50410
50463
  var header = _ref.header,
@@ -50457,7 +50510,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
50457
50510
  padding: "0"
50458
50511
  })));
50459
50512
  };
50460
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$W));
50513
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$X));
50461
50514
 
50462
50515
  var SidebarStackContent = function SidebarStackContent(_ref) {
50463
50516
  var header = _ref.header,
@@ -50527,7 +50580,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
50527
50580
  key: "footer-box"
50528
50581
  })));
50529
50582
  };
50530
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$W));
50583
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$X));
50531
50584
 
50532
50585
  var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
50533
50586
  var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
@@ -50766,6 +50819,7 @@ exports.VoidedIcon = VoidedIcon;
50766
50819
  exports.WalletBannerIcon = WalletBannerIcon$1;
50767
50820
  exports.WalletIcon = WalletIcon$1;
50768
50821
  exports.WalletIconSmall = WalletIconSmall$1;
50822
+ exports.WalletName = WalletName$1;
50769
50823
  exports.WarningIconXS = WarningIconXS;
50770
50824
  exports.WelcomeModule = WelcomeModule$1;
50771
50825
  exports.WorkflowTile = WorkflowTile;