@thecb/components 8.4.5-beta.6 → 8.4.5-beta.8
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 +71 -60
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +71 -60
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/molecules/link-card/LinkCard.js +8 -18
- package/src/components/molecules/link-card/LinkCard.stories.js +5 -5
- package/src/components/molecules/link-card/LinkCard.styled.js +9 -9
- package/src/components/molecules/link-card/LinkCard.theme.js +4 -4
package/dist/index.esm.js
CHANGED
|
@@ -42943,32 +42943,43 @@ var PROPERTIES_COMMERCIAL_AUTO_ICON = "PROPERTIES_COMMERCIAL_AUTO";
|
|
|
42943
42943
|
var MISC_BILL_ICON = "MISC_SINGLE_BILL";
|
|
42944
42944
|
var iconsMap = (_iconsMap = {}, _defineProperty(_iconsMap, ACCOUNTS_GENERIC_ICON, AccountGenericIcon), _defineProperty(_iconsMap, ACCOUNTS_CONSTRUCTION_ICON, AccountConstructionIcon), _defineProperty(_iconsMap, ACCOUNTS_HEALTH_ICON, AccountMedicalIcon), _defineProperty(_iconsMap, ACCOUNTS_DENTAL_ICON, AccountDentalIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_ELECTRIC_ICON, AccountElectricIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_GARBAGE_ICON, AccountGarbageIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_GAS_ICON, AccountGasIcon), _defineProperty(_iconsMap, ACCOUNTS_UTILITY_WATER_ICON, AccountWaterIcon), _defineProperty(_iconsMap, PROPERTIES_PERSONAL_ICON, PropertyPersonalIcon), _defineProperty(_iconsMap, PROPERTIES_GARAGE_ICON, PropertyGarageIcon), _defineProperty(_iconsMap, PROPERTIES_BUSINESS_ICON, PropertyBusinessIcon), _defineProperty(_iconsMap, PROPERTIES_STOREFRONT_ICON, PropertyStorefrontIcon), _defineProperty(_iconsMap, PROPERTIES_APARTMENT_ICON, PropertyApartmentIcon), _defineProperty(_iconsMap, PROPERTIES_LAND_ICON, PropertyLandIcon), _defineProperty(_iconsMap, PROPERTIES_CAR_ICON, PropertyCarIcon), _defineProperty(_iconsMap, PROPERTIES_MOTORCYCLE_ICON, PropertyMotorcycleIcon), _defineProperty(_iconsMap, PROPERTIES_COMMERCIAL_AUTO_ICON, PropertyCommercialVehicleIcon), _defineProperty(_iconsMap, MISC_BILL_ICON, AccountBillIcon), _iconsMap);
|
|
42945
42945
|
|
|
42946
|
+
var activeBackgroundColor$1 = CORNFLOWER_BLUE;
|
|
42947
|
+
var backgroundColor$9 = LINK_WATER;
|
|
42948
|
+
var borderColor$5 = MOON_RAKER;
|
|
42949
|
+
var color$b = ROYAL_BLUE_VIVID;
|
|
42950
|
+
var fallbackValues$I = {
|
|
42951
|
+
activeBackgroundColor: activeBackgroundColor$1,
|
|
42952
|
+
backgroundColor: backgroundColor$9,
|
|
42953
|
+
borderColor: borderColor$5,
|
|
42954
|
+
color: color$b
|
|
42955
|
+
};
|
|
42956
|
+
|
|
42946
42957
|
var Container = styled(Box).withConfig({
|
|
42947
42958
|
displayName: "LinkCardstyled__Container",
|
|
42948
42959
|
componentId: "sc-l5q1h2-0"
|
|
42949
42960
|
})(["display:flex;flex-direction:column;align-items:flex-start;width:100%;gap:40px;flex-shrink:0;align-self:stretch;border-radius:8px;", " transition:all .2s ease-in-out;&:hover,&:active{cursor:pointer;box-shadow:0px 0px 0px 0px rgba(41,42,51,0.1),0px 5px 11px 0px rgba(41,42,51,0.1),0px 4px 19px 0px rgba(41,42,51,0.09),0px 27px 26px 0px rgba(41,42,51,0.05),0px 56px 31px 0px rgba(41,42,51,0.01),0px 80px 33px 0px rgba(41,42,51,0);}&:hover:not(:active){", "}&:active{", "}"], function (_ref) {
|
|
42950
|
-
var
|
|
42951
|
-
return "\n background-color: ".concat(
|
|
42961
|
+
var theme = _ref.theme;
|
|
42962
|
+
return "\n background-color: ".concat(theme.backgroundColor, ";\n border: 1px solid ").concat(theme.borderColor, ";\n ");
|
|
42952
42963
|
}, function (_ref2) {
|
|
42953
|
-
var
|
|
42954
|
-
return "border: 1px solid ".concat(
|
|
42964
|
+
var theme = _ref2.theme;
|
|
42965
|
+
return "border: 1px solid ".concat(theme.borderColor, ";");
|
|
42955
42966
|
}, function (_ref3) {
|
|
42956
|
-
var
|
|
42957
|
-
return "\n background-color: ".concat(
|
|
42967
|
+
var theme = _ref3.theme;
|
|
42968
|
+
return "\n background-color: ".concat(theme.activeBackgroundColor, ";\n border: 1px solid ").concat(theme.color, ";\n ;");
|
|
42958
42969
|
});
|
|
42959
42970
|
var Title$2 = styled(Heading$1).withConfig({
|
|
42960
42971
|
displayName: "LinkCardstyled__Title",
|
|
42961
42972
|
componentId: "sc-l5q1h2-1"
|
|
42962
42973
|
})(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;font-size:16px;line-height:150%;background-color:transparent;font-weight:", ";", ";"], FONT_WEIGHT_SEMIBOLD, function (_ref4) {
|
|
42963
|
-
var
|
|
42964
|
-
return "color: ".concat(
|
|
42974
|
+
var theme = _ref4.theme;
|
|
42975
|
+
return "color: ".concat(theme.color, ";");
|
|
42965
42976
|
});
|
|
42966
42977
|
var Subtitle = styled(Paragraph$1).withConfig({
|
|
42967
42978
|
displayName: "LinkCardstyled__Subtitle",
|
|
42968
42979
|
componentId: "sc-l5q1h2-2"
|
|
42969
42980
|
})(["overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;font-size:14px;line-height:150 %;letter-spacing:0.14px;font-weight:", ";", ";"], FONT_WEIGHT_SEMIBOLD, function (_ref5) {
|
|
42970
|
-
var
|
|
42971
|
-
return "color: ".concat(
|
|
42981
|
+
var theme = _ref5.theme;
|
|
42982
|
+
return "color: ".concat(theme.color, ";");
|
|
42972
42983
|
});
|
|
42973
42984
|
var Footer = styled(Stack).withConfig({
|
|
42974
42985
|
displayName: "LinkCardstyled__Footer",
|
|
@@ -42994,7 +43005,6 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
42994
43005
|
themeValues = _ref.themeValues,
|
|
42995
43006
|
_ref$titleVariant = _ref.titleVariant,
|
|
42996
43007
|
titleVariant = _ref$titleVariant === void 0 ? "h3" : _ref$titleVariant;
|
|
42997
|
-
console.log("LinkCard themeValues", themeValues);
|
|
42998
43008
|
|
|
42999
43009
|
var _useContext = useContext(ThemeContext),
|
|
43000
43010
|
isMobile = _useContext.isMobile;
|
|
@@ -43009,7 +43019,7 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
43009
43019
|
minWidth: isMobile ? "240px" : "288px",
|
|
43010
43020
|
minHeight: "141px",
|
|
43011
43021
|
padding: "24px",
|
|
43012
|
-
|
|
43022
|
+
theme: themeValues,
|
|
43013
43023
|
extraStyles: extraStyles,
|
|
43014
43024
|
hoverStyles: extraHoverStyles,
|
|
43015
43025
|
activeStyles: extraActiveStyles,
|
|
@@ -43027,26 +43037,27 @@ var LinkCard = function LinkCard(_ref) {
|
|
|
43027
43037
|
width: "100%"
|
|
43028
43038
|
}, /*#__PURE__*/React.createElement(Title$2, {
|
|
43029
43039
|
variant: titleVariant,
|
|
43030
|
-
|
|
43040
|
+
theme: themeValues,
|
|
43031
43041
|
margin: 0
|
|
43032
43042
|
}, title)), /*#__PURE__*/React.createElement(Box, {
|
|
43033
43043
|
padding: "0 0 40px",
|
|
43034
43044
|
width: "100%"
|
|
43035
43045
|
}, /*#__PURE__*/React.createElement(Subtitle, {
|
|
43036
43046
|
variant: "pS",
|
|
43037
|
-
|
|
43047
|
+
theme: themeValues
|
|
43038
43048
|
}, subtitle)), /*#__PURE__*/React.createElement(Box, {
|
|
43039
43049
|
background: "transparent",
|
|
43040
43050
|
borderWidthOverride: "0 0 0 0",
|
|
43041
43051
|
padding: "0",
|
|
43042
43052
|
width: "100%"
|
|
43043
43053
|
}, /*#__PURE__*/React.createElement(Footer, {
|
|
43044
|
-
themeValues: themeValues,
|
|
43045
43054
|
direction: "row",
|
|
43046
43055
|
childGap: "6px",
|
|
43047
43056
|
justify: "space-between"
|
|
43048
43057
|
}, showLeft && !leftContent && /*#__PURE__*/React.createElement(Box, null), showLeft && leftContent, showRight && rightContent))));
|
|
43049
|
-
};
|
|
43058
|
+
};
|
|
43059
|
+
|
|
43060
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I); // export default LinkCard;
|
|
43050
43061
|
|
|
43051
43062
|
var LoginForm = function LoginForm(_ref) {
|
|
43052
43063
|
var _emailErrorMessages;
|
|
@@ -46742,12 +46753,12 @@ var borderRadius = {
|
|
|
46742
46753
|
largeTitle: "0.25rem",
|
|
46743
46754
|
small: "0.25rem"
|
|
46744
46755
|
};
|
|
46745
|
-
var backgroundColor$
|
|
46756
|
+
var backgroundColor$a = {
|
|
46746
46757
|
"default": WHITE,
|
|
46747
46758
|
largeTitle: WHITE,
|
|
46748
46759
|
small: WHITE
|
|
46749
46760
|
};
|
|
46750
|
-
var fallbackValues$
|
|
46761
|
+
var fallbackValues$J = {
|
|
46751
46762
|
fontSize: fontSize$9,
|
|
46752
46763
|
fontWeight: fontWeight$5,
|
|
46753
46764
|
fontColor: fontColor,
|
|
@@ -46757,7 +46768,7 @@ var fallbackValues$I = {
|
|
|
46757
46768
|
titleSpacing: titleSpacing,
|
|
46758
46769
|
boxShadow: boxShadow$1,
|
|
46759
46770
|
borderRadius: borderRadius,
|
|
46760
|
-
backgroundColor: backgroundColor$
|
|
46771
|
+
backgroundColor: backgroundColor$a
|
|
46761
46772
|
};
|
|
46762
46773
|
|
|
46763
46774
|
/*
|
|
@@ -46815,9 +46826,9 @@ var Module = function Module(_ref) {
|
|
|
46815
46826
|
}, children)));
|
|
46816
46827
|
};
|
|
46817
46828
|
|
|
46818
|
-
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$
|
|
46829
|
+
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$J, "default"));
|
|
46819
46830
|
|
|
46820
|
-
var backgroundColor$
|
|
46831
|
+
var backgroundColor$b = {
|
|
46821
46832
|
profile: "#3b414d",
|
|
46822
46833
|
cms: "#3b414d"
|
|
46823
46834
|
};
|
|
@@ -46825,8 +46836,8 @@ var shadowColor = {
|
|
|
46825
46836
|
profile: "#292A33",
|
|
46826
46837
|
cms: "#292A33"
|
|
46827
46838
|
};
|
|
46828
|
-
var fallbackValues$
|
|
46829
|
-
backgroundColor: backgroundColor$
|
|
46839
|
+
var fallbackValues$K = {
|
|
46840
|
+
backgroundColor: backgroundColor$b,
|
|
46830
46841
|
shadowColor: shadowColor
|
|
46831
46842
|
};
|
|
46832
46843
|
|
|
@@ -46866,7 +46877,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
46866
46877
|
}, menuContent));
|
|
46867
46878
|
};
|
|
46868
46879
|
|
|
46869
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
46880
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$K, "profile");
|
|
46870
46881
|
|
|
46871
46882
|
var menu = posed.div({
|
|
46872
46883
|
invisible: {
|
|
@@ -46928,7 +46939,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
|
46928
46939
|
}, menuContent));
|
|
46929
46940
|
};
|
|
46930
46941
|
|
|
46931
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
46942
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$K, "profile");
|
|
46932
46943
|
|
|
46933
46944
|
var ACH_METHOD = "BANK_ACCOUNT";
|
|
46934
46945
|
var CC_METHOD = "CREDIT_CARD";
|
|
@@ -46983,14 +46994,14 @@ var TitleModule = function TitleModule(_ref) {
|
|
|
46983
46994
|
}, subtitle)));
|
|
46984
46995
|
};
|
|
46985
46996
|
|
|
46986
|
-
var color$
|
|
46997
|
+
var color$c = "#15749D";
|
|
46987
46998
|
var hoverColor$5 = "#116285";
|
|
46988
46999
|
var activeColor$8 = "#0E506D";
|
|
46989
47000
|
var linkColor$4 = "#3176AA";
|
|
46990
47001
|
var fontWeight$6 = FONT_WEIGHT_REGULAR;
|
|
46991
47002
|
var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
|
|
46992
|
-
var fallbackValues$
|
|
46993
|
-
color: color$
|
|
47003
|
+
var fallbackValues$L = {
|
|
47004
|
+
color: color$c,
|
|
46994
47005
|
hoverColor: hoverColor$5,
|
|
46995
47006
|
activeColor: activeColor$8,
|
|
46996
47007
|
linkColor: linkColor$4,
|
|
@@ -47115,7 +47126,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
47115
47126
|
}, modalExtraProps), renderAutoPayControl());
|
|
47116
47127
|
};
|
|
47117
47128
|
|
|
47118
|
-
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$
|
|
47129
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$L);
|
|
47119
47130
|
|
|
47120
47131
|
var AmountModule = function AmountModule(_ref) {
|
|
47121
47132
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -47788,11 +47799,11 @@ var createPartialAmountFormState = function createPartialAmountFormState(lineIte
|
|
|
47788
47799
|
var arrowColor = WHITE;
|
|
47789
47800
|
var numberColor = MATISSE_BLUE;
|
|
47790
47801
|
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
47791
|
-
var activeBackgroundColor$
|
|
47802
|
+
var activeBackgroundColor$2 = WHITE;
|
|
47792
47803
|
var activeColor$9 = MATISSE_BLUE;
|
|
47793
|
-
var fallbackValues$
|
|
47804
|
+
var fallbackValues$M = {
|
|
47794
47805
|
activeColor: activeColor$9,
|
|
47795
|
-
activeBackgroundColor: activeBackgroundColor$
|
|
47806
|
+
activeBackgroundColor: activeBackgroundColor$2,
|
|
47796
47807
|
arrowColor: arrowColor,
|
|
47797
47808
|
hoverBackgroundColor: hoverBackgroundColor$2,
|
|
47798
47809
|
numberColor: numberColor
|
|
@@ -47998,7 +48009,7 @@ var Pagination = function Pagination(_ref3) {
|
|
|
47998
48009
|
}));
|
|
47999
48010
|
};
|
|
48000
48011
|
|
|
48001
|
-
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$
|
|
48012
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$M);
|
|
48002
48013
|
|
|
48003
48014
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
48004
48015
|
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
@@ -48066,7 +48077,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
|
48066
48077
|
}, !hideBackButton && /*#__PURE__*/React.createElement(Fragment$1, null, backButton), !hideForwardButton && /*#__PURE__*/React.createElement(Fragment$1, null, forwardButton))));
|
|
48067
48078
|
};
|
|
48068
48079
|
|
|
48069
|
-
var backgroundColor$
|
|
48080
|
+
var backgroundColor$c = {
|
|
48070
48081
|
"default": "transparent",
|
|
48071
48082
|
small: "transparent"
|
|
48072
48083
|
};
|
|
@@ -48082,8 +48093,8 @@ var labeledAmountTotal = {
|
|
|
48082
48093
|
"default": "h6",
|
|
48083
48094
|
small: "p"
|
|
48084
48095
|
};
|
|
48085
|
-
var fallbackValues$
|
|
48086
|
-
backgroundColor: backgroundColor$
|
|
48096
|
+
var fallbackValues$N = {
|
|
48097
|
+
backgroundColor: backgroundColor$c,
|
|
48087
48098
|
lineItem: lineItem,
|
|
48088
48099
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
48089
48100
|
labeledAmountTotal: labeledAmountTotal
|
|
@@ -48402,7 +48413,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
48402
48413
|
});
|
|
48403
48414
|
};
|
|
48404
48415
|
|
|
48405
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
48416
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$N, "default");
|
|
48406
48417
|
|
|
48407
48418
|
var linkColor$5 = {
|
|
48408
48419
|
"default": "#3176AA"
|
|
@@ -48419,7 +48430,7 @@ var fontWeight$7 = {
|
|
|
48419
48430
|
var modalLinkHoverFocus$1 = {
|
|
48420
48431
|
"default": "outline: none; text-decoration: underline;"
|
|
48421
48432
|
};
|
|
48422
|
-
var fallbackValues$
|
|
48433
|
+
var fallbackValues$O = {
|
|
48423
48434
|
linkColor: linkColor$5,
|
|
48424
48435
|
fontSize: fontSize$a,
|
|
48425
48436
|
lineHeight: lineHeight$4,
|
|
@@ -48478,9 +48489,9 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
48478
48489
|
}, link));
|
|
48479
48490
|
};
|
|
48480
48491
|
|
|
48481
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
48492
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$O, "default");
|
|
48482
48493
|
|
|
48483
|
-
var backgroundColor$
|
|
48494
|
+
var backgroundColor$d = {
|
|
48484
48495
|
"default": "#ffffff",
|
|
48485
48496
|
footer: "#ffffff"
|
|
48486
48497
|
};
|
|
@@ -48509,8 +48520,8 @@ var modalLinkHoverFocus$2 = {
|
|
|
48509
48520
|
"default": standardInteractionStyles,
|
|
48510
48521
|
footer: standardInteractionStyles
|
|
48511
48522
|
};
|
|
48512
|
-
var fallbackValues$
|
|
48513
|
-
backgroundColor: backgroundColor$
|
|
48523
|
+
var fallbackValues$P = {
|
|
48524
|
+
backgroundColor: backgroundColor$d,
|
|
48514
48525
|
linkColor: linkColor$6,
|
|
48515
48526
|
border: border$3,
|
|
48516
48527
|
fontSize: fontSize$b,
|
|
@@ -48574,7 +48585,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
48574
48585
|
}, link));
|
|
48575
48586
|
};
|
|
48576
48587
|
|
|
48577
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
48588
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
|
|
48578
48589
|
|
|
48579
48590
|
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48580
48591
|
var onCheck = _ref.onCheck,
|
|
@@ -49371,13 +49382,13 @@ var RadioGroup = function RadioGroup(_ref) {
|
|
|
49371
49382
|
var headingBackgroundColor$1 = "".concat(WHITE);
|
|
49372
49383
|
var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
49373
49384
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
49374
|
-
var borderColor$
|
|
49385
|
+
var borderColor$6 = "".concat(GREY_CHATEAU);
|
|
49375
49386
|
var focusStyles = "outline: none;";
|
|
49376
|
-
var fallbackValues$
|
|
49387
|
+
var fallbackValues$Q = {
|
|
49377
49388
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
49378
49389
|
headingDisabledColor: headingDisabledColor,
|
|
49379
49390
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
49380
|
-
borderColor: borderColor$
|
|
49391
|
+
borderColor: borderColor$6,
|
|
49381
49392
|
focusStyles: focusStyles
|
|
49382
49393
|
};
|
|
49383
49394
|
|
|
@@ -49563,7 +49574,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49563
49574
|
})));
|
|
49564
49575
|
};
|
|
49565
49576
|
|
|
49566
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
49577
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$Q);
|
|
49567
49578
|
|
|
49568
49579
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49569
49580
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -49860,7 +49871,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
49860
49871
|
var activeTabBackground = "#FFFFFF";
|
|
49861
49872
|
var activeTabAccent = "#15749D";
|
|
49862
49873
|
var activeTabHover = "#B8D5E1";
|
|
49863
|
-
var fallbackValues$
|
|
49874
|
+
var fallbackValues$R = {
|
|
49864
49875
|
activeTabBackground: activeTabBackground,
|
|
49865
49876
|
activeTabAccent: activeTabAccent,
|
|
49866
49877
|
activeTabHover: activeTabHover
|
|
@@ -49939,12 +49950,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
49939
49950
|
}))));
|
|
49940
49951
|
};
|
|
49941
49952
|
|
|
49942
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
49953
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$R);
|
|
49943
49954
|
|
|
49944
49955
|
var activeTabBackground$1 = "#FFFFFF";
|
|
49945
49956
|
var activeTabAccent$1 = "#15749D";
|
|
49946
49957
|
var activeTabHover$1 = "#B8D5E1";
|
|
49947
|
-
var fallbackValues$
|
|
49958
|
+
var fallbackValues$S = {
|
|
49948
49959
|
activeTabBackground: activeTabBackground$1,
|
|
49949
49960
|
activeTabAccent: activeTabAccent$1,
|
|
49950
49961
|
activeTabHover: activeTabHover$1
|
|
@@ -50000,7 +50011,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
50000
50011
|
})));
|
|
50001
50012
|
};
|
|
50002
50013
|
|
|
50003
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
50014
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$S);
|
|
50004
50015
|
|
|
50005
50016
|
var Timeout = function Timeout(_ref) {
|
|
50006
50017
|
var onLogout = _ref.onLogout;
|
|
@@ -50044,7 +50055,7 @@ var fontColor$1 = WHITE;
|
|
|
50044
50055
|
var textAlign$1 = "left";
|
|
50045
50056
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
50046
50057
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
50047
|
-
var fallbackValues$
|
|
50058
|
+
var fallbackValues$T = {
|
|
50048
50059
|
fontWeight: fontWeight$9,
|
|
50049
50060
|
fontColor: fontColor$1,
|
|
50050
50061
|
textAlign: textAlign$1,
|
|
@@ -50091,7 +50102,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
50091
50102
|
})))));
|
|
50092
50103
|
};
|
|
50093
50104
|
|
|
50094
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
50105
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$T));
|
|
50095
50106
|
|
|
50096
50107
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
50097
50108
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -50146,7 +50157,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
50146
50157
|
};
|
|
50147
50158
|
|
|
50148
50159
|
var pageBackground = "#FBFCFD";
|
|
50149
|
-
var fallbackValues$
|
|
50160
|
+
var fallbackValues$U = {
|
|
50150
50161
|
pageBackground: pageBackground
|
|
50151
50162
|
};
|
|
50152
50163
|
|
|
@@ -50195,7 +50206,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
50195
50206
|
})));
|
|
50196
50207
|
};
|
|
50197
50208
|
|
|
50198
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
50209
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$U));
|
|
50199
50210
|
|
|
50200
50211
|
var CenterStack = function CenterStack(_ref) {
|
|
50201
50212
|
var header = _ref.header,
|
|
@@ -50237,7 +50248,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
50237
50248
|
})));
|
|
50238
50249
|
};
|
|
50239
50250
|
|
|
50240
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
50251
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$U));
|
|
50241
50252
|
|
|
50242
50253
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
50243
50254
|
var header = _ref.header,
|
|
@@ -50282,7 +50293,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
50282
50293
|
})));
|
|
50283
50294
|
};
|
|
50284
50295
|
|
|
50285
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
50296
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$U));
|
|
50286
50297
|
|
|
50287
50298
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
50288
50299
|
var header = _ref.header,
|
|
@@ -50336,7 +50347,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
50336
50347
|
})));
|
|
50337
50348
|
};
|
|
50338
50349
|
|
|
50339
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
50350
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$U));
|
|
50340
50351
|
|
|
50341
50352
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
50342
50353
|
var header = _ref.header,
|
|
@@ -50407,7 +50418,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
50407
50418
|
})));
|
|
50408
50419
|
};
|
|
50409
50420
|
|
|
50410
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
50421
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$U));
|
|
50411
50422
|
|
|
50412
|
-
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
|
|
50423
|
+
export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, Alert$1 as Alert, AllocatedIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CarrotIcon$1 as CarrotIcon, CashIcon, Center, CenterSingle$1 as CenterSingle, CenterStack$1 as CenterStack, ChangePasswordForm, ChargebackIcon, ChargebackIconMedium, ChargebackIconSmall, ChargebackReversalIcon, ChargebackReversalIconMedium, ChargebackReversalIconSmall, CheckIcon, Checkbox$1 as Checkbox, CheckboxList$1 as CheckboxList, CheckmarkIcon, ChevronIcon$1 as ChevronIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisplayBox$1 as DisplayBox, DisplayCard, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, ErroredIcon, ExternalLink, ExternalLinkIcon, FailedIcon, FindIconSmall$1 as FindIconSmall, FooterWithSubfooter$1 as FooterWithSubfooter, ForgotPasswordForm, ForgotPasswordIcon$1 as ForgotPasswordIcon, FormContainer$1 as FormContainer, FormFooterPanel$1 as FormFooterPanel, FormInput$1 as FormInput, FormInputColumn, FormInputRow, FormSelect$1 as FormSelect, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, Modal$1 as Modal, Module$1 as Module, Motion, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoCustomerResultsIcon, NoPaymentResultsIcon, NotFoundIcon, Obligation, iconsMap as ObligationIcons, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, PointOfSaleImage, Popover$1 as Popover, ProcessingFee$1 as ProcessingFee, ProfileIcon$1 as ProfileIcon, ProfileIconSmall$1 as ProfileIconSmall, ProfileImage, PropertiesAddIcon$1 as PropertiesAddIcon, PropertiesIconSmall$1 as PropertiesIconSmall, RadioButton$2 as RadioButton, RadioButtonWithLabel$1 as RadioButtonWithLabel, RadioGroup, RadioSection$1 as RadioSection, Reel, RefundIcon, RefundIconMedium, RefundIconSmall, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess, RevenueManagementImage, RoutingNumberImage, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, Spinner$2 as Spinner, Stack, StandardCheckoutImage, FormStateDropdown as StateProvinceDropdown, StatusUnknownIcon, SuccessfulIcon, SuccessfulIconMedium, SuccessfulIconSmall, Switcher, TabSidebar$1 as TabSidebar, Table_styled as Table, TableBody_styled as TableBody, TableCell_styled as TableCell, TableHead$1 as TableHead, TableHeading_styled as TableHeading, TableListItem, TableRow$1 as TableRow, Tabs$1 as Tabs, TermsAndConditions, TermsAndConditionsModal$1 as TermsAndConditionsModal, Text$1 as Text, Timeout$1 as Timeout, TimeoutImage, Title$1 as Title, ToggleSwitch$1 as ToggleSwitch, TrashIcon$1 as TrashIcon, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$5 as constants, createPartialAmountFormState, index$4 as util, withWindowSize };
|
|
50413
50424
|
//# sourceMappingURL=index.esm.js.map
|