@thecb/components 6.3.1-beta.3 → 6.3.1-beta.4

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,126 @@ 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 text = _ref.text,
35161
+ titleText = _ref.titleText,
35162
+ _ref$titleVariant = _ref.titleVariant,
35163
+ titleVariant = _ref$titleVariant === void 0 ? "small" : _ref$titleVariant,
35164
+ themeValues = _ref.themeValues;
35165
+ return /*#__PURE__*/React.createElement(Cover, null, /*#__PURE__*/React.createElement(Stack, null, titleText && /*#__PURE__*/React.createElement(Title$1, {
35166
+ variant: titleVariant,
35167
+ color: themeValues.titleColor,
35168
+ weight: themeValues === null || themeValues === void 0 ? void 0 : themeValues.titleWeight
35169
+ }, titleText), /*#__PURE__*/React.createElement(Paragraph$1, {
35170
+ color: themeValues.textColor
35171
+ }, text)));
35172
+ };
35173
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$x);
35174
+
35175
+ var CardHeader = function CardHeader(_ref) {
35176
+ var headerText = _ref.headerText,
35177
+ headerColor = _ref.headerColor,
35178
+ headerVariant = _ref.headerVariant,
35179
+ backgroundColor = _ref.backgroundColor,
35180
+ padding = _ref.padding,
35181
+ borderRadius = _ref.borderRadius;
35182
+ return /*#__PURE__*/React.createElement(Box, {
35183
+ padding: padding,
35184
+ background: backgroundColor,
35185
+ borderRadius: "".concat(borderRadius, " ").concat(borderRadius, " 0 0")
35186
+ }, /*#__PURE__*/React.createElement(Title$1, {
35187
+ variant: headerVariant,
35188
+ color: headerColor
35189
+ }, headerText));
35190
+ };
35133
35191
 
35134
35192
  var Card = function Card(_ref) {
35135
35193
  var themeValues = _ref.themeValues,
35136
- variant = _ref.variant,
35137
35194
  children = _ref.children,
35138
35195
  extraStyles = _ref.extraStyles,
35139
35196
  _ref$width = _ref.width,
35140
35197
  width = _ref$width === void 0 ? "276px" : _ref$width,
35141
- props = _objectWithoutProperties(_ref, _excluded$w);
35142
-
35143
- return /*#__PURE__*/React.createElement(BoxWithShadow$1, _extends({
35198
+ text = _ref.text,
35199
+ titleText = _ref.titleText,
35200
+ _ref$titleVariant = _ref.titleVariant,
35201
+ titleVariant = _ref$titleVariant === void 0 ? "small" : _ref$titleVariant,
35202
+ imgSrc = _ref.imgSrc,
35203
+ _ref$imgHeight = _ref.imgHeight,
35204
+ imgHeight = _ref$imgHeight === void 0 ? "150px" : _ref$imgHeight,
35205
+ _ref$imgObjectFit = _ref.imgObjectFit,
35206
+ imgObjectFit = _ref$imgObjectFit === void 0 ? "none" : _ref$imgObjectFit,
35207
+ headerText = _ref.headerText,
35208
+ _ref$headerVariant = _ref.headerVariant,
35209
+ headerVariant = _ref$headerVariant === void 0 ? "small" : _ref$headerVariant,
35210
+ _ref$borderRadius = _ref.borderRadius,
35211
+ borderRadius = _ref$borderRadius === void 0 ? "4px" : _ref$borderRadius,
35212
+ _ref$padding = _ref.padding,
35213
+ padding = _ref$padding === void 0 ? "24px" : _ref$padding;
35214
+ var numberOfChildren = children.length + (imgSrc ? 1 : 0) + (text ? 1 : 0);
35215
+ return /*#__PURE__*/React.createElement(BoxWithShadow$1, {
35144
35216
  variant: "baseStandard",
35145
35217
  background: themeValues.backgroundColor,
35146
- borderRadius: "4px",
35218
+ borderRadius: borderRadius,
35147
35219
  padding: "0",
35148
35220
  margin: "0",
35149
35221
  minWidth: width,
35150
35222
  extraStyles: extraStyles
35151
- }, props), /*#__PURE__*/React.createElement(Cover, null, children));
35223
+ }, /*#__PURE__*/React.createElement(Cover, {
35224
+ singleChild: true
35225
+ }, /*#__PURE__*/React.createElement(Stack, {
35226
+ fullHeight: true,
35227
+ childGap: "0",
35228
+ bottomItem: numberOfChildren
35229
+ }, headerText && /*#__PURE__*/React.createElement(CardHeader, {
35230
+ headerText: headerText,
35231
+ headerColor: themeValues.headerColor,
35232
+ headerVariant: headerVariant,
35233
+ backgroundColor: themeValues.headerBackgroundColor,
35234
+ borderRadius: borderRadius,
35235
+ padding: padding
35236
+ }), imgSrc && /*#__PURE__*/React.createElement(CardImage, {
35237
+ height: imgHeight,
35238
+ objectFit: imgObjectFit,
35239
+ backgroundColor: themeValues.imageBackgroundColor,
35240
+ src: imgSrc
35241
+ }), /*#__PURE__*/React.createElement(Box, {
35242
+ padding: padding
35243
+ }, text && /*#__PURE__*/React.createElement(CardText$1, {
35244
+ titleText: titleText,
35245
+ text: text,
35246
+ titleVariant: titleVariant
35247
+ }), children))));
35152
35248
  };
