@thecb/components 7.7.2 → 7.7.3-beta.2
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 +175 -51
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +170 -52
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/index.js +1 -0
- package/src/components/atoms/table/Table.styled.js +7 -0
- package/src/components/atoms/table/TableBody.styled.js +5 -0
- package/src/components/atoms/table/TableCell.styled.js +14 -0
- package/src/components/atoms/table/TableHead.js +18 -0
- package/src/components/atoms/table/TableHead.styled.js +7 -0
- package/src/components/atoms/table/TableHead.theme.js +9 -0
- package/src/components/atoms/table/TableHeading.styled.js +11 -0
- package/src/components/atoms/table/TableRow.js +27 -0
- package/src/components/atoms/table/TableRow.styled.js +16 -0
- package/src/components/atoms/table/TableRow.theme.js +9 -0
- package/src/components/atoms/table/index.js +8 -0
package/dist/index.cjs.js
CHANGED
|
@@ -36424,6 +36424,124 @@ var LoadingLine = function LoadingLine(_ref) {
|
|
|
36424
36424
|
});
|
|
36425
36425
|
};
|
|
36426
36426
|
|
|
36427
|
+
var Table_styled = styled__default.table.withConfig({
|
|
36428
|
+
displayName: "Tablestyled",
|
|
36429
|
+
componentId: "sc-mveye7-0"
|
|
36430
|
+
})(["width:100%;table-layout:auto;", ""], function (_ref) {
|
|
36431
|
+
var extraStyles = _ref.extraStyles;
|
|
36432
|
+
return extraStyles;
|
|
36433
|
+
});
|
|
36434
|
+
|
|
36435
|
+
var TableBody_styled = styled__default.tbody.withConfig({
|
|
36436
|
+
displayName: "TableBodystyled",
|
|
36437
|
+
componentId: "sc-wk5osr-0"
|
|
36438
|
+
})(["", ""], function (_ref) {
|
|
36439
|
+
var extraStyles = _ref.extraStyles;
|
|
36440
|
+
return extraStyles;
|
|
36441
|
+
});
|
|
36442
|
+
|
|
36443
|
+
var TableCell_styled = styled__default.td.withConfig({
|
|
36444
|
+
displayName: "TableCellstyled",
|
|
36445
|
+
componentId: "sc-iqndn8-0"
|
|
36446
|
+
})(["padding:", ";font-size:0.875rem;white-space:nowrap;max-width:250px;overflow:hidden;text-overflow:ellipsis;&:last-child{text-align:right;}", ";"], function (_ref) {
|
|
36447
|
+
var padding = _ref.padding;
|
|
36448
|
+
return padding ? padding : "24px";
|
|
36449
|
+
}, function (_ref2) {
|
|
36450
|
+
var extraStyles = _ref2.extraStyles;
|
|
36451
|
+
return extraStyles;
|
|
36452
|
+
});
|
|
36453
|
+
|
|
36454
|
+
var backgroundColor$6 = ALABASTER_WHITE;
|
|
36455
|
+
var borderColor$3 = GREY_CHATEAU;
|
|
36456
|
+
var fallbackValues$A = {
|
|
36457
|
+
backgroundColor: backgroundColor$6,
|
|
36458
|
+
borderColor: borderColor$3
|
|
36459
|
+
};
|
|
36460
|
+
|
|
36461
|
+
var StyledTableHead = styled__default.thead.withConfig({
|
|
36462
|
+
displayName: "TableHeadstyled",
|
|
36463
|
+
componentId: "sc-j8e6c1-0"
|
|
36464
|
+
})(["background-color:", ";border-bottom:", ";font-size:0.875rem;"], function (_ref) {
|
|
36465
|
+
var backgroundColor = _ref.backgroundColor;
|
|
36466
|
+
return backgroundColor;
|
|
36467
|
+
}, function (_ref2) {
|
|
36468
|
+
var borderColor = _ref2.borderColor;
|
|
36469
|
+
return "1px solid ".concat(borderColor);
|
|
36470
|
+
});
|
|
36471
|
+
|
|
36472
|
+
var borderColor$4 = GREY_CHATEAU;
|
|
36473
|
+
var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
|
|
36474
|
+
var fallbackValues$B = {
|
|
36475
|
+
borderColor: borderColor$4,
|
|
36476
|
+
hoverBackgroundColor: hoverBackgroundColor$1
|
|
36477
|
+
};
|
|
36478
|
+
|
|
36479
|
+
var TableRowWrapper = styled__default.tr.withConfig({
|
|
36480
|
+
displayName: "TableRowstyled",
|
|
36481
|
+
componentId: "sc-1tc0sav-0"
|
|
36482
|
+
})(["&:not(:last-child){border-bottom:", ";}", " ", ""], function (_ref) {
|
|
36483
|
+
var borderColor = _ref.borderColor;
|
|
36484
|
+
return "1px solid ".concat(borderColor);
|
|
36485
|
+
}, function (_ref2) {
|
|
36486
|
+
var hoverCursor = _ref2.hoverCursor,
|
|
36487
|
+
hoverEffect = _ref2.hoverEffect,
|
|
36488
|
+
hoverBackgroundColor = _ref2.hoverBackgroundColor;
|
|
36489
|
+
return hoverEffect && "&:hover {\n ".concat(hoverCursor && "cursor: pointer", ";\n background-color: ").concat(hoverBackgroundColor, ";\n }");
|
|
36490
|
+
}, function (_ref3) {
|
|
36491
|
+
var extraStyles = _ref3.extraStyles;
|
|
36492
|
+
return extraStyles;
|
|
36493
|
+
});
|
|
36494
|
+
|
|
36495
|
+
var _excluded$w = ["children", "extraStyles", "hoverCursor", "hoverEffect", "onClick", "themeValues"];
|
|
36496
|
+
|
|
36497
|
+
var TableRow = function TableRow(_ref) {
|
|
36498
|
+
var children = _ref.children,
|
|
36499
|
+
extraStyles = _ref.extraStyles,
|
|
36500
|
+
_ref$hoverCursor = _ref.hoverCursor,
|
|
36501
|
+
_ref$hoverEffect = _ref.hoverEffect,
|
|
36502
|
+
hoverEffect = _ref$hoverEffect === void 0 ? true : _ref$hoverEffect,
|
|
36503
|
+
onClick = _ref.onClick,
|
|
36504
|
+
themeValues = _ref.themeValues,
|
|
36505
|
+
props = _objectWithoutProperties(_ref, _excluded$w);
|
|
36506
|
+
|
|
36507
|
+
return /*#__PURE__*/React__default.createElement(TableRowWrapper, _extends({
|
|
36508
|
+
onClick: onClick,
|
|
36509
|
+
hoverEffect: hoverEffect,
|
|
36510
|
+
extraStyles: extraStyles,
|
|
36511
|
+
borderColor: themeValues.borderColor,
|
|
36512
|
+
hoverBackgroundColor: themeValues.hoverBackgroundColor
|
|
36513
|
+
}, props), children);
|
|
36514
|
+
};
|
|
36515
|
+
|
|
36516
|
+
var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$B);
|
|
36517
|
+
|
|
36518
|
+
var TableHead = function TableHead(_ref) {
|
|
36519
|
+
var children = _ref.children,
|
|
36520
|
+
_ref$extraStyles = _ref.extraStyles,
|
|
36521
|
+
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
|
|
36522
|
+
themeValues = _ref.themeValues;
|
|
36523
|
+
return /*#__PURE__*/React__default.createElement(StyledTableHead, {
|
|
36524
|
+
backgroundColor: themeValues.backgroundColor,
|
|
36525
|
+
borderColor: themeValues.borderColor
|
|
36526
|
+
}, /*#__PURE__*/React__default.createElement(TableRow$1, {
|
|
36527
|
+
extraStyles: extraStyles,
|
|
36528
|
+
hoverEffect: false
|
|
36529
|
+
}, children));
|
|
36530
|
+
};
|
|
36531
|
+
|
|
36532
|
+
var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$A);
|
|
36533
|
+
|
|
36534
|
+
var TableHeading_styled = styled__default.th.withConfig({
|
|
36535
|
+
displayName: "TableHeadingstyled",
|
|
36536
|
+
componentId: "sc-1ggk38d-0"
|
|
36537
|
+
})(["padding:24px;min-width:", ";text-align:left;&:last-child{text-align:right;}", ""], function (_ref) {
|
|
36538
|
+
var minWidth = _ref.minWidth;
|
|
36539
|
+
return minWidth ? minWidth : "initial";
|
|
36540
|
+
}, function (_ref2) {
|
|
36541
|
+
var extraStyles = _ref2.extraStyles;
|
|
36542
|
+
return extraStyles;
|
|
36543
|
+
});
|
|
36544
|
+
|
|
36427
36545
|
const validatorToPredicate = (validatorFn, emptyCase) => (
|
|
36428
36546
|
value,
|
|
36429
36547
|
...rest
|
|
@@ -38326,9 +38444,9 @@ AddressForm.reducer = reducer;
|
|
|
38326
38444
|
AddressForm.mapStateToProps = mapStateToProps$1;
|
|
38327
38445
|
AddressForm.mapDispatchToProps = mapDispatchToProps;
|
|
38328
38446
|
|
|
38329
|
-
var backgroundColor$
|
|
38330
|
-
var fallbackValues$
|
|
38331
|
-
backgroundColor: backgroundColor$
|
|
38447
|
+
var backgroundColor$7 = "#ebeffb";
|
|
38448
|
+
var fallbackValues$C = {
|
|
38449
|
+
backgroundColor: backgroundColor$7
|
|
38332
38450
|
};
|
|
38333
38451
|
|
|
38334
38452
|
var Banner = function Banner(_ref) {
|
|
@@ -38379,7 +38497,7 @@ var Banner = function Banner(_ref) {
|
|
|
38379
38497
|
}, /*#__PURE__*/React__default.createElement(Image, null))));
|
|
38380
38498
|
};
|
|
38381
38499
|
|
|
38382
|
-
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$
|
|
38500
|
+
var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$C);
|
|
38383
38501
|
|
|
38384
38502
|
var ChangePasswordForm = function ChangePasswordForm(_ref) {
|
|
38385
38503
|
var _newPasswordErrorMess;
|
|
@@ -38521,7 +38639,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
|
|
|
38521
38639
|
var titleColor$1 = "#292A33";
|
|
38522
38640
|
var headingBackgroundColor = "transparent";
|
|
38523
38641
|
var bodyBackgroundColor = "transparent";
|
|
38524
|
-
var fallbackValues$
|
|
38642
|
+
var fallbackValues$D = {
|
|
38525
38643
|
titleColor: titleColor$1,
|
|
38526
38644
|
headingBackgroundColor: headingBackgroundColor,
|
|
38527
38645
|
bodyBackgroundColor: bodyBackgroundColor
|
|
@@ -38648,7 +38766,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
|
|
|
38648
38766
|
}, children))));
|
|
38649
38767
|
};
|
|
38650
38768
|
|
|
38651
|
-
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$
|
|
38769
|
+
var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$D);
|
|
38652
38770
|
|
|
38653
38771
|
var ClipboardIcon = function ClipboardIcon(_ref) {
|
|
38654
38772
|
var themeValues = _ref.themeValues;
|
|
@@ -39234,7 +39352,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
|
|
|
39234
39352
|
|
|
39235
39353
|
var footerBackgroundColor = BRIGHT_GREY;
|
|
39236
39354
|
var subfooterBackgroundColor = STORM_GREY;
|
|
39237
|
-
var fallbackValues$
|
|
39355
|
+
var fallbackValues$E = {
|
|
39238
39356
|
footerBackgroundColor: footerBackgroundColor,
|
|
39239
39357
|
subfooterBackgroundColor: subfooterBackgroundColor
|
|
39240
39358
|
};
|
|
@@ -39266,7 +39384,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
|
|
|
39266
39384
|
}));
|
|
39267
39385
|
};
|
|
39268
39386
|
|
|
39269
|
-
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$
|
|
39387
|
+
var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$E);
|
|
39270
39388
|
|
|
39271
39389
|
var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
|
|
39272
39390
|
var _EmailErrorMessages;
|
|
@@ -39317,10 +39435,10 @@ ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
|
|
|
39317
39435
|
ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
|
|
39318
39436
|
|
|
39319
39437
|
var textColor$4 = "#ffffff";
|
|
39320
|
-
var backgroundColor$
|
|
39321
|
-
var fallbackValues$
|
|
39438
|
+
var backgroundColor$8 = "#182848";
|
|
39439
|
+
var fallbackValues$F = {
|
|
39322
39440
|
textColor: textColor$4,
|
|
39323
|
-
backgroundColor: backgroundColor$
|
|
39441
|
+
backgroundColor: backgroundColor$8
|
|
39324
39442
|
};
|
|
39325
39443
|
|
|
39326
39444
|
var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
@@ -39375,7 +39493,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
|
|
|
39375
39493
|
}), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
|
|
39376
39494
|
};
|
|
39377
39495
|
|
|
39378
|
-
var HighlightTabRow$1 = /*#__PURE__*/React.memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$
|
|
39496
|
+
var HighlightTabRow$1 = /*#__PURE__*/React.memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$F));
|
|
39379
39497
|
|
|
39380
39498
|
var AccountBillIcon = function AccountBillIcon() {
|
|
39381
39499
|
return /*#__PURE__*/React__default.createElement("svg", {
|
|
@@ -44522,12 +44640,12 @@ var borderRadius = {
|
|
|
44522
44640
|
largeTitle: "0.25rem",
|
|
44523
44641
|
small: "0.25rem"
|
|
44524
44642
|
};
|
|
44525
|
-
var backgroundColor$
|
|
44643
|
+
var backgroundColor$9 = {
|
|
44526
44644
|
"default": WHITE,
|
|
44527
44645
|
largeTitle: WHITE,
|
|
44528
44646
|
small: WHITE
|
|
44529
44647
|
};
|
|
44530
|
-
var fallbackValues$
|
|
44648
|
+
var fallbackValues$G = {
|
|
44531
44649
|
fontSize: fontSize$9,
|
|
44532
44650
|
fontWeight: fontWeight$5,
|
|
44533
44651
|
fontColor: fontColor,
|
|
@@ -44537,7 +44655,7 @@ var fallbackValues$E = {
|
|
|
44537
44655
|
titleSpacing: titleSpacing,
|
|
44538
44656
|
boxShadow: boxShadow$1,
|
|
44539
44657
|
borderRadius: borderRadius,
|
|
44540
|
-
backgroundColor: backgroundColor$
|
|
44658
|
+
backgroundColor: backgroundColor$9
|
|
44541
44659
|
};
|
|
44542
44660
|
|
|
44543
44661
|
/*
|
|
@@ -44586,9 +44704,9 @@ var Module = function Module(_ref) {
|
|
|
44586
44704
|
}, children)));
|
|
44587
44705
|
};
|
|
44588
44706
|
|
|
44589
|
-
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$
|
|
44707
|
+
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$G, "default"));
|
|
44590
44708
|
|
|
44591
|
-
var backgroundColor$
|
|
44709
|
+
var backgroundColor$a = {
|
|
44592
44710
|
profile: "#3b414d",
|
|
44593
44711
|
cms: "#3b414d"
|
|
44594
44712
|
};
|
|
@@ -44596,8 +44714,8 @@ var shadowColor = {
|
|
|
44596
44714
|
profile: "#292A33",
|
|
44597
44715
|
cms: "#292A33"
|
|
44598
44716
|
};
|
|
44599
|
-
var fallbackValues$
|
|
44600
|
-
backgroundColor: backgroundColor$
|
|
44717
|
+
var fallbackValues$H = {
|
|
44718
|
+
backgroundColor: backgroundColor$a,
|
|
44601
44719
|
shadowColor: shadowColor
|
|
44602
44720
|
};
|
|
44603
44721
|
|
|
@@ -44637,7 +44755,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
44637
44755
|
}, menuContent));
|
|
44638
44756
|
};
|
|
44639
44757
|
|
|
44640
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
44758
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$H, "profile");
|
|
44641
44759
|
|
|
44642
44760
|
var menu = posed.div({
|
|
44643
44761
|
invisible: {
|
|
@@ -44693,7 +44811,7 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
|
|
|
44693
44811
|
}, menuContent));
|
|
44694
44812
|
};
|
|
44695
44813
|
|
|
44696
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
44814
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$H, "profile");
|
|
44697
44815
|
|
|
44698
44816
|
var ACH_METHOD = "BANK_ACCOUNT";
|
|
44699
44817
|
var CC_METHOD = "CREDIT_CARD";
|
|
@@ -44754,7 +44872,7 @@ var activeColor$7 = "#0E506D";
|
|
|
44754
44872
|
var linkColor$4 = "#3176AA";
|
|
44755
44873
|
var fontWeight$6 = FONT_WEIGHT_REGULAR;
|
|
44756
44874
|
var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
|
|
44757
|
-
var fallbackValues$
|
|
44875
|
+
var fallbackValues$I = {
|
|
44758
44876
|
color: color$a,
|
|
44759
44877
|
hoverColor: hoverColor$5,
|
|
44760
44878
|
activeColor: activeColor$7,
|
|
@@ -44880,7 +44998,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
44880
44998
|
}, modalExtraProps), renderAutoPayControl());
|
|
44881
44999
|
};
|
|
44882
45000
|
|
|
44883
|
-
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$
|
|
45001
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$I);
|
|
44884
45002
|
|
|
44885
45003
|
var AmountModule = function AmountModule(_ref) {
|
|
44886
45004
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -45718,7 +45836,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
45718
45836
|
}, backButton, !hideForwardButton && /*#__PURE__*/React__default.createElement(React.Fragment, null, forwardButton))));
|
|
45719
45837
|
};
|
|
45720
45838
|
|
|
45721
|
-
var backgroundColor$
|
|
45839
|
+
var backgroundColor$b = {
|
|
45722
45840
|
"default": "transparent",
|
|
45723
45841
|
small: "transparent"
|
|
45724
45842
|
};
|
|
@@ -45734,14 +45852,14 @@ var labeledAmountTotal = {
|
|
|
45734
45852
|
"default": "h6",
|
|
45735
45853
|
small: "p"
|
|
45736
45854
|
};
|
|
45737
|
-
var fallbackValues$
|
|
45738
|
-
backgroundColor: backgroundColor$
|
|
45855
|
+
var fallbackValues$J = {
|
|
45856
|
+
backgroundColor: backgroundColor$b,
|
|
45739
45857
|
lineItem: lineItem,
|
|
45740
45858
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
45741
45859
|
labeledAmountTotal: labeledAmountTotal
|
|
45742
45860
|
};
|
|
45743
45861
|
|
|
45744
|
-
var _excluded$
|
|
45862
|
+
var _excluded$x = ["amount"],
|
|
45745
45863
|
_excluded2$1 = ["amount"];
|
|
45746
45864
|
|
|
45747
45865
|
var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
|
|
@@ -45886,7 +46004,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
45886
46004
|
return fee.amount > 0;
|
|
45887
46005
|
}).map(function (_ref5) {
|
|
45888
46006
|
var amount = _ref5.amount,
|
|
45889
|
-
rest = _objectWithoutProperties(_ref5, _excluded$
|
|
46007
|
+
rest = _objectWithoutProperties(_ref5, _excluded$x);
|
|
45890
46008
|
|
|
45891
46009
|
return _objectSpread2(_objectSpread2({}, rest), {}, {
|
|
45892
46010
|
amount: displayCurrency(amount)
|
|
@@ -45985,7 +46103,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
45985
46103
|
});
|
|
45986
46104
|
};
|
|
45987
46105
|
|
|
45988
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
46106
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$J, "default");
|
|
45989
46107
|
|
|
45990
46108
|
var linkColor$5 = {
|
|
45991
46109
|
"default": "#3176AA"
|
|
@@ -46002,7 +46120,7 @@ var fontWeight$7 = {
|
|
|
46002
46120
|
var modalLinkHoverFocus$1 = {
|
|
46003
46121
|
"default": "outline: none; text-decoration: underline;"
|
|
46004
46122
|
};
|
|
46005
|
-
var fallbackValues$
|
|
46123
|
+
var fallbackValues$K = {
|
|
46006
46124
|
linkColor: linkColor$5,
|
|
46007
46125
|
fontSize: fontSize$a,
|
|
46008
46126
|
lineHeight: lineHeight$4,
|
|
@@ -46061,7 +46179,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
46061
46179
|
}, link));
|
|
46062
46180
|
};
|
|
46063
46181
|
|
|
46064
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
46182
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$K, "default");
|
|
46065
46183
|
|
|
46066
46184
|
var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
46067
46185
|
var _routingNumberErrors, _accountNumberErrors;
|
|
@@ -46665,13 +46783,13 @@ var RadioGroup = function RadioGroup(_ref) {
|
|
|
46665
46783
|
var headingBackgroundColor$1 = "".concat(WHITE);
|
|
46666
46784
|
var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
46667
46785
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
46668
|
-
var borderColor$
|
|
46786
|
+
var borderColor$5 = "".concat(GREY_CHATEAU);
|
|
46669
46787
|
var focusStyles = "outline: none;";
|
|
46670
|
-
var fallbackValues$
|
|
46788
|
+
var fallbackValues$L = {
|
|
46671
46789
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
46672
46790
|
headingDisabledColor: headingDisabledColor,
|
|
46673
46791
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
46674
|
-
borderColor: borderColor$
|
|
46792
|
+
borderColor: borderColor$5,
|
|
46675
46793
|
focusStyles: focusStyles
|
|
46676
46794
|
};
|
|
46677
46795
|
|
|
@@ -46855,7 +46973,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
46855
46973
|
})));
|
|
46856
46974
|
};
|
|
46857
46975
|
|
|
46858
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
46976
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$L);
|
|
46859
46977
|
|
|
46860
46978
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
46861
46979
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -47152,7 +47270,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
47152
47270
|
var activeTabBackground = "#FFFFFF";
|
|
47153
47271
|
var activeTabAccent = "#15749D";
|
|
47154
47272
|
var activeTabHover = "#B8D5E1";
|
|
47155
|
-
var fallbackValues$
|
|
47273
|
+
var fallbackValues$M = {
|
|
47156
47274
|
activeTabBackground: activeTabBackground,
|
|
47157
47275
|
activeTabAccent: activeTabAccent,
|
|
47158
47276
|
activeTabHover: activeTabHover
|
|
@@ -47231,12 +47349,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
47231
47349
|
}))));
|
|
47232
47350
|
};
|
|
47233
47351
|
|
|
47234
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
47352
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$M);
|
|
47235
47353
|
|
|
47236
47354
|
var activeTabBackground$1 = "#FFFFFF";
|
|
47237
47355
|
var activeTabAccent$1 = "#15749D";
|
|
47238
47356
|
var activeTabHover$1 = "#B8D5E1";
|
|
47239
|
-
var fallbackValues$
|
|
47357
|
+
var fallbackValues$N = {
|
|
47240
47358
|
activeTabBackground: activeTabBackground$1,
|
|
47241
47359
|
activeTabAccent: activeTabAccent$1,
|
|
47242
47360
|
activeTabHover: activeTabHover$1
|
|
@@ -47292,9 +47410,9 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
47292
47410
|
})));
|
|
47293
47411
|
};
|
|
47294
47412
|
|
|
47295
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
47413
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$N);
|
|
47296
47414
|
|
|
47297
|
-
var backgroundColor$
|
|
47415
|
+
var backgroundColor$c = {
|
|
47298
47416
|
"default": "#ffffff",
|
|
47299
47417
|
footer: "#ffffff"
|
|
47300
47418
|
};
|
|
@@ -47323,8 +47441,8 @@ var modalLinkHoverFocus$2 = {
|
|
|
47323
47441
|
"default": standardInteractionStyles,
|
|
47324
47442
|
footer: standardInteractionStyles
|
|
47325
47443
|
};
|
|
47326
|
-
var fallbackValues$
|
|
47327
|
-
backgroundColor: backgroundColor$
|
|
47444
|
+
var fallbackValues$O = {
|
|
47445
|
+
backgroundColor: backgroundColor$c,
|
|
47328
47446
|
linkColor: linkColor$6,
|
|
47329
47447
|
border: border$3,
|
|
47330
47448
|
fontSize: fontSize$b,
|
|
@@ -47385,7 +47503,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47385
47503
|
}, link));
|
|
47386
47504
|
};
|
|
47387
47505
|
|
|
47388
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
47506
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$O, "default");
|
|
47389
47507
|
|
|
47390
47508
|
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
47391
47509
|
var onCheck = _ref.onCheck,
|
|
@@ -47460,7 +47578,7 @@ var fontColor$1 = WHITE;
|
|
|
47460
47578
|
var textAlign$1 = "left";
|
|
47461
47579
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
47462
47580
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
47463
|
-
var fallbackValues$
|
|
47581
|
+
var fallbackValues$P = {
|
|
47464
47582
|
fontWeight: fontWeight$9,
|
|
47465
47583
|
fontColor: fontColor$1,
|
|
47466
47584
|
textAlign: textAlign$1,
|
|
@@ -47507,7 +47625,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
47507
47625
|
})))));
|
|
47508
47626
|
};
|
|
47509
47627
|
|
|
47510
|
-
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
47628
|
+
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$P));
|
|
47511
47629
|
|
|
47512
47630
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
47513
47631
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -47562,7 +47680,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
47562
47680
|
};
|
|
47563
47681
|
|
|
47564
47682
|
var pageBackground = "#FBFCFD";
|
|
47565
|
-
var fallbackValues$
|
|
47683
|
+
var fallbackValues$Q = {
|
|
47566
47684
|
pageBackground: pageBackground
|
|
47567
47685
|
};
|
|
47568
47686
|
|
|
@@ -47609,7 +47727,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
47609
47727
|
})));
|
|
47610
47728
|
};
|
|
47611
47729
|
|
|
47612
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
47730
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$Q));
|
|
47613
47731
|
|
|
47614
47732
|
var CenterStack = function CenterStack(_ref) {
|
|
47615
47733
|
var header = _ref.header,
|
|
@@ -47651,7 +47769,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
47651
47769
|
})));
|
|
47652
47770
|
};
|
|
47653
47771
|
|
|
47654
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
47772
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$Q));
|
|
47655
47773
|
|
|
47656
47774
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
47657
47775
|
var header = _ref.header,
|
|
@@ -47696,7 +47814,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
47696
47814
|
})));
|
|
47697
47815
|
};
|
|
47698
47816
|
|
|
47699
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
47817
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$Q));
|
|
47700
47818
|
|
|
47701
47819
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
47702
47820
|
var header = _ref.header,
|
|
@@ -47750,7 +47868,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
47750
47868
|
})));
|
|
47751
47869
|
};
|
|
47752
47870
|
|
|
47753
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
47871
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$Q));
|
|
47754
47872
|
|
|
47755
47873
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
47756
47874
|
var header = _ref.header,
|
|
@@ -47821,7 +47939,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
47821
47939
|
})));
|
|
47822
47940
|
};
|
|
47823
47941
|
|
|
47824
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
47942
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$Q));
|
|
47825
47943
|
|
|
47826
47944
|
exports.AccountNumberImage = AccountNumberImage;
|
|
47827
47945
|
exports.AccountsAddIcon = AccountsAddIcon$1;
|
|
@@ -47978,7 +48096,13 @@ exports.StatusUnknownIcon = StatusUnknownIcon;
|
|
|
47978
48096
|
exports.SuccessfulIcon = SuccessfulIcon;
|
|
47979
48097
|
exports.Switcher = Switcher;
|
|
47980
48098
|
exports.TabSidebar = TabSidebar$1;
|
|
48099
|
+
exports.Table = Table_styled;
|
|
48100
|
+
exports.TableBody = TableBody_styled;
|
|
48101
|
+
exports.TableCell = TableCell_styled;
|
|
48102
|
+
exports.TableHead = TableHead$1;
|
|
48103
|
+
exports.TableHeading = TableHeading_styled;
|
|
47981
48104
|
exports.TableListItem = TableListItem;
|
|
48105
|
+
exports.TableRow = TableRow$1;
|
|
47982
48106
|
exports.Tabs = Tabs$1;
|
|
47983
48107
|
exports.TermsAndConditions = TermsAndConditions;
|
|
47984
48108
|
exports.TermsAndConditionsModal = TermsAndConditionsModal$1;
|