@thecb/components 6.3.1-beta.3 → 6.3.1-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
@@ -35133,30 +35133,128 @@ var TypeaheadInput = function TypeaheadInput(_ref) {
35133
35133
  };
35134
35134
 
35135
35135
  var backgroundColor$5 = WHITE;
35136
+ var imageBackgroundColor = INFO_BLUE;
35137
+ var headerBackgroundColor = STORM_GREY;
35138
+ var headerColor = WHITE;
35136
35139
  var fallbackValues$w = {
35137
- backgroundColor: backgroundColor$5
35140
+ backgroundColor: backgroundColor$5,
35141
+ imageBackgroundColor: imageBackgroundColor,
35142
+ headerBackgroundColor: headerBackgroundColor,
35143
+ headerColor: headerColor
35138
35144
  };
35139
35145
 
35140
- var _excluded$w = ["themeValues", "variant", "children", "extraStyles", "width"];
35146
+ var CardImage = styled__default.img.withConfig({
35147
+ displayName: "CardImagestyled__CardImage",
35148
+ componentId: "sc-ug7kyn-0"
35149
+ })(["background:", ";object-fit:", ";height:", ";"], function (_ref) {
35150
+ var backgroundColor = _ref.backgroundColor;
35151
+ return backgroundColor;
35152
+ }, function (_ref2) {
35153
+ var objectFit = _ref2.objectFit;
35154
+ return objectFit;
35155
+ }, function (_ref3) {
35156
+ var height = _ref3.height;
35157
+ return height;
35158
+ });
35159
+
35160
+ var titleColor = BRIGHT_GREY;
35161
+ var titleWeight = FONT_WEIGHT_BOLD;
35162
+ var fallbackValues$x = _defineProperty({
35163
+ titleColor: titleColor,
35164
+ titleWeight: titleWeight
35165
+ }, "titleWeight", titleWeight);
35166
+
35167
+ var CardText = function CardText(_ref) {
35168
+ var padding = _ref.padding,
35169
+ text = _ref.text,
35170
+ titleText = _ref.titleText,
35171
+ _ref$titleVariant = _ref.titleVariant,
35172
+ titleVariant = _ref$titleVariant === void 0 ? "small" : _ref$titleVariant,
35173
+ themeValues = _ref.themeValues;
35174
+ return /*#__PURE__*/React__default.createElement(Box, {
35175
+ padding: padding
35176
+ }, titleText && /*#__PURE__*/React__default.createElement(Title$1, {
35177
+ variant: titleVariant,
35178
+ color: themeValues.titleColor,
35179
+ weight: themeValues === null || themeValues === void 0 ? void 0 : themeValues.titleWeight
35180
+ }, titleText), /*#__PURE__*/React__default.createElement(Paragraph$1, {
35181
+ color: themeValues.textColor
35182
+ }, text));
35183
+ };
35184
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$x);
35185
+
35186
+ var CardHeader = function CardHeader(_ref) {
35187
+ var headerText = _ref.headerText,
35188
+ headerColor = _ref.headerColor,
35189
+ headerVariant = _ref.headerVariant,
35190
+ backgroundColor = _ref.backgroundColor,
35191
+ padding = _ref.padding,
35192
+ borderRadius = _ref.borderRadius;
35193
+ return /*#__PURE__*/React__default.createElement(Box, {
35194
+ padding: padding,
35195
+ background: backgroundColor,
35196
+ borderRadius: "".concat(borderRadius, " ").concat(borderRadius, " 0 0")
35197
+ }, /*#__PURE__*/React__default.createElement(Title$1, {
35198
+ variant: headerVariant,
35199
+ color: headerColor
35200
+ }, headerText));
35201
+ };
35141
35202
 
