@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.d.ts CHANGED
@@ -3,9 +3,28 @@ import React from 'react';
3
3
  type Expand<T> = T extends infer O ? { [K in keyof O]: O[K] } : never;
4
4
 
5
5
  interface CardProps {
6
- variant?: string;
7
- width?: string;
6
+ text?: string;
7
+ titleText?: string;
8
+ titleVariant?: string;
8
9
  extraStyles?: string;
10
+ imgSrc?: string;
11
+ imgHeight?: string;
12
+ imgObjectFit?:
13
+ | "contain"
14
+ | "cover"
15
+ | "fill"
16
+ | "none"
17
+ | "scale-down"
18
+ | "inherit"
19
+ | "initial"
20
+ | "revert"
21
+ | "revert-layer"
22
+ | "unset";
23
+ headerText?: string;
24
+ headerVariant?: string;
25
+ borderRadius?: string;
26
+ width?: string;
27
+ padding?: string;
9
28
  }
10
29
 
11
30
  declare const Card: React.FC<Expand<CardProps> &
@@ -228,6 +247,20 @@ interface ParagraphProps {
228
247
  declare const Paragraph: React.FC<Expand<ParagraphProps> &
229
248
  React.HTMLAttributes<HTMLElement>>;
230
249
 
250
+ interface TextProps {
251
+ weight?: string;
252
+ color?: string;
253
+ textWrap?: boolean;
254
+ extraStyles?: string;
255
+ hoverStyles?: string;
256
+ as?: string;
257
+ dataQa?: string;
258
+ variant?: string;
259
+ }
260
+
261
+ declare const Text: React.FC<Expand<TextProps> &
262
+ React.HTMLAttributes<HTMLElement>>;
263
+
231
264
  interface TitleProps {
232
265
  variant?: string;
233
266
  color?: string;
@@ -269,5 +302,5 @@ interface DefaultPageTemplateProps {
269
302
  declare const DefaultPageTemplate: React.FC<Expand<DefaultPageTemplateProps> &
270
303
  React.HTMLAttributes<HTMLElement>>;
271
304
 
272
- export { Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, Center, CenterProps, Cluster, ClusterProps, Cover, CoverProps, DefaultPageTemplate, DefaultPageTemplateProps, ExternalLink, ExternalLinkProps, FooterWithSubfooter, FooterWithSubfooterProps, InternalLink, InternalLinkProps, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, Paragraph, ParagraphProps, Stack, StackProps, Switcher, SwitcherProps, Title, TitleProps };
305
+ export { Box, BoxProps, ButtonWithAction, ButtonWithActionProps, ButtonWithLink, ButtonWithLinkProps, Card, CardProps, Center, CenterProps, Cluster, ClusterProps, Cover, CoverProps, DefaultPageTemplate, DefaultPageTemplateProps, ExternalLink, ExternalLinkProps, FooterWithSubfooter, FooterWithSubfooterProps, InternalLink, InternalLinkProps, NavFooter, NavFooterProps, NavHeader, NavHeaderProps, NavTabs, NavTabsProps, Paragraph, ParagraphProps, Stack, StackProps, Switcher, SwitcherProps, Text, TextProps, Title, TitleProps };
273
306
  //# sourceMappingURL=index.d.ts.map
package/dist/index.esm.js CHANGED
@@ -35125,30 +35125,128 @@ var TypeaheadInput = function TypeaheadInput(_ref) {
35125
35125
  };
35126
35126
 
35127
35127
  var backgroundColor$5 = WHITE;
35128
+ var imageBackgroundColor = INFO_BLUE;
35129
+ var headerBackgroundColor = STORM_GREY;
35130
+ var headerColor = WHITE;
35128
35131
  var fallbackValues$w = {
35129
- backgroundColor: backgroundColor$5
35132
+ backgroundColor: backgroundColor$5,
35133
+ imageBackgroundColor: imageBackgroundColor,
35134
+ headerBackgroundColor: headerBackgroundColor,
35135
+ headerColor: headerColor
35130
35136
  };
35131
35137
 
35132
- var _excluded$w = ["themeValues", "variant", "children", "extraStyles", "width"];
35138
+ var CardImage = styled.img.withConfig({
35139
+ displayName: "CardImagestyled__CardImage",
35140
+ componentId: "sc-ug7kyn-0"
35141
+ })(["background:", ";object-fit:", ";height:", ";"], function (_ref) {
35142
+ var backgroundColor = _ref.backgroundColor;
35143
+ return backgroundColor;
35144
+ }, function (_ref2) {
35145
+ var objectFit = _ref2.objectFit;
35146
+ return objectFit;
35147
+ }, function (_ref3) {
35148
+ var height = _ref3.height;
35149
+ return height;
35150
+ });
35151
+
35152
+ var titleColor = BRIGHT_GREY;
35153
+ var titleWeight = FONT_WEIGHT_BOLD;
35154
+ var fallbackValues$x = _defineProperty({
35155
+ titleColor: titleColor,
35156
+ titleWeight: titleWeight
35157
+ }, "titleWeight", titleWeight);
35158
+
35159
+ var CardText = function CardText(_ref) {
35160
+ var padding = _ref.padding,
35161
+ text = _ref.text,
35162
+ titleText = _ref.titleText,
35163
+ _ref$titleVariant = _ref.titleVariant,
35164
+ titleVariant = _ref$titleVariant === void 0 ? "small" : _ref$titleVariant,
35165
+ themeValues = _ref.themeValues;
35166
+ return /*#__PURE__*/React.createElement(Box, {
35167
+ padding: padding
35168
+ }, titleText && /*#__PURE__*/React.createElement(Title$1, {
35169
+ variant: titleVariant,
35170
+ color: themeValues.titleColor,
35171
+ weight: themeValues === null || themeValues === void 0 ? void 0 : themeValues.titleWeight
35172
+ }, titleText), /*#__PURE__*/React.createElement(Paragraph$1, {
35173
+ color: themeValues.textColor
35174
+ }, text));
35175
+ };
35176
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$x);
35177
+
35178
+ var CardHeader = function CardHeader(_ref) {
35179
+ var headerText = _ref.headerText,
35180
+ headerColor = _ref.headerColor,
35181
+ headerVariant = _ref.headerVariant,
35182
+ backgroundColor = _ref.backgroundColor,
35183
+ padding = _ref.padding,
35184
+ borderRadius = _ref.borderRadius;
35185
+ return /*#__PURE__*/React.createElement(Box, {
35186
+ padding: padding,
35187
+ background: backgroundColor,
35188
+ borderRadius: "".concat(borderRadius, " ").concat(borderRadius, " 0 0")
35189
+ }, /*#__PURE__*/React.createElement(Title$1, {
35190
+ variant: headerVariant,
35191
+ color: headerColor
35192
+ }, headerText));
35193
+ };
35133
35194
 
35134
35195
  var Card = function Card(_ref) {
35135
35196
  var themeValues = _ref.themeValues,
35136
- variant = _ref.variant,
35137
35197
  children = _ref.children,
35138
35198
  extraStyles = _ref.extraStyles,
35139
35199
  _ref$width = _ref.width,
35140
35200
  width = _ref$width === void 0 ? "276px" : _ref$width,
35141
- props = _objectWithoutProperties(_ref, _excluded$w);
35142
-
35143
- return /*#__PURE__*/React.createElement(BoxWithShadow$1, _extends({
35201
+ text = _ref.text,
35202
+ titleText = _ref.titleText,
35203
+ _ref$titleVariant = _ref.titleVariant,
35204
+ titleVariant = _ref$titleVariant === void 0 ? "small" : _ref$titleVariant,
35205
+ imgSrc = _ref.imgSrc,
35206
+ _ref$imgHeight = _ref.imgHeight,
35207
+ imgHeight = _ref$imgHeight === void 0 ? "150px" : _ref$imgHeight,
35208
+ _ref$imgObjectFit = _ref.imgObjectFit,
35209
+ imgObjectFit = _ref$imgObjectFit === void 0 ? "none" : _ref$imgObjectFit,
35210
+ headerText = _ref.headerText,
35211
+ _ref$headerVariant = _ref.headerVariant,
35212
+ headerVariant = _ref$headerVariant === void 0 ? "small" : _ref$headerVariant,
35213
+ _ref$borderRadius = _ref.borderRadius,
35214
+ borderRadius = _ref$borderRadius === void 0 ? "4px" : _ref$borderRadius,
35215
+ _ref$padding = _ref.padding,
35216
+ padding = _ref$padding === void 0 ? "24px" : _ref$padding;
35217
+ var numberOfChildren = (typeof children === "Array" ? children.length : 1) + (text ? 1 : 0) + (imgSrc ? 1 : 0) + (headerText ? 1 : 0);
35218
+ return /*#__PURE__*/React.createElement(BoxWithShadow$1, {
35144
35219
  variant: "baseStandard",
35145
35220
  background: themeValues.backgroundColor,
35146
- borderRadius: "4px",
35221
+ borderRadius: borderRadius,
35147
35222
  padding: "0",
35148
35223
  margin: "0",
35149
35224
  minWidth: width,
35150
35225
  extraStyles: extraStyles
35151
- }, props), /*#__PURE__*/React.createElement(Cover, null, children));
35226
+ }, /*#__PURE__*/React.createElement(Cover, {
35227
+ singleChild: true
35228
+ }, /*#__PURE__*/React.createElement(Stack, {
35229
+ fullHeight: true,
35230
+ childGap: "0",
35231
+ bottomItem: numberOfChildren
35232
+ }, headerText && /*#__PURE__*/React.createElement(CardHeader, {
35233
+ headerText: headerText,
35234
+ headerColor: themeValues.headerColor,
35235
+ headerVariant: headerVariant,
35236
+ backgroundColor: themeValues.headerBackgroundColor,
35237
+ borderRadius: borderRadius,
35238
+ padding: padding
35239
+ }), imgSrc && /*#__PURE__*/React.createElement(CardImage, {
35240
+ height: imgHeight,
35241
+ objectFit: imgObjectFit,
35242
+ backgroundColor: themeValues.imageBackgroundColor,
35243
+ src: imgSrc
35244
+ }), text && /*#__PURE__*/React.createElement(CardText$1, {
35245
+ padding: padding,
35246
+ titleText: titleText,
35247
+ text: text,
35248
+ titleVariant: titleVariant
35249
+ }), children)));
35152
35250
  };
35153
35251
 
35154
35252
  var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$w);
@@ -35156,7 +35254,7 @@ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$w);
35156
35254
  var fontFamily$6 = "Public Sans, sans-serif";
