@thecb/components 10.7.1-beta.0 → 10.7.1-beta.1
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 +64 -39
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +64 -39
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/wallet-name/WalletName.js +6 -4
- package/src/components/atoms/wallet-name/WalletName.stories.js +26 -1
- package/src/components/atoms/wallet-name/index.d.ts +2 -0
- package/src/components/molecules/obligation/modules/PaymentDetailsActions.js +2 -6
- package/src/components/molecules/payment-button-bar/PaymentButtonBar.js +6 -4
- package/src/components/molecules/radio-section/RadioSection.js +2 -1
- package/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.js +15 -3
- package/src/components/molecules/reset-confirmation-form/ResetConfirmationForm.theme.js +9 -0
- package/src/components/molecules/reset-password-success/ResetPasswordSuccess.js +17 -5
- package/src/components/molecules/reset-password-success/ResetPasswordSuccess.theme.js +9 -0
package/dist/index.cjs.js
CHANGED
|
@@ -39714,7 +39714,11 @@ var WalletName = function WalletName(_ref) {
|
|
|
39714
39714
|
_ref$linkButtonExtraS = _ref.linkButtonExtraStyles,
|
|
39715
39715
|
linkButtonExtraStyles = _ref$linkButtonExtraS === void 0 ? "" : _ref$linkButtonExtraS,
|
|
39716
39716
|
_ref$isLoading = _ref.isLoading,
|
|
39717
|
-
isLoading = _ref$isLoading === void 0 ? false : _ref$isLoading
|
|
39717
|
+
isLoading = _ref$isLoading === void 0 ? false : _ref$isLoading,
|
|
39718
|
+
_ref$dataQa = _ref.dataQa,
|
|
39719
|
+
dataQa = _ref$dataQa === void 0 ? null : _ref$dataQa,
|
|
39720
|
+
_ref$actionTextPositi = _ref.actionTextPositionMobile,
|
|
39721
|
+
actionTextPositionMobile = _ref$actionTextPositi === void 0 ? "outside" : _ref$actionTextPositi;
|
|
39718
39722
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
39719
39723
|
isMobile = _useContext.isMobile;
|
|
39720
39724
|
return /*#__PURE__*/React__default.createElement(React.Fragment, null, /*#__PURE__*/React__default.createElement(Module$1, {
|
|
@@ -39737,17 +39741,18 @@ var WalletName = function WalletName(_ref) {
|
|
|
39737
39741
|
radius: "10",
|
|
39738
39742
|
cx: "12",
|
|
39739
39743
|
cy: "12"
|
|
39740
|
-
})) : mainText && /*#__PURE__*/React__default.createElement(Text$1, null, mainText)), !isMobile && /*#__PURE__*/React__default.createElement(Box, {
|
|
39744
|
+
})) : mainText && /*#__PURE__*/React__default.createElement(Text$1, null, mainText)), (actionTextPositionMobile === "inside" || !isMobile) && /*#__PURE__*/React__default.createElement(Box, {
|
|
39741
39745
|
padding: "0"
|
|
39742
39746
|
}, text && /*#__PURE__*/React__default.createElement(Text$1, {
|
|
39743
39747
|
variant: "pXS"
|
|
39744
39748
|
}, text), (text || actionText) && /*#__PURE__*/React__default.createElement(React__default.Fragment, null, "\xA0"), action && actionText && /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
39745
39749
|
disabled: disableAction,
|
|
39746
39750
|
text: actionText,
|
|
39751
|
+
dataQa: dataQa,
|
|
39747
39752
|
action: action,
|
|
39748
39753
|
variant: "smallGhost",
|
|
39749
39754
|
extraStyles: "\n margin: 0;\n min-width: 0;\n span {font-size: 0.75rem;}\n ".concat(linkButtonExtraStyles, "\n ")
|
|
39750
|
-
})))), isMobile && /*#__PURE__*/React__default.createElement(Cluster, {
|
|
39755
|
+
})))), !!isMobile && actionTextPositionMobile === "outside" && /*#__PURE__*/React__default.createElement(Cluster, {
|
|
39751
39756
|
align: "center",
|
|
39752
39757
|
justify: text || actionText ? "flex-end" : "flex-start",
|
|
39753
39758
|
extraStyles: "margin-top: 0.5rem;"
|
|
@@ -46661,9 +46666,6 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
46661
46666
|
setDetailedObligation(obligations, config, obligationAssocID);
|
|
46662
46667
|
navigateToDetailedObligation(detailsSlug);
|
|
46663
46668
|
};
|
|
46664
|
-
var handlePayNowClick = disableActions ? noop : function () {
|
|
46665
|
-
return handleClick(obligations);
|
|
46666
|
-
};
|
|
46667
46669
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
46668
46670
|
padding: isMobile ? "0" : "16px 0 0",
|
|
46669
46671
|
minWidth: "100%",
|
|
@@ -46745,7 +46747,9 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
46745
46747
|
padding: "0"
|
|
46746
46748
|
}, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
46747
46749
|
isLoading: isLoading,
|
|
46748
|
-
action:
|
|
46750
|
+
action: disableActions ? noop : function () {
|
|
46751
|
+
return handleClick(obligations);
|
|
46752
|
+
},
|
|
46749
46753
|
text: "Pay Now",
|
|
46750
46754
|
variant: isMobile ? "smallSecondary" : "secondary",
|
|
46751
46755
|
dataQa: "Pay Now",
|
|
@@ -46755,7 +46759,9 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
|
|
|
46755
46759
|
width: "100%"
|
|
46756
46760
|
}, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
46757
46761
|
isLoading: isLoading,
|
|
46758
|
-
action:
|
|
46762
|
+
action: disableActions ? noop : function () {
|
|
46763
|
+
return handleClick(obligations);
|
|
46764
|
+
},
|
|
46759
46765
|
text: "Pay Now",
|
|
46760
46766
|
variant: isMobile ? "smallSecondary" : "secondary",
|
|
46761
46767
|
dataQa: "Pay Now",
|
|
@@ -47492,7 +47498,11 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
47492
47498
|
buttonGroupStyles = _ref.buttonGroupStyles,
|
|
47493
47499
|
_ref$hideAdditionalBu = _ref.hideAdditionalButton,
|
|
47494
47500
|
hideAdditionalButton = _ref$hideAdditionalBu === void 0 ? false : _ref$hideAdditionalBu,
|
|
47495
|
-
additionalButton = _ref.additionalButton
|
|
47501
|
+
additionalButton = _ref.additionalButton,
|
|
47502
|
+
_ref$nextButtonTestId = _ref.nextButtonTestId,
|
|
47503
|
+
nextButtonTestId = _ref$nextButtonTestId === void 0 ? null : _ref$nextButtonTestId,
|
|
47504
|
+
_ref$backButtonTestId = _ref.backButtonTestId,
|
|
47505
|
+
backButtonTestId = _ref$backButtonTestId === void 0 ? null : _ref$backButtonTestId;
|
|
47496
47506
|
var _useContext = React.useContext(styled.ThemeContext),
|
|
47497
47507
|
isMobile = _useContext.isMobile;
|
|
47498
47508
|
var backButton = !!cancelURL && !!cancelText ? /*#__PURE__*/React__default.createElement(ButtonWithLink, {
|
|
@@ -47500,7 +47510,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
47500
47510
|
url: cancelURL,
|
|
47501
47511
|
variant: backButtonVariant,
|
|
47502
47512
|
extraStyles: isMobile && "flex-grow: 1",
|
|
47503
|
-
dataQa: cancelText,
|
|
47513
|
+
dataQa: backButtonTestId || cancelText,
|
|
47504
47514
|
"aria-labelledby": "".concat(kebabCaseString(cancelText), "-button"),
|
|
47505
47515
|
role: "link"
|
|
47506
47516
|
}) : backButtonAction && /*#__PURE__*/React__default.createElement(ButtonWithAction, {
|
|
@@ -47517,7 +47527,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
47517
47527
|
text: redirectText,
|
|
47518
47528
|
variant: forwardButtonVariant,
|
|
47519
47529
|
extraStyles: isMobile && "flex-grow: 1",
|
|
47520
|
-
dataQa: redirectText,
|
|
47530
|
+
dataQa: nextButtonTestId || redirectText,
|
|
47521
47531
|
disabled: isForwardButtonDisabled,
|
|
47522
47532
|
"aria-labelledby": "".concat(kebabCaseString(redirectText), "-button"),
|
|
47523
47533
|
role: forwardButtonAriaRole
|
|
@@ -47527,7 +47537,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
47527
47537
|
action: forwardButtonAction,
|
|
47528
47538
|
isLoading: forwardButtonLoading,
|
|
47529
47539
|
extraStyles: isMobile && "flex-grow: 1",
|
|
47530
|
-
dataQa: forwardButtonText,
|
|
47540
|
+
dataQa: nextButtonTestId || forwardButtonText,
|
|
47531
47541
|
disabled: isForwardButtonDisabled,
|
|
47532
47542
|
"aria-labelledby": "".concat(kebabCaseString(forwardButtonText), "-button"),
|
|
47533
47543
|
role: forwardButtonAriaRole
|
|
@@ -49051,7 +49061,7 @@ var InnerRadioSection = function InnerRadioSection(_ref) {
|
|
|
49051
49061
|
}, section.content))));
|
|
49052
49062
|
};
|
|
49053
49063
|
|
|
49054
|
-
var _excluded$E = ["themeValues", "isMobile", "supportsTouch", "sections", "openSection", "toggleOpenSection", "staggeredAnimation", "initiallyOpen", "openHeight", "containerStyles", "ariaDescribedBy", "isSectionRequired", "groupedSections"];
|
|
49064
|
+
var _excluded$E = ["themeValues", "isMobile", "supportsTouch", "sections", "openSection", "toggleOpenSection", "staggeredAnimation", "initiallyOpen", "openHeight", "containerStyles", "ariaDescribedBy", "isSectionRequired", "groupedSections", "borderOverride"];
|
|
49055
49065
|
|
|
49056
49066
|
/**
|
|
49057
49067
|
- The RadioSection component takes either a flat array (via the 'sections'
|
|
@@ -49099,6 +49109,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49099
49109
|
_ref$isSectionRequire = _ref.isSectionRequired,
|
|
49100
49110
|
isSectionRequired = _ref$isSectionRequire === void 0 ? false : _ref$isSectionRequire,
|
|
49101
49111
|
groupedSections = _ref.groupedSections,
|
|
49112
|
+
borderOverride = _ref.borderOverride,
|
|
49102
49113
|
rest = _objectWithoutProperties(_ref, _excluded$E);
|
|
49103
49114
|
var _useState = React.useState(null),
|
|
49104
49115
|
_useState2 = _slicedToArray(_useState, 2),
|
|
@@ -49131,7 +49142,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49131
49142
|
};
|
|
49132
49143
|
return /*#__PURE__*/React__default.createElement(Box, _extends({
|
|
49133
49144
|
padding: "1px",
|
|
49134
|
-
border: "1px solid ".concat(themeValues.borderColor),
|
|
49145
|
+
border: borderOverride || "1px solid ".concat(themeValues.borderColor),
|
|
49135
49146
|
borderRadius: "4px",
|
|
49136
49147
|
extraStyles: containerStyles,
|
|
49137
49148
|
role: "radiogroup",
|
|
@@ -49304,9 +49315,16 @@ RegistrationForm.reducer = reducer$9;
|
|
|
49304
49315
|
RegistrationForm.mapStateToProps = mapStateToProps$a;
|
|
49305
49316
|
RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
|
|
49306
49317
|
|
|
49318
|
+
var GRECIAN_GREY$1 = GRECIAN_GREY;
|
|
49319
|
+
var bannerBackgroundColor = GRECIAN_GREY$1;
|
|
49320
|
+
var fallbackValues$R = {
|
|
49321
|
+
bannerBackgroundColor: bannerBackgroundColor
|
|
49322
|
+
};
|
|
49323
|
+
|
|
49307
49324
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
49308
|
-
var
|
|
49309
|
-
|
|
49325
|
+
var themeContext = React.useContext(styled.ThemeContext);
|
|
49326
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$R, "ResetConfirmationForm");
|
|
49327
|
+
var isMobile = themeContext.isMobile;
|
|
49310
49328
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
49311
49329
|
padding: "0",
|
|
49312
49330
|
width: isMobile ? "auto" : "576px",
|
|
@@ -49314,7 +49332,7 @@ var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
|
49314
49332
|
background: WHITE,
|
|
49315
49333
|
boxShadow: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
|
|
49316
49334
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
49317
|
-
background:
|
|
49335
|
+
background: themeValues.bannerBackgroundColor,
|
|
49318
49336
|
minWidth: "100%",
|
|
49319
49337
|
padding: "0.5rem"
|
|
49320
49338
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
@@ -49418,9 +49436,16 @@ ResetPasswordForm.reducer = reducer$a;
|
|
|
49418
49436
|
ResetPasswordForm.mapStateToProps = mapStateToProps$b;
|
|
49419
49437
|
ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
49420
49438
|
|
|
49421
|
-
var
|
|
49422
|
-
|
|
49423
|
-
|
|
49439
|
+
var GRECIAN_GREY$2 = GRECIAN_GREY;
|
|
49440
|
+
var bannerBackgroundColor$1 = GRECIAN_GREY$2;
|
|
49441
|
+
var fallbackValues$S = {
|
|
49442
|
+
bannerBackgroundColor: bannerBackgroundColor$1
|
|
49443
|
+
};
|
|
49444
|
+
|
|
49445
|
+
var ResetPasswordSuccess = function ResetPasswordSuccess() {
|
|
49446
|
+
var themeContext = React.useContext(styled.ThemeContext);
|
|
49447
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$S, "ResetPasswordSuccess");
|
|
49448
|
+
var isMobile = themeContext.isMobile;
|
|
49424
49449
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
49425
49450
|
padding: "0",
|
|
49426
49451
|
width: isMobile ? "auto" : "576px",
|
|
@@ -49428,7 +49453,7 @@ var ResetConfirmationForm$2 = function ResetConfirmationForm() {
|
|
|
49428
49453
|
background: WHITE,
|
|
49429
49454
|
boxShadow: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)"
|
|
49430
49455
|
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
49431
|
-
background:
|
|
49456
|
+
background: themeValues.bannerBackgroundColor,
|
|
49432
49457
|
minWidth: "100%",
|
|
49433
49458
|
padding: "0.5rem"
|
|
49434
49459
|
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
@@ -49463,12 +49488,12 @@ var ResetConfirmationForm$2 = function ResetConfirmationForm() {
|
|
|
49463
49488
|
linkExtraStyles: "width: 100%;"
|
|
49464
49489
|
}))))));
|
|
49465
49490
|
};
|
|
49466
|
-
var ResetPasswordSuccess = withWindowSize(
|
|
49491
|
+
var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
|
|
49467
49492
|
|
|
49468
49493
|
var activeTabBackground = "#FFFFFF";
|
|
49469
49494
|
var activeTabAccent = "#15749D";
|
|
49470
49495
|
var activeTabHover = "#B8D5E1";
|
|
49471
|
-
var fallbackValues$
|
|
49496
|
+
var fallbackValues$T = {
|
|
49472
49497
|
activeTabBackground: activeTabBackground,
|
|
49473
49498
|
activeTabAccent: activeTabAccent,
|
|
49474
49499
|
activeTabHover: activeTabHover
|
|
@@ -49536,12 +49561,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
49536
49561
|
}, tab.content);
|
|
49537
49562
|
}))));
|
|
49538
49563
|
};
|
|
49539
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
49564
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$T);
|
|
49540
49565
|
|
|
49541
49566
|
var activeTabBackground$1 = "#FFFFFF";
|
|
49542
49567
|
var activeTabAccent$1 = "#15749D";
|
|
49543
49568
|
var activeTabHover$1 = "#B8D5E1";
|
|
49544
|
-
var fallbackValues$
|
|
49569
|
+
var fallbackValues$U = {
|
|
49545
49570
|
activeTabBackground: activeTabBackground$1,
|
|
49546
49571
|
activeTabAccent: activeTabAccent$1,
|
|
49547
49572
|
activeTabHover: activeTabHover$1
|
|
@@ -49596,7 +49621,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
49596
49621
|
}, text)))));
|
|
49597
49622
|
})));
|
|
49598
49623
|
};
|
|
49599
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
49624
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$U);
|
|
49600
49625
|
|
|
49601
49626
|
var Timeout = function Timeout(_ref) {
|
|
49602
49627
|
var onLogout = _ref.onLogout;
|
|
@@ -49696,7 +49721,7 @@ var fontColor$1 = WHITE;
|
|
|
49696
49721
|
var textAlign$1 = "left";
|
|
49697
49722
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
49698
49723
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
49699
|
-
var fallbackValues$
|
|
49724
|
+
var fallbackValues$V = {
|
|
49700
49725
|
fontWeight: fontWeight$9,
|
|
49701
49726
|
fontColor: fontColor$1,
|
|
49702
49727
|
textAlign: textAlign$1,
|
|
@@ -49741,7 +49766,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
49741
49766
|
src: welcomeImage
|
|
49742
49767
|
})))));
|
|
49743
49768
|
};
|
|
49744
|
-
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
49769
|
+
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$V));
|
|
49745
49770
|
|
|
49746
49771
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
49747
49772
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -49801,7 +49826,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
|
|
|
49801
49826
|
var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
|
|
49802
49827
|
var menuItemHoverBackgroundColorDelete = BLUSH_RED;
|
|
49803
49828
|
var menuItemHoverColor = ROYAL_BLUE_VIVID;
|
|
49804
|
-
var fallbackValues$
|
|
49829
|
+
var fallbackValues$W = {
|
|
49805
49830
|
menuItemBackgroundColor: menuItemBackgroundColor,
|
|
49806
49831
|
menuItemColor: menuItemColor,
|
|
49807
49832
|
menuItemColorDelete: menuItemColorDelete,
|
|
@@ -49868,13 +49893,13 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
|
|
|
49868
49893
|
extraStyles: textExtraStyles
|
|
49869
49894
|
}, text)));
|
|
49870
49895
|
};
|
|
49871
|
-
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$
|
|
49896
|
+
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$W);
|
|
49872
49897
|
|
|
49873
49898
|
var hoverColor$6 = "#116285";
|
|
49874
49899
|
var activeColor$a = "#0E506D";
|
|
49875
49900
|
var menuTriggerColor = "#15749D";
|
|
49876
49901
|
var backgroundColor$e = "white";
|
|
49877
|
-
var fallbackValues$
|
|
49902
|
+
var fallbackValues$X = {
|
|
49878
49903
|
hoverColor: hoverColor$6,
|
|
49879
49904
|
activeColor: activeColor$a,
|
|
49880
49905
|
menuTriggerColor: menuTriggerColor,
|
|
@@ -50010,10 +50035,10 @@ var PopupMenu = function PopupMenu(_ref) {
|
|
|
50010
50035
|
}, item));
|
|
50011
50036
|
})));
|
|
50012
50037
|
};
|
|
50013
|
-
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$
|
|
50038
|
+
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$X);
|
|
50014
50039
|
|
|
50015
50040
|
var pageBackground = "#FBFCFD";
|
|
50016
|
-
var fallbackValues$
|
|
50041
|
+
var fallbackValues$Y = {
|
|
50017
50042
|
pageBackground: pageBackground
|
|
50018
50043
|
};
|
|
50019
50044
|
|
|
@@ -50061,7 +50086,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
50061
50086
|
padding: "0"
|
|
50062
50087
|
})));
|
|
50063
50088
|
};
|
|
50064
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
50089
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$Y));
|
|
50065
50090
|
|
|
50066
50091
|
var CenterStack = function CenterStack(_ref) {
|
|
50067
50092
|
var header = _ref.header,
|
|
@@ -50104,7 +50129,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
50104
50129
|
padding: "0"
|
|
50105
50130
|
})));
|
|
50106
50131
|
};
|
|
50107
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
50132
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$Y));
|
|
50108
50133
|
|
|
50109
50134
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
50110
50135
|
var header = _ref.header,
|
|
@@ -50150,7 +50175,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
50150
50175
|
padding: "0"
|
|
50151
50176
|
})));
|
|
50152
50177
|
};
|
|
50153
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
50178
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$Y));
|
|
50154
50179
|
|
|
50155
50180
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
50156
50181
|
var header = _ref.header,
|
|
@@ -50203,7 +50228,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
50203
50228
|
padding: "0"
|
|
50204
50229
|
})));
|
|
50205
50230
|
};
|
|
50206
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
50231
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$Y));
|
|
50207
50232
|
|
|
50208
50233
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
50209
50234
|
var header = _ref.header,
|
|
@@ -50273,7 +50298,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
50273
50298
|
key: "footer-box"
|
|
50274
50299
|
})));
|
|
50275
50300
|
};
|
|
50276
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
50301
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$Y));
|
|
50277
50302
|
|
|
50278
50303
|
var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
50279
50304
|
var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
@@ -50471,7 +50496,7 @@ exports.RejectedVelocityIcon = RejectedVelocityIcon;
|
|
|
50471
50496
|
exports.ResetConfirmationForm = ResetConfirmationForm$1;
|
|
50472
50497
|
exports.ResetPasswordForm = ResetPasswordForm;
|
|
50473
50498
|
exports.ResetPasswordIcon = ResetPasswordIcon;
|
|
50474
|
-
exports.ResetPasswordSuccess = ResetPasswordSuccess;
|
|
50499
|
+
exports.ResetPasswordSuccess = ResetPasswordSuccess$1;
|
|
50475
50500
|
exports.RevenueManagementImage = RevenueManagementImage;
|
|
50476
50501
|
exports.RoutingNumberImage = RoutingNumberImage;
|
|
50477
50502
|
exports.SearchIcon = SearchIcon;
|