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