35157
35255
  var activeColor$6 = MATISSE_BLUE;
35158
35256
  var linkColor$3 = CHARADE_GREY;
35159
- var fallbackValues$x = {
35257
+ var fallbackValues$y = {
35160
35258
  fontFamily: fontFamily$6,
35161
35259
  activeColor: activeColor$6,
35162
35260
  linkColor: linkColor$3
@@ -35189,7 +35287,7 @@ var NavTab = function NavTab(_ref) {
35189
35287
  }, label));
35190
35288
  };
35191
35289
 
35192
- var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$x);
35290
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$y);
35193
35291
 
35194
35292
  var NavTabs = function NavTabs(_ref) {
35195
35293
  var tabsConfig = _ref.tabsConfig,
@@ -37252,11 +37350,11 @@ ChangePasswordForm.reducer = reducer$1;
37252
37350
  ChangePasswordForm.mapStateToProps = mapStateToProps$2;
37253
37351
  ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
37254
37352
 
37255
- var titleColor = "#292A33";
37353
+ var titleColor$1 = "#292A33";
37256
37354
  var headingBackgroundColor = "transparent";
37257
37355
  var bodyBackgroundColor = "transparent";
37258
- var fallbackValues$y = {
37259
- titleColor: titleColor,
37356
+ var fallbackValues$z = {
37357
+ titleColor: titleColor$1,
37260
37358
  headingBackgroundColor: headingBackgroundColor,
37261
37359
  bodyBackgroundColor: bodyBackgroundColor
37262
37360
  };
@@ -37382,7 +37480,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
37382
37480
  }, children))));