35153
35249
 
35154
35250
  var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$w);
@@ -35156,7 +35252,7 @@ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$w);
35156
35252
  var fontFamily$6 = "Public Sans, sans-serif";
35157
35253
  var activeColor$6 = MATISSE_BLUE;
35158
35254
  var linkColor$3 = CHARADE_GREY;
35159
- var fallbackValues$x = {
35255
+ var fallbackValues$y = {
35160
35256
  fontFamily: fontFamily$6,
35161
35257
  activeColor: activeColor$6,
35162
35258
  linkColor: linkColor$3
@@ -35189,7 +35285,7 @@ var NavTab = function NavTab(_ref) {
35189
35285
  }, label));
35190
35286
  };
35191
35287
 
35192
- var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$x);
35288
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$y);
35193
35289
 
35194
35290
  var NavTabs = function NavTabs(_ref) {
35195
35291
  var tabsConfig = _ref.tabsConfig,
@@ -37252,11 +37348,11 @@ ChangePasswordForm.reducer = reducer$1;
37252
37348
  ChangePasswordForm.mapStateToProps = mapStateToProps$2;
37253
37349
  ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
37254
37350
 
37255
- var titleColor = "#292A33";
37351
+ var titleColor$1 = "#292A33";
37256
37352
  var headingBackgroundColor = "transparent";
37257
37353
  var bodyBackgroundColor = "transparent";
37258
- var fallbackValues$y = {
37259
- titleColor: titleColor,
37354
+ var fallbackValues$z = {
37355
+ titleColor: titleColor$1,
37260
37356
  headingBackgroundColor: headingBackgroundColor,
37261
37357
  bodyBackgroundColor: bodyBackgroundColor
37262
37358
  };
@@ -37382,7 +37478,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
37382
37478
  }, children))));
37383
37479
  };
37384
37480
 
37385
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$y);
37481
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$z);
37386
37482
 
37387
37483
  var EditNameForm = function EditNameForm(_ref) {
37388
37484
  var fields = _ref.fields,
@@ -37788,7 +37884,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
37788
37884
 
37789
37885
  var footerBackgroundColor = BRIGHT_GREY;
37790
37886
  var subfooterBackgroundColor = STORM_GREY;
37791
- var fallbackValues$z = {
37887
+ var fallbackValues$A = {
37792
37888
  footerBackgroundColor: footerBackgroundColor,
37793
37889
  subfooterBackgroundColor: subfooterBackgroundColor
37794
37890
  };
@@ -37820,7 +37916,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
37820
37916
  }));
37821
37917
  };
37822
37918
 
37823
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$z);
37919
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$A);
37824
37920
 