35142
35203
  var Card = function Card(_ref) {
35143
35204
  var themeValues = _ref.themeValues,
35144
- variant = _ref.variant,
35145
35205
  children = _ref.children,
35146
35206
  extraStyles = _ref.extraStyles,
35147
35207
  _ref$width = _ref.width,
35148
35208
  width = _ref$width === void 0 ? "276px" : _ref$width,
35149
- props = _objectWithoutProperties(_ref, _excluded$w);
35150
-
35151
- return /*#__PURE__*/React__default.createElement(BoxWithShadow$1, _extends({
35209
+ text = _ref.text,
35210
+ titleText = _ref.titleText,
35211
+ _ref$titleVariant = _ref.titleVariant,
35212
+ titleVariant = _ref$titleVariant === void 0 ? "small" : _ref$titleVariant,
35213
+ imgSrc = _ref.imgSrc,
35214
+ _ref$imgHeight = _ref.imgHeight,
35215
+ imgHeight = _ref$imgHeight === void 0 ? "150px" : _ref$imgHeight,
35216
+ _ref$imgObjectFit = _ref.imgObjectFit,
35217
+ imgObjectFit = _ref$imgObjectFit === void 0 ? "none" : _ref$imgObjectFit,
35218
+ headerText = _ref.headerText,
35219
+ _ref$headerVariant = _ref.headerVariant,
35220
+ headerVariant = _ref$headerVariant === void 0 ? "small" : _ref$headerVariant,
35221
+ _ref$borderRadius = _ref.borderRadius,
35222
+ borderRadius = _ref$borderRadius === void 0 ? "4px" : _ref$borderRadius,
35223
+ _ref$padding = _ref.padding,
35224
+ padding = _ref$padding === void 0 ? "24px" : _ref$padding;
35225
+ var numberOfChildren = (typeof children === "Array" ? children.length : 1) + (text ? 1 : 0) + (imgSrc ? 1 : 0) + (headerText ? 1 : 0);
35226
+ return /*#__PURE__*/React__default.createElement(BoxWithShadow$1, {
35152
35227
  variant: "baseStandard",
35153
35228
  background: themeValues.backgroundColor,
35154
- borderRadius: "4px",
35229
+ borderRadius: borderRadius,
35155
35230
  padding: "0",
35156
35231
  margin: "0",
35157
35232
  minWidth: width,
35158
35233
  extraStyles: extraStyles
35159
- }, props), /*#__PURE__*/React__default.createElement(Cover, null, children));
35234
+ }, /*#__PURE__*/React__default.createElement(Cover, {
35235
+ singleChild: true
35236
+ }, /*#__PURE__*/React__default.createElement(Stack, {
35237
+ fullHeight: true,
35238
+ childGap: "0",
35239
+ bottomItem: numberOfChildren
35240
+ }, headerText && /*#__PURE__*/React__default.createElement(CardHeader, {
35241
+ headerText: headerText,
35242
+ headerColor: themeValues.headerColor,
35243
+ headerVariant: headerVariant,
35244
+ backgroundColor: themeValues.headerBackgroundColor,
35245
+ borderRadius: borderRadius,
35246
+ padding: padding
35247
+ }), imgSrc && /*#__PURE__*/React__default.createElement(CardImage, {
35248
+ height: imgHeight,
35249
+ objectFit: imgObjectFit,
35250
+ backgroundColor: themeValues.imageBackgroundColor,
35251
+ src: imgSrc
35252
+ }), text && /*#__PURE__*/React__default.createElement(CardText$1, {
35253
+ padding: padding,
35254
+ titleText: titleText,
35255
+ text: text,
35256
+ titleVariant: titleVariant
35257
+ }), children)));
35160
35258
  };
35161
35259
 
35162
35260
  var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$w);
@@ -35164,7 +35262,7 @@ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$w);
35164
35262
  var fontFamily$6 = "Public Sans, sans-serif";
35165
35263
  var activeColor$6 = MATISSE_BLUE;
35166
35264
  var linkColor$3 = CHARADE_GREY;
35167
- var fallbackValues$x = {
35265
+ var fallbackValues$y = {
35168
35266
  fontFamily: fontFamily$6,
35169
35267
  activeColor: activeColor$6,
35170
35268
  linkColor: linkColor$3
@@ -35197,7 +35295,7 @@ var NavTab = function NavTab(_ref) {
35197
35295
  }, label));
35198
35296
  };
35199
35297
 
35200
- var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$x);
35298
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$y);
35201
35299
 
35202
35300
  var NavTabs = function NavTabs(_ref) {
35203
35301
  var tabsConfig = _ref.tabsConfig,
@@ -37260,11 +37358,11 @@ ChangePasswordForm.reducer = reducer$1;
37260
37358
  ChangePasswordForm.mapStateToProps = mapStateToProps$2;
37261
37359
  ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
37262
37360
 
37263
- var titleColor = "#292A33";
37361
+ var titleColor$1 = "#292A33";
37264
37362
  var headingBackgroundColor = "transparent";
37265
37363
  var bodyBackgroundColor = "transparent";
37266
- var fallbackValues$y = {
37267
- titleColor: titleColor,
37364
+ var fallbackValues$z = {
37365
+ titleColor: titleColor$1,
37268
37366
  headingBackgroundColor: headingBackgroundColor,
37269
37367
  bodyBackgroundColor: bodyBackgroundColor
37270
37368
  };
@@ -37390,7 +37488,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
37390
37488
  }, children))));