37383
37481
  };
37384
37482
 
37385
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$y);
37483
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$z);
37386
37484
 
37387
37485
  var EditNameForm = function EditNameForm(_ref) {
37388
37486
  var fields = _ref.fields,
@@ -37788,7 +37886,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
37788
37886
 
37789
37887
  var footerBackgroundColor = BRIGHT_GREY;
37790
37888
  var subfooterBackgroundColor = STORM_GREY;
37791
- var fallbackValues$z = {
37889
+ var fallbackValues$A = {
37792
37890
  footerBackgroundColor: footerBackgroundColor,
37793
37891
  subfooterBackgroundColor: subfooterBackgroundColor
37794
37892
  };
@@ -37820,7 +37918,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
37820
37918
  }));
37821
37919
  };
37822
37920
 
37823
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$z);
37921
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$A);
37824
37922
 
37825
37923
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
37826
37924
  var _EmailErrorMessages;
@@ -37872,7 +37970,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
37872
37970
 
37873
37971
  var textColor$2 = "#ffffff";
37874
37972
  var backgroundColor$6 = "#182848";
37875
- var fallbackValues$A = {
37973
+ var fallbackValues$B = {
37876
37974
  textColor: textColor$2,
37877
37975
  backgroundColor: backgroundColor$6
37878
37976
  };
@@ -37929,7 +38027,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
37929
38027
  }), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