37825
37921
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
37826
37922
  var _EmailErrorMessages;
@@ -37872,7 +37968,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
37872
37968
 
37873
37969
  var textColor$2 = "#ffffff";
37874
37970
  var backgroundColor$6 = "#182848";
37875
- var fallbackValues$A = {
37971
+ var fallbackValues$B = {
37876
37972
  textColor: textColor$2,
37877
37973
  backgroundColor: backgroundColor$6
37878
37974
  };
@@ -37929,7 +38025,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
37929
38025
  }), repeat( /*#__PURE__*/React.createElement(Box, null), boxesAfter))));
37930
38026
  };
37931
38027
 
37932
- var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$A));
38028
+ var HighlightTabRow$1 = /*#__PURE__*/memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$B));
37933
38029
 
37934
38030
  var AccountBillIcon = function AccountBillIcon() {
37935
38031
  return /*#__PURE__*/React.createElement("svg", {
@@ -43337,7 +43433,7 @@ var backgroundColor$7 = {
43337
43433
  largeTitle: WHITE,
43338
43434
  small: WHITE
43339
43435
  };
43340
- var fallbackValues$B = {
43436
+ var fallbackValues$C = {
43341
43437
  fontSize: fontSize$9,
43342
43438
  fontWeight: fontWeight$5,
43343
43439
  fontColor: fontColor,
@@ -43396,7 +43492,7 @@ var Module = function Module(_ref) {
43396
43492
  }, children)));
43397
43493
  };
43398
43494
 
43399
- var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$B, "default"));
43495
+ var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$C, "default"));
43400
43496
 
43401
43497
  var backgroundColor$8 = {
43402
43498
  profile: "#3b414d",
@@ -43406,7 +43502,7 @@ var shadowColor = {
43406
43502
  profile: "#292A33",
43407
43503
  cms: "#292A33"
43408
43504
  };
43409
- var fallbackValues$C = {
43505
+ var fallbackValues$D = {
43410
43506
  backgroundColor: backgroundColor$8,
43411
43507
  shadowColor: shadowColor
43412
43508
  };
@@ -43447,7 +43543,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
43447
43543
  }, menuContent));
43448
43544
  };
43449
43545
 
43450
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$C, "profile");
43546
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$D, "profile");
43451
43547
 
43452
43548
  var menu = posed.div({
43453
43549
  invisible: {
@@ -43503,7 +43599,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
43503
43599
  }, menuContent));
43504
43600
  };
43505
43601
 
43506
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$C, "profile");
43602
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$D, "profile");
43507
43603
 
43508
43604
  var IconsModule = function IconsModule(_ref) {
43509
43605
  var icon = _ref.icon,
@@ -43560,7 +43656,7 @@ var activeColor$7 = "#0E506D";
43560
43656
  var linkColor$4 = "#3176AA";
43561
43657
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
43562
43658
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
43563
- var fallbackValues$D = {
43659
+ var fallbackValues$E = {
43564
43660
  color: color$a,
43565
43661
  hoverColor: hoverColor$5,
43566
43662
  activeColor: activeColor$7,
@@ -43672,7 +43768,7 @@ var AutopayModal = function AutopayModal(_ref) {
43672
43768
  }, modalExtraProps), renderAutoPayControl());
43673
43769
  };
43674
43770
 
43675
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$D);
43771
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$E);
43676
43772
 