37391
37489
  };
37392
37490
 
37393
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$y);
37491
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$z);
37394
37492
 
37395
37493
  var EditNameForm = function EditNameForm(_ref) {
37396
37494
  var fields = _ref.fields,
@@ -37796,7 +37894,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
37796
37894
 
37797
37895
  var footerBackgroundColor = BRIGHT_GREY;
37798
37896
  var subfooterBackgroundColor = STORM_GREY;
37799
- var fallbackValues$z = {
37897
+ var fallbackValues$A = {
37800
37898
  footerBackgroundColor: footerBackgroundColor,
37801
37899
  subfooterBackgroundColor: subfooterBackgroundColor
37802
37900
  };
@@ -37828,7 +37926,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
37828
37926
  }));
37829
37927
  };
37830
37928
 
37831
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$z);
37929
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$A);
37832
37930
 
37833
37931
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
37834
37932
  var _EmailErrorMessages;
@@ -37880,7 +37978,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
37880
37978
 
37881
37979
  var textColor$2 = "#ffffff";
37882
37980
  var backgroundColor$6 = "#182848";
37883
- var fallbackValues$A = {
37981
+ var fallbackValues$B = {
37884
37982
  textColor: textColor$2,
37885
37983
  backgroundColor: backgroundColor$6
37886
37984
  };
@@ -37937,7 +38035,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
37937
38035
  }), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
37938
38036
  };
37939
38037
 
37940
- var HighlightTabRow$1 = /*#__PURE__*/React.memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$A));
38038
+ var HighlightTabRow$1 = /*#__PURE__*/React.memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$B));
37941
38039
 
37942
38040
  var AccountBillIcon = function AccountBillIcon() {
37943
38041
  return /*#__PURE__*/React__default.createElement("svg", {
@@ -43345,7 +43443,7 @@ var backgroundColor$7 = {
43345
43443
  largeTitle: WHITE,
43346
43444
  small: WHITE
43347
43445
  };
43348
- var fallbackValues$B = {
43446
+ var fallbackValues$C = {
43349
43447
  fontSize: fontSize$9,
43350
43448
  fontWeight: fontWeight$5,
43351
43449
  fontColor: fontColor,
@@ -43404,7 +43502,7 @@ var Module = function Module(_ref) {
43404
43502
  }, children)));
43405
43503
  };
43406
43504
 
43407
- var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$B, "default"));
43505
+ var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$C, "default"));
43408
43506
 
43409
43507
  var backgroundColor$8 = {
43410
43508
  profile: "#3b414d",
@@ -43414,7 +43512,7 @@ var shadowColor = {
43414
43512
  profile: "#292A33",
43415
43513
  cms: "#292A33"
43416
43514
  };
43417
- var fallbackValues$C = {
43515
+ var fallbackValues$D = {
43418
43516
  backgroundColor: backgroundColor$8,
43419
43517
  shadowColor: shadowColor
43420
43518
  };
@@ -43455,7 +43553,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
43455
43553
  }, menuContent));
43456
43554
  };
43457
43555
 
43458
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$C, "profile");
43556
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$D, "profile");
43459
43557
 
43460
43558
  var menu = posed.div({
43461
43559
  invisible: {
@@ -43511,7 +43609,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
43511
43609
  }, menuContent));
43512
43610
  };
43513
43611
 
43514
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$C, "profile");
43612
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$D, "profile");
43515
43613
 
43516
43614
  var IconsModule = function IconsModule(_ref) {
43517
43615
  var icon = _ref.icon,
@@ -43568,7 +43666,7 @@ var activeColor$7 = "#0E506D";
43568
43666
  var linkColor$4 = "#3176AA";
43569
43667
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
43570
43668
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
43571
- var fallbackValues$D = {
43669
+ var fallbackValues$E = {
43572
43670
  color: color$a,
43573
43671
  hoverColor: hoverColor$5,
43574
43672
  activeColor: activeColor$7,
@@ -43680,7 +43778,7 @@ var AutopayModal = function AutopayModal(_ref) {
43680
43778
  }, modalExtraProps), renderAutoPayControl());
43681
43779
  };
43682
43780
 