37930
38028
  };
37931
38029
 
37932
- var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$A));
38030
+ var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$B));
37933
38031
 
37934
38032
  var AccountBillIcon = function AccountBillIcon() {
37935
38033
  return /*#__PURE__*/React.createElement("svg", {
@@ -43337,7 +43435,7 @@ var backgroundColor$7 = {
43337
43435
  largeTitle: WHITE,
43338
43436
  small: WHITE
43339
43437
  };
43340
- var fallbackValues$B = {
43438
+ var fallbackValues$C = {
43341
43439
  fontSize: fontSize$9,
43342
43440
  fontWeight: fontWeight$5,
43343
43441
  fontColor: fontColor,
@@ -43396,7 +43494,7 @@ var Module = function Module(_ref) {
43396
43494
  }, children)));
43397
43495
  };
43398
43496
 
43399
- var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$B, "default"));
43497
+ var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$C, "default"));
43400
43498
 
43401
43499
  var backgroundColor$8 = {
43402
43500
  profile: "#3b414d",
@@ -43406,7 +43504,7 @@ var shadowColor = {
43406
43504
  profile: "#292A33",
43407
43505
  cms: "#292A33"
43408
43506
  };
43409
- var fallbackValues$C = {
43507
+ var fallbackValues$D = {
43410
43508
  backgroundColor: backgroundColor$8,
43411
43509
  shadowColor: shadowColor
43412
43510
  };
@@ -43447,7 +43545,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
43447
43545
  }, menuContent));
43448
43546
  };
43449
43547
 
43450
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$C, "profile");
43548
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$D, "profile");
43451
43549
 
43452
43550
  var menu = posed.div({
43453
43551
  invisible: {
@@ -43503,7 +43601,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
43503
43601
  }, menuContent));
43504
43602
  };
43505
43603
 
43506
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$C, "profile");
43604
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$D, "profile");
43507
43605
 
43508
43606
  var IconsModule = function IconsModule(_ref) {
43509
43607
  var icon = _ref.icon,
@@ -43560,7 +43658,7 @@ var activeColor$7 = "#0E506D";
43560
43658
  var linkColor$4 = "#3176AA";
43561
43659
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
43562
43660
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
43563
- var fallbackValues$D = {
43661
+ var fallbackValues$E = {
43564
43662
  color: color$a,
43565
43663
  hoverColor: hoverColor$5,
43566
43664
  activeColor: activeColor$7,
@@ -43672,7 +43770,7 @@ var AutopayModal = function AutopayModal(_ref) {
43672
43770
  }, modalExtraProps), renderAutoPayControl());
43673
43771
  };
43674
43772
 
43675
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$D);
43773
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$E);
43676
43774
 