43677
43773
  var AmountModule = function AmountModule(_ref) {
43678
43774
  var totalAmountDue = _ref.totalAmountDue,
@@ -44484,14 +44580,14 @@ var labeledAmountTotal = {
44484
44580
  "default": "h6",
44485
44581
  small: "p"
44486
44582
  };
44487
- var fallbackValues$E = {
44583
+ var fallbackValues$F = {
44488
44584
  backgroundColor: backgroundColor$9,
44489
44585
  lineItem: lineItem,
44490
44586
  labeledAmountSubtotal: labeledAmountSubtotal,
44491
44587
  labeledAmountTotal: labeledAmountTotal
44492
44588
  };
44493
44589
 
44494
- var _excluded$x = ["amount"],
44590
+ var _excluded$w = ["amount"],
44495
44591
  _excluded2$1 = ["amount"];
44496
44592
 
44497
44593
  var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
@@ -44636,7 +44732,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
44636
44732
  return fee.amount > 0;
44637
44733
  }).map(function (_ref5) {
44638
44734
  var amount = _ref5.amount,
44639
- rest = _objectWithoutProperties(_ref5, _excluded$x);
44735
+ rest = _objectWithoutProperties(_ref5, _excluded$w);
44640
44736
 
44641
44737
  return _objectSpread2(_objectSpread2({}, rest), {}, {
44642
44738
  amount: displayCurrency(amount)
@@ -44735,7 +44831,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
44735
44831
  });
44736
44832
  };
44737
44833
 
44738
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$E, "default");
44834
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$F, "default");
44739
44835
 
44740
44836
  var linkColor$5 = {
44741
44837
  "default": "#3176AA"
@@ -44752,7 +44848,7 @@ var fontWeight$7 = {
44752
44848
  var modalLinkHoverFocus$1 = {
44753
44849
  "default": "outline: none; text-decoration: underline;"
44754
44850
  };
44755
- var fallbackValues$F = {
44851
+ var fallbackValues$G = {
44756
44852
  linkColor: linkColor$5,
44757
44853
  fontSize: fontSize$a,
44758
44854
  lineHeight: lineHeight$4,
@@ -44811,7 +44907,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
44811
44907
  }, link));
44812
44908
  };
44813
44909
 
44814
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$F, "default");
44910
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$G, "default");
44815
44911
 
44816
44912
  var PaymentFormACH = function PaymentFormACH(_ref) {
44817
44913
  var _routingNumberErrors, _accountNumberErrors;
@@ -45368,7 +45464,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
45368
45464
  var bodyBackgroundColor$1 = "#eeeeee";
45369
45465
  var borderColor$3 = "".concat(GREY_CHATEAU);
45370
45466
  var focusStyles = "outline: none;";
45371
- var fallbackValues$G = {
45467
+ var fallbackValues$H = {
45372
45468
  headingBackgroundColor: headingBackgroundColor$1,
45373
45469
  headingDisabledColor: headingDisabledColor,
45374
45470
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -45587,7 +45683,7 @@ var RadioSection = function RadioSection(_ref) {
45587
45683
  })));
45588
45684
  };
45589
45685
 
45590
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$G);
45686
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$H);
45591
45687
 
45592
45688
  var RegistrationForm = function RegistrationForm(_ref) {
45593
45689
  var _emailErrorMessages, _passwordErrorMessage;
@@ -45884,7 +45980,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
45884
45980
  var activeTabBackground = "#FFFFFF";
45885
45981
  var activeTabAccent = "#15749D";
45886
45982
  var activeTabHover = "#B8D5E1";
45887
- var fallbackValues$H = {
45983
+ var fallbackValues$I = {
45888
45984
  activeTabBackground: activeTabBackground,
45889
45985
  activeTabAccent: activeTabAccent,
45890
45986
  activeTabHover: activeTabHover
@@ -45963,12 +46059,12 @@ var Tabs = function Tabs(_ref) {
45963
46059
  }))));
45964
46060
  };
45965
46061
 
45966
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$H);
46062
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$I);
45967
46063
 
45968
46064
  var activeTabBackground$1 = "#FFFFFF";
45969
46065
  var activeTabAccent$1 = "#15749D";
45970
46066
  var activeTabHover$1 = "#B8D5E1";
45971
- var fallbackValues$I = {
46067
+ var fallbackValues$J = {
45972
46068
  activeTabBackground: activeTabBackground$1,
45973
46069
  activeTabAccent: activeTabAccent$1,
45974
46070
  activeTabHover: activeTabHover$1
@@ -46024,7 +46120,7 @@ var TabSidebar = function TabSidebar(_ref) {
46024
46120
  })));
46025
46121
  };
46026
46122
 
46027
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$I);
46123
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$J);
46028
46124
 
