@thecb/components 7.7.3 → 7.7.4-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 +102 -59
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +102 -59
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/button-with-action/ButtonWithAction.js +14 -11
- package/src/components/molecules/pagination/Pagination.js +78 -39
- package/src/components/molecules/pagination/Pagination.new.js +187 -0
- package/src/components/molecules/pagination/Pagination.theme.js +15 -0
package/dist/index.cjs.js
CHANGED
|
@@ -12811,7 +12811,7 @@ var SpinnerIcon = function SpinnerIcon(_ref3) {
|
|
|
12811
12811
|
}))))));
|
|
12812
12812
|
};
|
|
12813
12813
|
|
|
12814
|
-
var _excluded$h = ["action", "
|
|
12814
|
+
var _excluded$h = ["action", "children", "contentOverride", "dataQa", "disabledBackgroundColor", "disabledBorderColor", "disabledColor", "extraStyles", "isLoading", "tabIndex", "text", "textExtraStyles", "textWrap", "variant"];
|
|
12815
12815
|
var rotate$1 = posed.div({
|
|
12816
12816
|
fixed: {
|
|
12817
12817
|
rotate: "0deg"
|
|
@@ -12865,22 +12865,28 @@ var Spinner = function Spinner(_ref) {
|
|
|
12865
12865
|
var ButtonWithAction = function ButtonWithAction(_ref2) {
|
|
12866
12866
|
var _ref2$action = _ref2.action,
|
|
12867
12867
|
action = _ref2$action === void 0 ? noop : _ref2$action,
|
|
12868
|
-
|
|
12869
|
-
variant = _ref2$variant === void 0 ? "primary" : _ref2$variant,
|
|
12870
|
-
text = _ref2.text,
|
|
12871
|
-
_ref2$textWrap = _ref2.textWrap,
|
|
12872
|
-
textWrap = _ref2$textWrap === void 0 ? false : _ref2$textWrap,
|
|
12873
|
-
_ref2$isLoading = _ref2.isLoading,
|
|
12874
|
-
isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
|
|
12875
|
-
_ref2$dataQa = _ref2.dataQa,
|
|
12876
|
-
dataQa = _ref2$dataQa === void 0 ? null : _ref2$dataQa,
|
|
12877
|
-
textExtraStyles = _ref2.textExtraStyles,
|
|
12868
|
+
children = _ref2.children,
|
|
12878
12869
|
_ref2$contentOverride = _ref2.contentOverride,
|
|
12879
12870
|
contentOverride = _ref2$contentOverride === void 0 ? false : _ref2$contentOverride,
|
|
12871
|
+
_ref2$dataQa = _ref2.dataQa,
|
|
12872
|
+
dataQa = _ref2$dataQa === void 0 ? null : _ref2$dataQa,
|
|
12873
|
+
_ref2$disabledBackgro = _ref2.disabledBackgroundColor,
|
|
12874
|
+
disabledBackgroundColor = _ref2$disabledBackgro === void 0 ? "#6D717E" : _ref2$disabledBackgro,
|
|
12875
|
+
_ref2$disabledBorderC = _ref2.disabledBorderColor,
|
|
12876
|
+
disabledBorderColor = _ref2$disabledBorderC === void 0 ? "#6D717E" : _ref2$disabledBorderC,
|
|
12877
|
+
_ref2$disabledColor = _ref2.disabledColor,
|
|
12878
|
+
disabledColor = _ref2$disabledColor === void 0 ? "#FFFFFF" : _ref2$disabledColor,
|
|
12880
12879
|
_ref2$extraStyles = _ref2.extraStyles,
|
|
12881
12880
|
extraStyles = _ref2$extraStyles === void 0 ? "" : _ref2$extraStyles,
|
|
12881
|
+
_ref2$isLoading = _ref2.isLoading,
|
|
12882
|
+
isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
|
|
12882
12883
|
tabIndex = _ref2.tabIndex,
|
|
12883
|
-
|
|
12884
|
+
text = _ref2.text,
|
|
12885
|
+
textExtraStyles = _ref2.textExtraStyles,
|
|
12886
|
+
_ref2$textWrap = _ref2.textWrap,
|
|
12887
|
+
textWrap = _ref2$textWrap === void 0 ? false : _ref2$textWrap,
|
|
12888
|
+
_ref2$variant = _ref2.variant,
|
|
12889
|
+
variant = _ref2$variant === void 0 ? "primary" : _ref2$variant,
|
|
12884
12890
|
rest = _objectWithoutProperties(_ref2, _excluded$h);
|
|
12885
12891
|
|
|
12886
12892
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
@@ -12888,7 +12894,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
|
|
|
12888
12894
|
var isMobile = themeContext.isMobile;
|
|
12889
12895
|
var hoverStyles = "\n outline: none;\n background-color: ".concat(themeValues.hoverBackgroundColor, ";\n border-color: ").concat(themeValues.hoverBorderColor, ";\n color: ").concat(themeValues.hoverColor, ";\n text-decoration: ").concat(variant === "ghost" || variant === "smallGhost" ? "underline" : "none", ";\n cursor: pointer;\n ");
|
|
12890
12896
|
var activeStyles = "\n outline: none;\n background-color: ".concat(themeValues.activeBackgroundColor, ";\n border-color: ").concat(themeValues.activeBorderColor, ";\n color: ").concat(themeValues.activeColor, ";\n text-decoration: ").concat(variant === "ghost" || variant === "smallGhost" ? "underline" : "none", ";\n ");
|
|
12891
|
-
var disabledStyles = "\n background-color:
|
|
12897
|
+
var disabledStyles = "\n background-color: ".concat(disabledBackgroundColor, ";\n border-color: ").concat(disabledBorderColor, ";\n color: ").concat(disabledColor, ";\n cursor: default;\n &:focus {\n box-shadow: 0 0 10px ").concat(disabledBackgroundColor, ";\n outline: none;\n }\n ");
|
|
12892
12898
|
return /*#__PURE__*/React__default.createElement(Box, _extends({
|
|
12893
12899
|
variant: variant,
|
|
12894
12900
|
padding: themeValues.padding,
|
|
@@ -45680,24 +45686,36 @@ var createPartialAmountFormState = function createPartialAmountFormState(lineIte
|
|
|
45680
45686
|
};
|
|
45681
45687
|
};
|
|
45682
45688
|
|
|
45689
|
+
var arrowColor = WHITE;
|
|
45690
|
+
var numberColor = MATISSE_BLUE;
|
|
45691
|
+
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
45692
|
+
var fallbackValues$J = {
|
|
45693
|
+
arrowColor: arrowColor,
|
|
45694
|
+
hoverBackgroundColor: hoverBackgroundColor$2,
|
|
45695
|
+
numberColor: numberColor
|
|
45696
|
+
};
|
|
45697
|
+
|
|
45683
45698
|
var PAGING_SPACE = 2; // how many pages we want to have before/after delimiter
|
|
45684
45699
|
|
|
45685
45700
|
var PAGING_INIT_SPACE = 3; // first delimiter should appear after 3 pages
|
|
45686
45701
|
|
|
45687
45702
|
var PrevNextButton = function PrevNextButton(_ref) {
|
|
45688
45703
|
var action = _ref.action,
|
|
45689
|
-
type = _ref.type,
|
|
45690
45704
|
arrowColor = _ref.arrowColor,
|
|
45691
|
-
|
|
45705
|
+
borderRadius = _ref.borderRadius,
|
|
45706
|
+
buttonHeight = _ref.buttonHeight,
|
|
45707
|
+
buttonWidth = _ref.buttonWidth,
|
|
45708
|
+
numberColor = _ref.numberColor,
|
|
45709
|
+
type = _ref.type;
|
|
45692
45710
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
45693
45711
|
padding: "0 10px 0",
|
|
45694
|
-
minHeight:
|
|
45695
|
-
extraStyles: "max-height:
|
|
45712
|
+
minHeight: buttonHeight,
|
|
45713
|
+
extraStyles: "max-height: ".concat(buttonHeight, ";")
|
|
45696
45714
|
}, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
45697
45715
|
action: action,
|
|
45698
45716
|
contentOverride: true,
|
|
45699
45717
|
dataQa: type,
|
|
45700
|
-
extraStyles: "\n
|
|
45718
|
+
extraStyles: "\n background-color: ".concat(numberColor, ";\n border-color: ").concat(numberColor, "\n border-radius: ").concat(borderRadius, ";\n margin: 0;\n max-height: ").concat(buttonHeight, ";\n min-height: 100%;\n min-width: ").concat(buttonWidth, ";\n padding: 6px;\n &:focus {\n outline: none\n }\n ")
|
|
45701
45719
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
45702
45720
|
padding: "0",
|
|
45703
45721
|
extraStyles: type === "prev" && "transform: scaleX(-1)"
|
|
@@ -45754,27 +45772,44 @@ var getPagesPanel = function getPagesPanel(page, pagesCount) {
|
|
|
45754
45772
|
};
|
|
45755
45773
|
|
|
45756
45774
|
var Pagination = function Pagination(_ref2) {
|
|
45757
|
-
var
|
|
45758
|
-
|
|
45759
|
-
|
|
45775
|
+
var _ref2$activeBorderWid = _ref2.activeBorderWidth,
|
|
45776
|
+
activeBorderWidth = _ref2$activeBorderWid === void 0 ? "1px" : _ref2$activeBorderWid,
|
|
45777
|
+
activeBackgroundColor = _ref2.activeBackgroundColor,
|
|
45778
|
+
arrowColor = _ref2.arrowColor,
|
|
45779
|
+
_ref2$borderRadius = _ref2.borderRadius,
|
|
45780
|
+
borderRadius = _ref2$borderRadius === void 0 ? "3px" : _ref2$borderRadius,
|
|
45781
|
+
_ref2$buttonHeight = _ref2.buttonHeight,
|
|
45782
|
+
buttonHeight = _ref2$buttonHeight === void 0 ? "40px" : _ref2$buttonHeight,
|
|
45783
|
+
_ref2$buttonWidth = _ref2.buttonWidth,
|
|
45784
|
+
buttonWidth = _ref2$buttonWidth === void 0 ? "40px" : _ref2$buttonWidth,
|
|
45785
|
+
_ref2$childGap = _ref2.childGap,
|
|
45786
|
+
childGap = _ref2$childGap === void 0 ? "10px" : _ref2$childGap,
|
|
45760
45787
|
currentPage = _ref2.currentPage,
|
|
45761
|
-
|
|
45788
|
+
_ref2$fontSize = _ref2.fontSize,
|
|
45789
|
+
fontSize = _ref2$fontSize === void 0 ? "17px" : _ref2$fontSize,
|
|
45790
|
+
_ref2$fontWeight = _ref2.fontWeight,
|
|
45791
|
+
fontWeight = _ref2$fontWeight === void 0 ? "900" : _ref2$fontWeight,
|
|
45762
45792
|
numberColor = _ref2.numberColor,
|
|
45763
|
-
|
|
45793
|
+
pageCount = _ref2.pageCount,
|
|
45794
|
+
pageNext = _ref2.pageNext,
|
|
45795
|
+
pagePrevious = _ref2.pagePrevious,
|
|
45796
|
+
setCurrentPage = _ref2.setCurrentPage,
|
|
45797
|
+
themeValues = _ref2.themeValues;
|
|
45764
45798
|
return /*#__PURE__*/React__default.createElement(Cluster, {
|
|
45765
45799
|
justify: "center",
|
|
45766
|
-
childGap:
|
|
45800
|
+
childGap: childGap
|
|
45767
45801
|
}, currentPage > 1 && /*#__PURE__*/React__default.createElement(PrevNextButton, {
|
|
45768
|
-
type: "prev",
|
|
45769
45802
|
action: pagePrevious,
|
|
45770
|
-
arrowColor: arrowColor,
|
|
45771
|
-
|
|
45803
|
+
arrowColor: arrowColor !== null && arrowColor !== void 0 ? arrowColor : themeValues.arrowColor,
|
|
45804
|
+
borderRadius: borderRadius,
|
|
45805
|
+
buttonHeight: buttonHeight,
|
|
45806
|
+
buttonWidth: buttonWidth,
|
|
45807
|
+
numberColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
|
|
45808
|
+
type: "prev"
|
|
45772
45809
|
}), getPagesPanel(currentPage, pageCount).map(function (item, index) {
|
|
45773
45810
|
return item.isButton ? /*#__PURE__*/React__default.createElement(Box, {
|
|
45774
45811
|
padding: "0",
|
|
45775
|
-
|
|
45776
|
-
borderRadius: item.active && "3px",
|
|
45777
|
-
extraStyles: "max-height: 40px;"
|
|
45812
|
+
extraStyles: "max-height: ".concat(buttonHeight, ";")
|
|
45778
45813
|
}, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
45779
45814
|
variant: "ghost",
|
|
45780
45815
|
key: item.index,
|
|
@@ -45785,9 +45820,12 @@ var Pagination = function Pagination(_ref2) {
|
|
|
45785
45820
|
pageNumber: item.index
|
|
45786
45821
|
});
|
|
45787
45822
|
} : noop,
|
|
45788
|
-
textExtraStyles: "font-size:
|
|
45789
|
-
extraStyles: "\n min-width:
|
|
45790
|
-
dataQa: index
|
|
45823
|
+
textExtraStyles: "font-size: ".concat(fontSize, "; font-weight: ").concat(fontWeight, ";"),
|
|
45824
|
+
extraStyles: "\n ".concat(item.active ? "border: ".concat(activeBorderWidth, " solid ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor, ";") : "", "\n min-width: ").concat(buttonWidth, "; min-height: 100%; padding: 0;\n border-radius: ").concat(borderRadius, ";\n &:hover, &:focus {\n text-decoration: none;\n > * > span {\n text-decoration: none;\n }\n }\n > * > span {\n color: ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor, "\n }\n margin: 0;\n &:hover { ").concat(item.active ? "cursor: default;" : "background-color: ".concat(themeValues.hoverBackgroundColor), " }\n &:focus {\n outline: none\n }\n "),
|
|
45825
|
+
dataQa: index,
|
|
45826
|
+
disabledBackgroundColor: activeBackgroundColor,
|
|
45827
|
+
disabledBorderColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
|
|
45828
|
+
disabledColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor
|
|
45791
45829
|
}, item.index)) : /*#__PURE__*/React__default.createElement(Box, {
|
|
45792
45830
|
padding: "0 10px"
|
|
45793
45831
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
@@ -45795,17 +45833,22 @@ var Pagination = function Pagination(_ref2) {
|
|
|
45795
45833
|
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
45796
45834
|
key: index,
|
|
45797
45835
|
variant: "pXL",
|
|
45798
|
-
weight:
|
|
45799
|
-
color: numberColor !== null && numberColor !== void 0 ? numberColor :
|
|
45836
|
+
weight: fontWeight,
|
|
45837
|
+
color: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor
|
|
45800
45838
|
}, "...")));
|
|
45801
45839
|
}), currentPage < pageCount && /*#__PURE__*/React__default.createElement(PrevNextButton, {
|
|
45802
|
-
type: "next",
|
|
45803
45840
|
action: pageNext,
|
|
45804
|
-
arrowColor: arrowColor,
|
|
45805
|
-
|
|
45841
|
+
arrowColor: arrowColor !== null && arrowColor !== void 0 ? arrowColor : themeValues.arrowColor,
|
|
45842
|
+
borderRadius: borderRadius,
|
|
45843
|
+
buttonHeight: buttonHeight,
|
|
45844
|
+
buttonWidth: buttonWidth,
|
|
45845
|
+
numberColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
|
|
45846
|
+
type: "next"
|
|
45806
45847
|
}));
|
|
45807
45848
|
};
|
|
45808
45849
|
|
|
45850
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$J);
|
|
45851
|
+
|
|
45809
45852
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
45810
45853
|
var _ref$forwardButtonTex = _ref.forwardButtonText,
|
|
45811
45854
|
forwardButtonText = _ref$forwardButtonTex === void 0 ? "Next" : _ref$forwardButtonTex,
|
|
@@ -45882,7 +45925,7 @@ var labeledAmountTotal = {
|
|
|
45882
45925
|
"default": "h6",
|
|
45883
45926
|
small: "p"
|
|
45884
45927
|
};
|
|
45885
|
-
var fallbackValues$
|
|
45928
|
+
var fallbackValues$K = {
|
|
45886
45929
|
backgroundColor: backgroundColor$b,
|
|
45887
45930
|
lineItem: lineItem,
|
|
45888
45931
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
@@ -46133,7 +46176,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
46133
46176
|
});
|
|
46134
46177
|
};
|
|
46135
46178
|
|
|
46136
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
46179
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$K, "default");
|
|
46137
46180
|
|
|
46138
46181
|
var linkColor$5 = {
|
|
46139
46182
|
"default": "#3176AA"
|
|
@@ -46150,7 +46193,7 @@ var fontWeight$7 = {
|
|
|
46150
46193
|
var modalLinkHoverFocus$1 = {
|
|
46151
46194
|
"default": "outline: none; text-decoration: underline;"
|
|
46152
46195
|
};
|
|
46153
|
-
var fallbackValues$
|
|
46196
|
+
var fallbackValues$L = {
|
|
46154
46197
|
linkColor: linkColor$5,
|
|
46155
46198
|
fontSize: fontSize$a,
|
|
46156
46199
|
lineHeight: lineHeight$4,
|
|
@@ -46209,7 +46252,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
46209
46252
|
}, link));
|
|
46210
46253
|
};
|
|
46211
46254
|
|
|
46212
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
46255
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$L, "default");
|
|
46213
46256
|
|
|
46214
46257
|
var PaymentFormACH = function PaymentFormACH(_ref) {
|
|
46215
46258
|
var _routingNumberErrors, _accountNumberErrors;
|
|
@@ -46815,7 +46858,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
46815
46858
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
46816
46859
|
var borderColor$5 = "".concat(GREY_CHATEAU);
|
|
46817
46860
|
var focusStyles = "outline: none;";
|
|
46818
|
-
var fallbackValues$
|
|
46861
|
+
var fallbackValues$M = {
|
|
46819
46862
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
46820
46863
|
headingDisabledColor: headingDisabledColor,
|
|
46821
46864
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -47003,7 +47046,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
47003
47046
|
})));
|
|
47004
47047
|
};
|
|
47005
47048
|
|
|
47006
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
47049
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$M);
|
|
47007
47050
|
|
|
47008
47051
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
47009
47052
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -47300,7 +47343,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
47300
47343
|
var activeTabBackground = "#FFFFFF";
|
|
47301
47344
|
var activeTabAccent = "#15749D";
|
|
47302
47345
|
var activeTabHover = "#B8D5E1";
|
|
47303
|
-
var fallbackValues$
|
|
47346
|
+
var fallbackValues$N = {
|
|
47304
47347
|
activeTabBackground: activeTabBackground,
|
|
47305
47348
|
activeTabAccent: activeTabAccent,
|
|
47306
47349
|
activeTabHover: activeTabHover
|
|
@@ -47379,12 +47422,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
47379
47422
|
}))));
|
|
47380
47423
|
};
|
|
47381
47424
|
|
|
47382
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
47425
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$N);
|
|
47383
47426
|
|
|
47384
47427
|
var activeTabBackground$1 = "#FFFFFF";
|
|
47385
47428
|
var activeTabAccent$1 = "#15749D";
|
|
47386
47429
|
var activeTabHover$1 = "#B8D5E1";
|
|
47387
|
-
var fallbackValues$
|
|
47430
|
+
var fallbackValues$O = {
|
|
47388
47431
|
activeTabBackground: activeTabBackground$1,
|
|
47389
47432
|
activeTabAccent: activeTabAccent$1,
|
|
47390
47433
|
activeTabHover: activeTabHover$1
|
|
@@ -47440,7 +47483,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
47440
47483
|
})));
|
|
47441
47484
|
};
|
|
47442
47485
|
|
|
47443
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
47486
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$O);
|
|
47444
47487
|
|
|
47445
47488
|
var backgroundColor$c = {
|
|
47446
47489
|
"default": "#ffffff",
|
|
@@ -47471,7 +47514,7 @@ var modalLinkHoverFocus$2 = {
|
|
|
47471
47514
|
"default": standardInteractionStyles,
|
|
47472
47515
|
footer: standardInteractionStyles
|
|
47473
47516
|
};
|
|
47474
|
-
var fallbackValues$
|
|
47517
|
+
var fallbackValues$P = {
|
|
47475
47518
|
backgroundColor: backgroundColor$c,
|
|
47476
47519
|
linkColor: linkColor$6,
|
|
47477
47520
|
border: border$3,
|
|
@@ -47533,7 +47576,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
47533
47576
|
}, link));
|
|
47534
47577
|
};
|
|
47535
47578
|
|
|
47536
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
47579
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
|
|
47537
47580
|
|
|
47538
47581
|
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
47539
47582
|
var onCheck = _ref.onCheck,
|
|
@@ -47608,7 +47651,7 @@ var fontColor$1 = WHITE;
|
|
|
47608
47651
|
var textAlign$1 = "left";
|
|
47609
47652
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
47610
47653
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
47611
|
-
var fallbackValues$
|
|
47654
|
+
var fallbackValues$Q = {
|
|
47612
47655
|
fontWeight: fontWeight$9,
|
|
47613
47656
|
fontColor: fontColor$1,
|
|
47614
47657
|
textAlign: textAlign$1,
|
|
@@ -47655,7 +47698,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
47655
47698
|
})))));
|
|
47656
47699
|
};
|
|
47657
47700
|
|
|
47658
|
-
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
47701
|
+
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$Q));
|
|
47659
47702
|
|
|
47660
47703
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
47661
47704
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -47710,7 +47753,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
47710
47753
|
};
|
|
47711
47754
|
|
|
47712
47755
|
var pageBackground = "#FBFCFD";
|
|
47713
|
-
var fallbackValues$
|
|
47756
|
+
var fallbackValues$R = {
|
|
47714
47757
|
pageBackground: pageBackground
|
|
47715
47758
|
};
|
|
47716
47759
|
|
|
@@ -47757,7 +47800,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
47757
47800
|
})));
|
|
47758
47801
|
};
|
|
47759
47802
|
|
|
47760
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
47803
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$R));
|
|
47761
47804
|
|
|
47762
47805
|
var CenterStack = function CenterStack(_ref) {
|
|
47763
47806
|
var header = _ref.header,
|
|
@@ -47799,7 +47842,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
47799
47842
|
})));
|
|
47800
47843
|
};
|
|
47801
47844
|
|
|
47802
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
47845
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$R));
|
|
47803
47846
|
|
|
47804
47847
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
47805
47848
|
var header = _ref.header,
|
|
@@ -47844,7 +47887,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
47844
47887
|
})));
|
|
47845
47888
|
};
|
|
47846
47889
|
|
|
47847
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
47890
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$R));
|
|
47848
47891
|
|
|
47849
47892
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
47850
47893
|
var header = _ref.header,
|
|
@@ -47898,7 +47941,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
47898
47941
|
})));
|
|
47899
47942
|
};
|
|
47900
47943
|
|
|
47901
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
47944
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$R));
|
|
47902
47945
|
|
|
47903
47946
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
47904
47947
|
var header = _ref.header,
|
|
@@ -47969,7 +48012,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
47969
48012
|
})));
|
|
47970
48013
|
};
|
|
47971
48014
|
|
|
47972
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
48015
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$R));
|
|
47973
48016
|
|
|
47974
48017
|
exports.AccountNumberImage = AccountNumberImage;
|
|
47975
48018
|
exports.AccountsAddIcon = AccountsAddIcon$1;
|
|
@@ -48071,7 +48114,7 @@ exports.NoPaymentResultsIcon = NoPaymentResultsIcon;
|
|
|
48071
48114
|
exports.NotFoundIcon = NotFoundIcon;
|
|
48072
48115
|
exports.Obligation = Obligation;
|
|
48073
48116
|
exports.ObligationIcons = iconsMap;
|
|
48074
|
-
exports.Pagination = Pagination;
|
|
48117
|
+
exports.Pagination = Pagination$1;
|
|
48075
48118
|
exports.Paragraph = Paragraph$1;
|
|
48076
48119
|
exports.PartialAmountForm = PartialAmountForm;
|
|
48077
48120
|
exports.PasswordRequirements = PasswordRequirements;
|