43683
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$D);
43781
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$E);
43684
43782
 
43685
43783
  var AmountModule = function AmountModule(_ref) {
43686
43784
  var totalAmountDue = _ref.totalAmountDue,
@@ -44492,14 +44590,14 @@ var labeledAmountTotal = {
44492
44590
  "default": "h6",
44493
44591
  small: "p"
44494
44592
  };
44495
- var fallbackValues$E = {
44593
+ var fallbackValues$F = {
44496
44594
  backgroundColor: backgroundColor$9,
44497
44595
  lineItem: lineItem,
44498
44596
  labeledAmountSubtotal: labeledAmountSubtotal,
44499
44597
  labeledAmountTotal: labeledAmountTotal
44500
44598
  };
44501
44599
 
44502
- var _excluded$x = ["amount"],
44600
+ var _excluded$w = ["amount"],
44503
44601
  _excluded2$1 = ["amount"];
44504
44602
 
44505
44603
  var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
@@ -44644,7 +44742,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
44644
44742
  return fee.amount > 0;
44645
44743
  }).map(function (_ref5) {
44646
44744
  var amount = _ref5.amount,
44647
- rest = _objectWithoutProperties(_ref5, _excluded$x);
44745
+ rest = _objectWithoutProperties(_ref5, _excluded$w);
44648
44746
 
44649
44747
  return _objectSpread2(_objectSpread2({}, rest), {}, {
44650
44748
  amount: displayCurrency(amount)
@@ -44743,7 +44841,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
44743
44841
  });
44744
44842
  };
44745
44843
 
44746
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$E, "default");
44844
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$F, "default");
44747
44845
 
44748
44846
  var linkColor$5 = {
44749
44847
  "default": "#3176AA"
@@ -44760,7 +44858,7 @@ var fontWeight$7 = {
44760
44858
  var modalLinkHoverFocus$1 = {
44761
44859
  "default": "outline: none; text-decoration: underline;"
44762
44860
  };
44763
- var fallbackValues$F = {
44861
+ var fallbackValues$G = {
44764
44862
  linkColor: linkColor$5,
44765
44863
  fontSize: fontSize$a,
44766
44864
  lineHeight: lineHeight$4,
@@ -44819,7 +44917,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
44819
44917
  }, link));
44820
44918
  };
44821
44919
 
44822
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$F, "default");
44920
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$G, "default");
44823
44921
 
44824
44922
  var PaymentFormACH = function PaymentFormACH(_ref) {
44825
44923
  var _routingNumberErrors, _accountNumberErrors;
@@ -45376,7 +45474,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
45376
45474
  var bodyBackgroundColor$1 = "#eeeeee";
45377
45475
  var borderColor$3 = "".concat(GREY_CHATEAU);
45378
45476
  var focusStyles = "outline: none;";
45379
- var fallbackValues$G = {
45477
+ var fallbackValues$H = {
45380
45478
  headingBackgroundColor: headingBackgroundColor$1,
45381
45479
  headingDisabledColor: headingDisabledColor,
45382
45480
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -45595,7 +45693,7 @@ var RadioSection = function RadioSection(_ref) {
45595
45693
  })));
45596
45694
  };
45597
45695
 
45598
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$G);
45696
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$H);
45599
45697
 
45600
45698
  var RegistrationForm = function RegistrationForm(_ref) {
45601
45699
  var _emailErrorMessages, _passwordErrorMessage;
@@ -45892,7 +45990,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
45892
45990
  var activeTabBackground = "#FFFFFF";
45893
45991
  var activeTabAccent = "#15749D";
45894
45992
  var activeTabHover = "#B8D5E1";
45895
- var fallbackValues$H = {
45993
+ var fallbackValues$I = {
45896
45994
  activeTabBackground: activeTabBackground,
45897
45995
  activeTabAccent: activeTabAccent,
45898
45996
  activeTabHover: activeTabHover
@@ -45971,12 +46069,12 @@ var Tabs = function Tabs(_ref) {
45971
46069
  }))));
45972
46070
  };
45973
46071
 
45974
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$H);
46072
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$I);
45975
46073
 
45976
46074
  var activeTabBackground$1 = "#FFFFFF";
45977
46075
  var activeTabAccent$1 = "#15749D";
45978
46076
  var activeTabHover$1 = "#B8D5E1";