46029
46125
  var backgroundColor$a = {
46030
46126
  "default": "#ffffff",
@@ -46055,7 +46151,7 @@ var modalLinkHoverFocus$2 = {
46055
46151
  "default": standardInteractionStyles,
46056
46152
  footer: standardInteractionStyles
46057
46153
  };
46058
- var fallbackValues$J = {
46154
+ var fallbackValues$K = {
46059
46155
  backgroundColor: backgroundColor$a,
46060
46156
  linkColor: linkColor$6,
46061
46157
  border: border$3,
@@ -46117,7 +46213,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
46117
46213
  }, link));
46118
46214
  };
46119
46215
 
46120
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$J, "default");
46216
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$K, "default");
46121
46217
 
46122
46218
  var TermsAndConditions = function TermsAndConditions(_ref) {
46123
46219
  var onCheck = _ref.onCheck,
@@ -46190,14 +46286,14 @@ var Timeout$1 = withWindowSize(Timeout);
46190
46286
  var fontWeight$9 = "600";
46191
46287
  var fontColor$1 = WHITE;
46192
46288
  var textAlign$1 = "left";
46193
- var headerBackgroundColor = BRIGHT_GREY;
46194
- var imageBackgroundColor = MATISSE_BLUE;
46195
- var fallbackValues$K = {
46289
+ var headerBackgroundColor$1 = BRIGHT_GREY;
46290
+ var imageBackgroundColor$1 = MATISSE_BLUE;
46291
+ var fallbackValues$L = {
46196
46292
  fontWeight: fontWeight$9,
46197
46293
  fontColor: fontColor$1,
46198
46294
  textAlign: textAlign$1,
46199
- headerBackgroundColor: headerBackgroundColor,
46200
- imageBackgroundColor: imageBackgroundColor
46295
+ headerBackgroundColor: headerBackgroundColor$1,
46296
+ imageBackgroundColor: imageBackgroundColor$1
46201
46297
  };
46202
46298
 
46203
46299
  var WelcomeImage = styled.img.withConfig({
@@ -46239,7 +46335,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
46239
46335
  })))));
46240
46336
  };
46241
46337
 
46242
- var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$K));
46338
+ var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$L));
46243
46339
 
46244
46340
  var WorkflowTile = function WorkflowTile(_ref) {
46245
46341
  var _ref$workflowName = _ref.workflowName,
@@ -46289,7 +46385,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
46289
46385
  };
46290
46386
 
46291
46387
  var pageBackground = "#FBFCFD";
46292
- var fallbackValues$L = {
46388
+ var fallbackValues$M = {
46293
46389
  pageBackground: pageBackground
46294
46390
  };
46295
46391
 
@@ -46336,7 +46432,7 @@ var CenterSingle = function CenterSingle(_ref) {
46336
46432
  })));
46337
46433
  };
46338
46434
 
46339
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$L));
46435
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$M));
46340
46436
 
46341
46437
  var CenterStack = function CenterStack(_ref) {
46342
46438
  var header = _ref.header,
@@ -46378,7 +46474,7 @@ var CenterStack = function CenterStack(_ref) {
46378
46474
  })));
46379
46475
  };
46380
46476
 
46381
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$L));
46477
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$M));
46382
46478
 
46383
46479
  var CenterSingle$2 = function CenterSingle(_ref) {
46384
46480
  var header = _ref.header,
@@ -46423,7 +46519,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
46423
46519
  })));
46424
46520
  };
46425
46521
 
46426
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$L));
46522
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$M));
46427
46523
 
46428
46524
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
46429
46525
  var header = _ref.header,
@@ -46477,7 +46573,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
46477
46573
  })));
46478
46574
  };
46479
46575
 
46480
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$L));
46576
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$M));
46481
46577
 
46482
46578
  var SidebarStackContent = function SidebarStackContent(_ref) {
46483
46579
  var header = _ref.header,
@@ -46548,7 +46644,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
46548
46644
  })));
46549
46645
  };
46550
46646
 
46551
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$L));
46647
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$M));
46552
46648
 
46553
46649
 
46554
46650