@thecb/components 11.2.4-beta.0 → 11.2.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 +169 -41
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +169 -42
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/link/ExternalLink.js +2 -0
- package/src/components/atoms/link/ExternalLink.styled.js +4 -1
- package/src/components/atoms/link/InternalLink.js +3 -1
- package/src/components/atoms/link/InternalLink.styled.js +4 -1
- package/src/components/molecules/contact-card/ContactCard.js +16 -11
- package/src/components/molecules/contact-card/ContactCard.stories.js +4 -0
- package/src/components/molecules/index.js +1 -0
- package/src/components/molecules/obligation/modules/InactiveTitleModule.js +1 -1
- package/src/components/molecules/registration-banner/RegistrationBanner.js +110 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.mdx +15 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.stories.js +80 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.styled.js +44 -0
- package/src/components/molecules/registration-banner/RegistrationBanner.theme.js +11 -0
- package/src/components/molecules/registration-banner/index.d.ts +15 -0
- package/src/components/molecules/registration-banner/index.js +3 -0
package/dist/index.cjs.js
CHANGED
|
@@ -22266,7 +22266,7 @@ var StyledExternalLink = styled__default( /*#__PURE__*/React.forwardRef(function
|
|
|
22266
22266
|
})).withConfig({
|
|
22267
22267
|
displayName: "ExternalLinkstyled__StyledExternalLink",
|
|
22268
22268
|
componentId: "sc-m1q2m2-0"
|
|
22269
|
-
})(["display:flex;font-size:", ";color:", ";font-weight:", ";font-family:", ";line-height:", ";text-decoration:", ";&:hover{color:", ";}&:focus{outline:3px solid ", ";outline-offset:2px;}&:active{color:", ";}", ""], function (_ref2) {
|
|
22269
|
+
})(["display:flex;font-size:", ";color:", ";font-weight:", ";font-family:", ";line-height:", ";text-decoration:", ";&:hover{color:", ";text-decoration:", ";}&:focus{outline:3px solid ", ";outline-offset:2px;text-decoration:", ";}&:active{color:", ";}", ""], function (_ref2) {
|
|
22270
22270
|
var size = _ref2.size;
|
|
22271
22271
|
return size;
|
|
22272
22272
|
}, function (_ref3) {
|
|
@@ -22281,14 +22281,17 @@ var StyledExternalLink = styled__default( /*#__PURE__*/React.forwardRef(function
|
|
|
22281
22281
|
}, function (_ref6) {
|
|
22282
22282
|
var lineheight = _ref6.lineheight;
|
|
22283
22283
|
return lineheight;
|
|
22284
|
-
},
|
|
22285
|
-
var
|
|
22284
|
+
}, function (_ref7) {
|
|
22285
|
+
var isUnderlined = _ref7.isUnderlined;
|
|
22286
|
+
return isUnderlined ? LINK_TEXT_DECORATION$3 : "none";
|
|
22287
|
+
}, function (_ref8) {
|
|
22288
|
+
var hoverColor = _ref8.hoverColor;
|
|
22286
22289
|
return hoverColor;
|
|
22287
|
-
}, ROYAL_BLUE$1, function (
|
|
22288
|
-
var activeColor =
|
|
22290
|
+
}, LINK_TEXT_DECORATION$3, ROYAL_BLUE$1, LINK_TEXT_DECORATION$3, function (_ref9) {
|
|
22291
|
+
var activeColor = _ref9.activeColor;
|
|
22289
22292
|
return activeColor;
|
|
22290
|
-
}, function (
|
|
22291
|
-
var extrastyles =
|
|
22293
|
+
}, function (_ref10) {
|
|
22294
|
+
var extrastyles = _ref10.extrastyles;
|
|
22292
22295
|
return extrastyles;
|
|
22293
22296
|
});
|
|
22294
22297
|
/* eslint-enable no-unused-vars */
|
|
@@ -22314,6 +22317,8 @@ var ExternalLink = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
22314
22317
|
tabIndex = _ref$tabIndex === void 0 ? "0" : _ref$tabIndex,
|
|
22315
22318
|
dataQa = _ref.dataQa,
|
|
22316
22319
|
ariaLabel = _ref.ariaLabel,
|
|
22320
|
+
_ref$isUnderlined = _ref.isUnderlined,
|
|
22321
|
+
isUnderlined = _ref$isUnderlined === void 0 ? true : _ref$isUnderlined,
|
|
22317
22322
|
children = _ref.children;
|
|
22318
22323
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
22319
22324
|
var themeValues = createThemeValues(themeContext, fallbackValues$a, "Link", variant);
|
|
@@ -22346,6 +22351,7 @@ var ExternalLink = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
22346
22351
|
rel: newTab ? "noopener" : "",
|
|
22347
22352
|
"data-qa": dataQa,
|
|
22348
22353
|
"aria-label": ariaLabel,
|
|
22354
|
+
isUnderlined: isUnderlined,
|
|
22349
22355
|
ref: ref
|
|
22350
22356
|
}, safeChildren(children, /*#__PURE__*/React__default.createElement("span", null))));
|
|
22351
22357
|
});
|
|
@@ -22373,7 +22379,7 @@ var StyledInternalLink = styled__default( /*#__PURE__*/React.forwardRef(function
|
|
|
22373
22379
|
})).withConfig({
|
|
22374
22380
|
displayName: "InternalLinkstyled__StyledInternalLink",
|
|
22375
22381
|
componentId: "sc-cuqxud-0"
|
|
22376
|
-
})(["display:flex;color:", ";font-weight:", ";line-height:", ";font-size:", ";font-family:", ";margin:", ";text-decoration:", ";&:hover{color:", ";}&:focus{outline:3px solid ", ";outline-offset:2px;}&:active{color:", ";}", ""], function (_ref2) {
|
|
22382
|
+
})(["display:flex;color:", ";font-weight:", ";line-height:", ";font-size:", ";font-family:", ";margin:", ";text-decoration:", ";&:hover{color:", ";text-decoration:", ";}&:focus{outline:3px solid ", ";outline-offset:2px;text-decoration:", ";}&:active{color:", ";}", ""], function (_ref2) {
|
|
22377
22383
|
var color = _ref2.color,
|
|
22378
22384
|
active = _ref2.active,
|
|
22379
22385
|
activeColor = _ref2.activeColor;
|
|
@@ -22393,14 +22399,17 @@ var StyledInternalLink = styled__default( /*#__PURE__*/React.forwardRef(function
|
|
|
22393
22399
|
}, function (_ref7) {
|
|
22394
22400
|
var margin = _ref7.margin;
|
|
22395
22401
|
return margin;
|
|
22396
|
-
},
|
|
22397
|
-
var
|
|
22402
|
+
}, function (_ref8) {
|
|
22403
|
+
var isUnderlined = _ref8.isUnderlined;
|
|
22404
|
+
return isUnderlined ? LINK_TEXT_DECORATION$4 : "none";
|
|
22405
|
+
}, function (_ref9) {
|
|
22406
|
+
var hoverColor = _ref9.hoverColor;
|
|
22398
22407
|
return hoverColor;
|
|
22399
|
-
}, ROYAL_BLUE$2, function (
|
|
22400
|
-
var activeColor =
|
|
22408
|
+
}, LINK_TEXT_DECORATION$4, ROYAL_BLUE$2, LINK_TEXT_DECORATION$4, function (_ref10) {
|
|
22409
|
+
var activeColor = _ref10.activeColor;
|
|
22401
22410
|
return activeColor;
|
|
22402
|
-
}, function (
|
|
22403
|
-
var extrastyles =
|
|
22411
|
+
}, function (_ref11) {
|
|
22412
|
+
var extrastyles = _ref11.extrastyles;
|
|
22404
22413
|
return extrastyles;
|
|
22405
22414
|
});
|
|
22406
22415
|
/* eslint-enable no-unused-vars */
|
|
@@ -22421,7 +22430,9 @@ var InternalLink = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
22421
22430
|
tabIndex = _ref$tabIndex === void 0 ? "0" : _ref$tabIndex,
|
|
22422
22431
|
dataQa = _ref.dataQa,
|
|
22423
22432
|
_ref$extraStyles = _ref.extraStyles,
|
|
22424
|
-
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles
|
|
22433
|
+
extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
|
|
22434
|
+
_ref$isUnderlined = _ref.isUnderlined,
|
|
22435
|
+
isUnderlined = _ref$isUnderlined === void 0 ? true : _ref$isUnderlined;
|
|
22425
22436
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
22426
22437
|
var themeValues = createThemeValues(themeContext, fallbackValues$a, "Link", variant);
|
|
22427
22438
|
return /*#__PURE__*/React__default.createElement(StyledInternalLink, {
|
|
@@ -22438,6 +22449,7 @@ var InternalLink = /*#__PURE__*/React.forwardRef(function (_ref, ref) {
|
|
|
22438
22449
|
tabIndex: tabIndex,
|
|
22439
22450
|
extrastyles: extraStyles,
|
|
22440
22451
|
"data-qa": dataQa,
|
|
22452
|
+
isUnderlined: isUnderlined,
|
|
22441
22453
|
ref: ref
|
|
22442
22454
|
}, safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
|
|
22443
22455
|
});
|
|
@@ -47245,7 +47257,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
|
|
|
47245
47257
|
variant: "extraSmall",
|
|
47246
47258
|
as: "p",
|
|
47247
47259
|
color: BLACK
|
|
47248
|
-
}, "This may mean the
|
|
47260
|
+
}, "This may mean that the account has been paid off or there was an error loading it. If you have questions about this account, please contact us.".concat(autoPayEnabled ? " You may disable autopay for this account by pressing the 'Turn off Autopay' button." : ""))));
|
|
47249
47261
|
};
|
|
47250
47262
|
|
|
47251
47263
|
var iconColor = ROYAL_BLUE_VIVID;
|
|
@@ -49720,6 +49732,116 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49720
49732
|
};
|
|
49721
49733
|
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$T);
|
|
49722
49734
|
|
|
49735
|
+
var fallbackValues$U = {
|
|
49736
|
+
primaryColor: ROYAL_BLUE_VIVID,
|
|
49737
|
+
secondaryColor: CHARADE_GREY,
|
|
49738
|
+
background: CORNFLOWER_BLUE
|
|
49739
|
+
};
|
|
49740
|
+
|
|
49741
|
+
var BannerContainer = styled__default(Cluster).withConfig({
|
|
49742
|
+
displayName: "RegistrationBannerstyled__BannerContainer",
|
|
49743
|
+
componentId: "sc-1m1lm4y-0"
|
|
49744
|
+
})(["background:", ";padding:", ";"], function (_ref) {
|
|
49745
|
+
var themeValues = _ref.themeValues;
|
|
49746
|
+
return adjustHexColor(themeValues.background, 10, "lighten");
|
|
49747
|
+
}, function (_ref2) {
|
|
49748
|
+
var isMobile = _ref2.isMobile;
|
|
49749
|
+
return isMobile ? "1rem 2rem" : " 2rem 8.25rem";
|
|
49750
|
+
});
|
|
49751
|
+
var ContentContainer = styled__default(Cluster).withConfig({
|
|
49752
|
+
displayName: "RegistrationBannerstyled__ContentContainer",
|
|
49753
|
+
componentId: "sc-1m1lm4y-1"
|
|
49754
|
+
})(["padding:0;width:", ";> div{flex-direction:", ";}"], function (_ref3) {
|
|
49755
|
+
var isMobile = _ref3.isMobile;
|
|
49756
|
+
return isMobile ? "296px" : " 1176px";
|
|
49757
|
+
}, function (_ref4) {
|
|
49758
|
+
var isMobile = _ref4.isMobile;
|
|
49759
|
+
return isMobile ? "column" : "row";
|
|
49760
|
+
});
|
|
49761
|
+
var ButtonContainer = styled__default(Stack).withConfig({
|
|
49762
|
+
displayName: "RegistrationBannerstyled__ButtonContainer",
|
|
49763
|
+
componentId: "sc-1m1lm4y-2"
|
|
49764
|
+
})(["align-items:center;> a{width:", ";}"], function (_ref5) {
|
|
49765
|
+
var isMobile = _ref5.isMobile;
|
|
49766
|
+
return isMobile ? "296px" : "222px";
|
|
49767
|
+
});
|
|
49768
|
+
var RegisterLink = styled__default(ButtonWithLink).withConfig({
|
|
49769
|
+
displayName: "RegistrationBannerstyled__RegisterLink",
|
|
49770
|
+
componentId: "sc-1m1lm4y-3"
|
|
49771
|
+
})(["border-radius:100px;margin:0;width:100%;"]);
|
|
49772
|
+
var LoginLink = styled__default(ButtonWithLink).withConfig({
|
|
49773
|
+
displayName: "RegistrationBannerstyled__LoginLink",
|
|
49774
|
+
componentId: "sc-1m1lm4y-4"
|
|
49775
|
+
})(["border-radius:100px;padding:0;margin:0;width:100%;min-height:2rem;margin-top:0px;border:none;&:hover{text-decoration:none;}"]);
|
|
49776
|
+
|
|
49777
|
+
var RegistrationBanner = function RegistrationBanner(_ref) {
|
|
49778
|
+
var clientName = _ref.clientName,
|
|
49779
|
+
extraStyles = _ref.extraStyles,
|
|
49780
|
+
_ref$loginLink = _ref.loginLink,
|
|
49781
|
+
loginLink = _ref$loginLink === void 0 ? "/login" : _ref$loginLink,
|
|
49782
|
+
_ref$registrationLink = _ref.registrationLink,
|
|
49783
|
+
registrationLink = _ref$registrationLink === void 0 ? "/registration" : _ref$registrationLink,
|
|
49784
|
+
themeValues = _ref.themeValues,
|
|
49785
|
+
titleAs = _ref.titleAs,
|
|
49786
|
+
titleVariant = _ref.titleVariant;
|
|
49787
|
+
var themeContext = React.useContext(styled.ThemeContext);
|
|
49788
|
+
var isMobile = themeContext.isMobile;
|
|
49789
|
+
return /*#__PURE__*/React__default.createElement(BannerContainer, {
|
|
49790
|
+
extraStyles: extraStyles,
|
|
49791
|
+
themeValues: themeValues,
|
|
49792
|
+
isMobile: isMobile,
|
|
49793
|
+
"aria-label": "Registration Banner",
|
|
49794
|
+
justify: "center"
|
|
49795
|
+
}, /*#__PURE__*/React__default.createElement(ContentContainer, {
|
|
49796
|
+
align: "center",
|
|
49797
|
+
justify: "space-between",
|
|
49798
|
+
overflow: "visible",
|
|
49799
|
+
isMobile: isMobile
|
|
49800
|
+
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
49801
|
+
padding: "0",
|
|
49802
|
+
textAlign: "left"
|
|
49803
|
+
}, /*#__PURE__*/React__default.createElement(Heading$1, {
|
|
49804
|
+
as: titleAs,
|
|
49805
|
+
color: themeValues.primaryColor,
|
|
49806
|
+
fontSize: isMobile ? FONT_SIZE.XL : "1.5rem",
|
|
49807
|
+
variant: titleVariant,
|
|
49808
|
+
weight: FONT_WEIGHT_SEMIBOLD
|
|
49809
|
+
}, "Register for a ", clientName, " Wallet Account"), /*#__PURE__*/React__default.createElement(Text$1, {
|
|
49810
|
+
extraStyles: "\n display: block;\n padding: ".concat(isMobile ? ".125rem 0 1rem" : "0", "\n "),
|
|
49811
|
+
fontSize: isMobile ? FONT_SIZE.SM : FONT_SIZE.LG,
|
|
49812
|
+
color: themeValues.secondaryColor
|
|
49813
|
+
}, "Save payment methods and information for fast, easy, and safe payments with ", clientName)), /*#__PURE__*/React__default.createElement(ButtonContainer, {
|
|
49814
|
+
justify: "space-between",
|
|
49815
|
+
fullHeight: true,
|
|
49816
|
+
childGap: "0.5rem",
|
|
49817
|
+
isMobile: isMobile
|
|
49818
|
+
}, /*#__PURE__*/React__default.createElement(RegisterLink, {
|
|
49819
|
+
variant: "secondary",
|
|
49820
|
+
color: themeValues.primaryColor,
|
|
49821
|
+
contentOverride: true,
|
|
49822
|
+
fontWeight: FONT_WEIGHT_SEMIBOLD,
|
|
49823
|
+
url: registrationLink
|
|
49824
|
+
}, /*#__PURE__*/React__default.createElement(Cluster, {
|
|
49825
|
+
justify: "center",
|
|
49826
|
+
align: "center"
|
|
49827
|
+
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
49828
|
+
extraStyles: "margin-right: 0.5rem",
|
|
49829
|
+
fontSize: isMobile ? FONT_SIZE.MD : FONT_SIZE.LG,
|
|
49830
|
+
color: themeValues.primaryColor,
|
|
49831
|
+
weight: FONT_WEIGHT_SEMIBOLD
|
|
49832
|
+
}, "Register Now"), /*#__PURE__*/React__default.createElement(ArrowRightIcon, null))), /*#__PURE__*/React__default.createElement(LoginLink, {
|
|
49833
|
+
text: "Log In",
|
|
49834
|
+
variant: "secondary",
|
|
49835
|
+
contentOverride: true,
|
|
49836
|
+
url: loginLink
|
|
49837
|
+
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
49838
|
+
fontSize: isMobile ? FONT_SIZE.SM : FONT_SIZE.MD,
|
|
49839
|
+
color: themeValues.primaryColor,
|
|
49840
|
+
weight: FONT_WEIGHT_SEMIBOLD
|
|
49841
|
+
}, "or Log In")))));
|
|
49842
|
+
};
|
|
49843
|
+
var RegistrationBanner$1 = withWindowSize(themeComponent(RegistrationBanner, "RegistrationBanner", fallbackValues$U));
|
|
49844
|
+
|
|
49723
49845
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49724
49846
|
var clearOnDismount = _ref.clearOnDismount,
|
|
49725
49847
|
fields = _ref.fields,
|
|
@@ -49838,13 +49960,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
|
|
|
49838
49960
|
|
|
49839
49961
|
var GRECIAN_GREY$1 = GRECIAN_GREY;
|
|
49840
49962
|
var bannerBackgroundColor = GRECIAN_GREY$1;
|
|
49841
|
-
var fallbackValues$
|
|
49963
|
+
var fallbackValues$V = {
|
|
49842
49964
|
bannerBackgroundColor: bannerBackgroundColor
|
|
49843
49965
|
};
|
|
49844
49966
|
|
|
49845
49967
|
var ResetConfirmationForm = function ResetConfirmationForm() {
|
|
49846
49968
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
49847
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
49969
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$V, "ResetConfirmationForm");
|
|
49848
49970
|
var isMobile = themeContext.isMobile;
|
|
49849
49971
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
49850
49972
|
padding: "0",
|
|
@@ -49959,13 +50081,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
|
|
|
49959
50081
|
|
|
49960
50082
|
var GRECIAN_GREY$2 = GRECIAN_GREY;
|
|
49961
50083
|
var bannerBackgroundColor$1 = GRECIAN_GREY$2;
|
|
49962
|
-
var fallbackValues$
|
|
50084
|
+
var fallbackValues$W = {
|
|
49963
50085
|
bannerBackgroundColor: bannerBackgroundColor$1
|
|
49964
50086
|
};
|
|
49965
50087
|
|
|
49966
50088
|
var ResetPasswordSuccess = function ResetPasswordSuccess() {
|
|
49967
50089
|
var themeContext = React.useContext(styled.ThemeContext);
|
|
49968
|
-
var themeValues = createThemeValues(themeContext, fallbackValues$
|
|
50090
|
+
var themeValues = createThemeValues(themeContext, fallbackValues$W, "ResetPasswordSuccess");
|
|
49969
50091
|
var isMobile = themeContext.isMobile;
|
|
49970
50092
|
return /*#__PURE__*/React__default.createElement(Box, {
|
|
49971
50093
|
padding: "0",
|
|
@@ -50014,7 +50136,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
|
|
|
50014
50136
|
var activeTabBackground = "#FFFFFF";
|
|
50015
50137
|
var activeTabAccent = "#15749D";
|
|
50016
50138
|
var activeTabHover = "#B8D5E1";
|
|
50017
|
-
var fallbackValues$
|
|
50139
|
+
var fallbackValues$X = {
|
|
50018
50140
|
activeTabBackground: activeTabBackground,
|
|
50019
50141
|
activeTabAccent: activeTabAccent,
|
|
50020
50142
|
activeTabHover: activeTabHover
|
|
@@ -50082,12 +50204,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
50082
50204
|
}, tab.content);
|
|
50083
50205
|
}))));
|
|
50084
50206
|
};
|
|
50085
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
50207
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$X);
|
|
50086
50208
|
|
|
50087
50209
|
var activeTabBackground$1 = "#FFFFFF";
|
|
50088
50210
|
var activeTabAccent$1 = "#15749D";
|
|
50089
50211
|
var activeTabHover$1 = "#B8D5E1";
|
|
50090
|
-
var fallbackValues$
|
|
50212
|
+
var fallbackValues$Y = {
|
|
50091
50213
|
activeTabBackground: activeTabBackground$1,
|
|
50092
50214
|
activeTabAccent: activeTabAccent$1,
|
|
50093
50215
|
activeTabHover: activeTabHover$1
|
|
@@ -50144,7 +50266,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
50144
50266
|
}, text)))));
|
|
50145
50267
|
})));
|
|
50146
50268
|
};
|
|
50147
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
50269
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$Y);
|
|
50148
50270
|
|
|
50149
50271
|
var Timeout = function Timeout(_ref) {
|
|
50150
50272
|
var onLogout = _ref.onLogout;
|
|
@@ -50265,7 +50387,7 @@ var fontColor$1 = WHITE;
|
|
|
50265
50387
|
var textAlign$1 = "left";
|
|
50266
50388
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
50267
50389
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
50268
|
-
var fallbackValues$
|
|
50390
|
+
var fallbackValues$Z = {
|
|
50269
50391
|
fontWeight: fontWeight$8,
|
|
50270
50392
|
fontColor: fontColor$1,
|
|
50271
50393
|
textAlign: textAlign$1,
|
|
@@ -50310,7 +50432,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
50310
50432
|
src: welcomeImage
|
|
50311
50433
|
})))));
|
|
50312
50434
|
};
|
|
50313
|
-
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
50435
|
+
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$Z));
|
|
50314
50436
|
|
|
50315
50437
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
50316
50438
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -50370,7 +50492,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
|
|
|
50370
50492
|
var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
|
|
50371
50493
|
var menuItemHoverBackgroundColorDelete = BLUSH_RED;
|
|
50372
50494
|
var menuItemHoverColor = ROYAL_BLUE_VIVID;
|
|
50373
|
-
var fallbackValues$
|
|
50495
|
+
var fallbackValues$_ = {
|
|
50374
50496
|
menuItemBackgroundColor: menuItemBackgroundColor,
|
|
50375
50497
|
menuItemColor: menuItemColor,
|
|
50376
50498
|
menuItemColorDelete: menuItemColorDelete,
|
|
@@ -50437,13 +50559,13 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
|
|
|
50437
50559
|
extraStyles: textExtraStyles
|
|
50438
50560
|
}, text)));
|
|
50439
50561
|
};
|
|
50440
|
-
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$
|
|
50562
|
+
var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$_);
|
|
50441
50563
|
|
|
50442
50564
|
var hoverColor$5 = "#116285";
|
|
50443
50565
|
var activeColor$a = "#0E506D";
|
|
50444
50566
|
var menuTriggerColor = "#15749D";
|
|
50445
50567
|
var backgroundColor$e = "white";
|
|
50446
|
-
var fallbackValues
|
|
50568
|
+
var fallbackValues$$ = {
|
|
50447
50569
|
hoverColor: hoverColor$5,
|
|
50448
50570
|
activeColor: activeColor$a,
|
|
50449
50571
|
menuTriggerColor: menuTriggerColor,
|
|
@@ -50579,13 +50701,13 @@ var PopupMenu = function PopupMenu(_ref) {
|
|
|
50579
50701
|
}, item));
|
|
50580
50702
|
})));
|
|
50581
50703
|
};
|
|
50582
|
-
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues
|
|
50704
|
+
var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$$);
|
|
50583
50705
|
|
|
50584
50706
|
var primaryColor$1 = WHITE;
|
|
50585
50707
|
var primaryHoverColor = INFO_BLUE;
|
|
50586
50708
|
var secondaryColor = MATISSE_BLUE;
|
|
50587
50709
|
var secondaryHoverColor = "#115D7E";
|
|
50588
|
-
var fallbackValues
|
|
50710
|
+
var fallbackValues$10 = {
|
|
50589
50711
|
primaryColor: primaryColor$1,
|
|
50590
50712
|
primaryHoverColor: primaryHoverColor,
|
|
50591
50713
|
secondaryColor: secondaryColor,
|
|
@@ -51287,7 +51409,7 @@ var MultipleSelectFilter = function MultipleSelectFilter(_ref) {
|
|
|
51287
51409
|
ariaLabel: "Apply all filters"
|
|
51288
51410
|
}))));
|
|
51289
51411
|
};
|
|
51290
|
-
var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues
|
|
51412
|
+
var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues$10);
|
|
51291
51413
|
|
|
51292
51414
|
var TextWrapStyles = styled.css(["word-wrap:break-word;overflow-wrap:break-word;white-space:normal;max-width:100%;"]);
|
|
51293
51415
|
var Container$1 = styled__default(Box).withConfig({
|
|
@@ -51333,7 +51455,7 @@ var ContactCard = function ContactCard(_ref) {
|
|
|
51333
51455
|
background: WHITE,
|
|
51334
51456
|
boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.25)",
|
|
51335
51457
|
dataQa: createIdFromString(title, "contact-card"),
|
|
51336
|
-
maxWidth:
|
|
51458
|
+
maxWidth: "100%",
|
|
51337
51459
|
minWidth: isMobile ? "240px" : "208px",
|
|
51338
51460
|
minHeight: "141px",
|
|
51339
51461
|
padding: "1.5rem",
|
|
@@ -51386,7 +51508,8 @@ var ContactCard = function ContactCard(_ref) {
|
|
|
51386
51508
|
dataQa: linkID,
|
|
51387
51509
|
href: link.link,
|
|
51388
51510
|
newTab: true,
|
|
51389
|
-
|
|
51511
|
+
isUnderlined: false,
|
|
51512
|
+
extraStyles: "\n flex-direction: row;\n align-items: center;\n align-content: flex-start;\n justify-content: space-between;\n word-break: break-word;\n ".concat(TextWrapStyles, "\n "),
|
|
51390
51513
|
size: FONT_SIZE.SM,
|
|
51391
51514
|
lineHeight: "1.313rem"
|
|
51392
51515
|
}, link.text, /*#__PURE__*/React__default.createElement(ExternalLinkIcon, {
|
|
@@ -51398,13 +51521,17 @@ var ContactCard = function ContactCard(_ref) {
|
|
|
51398
51521
|
to: link.link,
|
|
51399
51522
|
dataQa: linkID,
|
|
51400
51523
|
fontSize: FONT_SIZE.SM,
|
|
51401
|
-
|
|
51524
|
+
color: linkThemeValues.externalLinkColor,
|
|
51525
|
+
isUnderlined: false,
|
|
51526
|
+
active: false,
|
|
51527
|
+
lineheight: "1.313rem",
|
|
51528
|
+
extraStyles: "\n word-break: break-word;\n ".concat(TextWrapStyles, "\n ")
|
|
51402
51529
|
}, link.text));
|
|
51403
51530
|
})))));
|
|
51404
51531
|
};
|
|
51405
51532
|
|
|
51406
51533
|
var pageBackground = "#FBFCFD";
|
|
51407
|
-
var fallbackValues$
|
|
51534
|
+
var fallbackValues$11 = {
|
|
51408
51535
|
pageBackground: pageBackground
|
|
51409
51536
|
};
|
|
51410
51537
|
|
|
@@ -51452,7 +51579,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
51452
51579
|
padding: "0"
|
|
51453
51580
|
})));
|
|
51454
51581
|
};
|
|
51455
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
51582
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$11));
|
|
51456
51583
|
|
|
51457
51584
|
var CenterStack = function CenterStack(_ref) {
|
|
51458
51585
|
var header = _ref.header,
|
|
@@ -51495,7 +51622,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
51495
51622
|
padding: "0"
|
|
51496
51623
|
})));
|
|
51497
51624
|
};
|
|
51498
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
51625
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$11));
|
|
51499
51626
|
|
|
51500
51627
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
51501
51628
|
var header = _ref.header,
|
|
@@ -51541,7 +51668,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
51541
51668
|
padding: "0"
|
|
51542
51669
|
})));
|
|
51543
51670
|
};
|
|
51544
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
51671
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$11));
|
|
51545
51672
|
|
|
51546
51673
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
51547
51674
|
var header = _ref.header,
|
|
@@ -51594,7 +51721,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
51594
51721
|
padding: "0"
|
|
51595
51722
|
})));
|
|
51596
51723
|
};
|
|
51597
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
51724
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$11));
|
|
51598
51725
|
|
|
51599
51726
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
51600
51727
|
var header = _ref.header,
|
|
@@ -51664,7 +51791,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
51664
51791
|
key: "footer-box"
|
|
51665
51792
|
})));
|
|
51666
51793
|
};
|
|
51667
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
51794
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$11));
|
|
51668
51795
|
|
|
51669
51796
|
var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
|
|
51670
51797
|
var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
|
|
@@ -51903,6 +52030,7 @@ exports.Reel = Reel;
|
|
|
51903
52030
|
exports.RefundIcon = RefundIcon;
|
|
51904
52031
|
exports.RefundIconMedium = RefundIconMedium;
|
|
51905
52032
|
exports.RefundIconSmall = RefundIconSmall;
|
|
52033
|
+
exports.RegistrationBanner = RegistrationBanner$1;
|
|
51906
52034
|
exports.RegistrationForm = RegistrationForm;
|
|
51907
52035
|
exports.RejectedIcon = RejectedIcon;
|
|
51908
52036
|
exports.RejectedVelocityIcon = RejectedVelocityIcon;
|