43677
43775
  var AmountModule = function AmountModule(_ref) {
43678
43776
  var totalAmountDue = _ref.totalAmountDue,
@@ -44484,14 +44582,14 @@ var labeledAmountTotal = {
44484
44582
  "default": "h6",
44485
44583
  small: "p"
44486
44584
  };
44487
- var fallbackValues$E = {
44585
+ var fallbackValues$F = {
44488
44586
  backgroundColor: backgroundColor$9,
44489
44587
  lineItem: lineItem,
44490
44588
  labeledAmountSubtotal: labeledAmountSubtotal,
44491
44589
  labeledAmountTotal: labeledAmountTotal
44492
44590
  };
44493
44591
 
44494
- var _excluded$x = ["amount"],
44592
+ var _excluded$w = ["amount"],
44495
44593
  _excluded2$1 = ["amount"];
44496
44594
 
44497
44595
  var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
@@ -44636,7 +44734,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
44636
44734
  return fee.amount > 0;
44637
44735
  }).map(function (_ref5) {
44638
44736
  var amount = _ref5.amount,
44639
- rest = _objectWithoutProperties(_ref5, _excluded$x);
44737
+ rest = _objectWithoutProperties(_ref5, _excluded$w);
44640
44738
 
44641
44739
  return _objectSpread2(_objectSpread2({}, rest), {}, {
44642
44740
  amount: displayCurrency(amount)
@@ -44735,7 +44833,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
44735
44833
  });
44736
44834
  };
44737
44835
 
44738
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$E, "default");
44836
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$F, "default");
44739
44837
 
44740
44838
  var linkColor$5 = {
44741
44839
  "default": "#3176AA"
@@ -44752,7 +44850,7 @@ var fontWeight$7 = {
44752
44850
  var modalLinkHoverFocus$1 = {
44753
44851
  "default": "outline: none; text-decoration: underline;"
44754
44852
  };
44755
- var fallbackValues$F = {
44853
+ var fallbackValues$G = {
44756
44854
  linkColor: linkColor$5,
44757
44855
  fontSize: fontSize$a,
44758
44856
  lineHeight: lineHeight$4,
@@ -44811,7 +44909,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
44811
44909
  }, link));
44812
44910
  };
44813
44911
 
44814
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$F, "default");
44912
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$G, "default");
44815
44913
 
44816
44914
  var PaymentFormACH = function PaymentFormACH(_ref) {
44817
44915
  var _routingNumberErrors, _accountNumberErrors;
@@ -45368,7 +45466,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
45368
45466
  var bodyBackgroundColor$1 = "#eeeeee";
45369
45467
  var borderColor$3 = "".concat(GREY_CHATEAU);
45370
45468
  var focusStyles = "outline: none;";
45371
- var fallbackValues$G = {
45469
+ var fallbackValues$H = {
45372
45470
  headingBackgroundColor: headingBackgroundColor$1,
45373
45471
  headingDisabledColor: headingDisabledColor,
45374
45472
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -45587,7 +45685,7 @@ var RadioSection = function RadioSection(_ref) {
45587
45685
  })));
45588
45686
  };
45589
45687
 
45590
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$G);
45688
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$H);
45591
45689
 
45592
45690
  var RegistrationForm = function RegistrationForm(_ref) {
45593
45691
  var _emailErrorMessages, _passwordErrorMessage;
@@ -45884,7 +45982,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
45884
45982
  var activeTabBackground = "#FFFFFF";
45885
45983
  var activeTabAccent = "#15749D";
45886
45984
  var activeTabHover = "#B8D5E1";
45887
- var fallbackValues$H = {
45985
+ var fallbackValues$I = {
45888
45986
  activeTabBackground: activeTabBackground,
45889
45987
  activeTabAccent: activeTabAccent,
45890
45988
  activeTabHover: activeTabHover
@@ -45963,12 +46061,12 @@ var Tabs = function Tabs(_ref) {
45963
46061
  }))));
45964
46062
  };
45965
46063
 
45966
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$H);
46064
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$I);
45967
46065
 
45968
46066
  var activeTabBackground$1 = "#FFFFFF";
45969
46067
  var activeTabAccent$1 = "#15749D";
45970
46068
  var activeTabHover$1 = "#B8D5E1";
45971
- var fallbackValues$I = {
46069
+ var fallbackValues$J = {
45972
46070
  activeTabBackground: activeTabBackground$1,
45973
46071
  activeTabAccent: activeTabAccent$1,
45974
46072
  activeTabHover: activeTabHover$1
@@ -46024,7 +46122,7 @@ var TabSidebar = function TabSidebar(_ref) {
46024
46122
  })));
