@thecb/components 8.3.0-beta.0 → 8.4.0-beta.0
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 +182 -34
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +10 -10
- package/dist/index.esm.js +180 -35
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/atoms/badge/Badge.js +1 -0
- package/src/components/atoms/badge/Badge.theme.js +2 -2
- package/src/components/atoms/form-layouts/index.d.ts +6 -2
- package/src/components/atoms/form-select/index.d.ts +8 -8
- package/src/components/atoms/icons/ArrowRightIcon.js +41 -0
- package/src/components/atoms/icons/PlusCircleIcon.js +22 -0
- package/src/components/atoms/icons/index.js +5 -1
- package/src/components/molecules/index.js +1 -0
- package/src/components/molecules/link-card/LinkCard.js +128 -0
- package/src/components/molecules/link-card/LinkCard.stories.js +26 -0
- package/src/components/molecules/link-card/LinkCard.theme.js +9 -0
- package/src/components/molecules/link-card/index.d.ts +14 -0
- package/src/components/molecules/link-card/index.js +3 -0
- package/src/constants/colors.js +3 -2
- package/src/index.d.ts +1 -0
- package/src/types/common/ErrorMessageDictionary.ts +3 -0
- package/src/types/common/FieldActions.ts +6 -6
- package/src/types/common/FormSelectOption.ts +4 -0
- package/src/types/common/index.ts +3 -1
- package/src/types/common/ErrorMessage.ts +0 -3
package/dist/index.cjs.js
CHANGED
|
@@ -5002,7 +5002,6 @@ var COOL_GREY_05 = "#fbfcfd"; // CBS-050
|
|
|
5002
5002
|
var CLOUDBURST_BLUE = "#26395c";
|
|
5003
5003
|
var ZODIAC_BLUE = "#14284b";
|
|
5004
5004
|
var CONGRESS_BLUE = "#005095";
|
|
5005
|
-
var ROYAL_BLUE = "#3B5BDB";
|
|
5006
5005
|
var SCIENCE_BLUE = "#0074D9";
|
|
5007
5006
|
var MARINER_BLUE = "#2E75D2";
|
|
5008
5007
|
var CURIOUS_BLUE = "#27A9E1";
|
|
@@ -5017,6 +5016,8 @@ var INFO_BLUE = "#E4F4FD";
|
|
|
5017
5016
|
var CORNFLOWER_BLUE = "#EBEFFB";
|
|
5018
5017
|
var HOVER_LIGHT_BLUE = "#EFFAFF";
|
|
5019
5018
|
var MATISSE_BLUE = "#15749D";
|
|
5019
|
+
var ROYAL_BLUE = "#3181E3";
|
|
5020
|
+
var ROYAL_BLUE_VIVID = "#3B5BDB";
|
|
5020
5021
|
var ASTRAL_BLUE = "#3176AA";
|
|
5021
5022
|
var SAPPHIRE_BLUE = "#116285";
|
|
5022
5023
|
var PEACOCK_BLUE = "#0E506D"; // GREEN
|
|
@@ -5147,6 +5148,7 @@ var colors = /*#__PURE__*/Object.freeze({
|
|
|
5147
5148
|
HOVER_LIGHT_BLUE: HOVER_LIGHT_BLUE,
|
|
5148
5149
|
MATISSE_BLUE: MATISSE_BLUE,
|
|
5149
5150
|
ROYAL_BLUE: ROYAL_BLUE,
|
|
5151
|
+
ROYAL_BLUE_VIVID: ROYAL_BLUE_VIVID,
|
|
5150
5152
|
ASTRAL_BLUE: ASTRAL_BLUE,
|
|
5151
5153
|
SAPPHIRE_BLUE: SAPPHIRE_BLUE,
|
|
5152
5154
|
PEACOCK_BLUE: PEACOCK_BLUE,
|
|
@@ -17670,6 +17672,44 @@ var ArrowRightCircleIconSmall = function ArrowRightCircleIconSmall(_ref) {
|
|
|
17670
17672
|
})));
|
|
17671
17673
|
};
|
|
17672
17674
|
|
|
17675
|
+
var ArrowRightIcon = function ArrowRightIcon(_ref) {
|
|
17676
|
+
var _ref$color = _ref.color,
|
|
17677
|
+
color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color;
|
|
17678
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
17679
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17680
|
+
width: "20",
|
|
17681
|
+
height: "20",
|
|
17682
|
+
viewBox: "0 0 20 20",
|
|
17683
|
+
fill: "none"
|
|
17684
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17685
|
+
fillRule: "evenodd",
|
|
17686
|
+
clipRule: "evenodd",
|
|
17687
|
+
d: "M9.17828 4.15501C8.98314 4.35015 8.983 4.66649 9.17796 4.8618L13.475 9.16659H3.83337C3.55723 9.16659 3.33337 9.39044 3.33337 9.66659V10.3333C3.33337 10.6094 3.55723 10.8333 3.83337 10.8333H13.475L9.17796 15.138C8.983 15.3333 8.98314 15.6497 9.17828 15.8448L9.64649 16.313C9.84175 16.5083 10.1583 16.5083 10.3536 16.313L16.3132 10.3535C16.5084 10.1582 16.5084 9.84163 16.3132 9.64637L10.3536 3.6868C10.1583 3.49154 9.84175 3.49154 9.64649 3.68681L9.17828 4.15501Z",
|
|
17688
|
+
fill: color
|
|
17689
|
+
}), /*#__PURE__*/React__default.createElement("mask", {
|
|
17690
|
+
id: "mask0_6329_1483",
|
|
17691
|
+
style: {
|
|
17692
|
+
maskType: "luminance"
|
|
17693
|
+
},
|
|
17694
|
+
maskUnits: "userSpaceOnUse",
|
|
17695
|
+
x: "3",
|
|
17696
|
+
y: "3",
|
|
17697
|
+
width: "14",
|
|
17698
|
+
height: "14"
|
|
17699
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
17700
|
+
fillRule: "evenodd",
|
|
17701
|
+
clipRule: "evenodd",
|
|
17702
|
+
d: "M9.17828 4.15501C8.98314 4.35015 8.983 4.66649 9.17796 4.8618L13.475 9.16659H3.83337C3.55723 9.16659 3.33337 9.39044 3.33337 9.66659V10.3333C3.33337 10.6094 3.55723 10.8333 3.83337 10.8333H13.475L9.17796 15.138C8.983 15.3333 8.98314 15.6497 9.17828 15.8448L9.64649 16.313C9.84175 16.5083 10.1583 16.5083 10.3536 16.313L16.3132 10.3535C16.5084 10.1582 16.5084 9.84163 16.3132 9.64637L10.3536 3.6868C10.1583 3.49154 9.84175 3.49154 9.64649 3.68681L9.17828 4.15501Z",
|
|
17703
|
+
fill: "white"
|
|
17704
|
+
})), /*#__PURE__*/React__default.createElement("g", {
|
|
17705
|
+
mask: "url(#mask0_6329_1483)"
|
|
17706
|
+
}, /*#__PURE__*/React__default.createElement("rect", {
|
|
17707
|
+
width: "20",
|
|
17708
|
+
height: "20",
|
|
17709
|
+
fill: color
|
|
17710
|
+
})));
|
|
17711
|
+
};
|
|
17712
|
+
|
|
17673
17713
|
var ArrowUpCircleIconSmall = function ArrowUpCircleIconSmall(_ref) {
|
|
17674
17714
|
var _ref$color = _ref.color,
|
|
17675
17715
|
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
@@ -18060,6 +18100,23 @@ var ChargebackReversalIconMedium = function ChargebackReversalIconMedium(_ref) {
|
|
|
18060
18100
|
})));
|
|
18061
18101
|
};
|
|
18062
18102
|
|
|
18103
|
+
var PlusCircleIcon = function PlusCircleIcon(_ref) {
|
|
18104
|
+
var _ref$color = _ref.color,
|
|
18105
|
+
color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color;
|
|
18106
|
+
return /*#__PURE__*/React__default.createElement("svg", {
|
|
18107
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18108
|
+
width: "20",
|
|
18109
|
+
height: "20",
|
|
18110
|
+
viewBox: "0 0 20 20",
|
|
18111
|
+
fill: "none"
|
|
18112
|
+
}, /*#__PURE__*/React__default.createElement("path", {
|
|
18113
|
+
fillRule: "evenodd",
|
|
18114
|
+
clipRule: "evenodd",
|
|
18115
|
+
d: "M10 1.25C5.16751 1.25 1.25 5.16751 1.25 10C1.25 14.8325 5.16751 18.75 10 18.75C14.8325 18.75 18.75 14.8325 18.75 10C18.75 5.16751 14.8325 1.25 10 1.25ZM2.75 10C2.75 5.99594 5.99594 2.75 10 2.75C14.0041 2.75 17.25 5.99594 17.25 10C17.25 14.0041 14.0041 17.25 10 17.25C5.99594 17.25 2.75 14.0041 2.75 10ZM10.75 9.25V5.25H9.25V9.25H5.25V10.75H9.25V14.75H10.75V10.75H14.75V9.25H10.75Z",
|
|
18116
|
+
fill: color
|
|
18117
|
+
}));
|
|
18118
|
+
};
|
|
18119
|
+
|
|
18063
18120
|
var color$2 = "#15749D";
|
|
18064
18121
|
var hoverColor$1 = "#116285";
|
|
18065
18122
|
var activeColor$1 = "#0E506D";
|
|
@@ -18799,7 +18856,7 @@ var background$1 = {
|
|
|
18799
18856
|
var color$4 = {
|
|
18800
18857
|
info: "".concat(MATISSE_BLUE),
|
|
18801
18858
|
warn: "".concat(ZEST_ORANGE),
|
|
18802
|
-
primary: "".concat(
|
|
18859
|
+
primary: "".concat(ROYAL_BLUE_VIVID),
|
|
18803
18860
|
success: "".concat(SEA_GREEN)
|
|
18804
18861
|
};
|
|
18805
18862
|
var fallbackValues$7 = {
|
|
@@ -18814,7 +18871,7 @@ var StyledBadgeContainer = styled__default(Box).withConfig({
|
|
|
18814
18871
|
var StyledBadge = styled__default(Text$1).withConfig({
|
|
18815
18872
|
displayName: "Badge__StyledBadge",
|
|
18816
18873
|
componentId: "sc-1g438j-1"
|
|
18817
|
-
})(["font-family:\"Public Sans\",sans-serif;font-size:10px;font-style:normal;font-weight:400;line-height:150%;letter-spacing:0.2px;@media screen and (min-width:1049px){font-size:12px;line-height:150%;letter-spacing:0.24px;}"]);
|
|
18874
|
+
})(["font-family:\"Public Sans\",sans-serif;font-size:10px;font-style:normal;font-weight:400;line-height:150%;letter-spacing:0.2px;white-space:nowrap;@media screen and (min-width:1049px){font-size:12px;line-height:150%;letter-spacing:0.24px;}"]);
|
|
18818
18875
|
|
|
18819
18876
|
var Badge = function Badge(_ref) {
|
|
18820
18877
|
var label = _ref.label,
|
|
@@ -42777,6 +42834,94 @@ var PROPERTIES_COMMERCIAL_AUTO_ICON = "PROPERTIES_COMMERCIAL_AUTO";
|
|
|
42777
42834
|
var MISC_BILL_ICON = "MISC_SINGLE_BILL";
|
|
42778
42835
|
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);
|
|
42779
42836
|
|
|
42837
|
+
var background$3 = {
|
|
42838
|
+
"default": "".concat(WHITE)
|
|
42839
|
+
};
|
|
42840
|
+
var color$b = {
|
|
42841
|
+
"default": "".concat(ROYAL_BLUE_VIVID)
|
|
42842
|
+
};
|
|
42843
|
+
var fallbackValues$I = {
|
|
42844
|
+
background: background$3,
|
|
42845
|
+
color: color$b
|
|
42846
|
+
};
|
|
42847
|
+
|
|
42848
|
+
var LinkCard = function LinkCard(_ref) {
|
|
42849
|
+
var _ref$variant = _ref.variant,
|
|
42850
|
+
_ref$workflowName = _ref.workflowName,
|
|
42851
|
+
workflowName = _ref$workflowName === void 0 ? "Test Workflow" : _ref$workflowName,
|
|
42852
|
+
_ref$workflowDescript = _ref.workflowDescription,
|
|
42853
|
+
workflowDescription = _ref$workflowDescript === void 0 ? "Link your benefit plan" : _ref$workflowDescript,
|
|
42854
|
+
_ref$workflowActionNa = _ref.workflowActionName,
|
|
42855
|
+
workflowActionName = _ref$workflowActionNa === void 0 ? "Find" : _ref$workflowActionNa,
|
|
42856
|
+
themeValues = _ref.themeValues,
|
|
42857
|
+
slug = _ref.slug;
|
|
42858
|
+
var navigate = reactRouterDom.useNavigate();
|
|
42859
|
+
return /*#__PURE__*/React__default.createElement(Box, {
|
|
42860
|
+
background: "#FEFEFE" // --grays-cool-gray-00
|
|
42861
|
+
,
|
|
42862
|
+
border: "1px solid #C4CEF4;" // --primary-color-primary-30
|
|
42863
|
+
,
|
|
42864
|
+
padding: 0,
|
|
42865
|
+
borderRadius: "8px",
|
|
42866
|
+
dataQa: "link-card-".concat(workflowDescription),
|
|
42867
|
+
hoverStyles: "\n border-radius: 8px;\n cursor: pointer;\n border: 1px solid ".concat(ROYAL_BLUE_VIVID, ";\n background: var(--primary-color-primary-10, #EBEFFB);\n /* Primitives/New Shadow/3-Pressed-New */\n box-shadow: 0px 0px 0px 0px rgba(41, 42, 51, 0.10), 0px 5px 11px 0px rgba(41, 42, 51, 0.10), 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.00);\n .show-on-hover {color: ").concat(ROYAL_BLUE_VIVID, ";}\n "),
|
|
42868
|
+
extraStyles: "display: flex; width: 288px; min-width: 240px; max-width: 288px; min-height: 141px; padding: 16px 24px; flex-direction: column; align-items: flex-start; gap: 40px; flex-shrink: 0; align-self: stretch;",
|
|
42869
|
+
onClick: function onClick() {
|
|
42870
|
+
// @TODO replace with something valid like navigate
|
|
42871
|
+
console.log("attempting navigation..."); // window.location.pathname = `/service/${slug}`;
|
|
42872
|
+
|
|
42873
|
+
navigate("/service/".concat(slug));
|
|
42874
|
+
}
|
|
42875
|
+
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
42876
|
+
childGap: 0,
|
|
42877
|
+
bottomItem: 3,
|
|
42878
|
+
fullHeight: true
|
|
42879
|
+
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
42880
|
+
padding: "1rem 1rem 0 1rem"
|
|
42881
|
+
}, /*#__PURE__*/React__default.createElement(Heading$1, {
|
|
42882
|
+
variant: "h6",
|
|
42883
|
+
weight: FONT_WEIGHT_SEMIBOLD,
|
|
42884
|
+
color: themeValues.color,
|
|
42885
|
+
margin: "0 0 0.5rem 0",
|
|
42886
|
+
extraStyles: "display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; align-self: stretch; overflow: hidden; text-overflow: ellipsis; font-family: Public Sans; font-size: 16px; font-style: normal; font-weight: 600; line-height: 150%;"
|
|
42887
|
+
}, workflowName)), /*#__PURE__*/React__default.createElement(Box, {
|
|
42888
|
+
padding: "0 1rem 1rem",
|
|
42889
|
+
minHeight: "4.25rem"
|
|
42890
|
+
}, /*#__PURE__*/React__default.createElement(Paragraph$1, {
|
|
42891
|
+
variant: "pS",
|
|
42892
|
+
color: themeValues.color,
|
|
42893
|
+
extraStyles: "overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; align-self: stretch; /* CB Standard/Desktop/D - P Small - Regular */ font-family: Public Sans; font-size: 14px; font-style: normal; font-weight: 400; line-height: 150%; /* 21px */ letter-spacing: 0.14px;"
|
|
42894
|
+
}, workflowDescription)), /*#__PURE__*/React__default.createElement(Box, {
|
|
42895
|
+
background: "transparent",
|
|
42896
|
+
borderWidthOverride: "0 0 0 0",
|
|
42897
|
+
padding: "1.5rem 0 1.5rem 1rem"
|
|
42898
|
+
}, /*#__PURE__*/React__default.createElement(Stack, {
|
|
42899
|
+
direction: "row",
|
|
42900
|
+
justify: "space-between"
|
|
42901
|
+
}, /*#__PURE__*/React__default.createElement(Box, {
|
|
42902
|
+
background: "transparent",
|
|
42903
|
+
borderWidthOverride: "0 0 0 0",
|
|
42904
|
+
padding: "0"
|
|
42905
|
+
}, /*#__PURE__*/React__default.createElement(Badge$1, {
|
|
42906
|
+
label: "Autopay Available",
|
|
42907
|
+
Icon: AutopayIcon
|
|
42908
|
+
})), /*#__PURE__*/React__default.createElement(Stack, {
|
|
42909
|
+
direction: "row",
|
|
42910
|
+
childGap: "6px"
|
|
42911
|
+
}, /*#__PURE__*/React__default.createElement(Text$1, {
|
|
42912
|
+
variant: "pS",
|
|
42913
|
+
color: themeValues.color,
|
|
42914
|
+
extraStyles: "text-align: right; color: transparent;",
|
|
42915
|
+
className: "show-on-hover"
|
|
42916
|
+
}, workflowActionName), workflowActionName === "Find" && /*#__PURE__*/React__default.createElement(PlusCircleIcon, {
|
|
42917
|
+
color: themeValues.color
|
|
42918
|
+
}), workflowActionName === "Pay" && /*#__PURE__*/React__default.createElement(ArrowRightIcon, {
|
|
42919
|
+
color: themeValues.color
|
|
42920
|
+
}))))));
|
|
42921
|
+
};
|
|
42922
|
+
|
|
42923
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I, "default");
|
|
42924
|
+
|
|
42780
42925
|
var LoginForm = function LoginForm(_ref) {
|
|
42781
42926
|
var _emailErrorMessages;
|
|
42782
42927
|
|
|
@@ -46476,7 +46621,7 @@ var backgroundColor$9 = {
|
|
|
46476
46621
|
largeTitle: WHITE,
|
|
46477
46622
|
small: WHITE
|
|
46478
46623
|
};
|
|
46479
|
-
var fallbackValues$
|
|
46624
|
+
var fallbackValues$J = {
|
|
46480
46625
|
fontSize: fontSize$9,
|
|
46481
46626
|
fontWeight: fontWeight$5,
|
|
46482
46627
|
fontColor: fontColor,
|
|
@@ -46544,7 +46689,7 @@ var Module = function Module(_ref) {
|
|
|
46544
46689
|
}, children)));
|
|
46545
46690
|
};
|
|
46546
46691
|
|
|
46547
|
-
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$
|
|
46692
|
+
var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$J, "default"));
|
|
46548
46693
|
|
|
46549
46694
|
var backgroundColor$a = {
|
|
46550
46695
|
profile: "#3b414d",
|
|
@@ -46554,7 +46699,7 @@ var shadowColor = {
|
|
|
46554
46699
|
profile: "#292A33",
|
|
46555
46700
|
cms: "#292A33"
|
|
46556
46701
|
};
|
|
46557
|
-
var fallbackValues$
|
|
46702
|
+
var fallbackValues$K = {
|
|
46558
46703
|
backgroundColor: backgroundColor$a,
|
|
46559
46704
|
shadowColor: shadowColor
|
|
46560
46705
|
};
|
|
@@ -46595,7 +46740,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
46595
46740
|
}, menuContent));
|
|
46596
46741
|
};
|
|
46597
46742
|
|
|
46598
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
46743
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$K, "profile");
|
|
46599
46744
|
|
|
46600
46745
|
var menu = posed.div({
|
|
46601
46746
|
invisible: {
|
|
@@ -46657,7 +46802,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
|
46657
46802
|
}, menuContent));
|
|
46658
46803
|
};
|
|
46659
46804
|
|
|
46660
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
46805
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$K, "profile");
|
|
46661
46806
|
|
|
46662
46807
|
var ACH_METHOD = "BANK_ACCOUNT";
|
|
46663
46808
|
var CC_METHOD = "CREDIT_CARD";
|
|
@@ -46712,14 +46857,14 @@ var TitleModule = function TitleModule(_ref) {
|
|
|
46712
46857
|
}, subtitle)));
|
|
46713
46858
|
};
|
|
46714
46859
|
|
|
46715
|
-
var color$
|
|
46860
|
+
var color$c = "#15749D";
|
|
46716
46861
|
var hoverColor$5 = "#116285";
|
|
46717
46862
|
var activeColor$8 = "#0E506D";
|
|
46718
46863
|
var linkColor$4 = "#3176AA";
|
|
46719
46864
|
var fontWeight$6 = FONT_WEIGHT_REGULAR;
|
|
46720
46865
|
var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
|
|
46721
|
-
var fallbackValues$
|
|
46722
|
-
color: color$
|
|
46866
|
+
var fallbackValues$L = {
|
|
46867
|
+
color: color$c,
|
|
46723
46868
|
hoverColor: hoverColor$5,
|
|
46724
46869
|
activeColor: activeColor$8,
|
|
46725
46870
|
linkColor: linkColor$4,
|
|
@@ -46844,7 +46989,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
46844
46989
|
}, modalExtraProps), renderAutoPayControl());
|
|
46845
46990
|
};
|
|
46846
46991
|
|
|
46847
|
-
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$
|
|
46992
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$L);
|
|
46848
46993
|
|
|
46849
46994
|
var AmountModule = function AmountModule(_ref) {
|
|
46850
46995
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -47519,7 +47664,7 @@ var numberColor = MATISSE_BLUE;
|
|
|
47519
47664
|
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
47520
47665
|
var activeBackgroundColor$1 = WHITE;
|
|
47521
47666
|
var activeColor$9 = MATISSE_BLUE;
|
|
47522
|
-
var fallbackValues$
|
|
47667
|
+
var fallbackValues$M = {
|
|
47523
47668
|
activeColor: activeColor$9,
|
|
47524
47669
|
activeBackgroundColor: activeBackgroundColor$1,
|
|
47525
47670
|
arrowColor: arrowColor,
|
|
@@ -47727,7 +47872,7 @@ var Pagination = function Pagination(_ref3) {
|
|
|
47727
47872
|
}));
|
|
47728
47873
|
};
|
|
47729
47874
|
|
|
47730
|
-
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$
|
|
47875
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$M);
|
|
47731
47876
|
|
|
47732
47877
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
47733
47878
|
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
@@ -47811,7 +47956,7 @@ var labeledAmountTotal = {
|
|
|
47811
47956
|
"default": "h6",
|
|
47812
47957
|
small: "p"
|
|
47813
47958
|
};
|
|
47814
|
-
var fallbackValues$
|
|
47959
|
+
var fallbackValues$N = {
|
|
47815
47960
|
backgroundColor: backgroundColor$b,
|
|
47816
47961
|
lineItem: lineItem,
|
|
47817
47962
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
@@ -48131,7 +48276,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
48131
48276
|
});
|
|
48132
48277
|
};
|
|
48133
48278
|
|
|
48134
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
48279
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$N, "default");
|
|
48135
48280
|
|
|
48136
48281
|
var linkColor$5 = {
|
|
48137
48282
|
"default": "#3176AA"
|
|
@@ -48148,7 +48293,7 @@ var fontWeight$7 = {
|
|
|
48148
48293
|
var modalLinkHoverFocus$1 = {
|
|
48149
48294
|
"default": "outline: none; text-decoration: underline;"
|
|
48150
48295
|
};
|
|
48151
|
-
var fallbackValues$
|
|
48296
|
+
var fallbackValues$O = {
|
|
48152
48297
|
linkColor: linkColor$5,
|
|
48153
48298
|
fontSize: fontSize$a,
|
|
48154
48299
|
lineHeight: lineHeight$4,
|
|
@@ -48207,7 +48352,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
48207
48352
|
}, link));
|
|
48208
48353
|
};
|
|
48209
48354
|
|
|
48210
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
48355
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$O, "default");
|
|
48211
48356
|
|
|
48212
48357
|
var backgroundColor$c = {
|
|
48213
48358
|
"default": "#ffffff",
|
|
@@ -48238,7 +48383,7 @@ var modalLinkHoverFocus$2 = {
|
|
|
48238
48383
|
"default": standardInteractionStyles,
|
|
48239
48384
|
footer: standardInteractionStyles
|
|
48240
48385
|
};
|
|
48241
|
-
var fallbackValues$
|
|
48386
|
+
var fallbackValues$P = {
|
|
48242
48387
|
backgroundColor: backgroundColor$c,
|
|
48243
48388
|
linkColor: linkColor$6,
|
|
48244
48389
|
border: border$3,
|
|
@@ -48303,7 +48448,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
48303
48448
|
}, link));
|
|
48304
48449
|
};
|
|
48305
48450
|
|
|
48306
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
48451
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
|
|
48307
48452
|
|
|
48308
48453
|
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48309
48454
|
var onCheck = _ref.onCheck,
|
|
@@ -49102,7 +49247,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
49102
49247
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
49103
49248
|
var borderColor$5 = "".concat(GREY_CHATEAU);
|
|
49104
49249
|
var focusStyles = "outline: none;";
|
|
49105
|
-
var fallbackValues$
|
|
49250
|
+
var fallbackValues$Q = {
|
|
49106
49251
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
49107
49252
|
headingDisabledColor: headingDisabledColor,
|
|
49108
49253
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -49292,7 +49437,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49292
49437
|
})));
|
|
49293
49438
|
};
|
|
49294
49439
|
|
|
49295
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
49440
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$Q);
|
|
49296
49441
|
|
|
49297
49442
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49298
49443
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -49589,7 +49734,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
49589
49734
|
var activeTabBackground = "#FFFFFF";
|
|
49590
49735
|
var activeTabAccent = "#15749D";
|
|
49591
49736
|
var activeTabHover = "#B8D5E1";
|
|
49592
|
-
var fallbackValues$
|
|
49737
|
+
var fallbackValues$R = {
|
|
49593
49738
|
activeTabBackground: activeTabBackground,
|
|
49594
49739
|
activeTabAccent: activeTabAccent,
|
|
49595
49740
|
activeTabHover: activeTabHover
|
|
@@ -49668,12 +49813,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
49668
49813
|
}))));
|
|
49669
49814
|
};
|
|
49670
49815
|
|
|
49671
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
49816
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$R);
|
|
49672
49817
|
|
|
49673
49818
|
var activeTabBackground$1 = "#FFFFFF";
|
|
49674
49819
|
var activeTabAccent$1 = "#15749D";
|
|
49675
49820
|
var activeTabHover$1 = "#B8D5E1";
|
|
49676
|
-
var fallbackValues$
|
|
49821
|
+
var fallbackValues$S = {
|
|
49677
49822
|
activeTabBackground: activeTabBackground$1,
|
|
49678
49823
|
activeTabAccent: activeTabAccent$1,
|
|
49679
49824
|
activeTabHover: activeTabHover$1
|
|
@@ -49729,7 +49874,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
49729
49874
|
})));
|
|
49730
49875
|
};
|
|
49731
49876
|
|
|
49732
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
49877
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$S);
|
|
49733
49878
|
|
|
49734
49879
|
var Timeout = function Timeout(_ref) {
|
|
49735
49880
|
var onLogout = _ref.onLogout;
|
|
@@ -49773,7 +49918,7 @@ var fontColor$1 = WHITE;
|
|
|
49773
49918
|
var textAlign$1 = "left";
|
|
49774
49919
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
49775
49920
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
49776
|
-
var fallbackValues$
|
|
49921
|
+
var fallbackValues$T = {
|
|
49777
49922
|
fontWeight: fontWeight$9,
|
|
49778
49923
|
fontColor: fontColor$1,
|
|
49779
49924
|
textAlign: textAlign$1,
|
|
@@ -49820,7 +49965,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
49820
49965
|
})))));
|
|
49821
49966
|
};
|
|
49822
49967
|
|
|
49823
|
-
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
49968
|
+
var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$T));
|
|
49824
49969
|
|
|
49825
49970
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
49826
49971
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -49875,7 +50020,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
49875
50020
|
};
|
|
49876
50021
|
|
|
49877
50022
|
var pageBackground = "#FBFCFD";
|
|
49878
|
-
var fallbackValues$
|
|
50023
|
+
var fallbackValues$U = {
|
|
49879
50024
|
pageBackground: pageBackground
|
|
49880
50025
|
};
|
|
49881
50026
|
|
|
@@ -49924,7 +50069,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
49924
50069
|
})));
|
|
49925
50070
|
};
|
|
49926
50071
|
|
|
49927
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
50072
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$U));
|
|
49928
50073
|
|
|
49929
50074
|
var CenterStack = function CenterStack(_ref) {
|
|
49930
50075
|
var header = _ref.header,
|
|
@@ -49966,7 +50111,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
49966
50111
|
})));
|
|
49967
50112
|
};
|
|
49968
50113
|
|
|
49969
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
50114
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$U));
|
|
49970
50115
|
|
|
49971
50116
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
49972
50117
|
var header = _ref.header,
|
|
@@ -50011,7 +50156,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
50011
50156
|
})));
|
|
50012
50157
|
};
|
|
50013
50158
|
|
|
50014
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
50159
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$U));
|
|
50015
50160
|
|
|
50016
50161
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
50017
50162
|
var header = _ref.header,
|
|
@@ -50065,7 +50210,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
50065
50210
|
})));
|
|
50066
50211
|
};
|
|
50067
50212
|
|
|
50068
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
50213
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$U));
|
|
50069
50214
|
|
|
50070
50215
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
50071
50216
|
var header = _ref.header,
|
|
@@ -50136,7 +50281,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
50136
50281
|
})));
|
|
50137
50282
|
};
|
|
50138
50283
|
|
|
50139
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
50284
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$U));
|
|
50140
50285
|
|
|
50141
50286
|
exports.AccountNumberImage = AccountNumberImage;
|
|
50142
50287
|
exports.AccountsAddIcon = AccountsAddIcon$1;
|
|
@@ -50152,6 +50297,7 @@ exports.ArrowDownCircleIconSmall = ArrowDownCircleIconSmall;
|
|
|
50152
50297
|
exports.ArrowLeftCircleIconMedium = ArrowLeftCircleIconMedium;
|
|
50153
50298
|
exports.ArrowLeftCircleIconSmall = ArrowLeftCircleIconSmall;
|
|
50154
50299
|
exports.ArrowRightCircleIconSmall = ArrowRightCircleIconSmall;
|
|
50300
|
+
exports.ArrowRightIcon = ArrowRightIcon;
|
|
50155
50301
|
exports.ArrowUpCircleIconSmall = ArrowUpCircleIconSmall;
|
|
50156
50302
|
exports.AutopayIcon = AutopayIcon;
|
|
50157
50303
|
exports.AutopayOnIcon = AutopayOnIcon;
|
|
@@ -50236,6 +50382,7 @@ exports.Jumbo = Jumbo$1;
|
|
|
50236
50382
|
exports.KioskImage = KioskImage;
|
|
50237
50383
|
exports.LabeledAmount = LabeledAmount$1;
|
|
50238
50384
|
exports.LineItem = LineItem$1;
|
|
50385
|
+
exports.LinkCard = LinkCard$1;
|
|
50239
50386
|
exports.Loading = Loading;
|
|
50240
50387
|
exports.LoadingLine = LoadingLine;
|
|
50241
50388
|
exports.LoginForm = LoginForm;
|
|
@@ -50270,6 +50417,7 @@ exports.PeriscopeDashboardIframe = PeriscopeDashboardIframe;
|
|
|
50270
50417
|
exports.PeriscopeFailedIcon = PeriscopeFailedIcon;
|
|
50271
50418
|
exports.PhoneForm = PhoneForm;
|
|
50272
50419
|
exports.Placeholder = Placeholder$1;
|
|
50420
|
+
exports.PlusCircleIcon = PlusCircleIcon;
|
|
50273
50421
|
exports.PointOfSaleImage = PointOfSaleImage;
|
|
50274
50422
|
exports.Popover = Popover$1;
|
|
50275
50423
|
exports.ProcessingFee = ProcessingFee$1;
|