45979
- var fallbackValues$I = {
46077
+ var fallbackValues$J = {
45980
46078
  activeTabBackground: activeTabBackground$1,
45981
46079
  activeTabAccent: activeTabAccent$1,
45982
46080
  activeTabHover: activeTabHover$1
@@ -46032,7 +46130,7 @@ var TabSidebar = function TabSidebar(_ref) {
46032
46130
  })));
46033
46131
  };
46034
46132
 
46035
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$I);
46133
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$J);
46036
46134
 
46037
46135
  var backgroundColor$a = {
46038
46136
  "default": "#ffffff",
@@ -46063,7 +46161,7 @@ var modalLinkHoverFocus$2 = {
46063
46161
  "default": standardInteractionStyles,
46064
46162
  footer: standardInteractionStyles
46065
46163
  };
46066
- var fallbackValues$J = {
46164
+ var fallbackValues$K = {
46067
46165
  backgroundColor: backgroundColor$a,
46068
46166
  linkColor: linkColor$6,
46069
46167
  border: border$3,
@@ -46125,7 +46223,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
46125
46223
  }, link));
46126
46224
  };
46127
46225
 
46128
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$J, "default");
46226
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$K, "default");
46129
46227
 
46130
46228
  var TermsAndConditions = function TermsAndConditions(_ref) {
46131
46229
  var onCheck = _ref.onCheck,
@@ -46198,14 +46296,14 @@ var Timeout$1 = withWindowSize(Timeout);
46198
46296
  var fontWeight$9 = "600";
46199
46297
  var fontColor$1 = WHITE;
46200
46298
  var textAlign$1 = "left";
46201
- var headerBackgroundColor = BRIGHT_GREY;
46202
- var imageBackgroundColor = MATISSE_BLUE;
46203
- var fallbackValues$K = {
46299
+ var headerBackgroundColor$1 = BRIGHT_GREY;
46300
+ var imageBackgroundColor$1 = MATISSE_BLUE;
46301
+ var fallbackValues$L = {
46204
46302
  fontWeight: fontWeight$9,
46205
46303
  fontColor: fontColor$1,
46206
46304
  textAlign: textAlign$1,
46207
- headerBackgroundColor: headerBackgroundColor,
46208
- imageBackgroundColor: imageBackgroundColor
46305
+ headerBackgroundColor: headerBackgroundColor$1,
46306
+ imageBackgroundColor: imageBackgroundColor$1
46209
46307
  };
46210
46308
 
46211
46309
  var WelcomeImage = styled__default.img.withConfig({
@@ -46247,7 +46345,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
46247
46345
  })))));
46248
46346
  };
46249
46347
 
46250
- var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$K));
46348
+ var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$L));
46251
46349
 
46252
46350
  var WorkflowTile = function WorkflowTile(_ref) {
46253
46351
  var _ref$workflowName = _ref.workflowName,
@@ -46297,7 +46395,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
46297
46395
  };
46298
46396
 
46299
46397
  var pageBackground = "#FBFCFD";
46300
- var fallbackValues$L = {
46398
+ var fallbackValues$M = {
46301
46399
  pageBackground: pageBackground
46302
46400
  };
46303
46401
 
@@ -46344,7 +46442,7 @@ var CenterSingle = function CenterSingle(_ref) {
46344
46442
  })));
46345
46443
  };
46346
46444
 
46347
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$L));
46445
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$M));
46348
46446
 
46349
46447
  var CenterStack = function CenterStack(_ref) {
46350
46448
  var header = _ref.header,
@@ -46386,7 +46484,7 @@ var CenterStack = function CenterStack(_ref) {
46386
46484
  })));
46387
46485
  };
46388
46486
 
46389
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$L));
46487
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$M));
46390
46488
 
46391
46489
  var CenterSingle$2 = function CenterSingle(_ref) {
46392
46490
  var header = _ref.header,
@@ -46431,7 +46529,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
46431
46529
  })));
46432
46530
  };
46433
46531
 
46434
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$L));
46532
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$M));
46435
46533
 
46436
46534
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
46437
46535
  var header = _ref.header,
@@ -46485,7 +46583,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
46485
46583
  })));
46486
46584
  };
46487
46585
 
46488
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$L));
46586
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$M));
46489
46587
 
46490
46588
  var SidebarStackContent = function SidebarStackContent(_ref) {
46491
46589
  var header = _ref.header,
@@ -46556,7 +46654,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
46556
46654
  })));
46557
46655
  };
46558
46656
 
46559
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$L));
46657
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$M));
46560
46658
 
46561
46659
 
46562
46660