46025
46123
  };
46026
46124
 
46027
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$I);
46125
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$J);
46028
46126
 
46029
46127
  var backgroundColor$a = {
46030
46128
  "default": "#ffffff",
@@ -46055,7 +46153,7 @@ var modalLinkHoverFocus$2 = {
46055
46153
  "default": standardInteractionStyles,
46056
46154
  footer: standardInteractionStyles
46057
46155
  };
46058
- var fallbackValues$J = {
46156
+ var fallbackValues$K = {
46059
46157
  backgroundColor: backgroundColor$a,
46060
46158
  linkColor: linkColor$6,
46061
46159
  border: border$3,
@@ -46117,7 +46215,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
46117
46215
  }, link));
46118
46216
  };
46119
46217
 
46120
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$J, "default");
46218
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$K, "default");
46121
46219
 
46122
46220
  var TermsAndConditions = function TermsAndConditions(_ref) {
46123
46221
  var onCheck = _ref.onCheck,
@@ -46190,14 +46288,14 @@ var Timeout$1 = withWindowSize(Timeout);
46190
46288
  var fontWeight$9 = "600";
46191
46289
  var fontColor$1 = WHITE;
46192
46290
  var textAlign$1 = "left";
46193
- var headerBackgroundColor = BRIGHT_GREY;
46194
- var imageBackgroundColor = MATISSE_BLUE;
46195
- var fallbackValues$K = {
46291
+ var headerBackgroundColor$1 = BRIGHT_GREY;
46292
+ var imageBackgroundColor$1 = MATISSE_BLUE;
46293
+ var fallbackValues$L = {
46196
46294
  fontWeight: fontWeight$9,
46197
46295
  fontColor: fontColor$1,
46198
46296
  textAlign: textAlign$1,
46199
- headerBackgroundColor: headerBackgroundColor,
46200
- imageBackgroundColor: imageBackgroundColor
46297
+ headerBackgroundColor: headerBackgroundColor$1,
46298
+ imageBackgroundColor: imageBackgroundColor$1
46201
46299
  };
46202
46300
 
46203
46301
  var WelcomeImage = styled.img.withConfig({
@@ -46239,7 +46337,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
46239
46337
  })))));
46240
46338
  };
46241
46339
 
46242
- var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$K));
46340
+ var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$L));
46243
46341
 
46244
46342
  var WorkflowTile = function WorkflowTile(_ref) {
46245
46343
  var _ref$workflowName = _ref.workflowName,
@@ -46289,7 +46387,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
46289
46387
  };
46290
46388
 
46291
46389
  var pageBackground = "#FBFCFD";
46292
- var fallbackValues$L = {
46390
+ var fallbackValues$M = {
46293
46391
  pageBackground: pageBackground
46294
46392
  };
46295
46393
 
@@ -46336,7 +46434,7 @@ var CenterSingle = function CenterSingle(_ref) {
46336
46434
  })));
46337
46435
  };
46338
46436
 
46339
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$L));
46437
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$M));
46340
46438
 
46341
46439
  var CenterStack = function CenterStack(_ref) {
46342
46440
  var header = _ref.header,
@@ -46378,7 +46476,7 @@ var CenterStack = function CenterStack(_ref) {
46378
46476
  })));
46379
46477
  };
46380
46478
 
46381
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$L));
46479
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$M));
46382
46480
 
46383
46481
  var CenterSingle$2 = function CenterSingle(_ref) {
46384
46482
  var header = _ref.header,
@@ -46423,7 +46521,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
46423
46521
  })));
46424
46522
  };
46425
46523
 
46426
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$L));
46524
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$M));
46427
46525
 
46428
46526
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
46429
46527
  var header = _ref.header,
@@ -46477,7 +46575,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
46477
46575
  })));
46478
46576
  };
46479
46577
 
46480
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$L));
46578
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$M));
46481
46579
 
46482
46580
  var SidebarStackContent = function SidebarStackContent(_ref) {
46483
46581
  var header = _ref.header,
@@ -46548,7 +46646,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
46548
46646
  })));
46549
46647
  };
46550
46648
 
46551
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$L));
46649
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$M));
46552
46650
 
46553
46651
 
46554
46652