@thecb/components 8.3.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 +178 -32
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +176 -33
- 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/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/dist/index.esm.js
CHANGED
|
@@ -17664,6 +17664,44 @@ var ArrowRightCircleIconSmall = function ArrowRightCircleIconSmall(_ref) {
|
|
|
17664
17664
|
})));
|
|
17665
17665
|
};
|
|
17666
17666
|
|
|
17667
|
+
var ArrowRightIcon = function ArrowRightIcon(_ref) {
|
|
17668
|
+
var _ref$color = _ref.color,
|
|
17669
|
+
color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color;
|
|
17670
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
17671
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
17672
|
+
width: "20",
|
|
17673
|
+
height: "20",
|
|
17674
|
+
viewBox: "0 0 20 20",
|
|
17675
|
+
fill: "none"
|
|
17676
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
17677
|
+
fillRule: "evenodd",
|
|
17678
|
+
clipRule: "evenodd",
|
|
17679
|
+
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",
|
|
17680
|
+
fill: color
|
|
17681
|
+
}), /*#__PURE__*/React.createElement("mask", {
|
|
17682
|
+
id: "mask0_6329_1483",
|
|
17683
|
+
style: {
|
|
17684
|
+
maskType: "luminance"
|
|
17685
|
+
},
|
|
17686
|
+
maskUnits: "userSpaceOnUse",
|
|
17687
|
+
x: "3",
|
|
17688
|
+
y: "3",
|
|
17689
|
+
width: "14",
|
|
17690
|
+
height: "14"
|
|
17691
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
17692
|
+
fillRule: "evenodd",
|
|
17693
|
+
clipRule: "evenodd",
|
|
17694
|
+
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",
|
|
17695
|
+
fill: "white"
|
|
17696
|
+
})), /*#__PURE__*/React.createElement("g", {
|
|
17697
|
+
mask: "url(#mask0_6329_1483)"
|
|
17698
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
17699
|
+
width: "20",
|
|
17700
|
+
height: "20",
|
|
17701
|
+
fill: color
|
|
17702
|
+
})));
|
|
17703
|
+
};
|
|
17704
|
+
|
|
17667
17705
|
var ArrowUpCircleIconSmall = function ArrowUpCircleIconSmall(_ref) {
|
|
17668
17706
|
var _ref$color = _ref.color,
|
|
17669
17707
|
color = _ref$color === void 0 ? "#15749D" : _ref$color,
|
|
@@ -18054,6 +18092,23 @@ var ChargebackReversalIconMedium = function ChargebackReversalIconMedium(_ref) {
|
|
|
18054
18092
|
})));
|
|
18055
18093
|
};
|
|
18056
18094
|
|
|
18095
|
+
var PlusCircleIcon = function PlusCircleIcon(_ref) {
|
|
18096
|
+
var _ref$color = _ref.color,
|
|
18097
|
+
color = _ref$color === void 0 ? ROYAL_BLUE_VIVID : _ref$color;
|
|
18098
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
18099
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
18100
|
+
width: "20",
|
|
18101
|
+
height: "20",
|
|
18102
|
+
viewBox: "0 0 20 20",
|
|
18103
|
+
fill: "none"
|
|
18104
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
18105
|
+
fillRule: "evenodd",
|
|
18106
|
+
clipRule: "evenodd",
|
|
18107
|
+
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",
|
|
18108
|
+
fill: color
|
|
18109
|
+
}));
|
|
18110
|
+
};
|
|
18111
|
+
|
|
18057
18112
|
var color$2 = "#15749D";
|
|
18058
18113
|
var hoverColor$1 = "#116285";
|
|
18059
18114
|
var activeColor$1 = "#0E506D";
|
|
@@ -18808,7 +18863,7 @@ var StyledBadgeContainer = styled(Box).withConfig({
|
|
|
18808
18863
|
var StyledBadge = styled(Text$1).withConfig({
|
|
18809
18864
|
displayName: "Badge__StyledBadge",
|
|
18810
18865
|
componentId: "sc-1g438j-1"
|
|
18811
|
-
})(["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;}"]);
|
|
18866
|
+
})(["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;}"]);
|
|
18812
18867
|
|
|
18813
18868
|
var Badge = function Badge(_ref) {
|
|
18814
18869
|
var label = _ref.label,
|
|
@@ -42771,6 +42826,94 @@ var PROPERTIES_COMMERCIAL_AUTO_ICON = "PROPERTIES_COMMERCIAL_AUTO";
|
|
|
42771
42826
|
var MISC_BILL_ICON = "MISC_SINGLE_BILL";
|
|
42772
42827
|
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);
|
|
42773
42828
|
|
|
42829
|
+
var background$3 = {
|
|
42830
|
+
"default": "".concat(WHITE)
|
|
42831
|
+
};
|
|
42832
|
+
var color$b = {
|
|
42833
|
+
"default": "".concat(ROYAL_BLUE_VIVID)
|
|
42834
|
+
};
|
|
42835
|
+
var fallbackValues$I = {
|
|
42836
|
+
background: background$3,
|
|
42837
|
+
color: color$b
|
|
42838
|
+
};
|
|
42839
|
+
|
|
42840
|
+
var LinkCard = function LinkCard(_ref) {
|
|
42841
|
+
var _ref$variant = _ref.variant,
|
|
42842
|
+
_ref$workflowName = _ref.workflowName,
|
|
42843
|
+
workflowName = _ref$workflowName === void 0 ? "Test Workflow" : _ref$workflowName,
|
|
42844
|
+
_ref$workflowDescript = _ref.workflowDescription,
|
|
42845
|
+
workflowDescription = _ref$workflowDescript === void 0 ? "Link your benefit plan" : _ref$workflowDescript,
|
|
42846
|
+
_ref$workflowActionNa = _ref.workflowActionName,
|
|
42847
|
+
workflowActionName = _ref$workflowActionNa === void 0 ? "Find" : _ref$workflowActionNa,
|
|
42848
|
+
themeValues = _ref.themeValues,
|
|
42849
|
+
slug = _ref.slug;
|
|
42850
|
+
var navigate = useNavigate();
|
|
42851
|
+
return /*#__PURE__*/React.createElement(Box, {
|
|
42852
|
+
background: "#FEFEFE" // --grays-cool-gray-00
|
|
42853
|
+
,
|
|
42854
|
+
border: "1px solid #C4CEF4;" // --primary-color-primary-30
|
|
42855
|
+
,
|
|
42856
|
+
padding: 0,
|
|
42857
|
+
borderRadius: "8px",
|
|
42858
|
+
dataQa: "link-card-".concat(workflowDescription),
|
|
42859
|
+
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 "),
|
|
42860
|
+
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;",
|
|
42861
|
+
onClick: function onClick() {
|
|
42862
|
+
// @TODO replace with something valid like navigate
|
|
42863
|
+
console.log("attempting navigation..."); // window.location.pathname = `/service/${slug}`;
|
|
42864
|
+
|
|
42865
|
+
navigate("/service/".concat(slug));
|
|
42866
|
+
}
|
|
42867
|
+
}, /*#__PURE__*/React.createElement(Stack, {
|
|
42868
|
+
childGap: 0,
|
|
42869
|
+
bottomItem: 3,
|
|
42870
|
+
fullHeight: true
|
|
42871
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
42872
|
+
padding: "1rem 1rem 0 1rem"
|
|
42873
|
+
}, /*#__PURE__*/React.createElement(Heading$1, {
|
|
42874
|
+
variant: "h6",
|
|
42875
|
+
weight: FONT_WEIGHT_SEMIBOLD,
|
|
42876
|
+
color: themeValues.color,
|
|
42877
|
+
margin: "0 0 0.5rem 0",
|
|
42878
|
+
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%;"
|
|
42879
|
+
}, workflowName)), /*#__PURE__*/React.createElement(Box, {
|
|
42880
|
+
padding: "0 1rem 1rem",
|
|
42881
|
+
minHeight: "4.25rem"
|
|
42882
|
+
}, /*#__PURE__*/React.createElement(Paragraph$1, {
|
|
42883
|
+
variant: "pS",
|
|
42884
|
+
color: themeValues.color,
|
|
42885
|
+
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;"
|
|
42886
|
+
}, workflowDescription)), /*#__PURE__*/React.createElement(Box, {
|
|
42887
|
+
background: "transparent",
|
|
42888
|
+
borderWidthOverride: "0 0 0 0",
|
|
42889
|
+
padding: "1.5rem 0 1.5rem 1rem"
|
|
42890
|
+
}, /*#__PURE__*/React.createElement(Stack, {
|
|
42891
|
+
direction: "row",
|
|
42892
|
+
justify: "space-between"
|
|
42893
|
+
}, /*#__PURE__*/React.createElement(Box, {
|
|
42894
|
+
background: "transparent",
|
|
42895
|
+
borderWidthOverride: "0 0 0 0",
|
|
42896
|
+
padding: "0"
|
|
42897
|
+
}, /*#__PURE__*/React.createElement(Badge$1, {
|
|
42898
|
+
label: "Autopay Available",
|
|
42899
|
+
Icon: AutopayIcon
|
|
42900
|
+
})), /*#__PURE__*/React.createElement(Stack, {
|
|
42901
|
+
direction: "row",
|
|
42902
|
+
childGap: "6px"
|
|
42903
|
+
}, /*#__PURE__*/React.createElement(Text$1, {
|
|
42904
|
+
variant: "pS",
|
|
42905
|
+
color: themeValues.color,
|
|
42906
|
+
extraStyles: "text-align: right; color: transparent;",
|
|
42907
|
+
className: "show-on-hover"
|
|
42908
|
+
}, workflowActionName), workflowActionName === "Find" && /*#__PURE__*/React.createElement(PlusCircleIcon, {
|
|
42909
|
+
color: themeValues.color
|
|
42910
|
+
}), workflowActionName === "Pay" && /*#__PURE__*/React.createElement(ArrowRightIcon, {
|
|
42911
|
+
color: themeValues.color
|
|
42912
|
+
}))))));
|
|
42913
|
+
};
|
|
42914
|
+
|
|
42915
|
+
var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$I, "default");
|
|
42916
|
+
|
|
42774
42917
|
var LoginForm = function LoginForm(_ref) {
|
|
42775
42918
|
var _emailErrorMessages;
|
|
42776
42919
|
|
|
@@ -46470,7 +46613,7 @@ var backgroundColor$9 = {
|
|
|
46470
46613
|
largeTitle: WHITE,
|
|
46471
46614
|
small: WHITE
|
|
46472
46615
|
};
|
|
46473
|
-
var fallbackValues$
|
|
46616
|
+
var fallbackValues$J = {
|
|
46474
46617
|
fontSize: fontSize$9,
|
|
46475
46618
|
fontWeight: fontWeight$5,
|
|
46476
46619
|
fontColor: fontColor,
|
|
@@ -46538,7 +46681,7 @@ var Module = function Module(_ref) {
|
|
|
46538
46681
|
}, children)));
|
|
46539
46682
|
};
|
|
46540
46683
|
|
|
46541
|
-
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$
|
|
46684
|
+
var Module$1 = /*#__PURE__*/memo(themeComponent(Module, "Module", fallbackValues$J, "default"));
|
|
46542
46685
|
|
|
46543
46686
|
var backgroundColor$a = {
|
|
46544
46687
|
profile: "#3b414d",
|
|
@@ -46548,7 +46691,7 @@ var shadowColor = {
|
|
|
46548
46691
|
profile: "#292A33",
|
|
46549
46692
|
cms: "#292A33"
|
|
46550
46693
|
};
|
|
46551
|
-
var fallbackValues$
|
|
46694
|
+
var fallbackValues$K = {
|
|
46552
46695
|
backgroundColor: backgroundColor$a,
|
|
46553
46696
|
shadowColor: shadowColor
|
|
46554
46697
|
};
|
|
@@ -46589,7 +46732,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
|
|
|
46589
46732
|
}, menuContent));
|
|
46590
46733
|
};
|
|
46591
46734
|
|
|
46592
|
-
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$
|
|
46735
|
+
var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$K, "profile");
|
|
46593
46736
|
|
|
46594
46737
|
var menu = posed.div({
|
|
46595
46738
|
invisible: {
|
|
@@ -46651,7 +46794,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
|
|
|
46651
46794
|
}, menuContent));
|
|
46652
46795
|
};
|
|
46653
46796
|
|
|
46654
|
-
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$
|
|
46797
|
+
var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$K, "profile");
|
|
46655
46798
|
|
|
46656
46799
|
var ACH_METHOD = "BANK_ACCOUNT";
|
|
46657
46800
|
var CC_METHOD = "CREDIT_CARD";
|
|
@@ -46706,14 +46849,14 @@ var TitleModule = function TitleModule(_ref) {
|
|
|
46706
46849
|
}, subtitle)));
|
|
46707
46850
|
};
|
|
46708
46851
|
|
|
46709
|
-
var color$
|
|
46852
|
+
var color$c = "#15749D";
|
|
46710
46853
|
var hoverColor$5 = "#116285";
|
|
46711
46854
|
var activeColor$8 = "#0E506D";
|
|
46712
46855
|
var linkColor$4 = "#3176AA";
|
|
46713
46856
|
var fontWeight$6 = FONT_WEIGHT_REGULAR;
|
|
46714
46857
|
var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
|
|
46715
|
-
var fallbackValues$
|
|
46716
|
-
color: color$
|
|
46858
|
+
var fallbackValues$L = {
|
|
46859
|
+
color: color$c,
|
|
46717
46860
|
hoverColor: hoverColor$5,
|
|
46718
46861
|
activeColor: activeColor$8,
|
|
46719
46862
|
linkColor: linkColor$4,
|
|
@@ -46838,7 +46981,7 @@ var AutopayModal = function AutopayModal(_ref) {
|
|
|
46838
46981
|
}, modalExtraProps), renderAutoPayControl());
|
|
46839
46982
|
};
|
|
46840
46983
|
|
|
46841
|
-
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$
|
|
46984
|
+
var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$L);
|
|
46842
46985
|
|
|
46843
46986
|
var AmountModule = function AmountModule(_ref) {
|
|
46844
46987
|
var totalAmountDue = _ref.totalAmountDue,
|
|
@@ -47513,7 +47656,7 @@ var numberColor = MATISSE_BLUE;
|
|
|
47513
47656
|
var hoverBackgroundColor$2 = ALABASTER_WHITE;
|
|
47514
47657
|
var activeBackgroundColor$1 = WHITE;
|
|
47515
47658
|
var activeColor$9 = MATISSE_BLUE;
|
|
47516
|
-
var fallbackValues$
|
|
47659
|
+
var fallbackValues$M = {
|
|
47517
47660
|
activeColor: activeColor$9,
|
|
47518
47661
|
activeBackgroundColor: activeBackgroundColor$1,
|
|
47519
47662
|
arrowColor: arrowColor,
|
|
@@ -47721,7 +47864,7 @@ var Pagination = function Pagination(_ref3) {
|
|
|
47721
47864
|
}));
|
|
47722
47865
|
};
|
|
47723
47866
|
|
|
47724
|
-
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$
|
|
47867
|
+
var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$M);
|
|
47725
47868
|
|
|
47726
47869
|
var PaymentButtonBar = function PaymentButtonBar(_ref) {
|
|
47727
47870
|
var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
|
|
@@ -47805,7 +47948,7 @@ var labeledAmountTotal = {
|
|
|
47805
47948
|
"default": "h6",
|
|
47806
47949
|
small: "p"
|
|
47807
47950
|
};
|
|
47808
|
-
var fallbackValues$
|
|
47951
|
+
var fallbackValues$N = {
|
|
47809
47952
|
backgroundColor: backgroundColor$b,
|
|
47810
47953
|
lineItem: lineItem,
|
|
47811
47954
|
labeledAmountSubtotal: labeledAmountSubtotal,
|
|
@@ -48125,7 +48268,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
|
|
|
48125
48268
|
});
|
|
48126
48269
|
};
|
|
48127
48270
|
|
|
48128
|
-
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$
|
|
48271
|
+
var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$N, "default");
|
|
48129
48272
|
|
|
48130
48273
|
var linkColor$5 = {
|
|
48131
48274
|
"default": "#3176AA"
|
|
@@ -48142,7 +48285,7 @@ var fontWeight$7 = {
|
|
|
48142
48285
|
var modalLinkHoverFocus$1 = {
|
|
48143
48286
|
"default": "outline: none; text-decoration: underline;"
|
|
48144
48287
|
};
|
|
48145
|
-
var fallbackValues$
|
|
48288
|
+
var fallbackValues$O = {
|
|
48146
48289
|
linkColor: linkColor$5,
|
|
48147
48290
|
fontSize: fontSize$a,
|
|
48148
48291
|
lineHeight: lineHeight$4,
|
|
@@ -48201,7 +48344,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
|
|
|
48201
48344
|
}, link));
|
|
48202
48345
|
};
|
|
48203
48346
|
|
|
48204
|
-
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$
|
|
48347
|
+
var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$O, "default");
|
|
48205
48348
|
|
|
48206
48349
|
var backgroundColor$c = {
|
|
48207
48350
|
"default": "#ffffff",
|
|
@@ -48232,7 +48375,7 @@ var modalLinkHoverFocus$2 = {
|
|
|
48232
48375
|
"default": standardInteractionStyles,
|
|
48233
48376
|
footer: standardInteractionStyles
|
|
48234
48377
|
};
|
|
48235
|
-
var fallbackValues$
|
|
48378
|
+
var fallbackValues$P = {
|
|
48236
48379
|
backgroundColor: backgroundColor$c,
|
|
48237
48380
|
linkColor: linkColor$6,
|
|
48238
48381
|
border: border$3,
|
|
@@ -48297,7 +48440,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
|
|
|
48297
48440
|
}, link));
|
|
48298
48441
|
};
|
|
48299
48442
|
|
|
48300
|
-
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$
|
|
48443
|
+
var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
|
|
48301
48444
|
|
|
48302
48445
|
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48303
48446
|
var onCheck = _ref.onCheck,
|
|
@@ -49096,7 +49239,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
|
|
|
49096
49239
|
var bodyBackgroundColor$1 = "#eeeeee";
|
|
49097
49240
|
var borderColor$5 = "".concat(GREY_CHATEAU);
|
|
49098
49241
|
var focusStyles = "outline: none;";
|
|
49099
|
-
var fallbackValues$
|
|
49242
|
+
var fallbackValues$Q = {
|
|
49100
49243
|
headingBackgroundColor: headingBackgroundColor$1,
|
|
49101
49244
|
headingDisabledColor: headingDisabledColor,
|
|
49102
49245
|
bodyBackgroundColor: bodyBackgroundColor$1,
|
|
@@ -49286,7 +49429,7 @@ var RadioSection = function RadioSection(_ref) {
|
|
|
49286
49429
|
})));
|
|
49287
49430
|
};
|
|
49288
49431
|
|
|
49289
|
-
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$
|
|
49432
|
+
var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$Q);
|
|
49290
49433
|
|
|
49291
49434
|
var RegistrationForm = function RegistrationForm(_ref) {
|
|
49292
49435
|
var _emailErrorMessages, _passwordErrorMessage;
|
|
@@ -49583,7 +49726,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
|
|
|
49583
49726
|
var activeTabBackground = "#FFFFFF";
|
|
49584
49727
|
var activeTabAccent = "#15749D";
|
|
49585
49728
|
var activeTabHover = "#B8D5E1";
|
|
49586
|
-
var fallbackValues$
|
|
49729
|
+
var fallbackValues$R = {
|
|
49587
49730
|
activeTabBackground: activeTabBackground,
|
|
49588
49731
|
activeTabAccent: activeTabAccent,
|
|
49589
49732
|
activeTabHover: activeTabHover
|
|
@@ -49662,12 +49805,12 @@ var Tabs = function Tabs(_ref) {
|
|
|
49662
49805
|
}))));
|
|
49663
49806
|
};
|
|
49664
49807
|
|
|
49665
|
-
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$
|
|
49808
|
+
var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$R);
|
|
49666
49809
|
|
|
49667
49810
|
var activeTabBackground$1 = "#FFFFFF";
|
|
49668
49811
|
var activeTabAccent$1 = "#15749D";
|
|
49669
49812
|
var activeTabHover$1 = "#B8D5E1";
|
|
49670
|
-
var fallbackValues$
|
|
49813
|
+
var fallbackValues$S = {
|
|
49671
49814
|
activeTabBackground: activeTabBackground$1,
|
|
49672
49815
|
activeTabAccent: activeTabAccent$1,
|
|
49673
49816
|
activeTabHover: activeTabHover$1
|
|
@@ -49723,7 +49866,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
49723
49866
|
})));
|
|
49724
49867
|
};
|
|
49725
49868
|
|
|
49726
|
-
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$
|
|
49869
|
+
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$S);
|
|
49727
49870
|
|
|
49728
49871
|
var Timeout = function Timeout(_ref) {
|
|
49729
49872
|
var onLogout = _ref.onLogout;
|
|
@@ -49767,7 +49910,7 @@ var fontColor$1 = WHITE;
|
|
|
49767
49910
|
var textAlign$1 = "left";
|
|
49768
49911
|
var headerBackgroundColor$1 = BRIGHT_GREY;
|
|
49769
49912
|
var imageBackgroundColor$1 = MATISSE_BLUE;
|
|
49770
|
-
var fallbackValues$
|
|
49913
|
+
var fallbackValues$T = {
|
|
49771
49914
|
fontWeight: fontWeight$9,
|
|
49772
49915
|
fontColor: fontColor$1,
|
|
49773
49916
|
textAlign: textAlign$1,
|
|
@@ -49814,7 +49957,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
|
|
|
49814
49957
|
})))));
|
|
49815
49958
|
};
|
|
49816
49959
|
|
|
49817
|
-
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$
|
|
49960
|
+
var WelcomeModule$1 = /*#__PURE__*/memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$T));
|
|
49818
49961
|
|
|
49819
49962
|
var WorkflowTile = function WorkflowTile(_ref) {
|
|
49820
49963
|
var _ref$workflowName = _ref.workflowName,
|
|
@@ -49869,7 +50012,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
|
|
|
49869
50012
|
};
|
|
49870
50013
|
|
|
49871
50014
|
var pageBackground = "#FBFCFD";
|
|
49872
|
-
var fallbackValues$
|
|
50015
|
+
var fallbackValues$U = {
|
|
49873
50016
|
pageBackground: pageBackground
|
|
49874
50017
|
};
|
|
49875
50018
|
|
|
@@ -49918,7 +50061,7 @@ var CenterSingle = function CenterSingle(_ref) {
|
|
|
49918
50061
|
})));
|
|
49919
50062
|
};
|
|
49920
50063
|
|
|
49921
|
-
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$
|
|
50064
|
+
var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$U));
|
|
49922
50065
|
|
|
49923
50066
|
var CenterStack = function CenterStack(_ref) {
|
|
49924
50067
|
var header = _ref.header,
|
|
@@ -49960,7 +50103,7 @@ var CenterStack = function CenterStack(_ref) {
|
|
|
49960
50103
|
})));
|
|
49961
50104
|
};
|
|
49962
50105
|
|
|
49963
|
-
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$
|
|
50106
|
+
var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$U));
|
|
49964
50107
|
|
|
49965
50108
|
var CenterSingle$2 = function CenterSingle(_ref) {
|
|
49966
50109
|
var header = _ref.header,
|
|
@@ -50005,7 +50148,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
|
|
|
50005
50148
|
})));
|
|
50006
50149
|
};
|
|
50007
50150
|
|
|
50008
|
-
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$
|
|
50151
|
+
var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$U));
|
|
50009
50152
|
|
|
50010
50153
|
var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
50011
50154
|
var header = _ref.header,
|
|
@@ -50059,7 +50202,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
|
|
|
50059
50202
|
})));
|
|
50060
50203
|
};
|
|
50061
50204
|
|
|
50062
|
-
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$
|
|
50205
|
+
var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$U));
|
|
50063
50206
|
|
|
50064
50207
|
var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
50065
50208
|
var header = _ref.header,
|
|
@@ -50130,7 +50273,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
50130
50273
|
})));
|
|
50131
50274
|
};
|
|
50132
50275
|
|
|
50133
|
-
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$
|
|
50276
|
+
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$U));
|
|
50134
50277
|
|
|
50135
|
-
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, 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, 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, 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, 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 };
|
|
50278
|
+
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, 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 };
|
|
50136
50279
|
//# sourceMappingURL=index.esm.js.map
|