@thecb/components 7.10.0-beta.1 → 7.10.1-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 +150 -24
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +151 -24
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/.DS_Store +0 -0
- package/src/components/atoms/.DS_Store +0 -0
- package/src/components/atoms/checkbox/Checkbox.js +20 -17
- package/src/components/atoms/icons/icons.stories.js +0 -2
- package/src/components/atoms/icons/index.js +0 -2
- package/src/components/molecules/.DS_Store +0 -0
- package/src/components/molecules/terms-and-conditions/TermsAndConditions.js +10 -41
- package/src/components/molecules/terms-and-conditions/TermsAndConditionsControlV1.js +45 -0
- package/src/components/molecules/terms-and-conditions/TermsAndConditionsControlV2.js +89 -0
- package/src/util/generateShadows.js +60 -0
- package/src/components/atoms/icons/PencilIcon.js +0 -20
- /package/src/components/atoms/icons/{ExternalLinkIcon.js → ExternalLinkicon.js} +0 -0
package/dist/index.esm.js
CHANGED
|
@@ -14732,23 +14732,6 @@ var FailedIcon = function FailedIcon() {
|
|
|
14732
14732
|
}))));
|
|
14733
14733
|
};
|
|
14734
14734
|
|
|
14735
|
-
var PencilIcon = function PencilIcon(_ref) {
|
|
14736
|
-
var _ref$ariaLabel = _ref.ariaLabel,
|
|
14737
|
-
ariaLabel = _ref$ariaLabel === void 0 ? "Edit" : _ref$ariaLabel;
|
|
14738
|
-
return /*#__PURE__*/React.createElement("svg", {
|
|
14739
|
-
"aria-label": ariaLabel,
|
|
14740
|
-
width: "24px",
|
|
14741
|
-
height: "24px",
|
|
14742
|
-
fill: "none",
|
|
14743
|
-
xmlns: "http://www.w3.org/2000/svg"
|
|
14744
|
-
}, /*#__PURE__*/React.createElement("path", {
|
|
14745
|
-
fillRule: "evenodd",
|
|
14746
|
-
clipRule: "evenodd",
|
|
14747
|
-
d: "M19.74 6.84a.885.885 0 0 1 0 1.253l-1.626 1.626-3.333-3.333 1.626-1.626a.885.885 0 0 1 1.253 0l2.08 2.08ZM4 20.5v-3.333l9.83-9.83 3.333 3.333-9.83 9.83H4Z",
|
|
14748
|
-
fill: "#15749D"
|
|
14749
|
-
}));
|
|
14750
|
-
};
|
|
14751
|
-
|
|
14752
14735
|
var PendingIcon = function PendingIcon() {
|
|
14753
14736
|
return /*#__PURE__*/React.createElement("svg", {
|
|
14754
14737
|
width: "32px",
|
|
@@ -20998,7 +20981,7 @@ var CheckboxContainer = styled.div.withConfig({
|
|
|
20998
20981
|
var CheckboxLabelContainer = styled.label.withConfig({
|
|
20999
20982
|
displayName: "Checkbox__CheckboxLabelContainer",
|
|
21000
20983
|
componentId: "sc-36kqbv-1"
|
|
21001
|
-
})(["display:flex;align-items:center;"]);
|
|
20984
|
+
})(["display:flex;align-items:center;column-gap:1rem;"]);
|
|
21002
20985
|
var CheckboxIcon = styled.svg.withConfig({
|
|
21003
20986
|
displayName: "Checkbox__CheckboxIcon",
|
|
21004
20987
|
componentId: "sc-36kqbv-2"
|
|
@@ -21017,7 +21000,7 @@ var HiddenCheckbox = styled.input.attrs({
|
|
|
21017
21000
|
var StyledCheckbox = styled.div.withConfig({
|
|
21018
21001
|
displayName: "Checkbox__StyledCheckbox",
|
|
21019
21002
|
componentId: "sc-36kqbv-4"
|
|
21020
|
-
})(["display:inline-block;
|
|
21003
|
+
})(["display:inline-block;width:24px;height:24px;border-radius:2px;transition:all 150ms;", "{visibility:", ";}", ";"], CheckboxIcon, function (_ref2) {
|
|
21021
21004
|
var checked = _ref2.checked;
|
|
21022
21005
|
return checked ? "visible" : "hidden";
|
|
21023
21006
|
}, function (_ref3) {
|
|
@@ -21047,6 +21030,8 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21047
21030
|
hidden = _ref4$hidden === void 0 ? false : _ref4$hidden,
|
|
21048
21031
|
_ref4$error = _ref4.error,
|
|
21049
21032
|
error = _ref4$error === void 0 ? false : _ref4$error,
|
|
21033
|
+
_ref4$checkboxMargin = _ref4.checkboxMargin,
|
|
21034
|
+
checkboxMargin = _ref4$checkboxMargin === void 0 ? "0 16px 0 0" : _ref4$checkboxMargin,
|
|
21050
21035
|
extraStyles = _ref4.extraStyles,
|
|
21051
21036
|
textExtraStyles = _ref4.textExtraStyles;
|
|
21052
21037
|
|
|
@@ -21075,7 +21060,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21075
21060
|
},
|
|
21076
21061
|
hiddenStyles: hidden,
|
|
21077
21062
|
background: themeValues.backgroundColor,
|
|
21078
|
-
extraStyles: "outline: none; ".concat(extraStyles)
|
|
21063
|
+
extraStyles: "outline: none; ".concat(extraStyles, "; margin: ").concat(checkboxMargin, ";")
|
|
21079
21064
|
}, /*#__PURE__*/React.createElement(CheckboxLabelContainer, null, /*#__PURE__*/React.createElement(CheckboxContainer, {
|
|
21080
21065
|
"data-qa": "Checkbox"
|
|
21081
21066
|
}, /*#__PURE__*/React.createElement(HiddenCheckbox, {
|
|
@@ -21087,7 +21072,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21087
21072
|
onChange: onChange,
|
|
21088
21073
|
tabIndex: "-1",
|
|
21089
21074
|
"aria-invalid": error,
|
|
21090
|
-
"aria-describedby": "".concat(name, "-error-message")
|
|
21075
|
+
"aria-describedby": error ? "".concat(name, "-error-message") : ""
|
|
21091
21076
|
}), /*#__PURE__*/React.createElement(StyledCheckbox, {
|
|
21092
21077
|
error: error,
|
|
21093
21078
|
disabled: disabled,
|
|
@@ -21106,7 +21091,7 @@ var Checkbox = function Checkbox(_ref4) {
|
|
|
21106
21091
|
checkColor: themeValues.checkColor
|
|
21107
21092
|
}, /*#__PURE__*/React.createElement("polyline", {
|
|
21108
21093
|
points: "20 6 9 17 4 12"
|
|
21109
|
-
})))), /*#__PURE__*/React.createElement(Text$1, {
|
|
21094
|
+
})))), title && /*#__PURE__*/React.createElement(Text$1, {
|
|
21110
21095
|
variant: "p",
|
|
21111
21096
|
weight: themeValues.textFontWeight,
|
|
21112
21097
|
color: themeValues.textColor,
|
|
@@ -48549,7 +48534,7 @@ var TabSidebar = function TabSidebar(_ref) {
|
|
|
48549
48534
|
|
|
48550
48535
|
var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$P);
|
|
48551
48536
|
|
|
48552
|
-
var
|
|
48537
|
+
var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
|
|
48553
48538
|
var onCheck = _ref.onCheck,
|
|
48554
48539
|
isChecked = _ref.isChecked,
|
|
48555
48540
|
html = _ref.html,
|
|
@@ -48582,6 +48567,148 @@ var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
|
48582
48567
|
})))));
|
|
48583
48568
|
};
|
|
48584
48569
|
|
|
48570
|
+
/*
|
|
48571
|
+
|
|
48572
|
+
A utility function that can generate box-shadow values for components
|
|
48573
|
+
Takes a string representing an rgb color value and returns an object
|
|
48574
|
+
with values for standard, inset, and overlay shadows.
|
|
48575
|
+
|
|
48576
|
+
The objects for standard and inset shadows contain versions approiate
|
|
48577
|
+
for base, hover, and active interaction states.
|
|
48578
|
+
|
|
48579
|
+
*/
|
|
48580
|
+
|
|
48581
|
+
/*
|
|
48582
|
+
Function to convert string representing rgb color to rgba value with provided opacity
|
|
48583
|
+
("rgb(41, 42, 51)", "0.1") => "rgba(41, 42, 51, 0.1)"
|
|
48584
|
+
|
|
48585
|
+
*/
|
|
48586
|
+
var rgbToRgba = function rgbToRgba() {
|
|
48587
|
+
var rgbValue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "";
|
|
48588
|
+
var opacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "";
|
|
48589
|
+
|
|
48590
|
+
if (typeof rgbValue !== "string" || typeof opacity !== "string" || rgbValue.charAt(0) === "#") {
|
|
48591
|
+
return "";
|
|
48592
|
+
}
|
|
48593
|
+
|
|
48594
|
+
return "".concat(rgbValue.slice(0, 3), "a").concat(rgbValue.slice(3, -1), ", ").concat(opacity).concat(rgbValue.slice(-1));
|
|
48595
|
+
};
|
|
48596
|
+
|
|
48597
|
+
var generateShadows = function generateShadows(baseColorRGB) {
|
|
48598
|
+
var colorTen = rgbToRgba(baseColorRGB, "0.1") || "rgba(41, 42, 51, 0.1)";
|
|
48599
|
+
var colorTwenty = rgbToRgba(baseColorRGB, "0.2") || "rgba(41, 42, 51, 0.2)";
|
|
48600
|
+
var colorTwentyFive = rgbToRgba(baseColorRGB, "0.25") || "rgba(41, 42, 51, 0.25)";
|
|
48601
|
+
var colorThirty = rgbToRgba(baseColorRGB, "0.3") || "rgba(41, 42, 51, 0.3)";
|
|
48602
|
+
var blackTwentyFive = "rgba(0, 0, 0, 0.25)";
|
|
48603
|
+
var standard = {
|
|
48604
|
+
base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 6px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
|
|
48605
|
+
hover: "0px 1px 2px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(blackTwentyFive, ", 0px 6px 12px 0px ").concat(colorTen),
|
|
48606
|
+
active: "0px 2px 8px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(colorThirty, ", 0px 6px 12px 0px ").concat(colorTwentyFive)
|
|
48607
|
+
};
|
|
48608
|
+
var inset = {
|
|
48609
|
+
base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
|
|
48610
|
+
hover: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwentyFive, ", 0px 4px 8px 0px ").concat(colorTen),
|
|
48611
|
+
active: "0px 1px 2px 2px ".concat(colorTwenty, ", 0px 3px 6px 0px ").concat(colorThirty, ", 0px 4px 8px 0px ").concat(colorTwenty)
|
|
48612
|
+
};
|
|
48613
|
+
var overlay = {
|
|
48614
|
+
base: "0px 7px 32px 0px ".concat(colorTwenty, ", 0px 1px 4px 0px ").concat(colorTwenty, ", 0px 1px 8px -1px ").concat(colorThirty)
|
|
48615
|
+
};
|
|
48616
|
+
return {
|
|
48617
|
+
standard: standard,
|
|
48618
|
+
inset: inset,
|
|
48619
|
+
overlay: overlay
|
|
48620
|
+
};
|
|
48621
|
+
};
|
|
48622
|
+
|
|
48623
|
+
var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
|
|
48624
|
+
var _ref$showCheckbox = _ref.showCheckbox,
|
|
48625
|
+
showCheckbox = _ref$showCheckbox === void 0 ? true : _ref$showCheckbox,
|
|
48626
|
+
onCheck = _ref.onCheck,
|
|
48627
|
+
isChecked = _ref.isChecked,
|
|
48628
|
+
hasError = _ref.hasError,
|
|
48629
|
+
_ref$errorMessage = _ref.errorMessage,
|
|
48630
|
+
errorMessage = _ref$errorMessage === void 0 ? "Please accept Terms and Conditions" : _ref$errorMessage,
|
|
48631
|
+
_ref$description = _ref.description,
|
|
48632
|
+
description = _ref$description === void 0 ? "" : _ref$description,
|
|
48633
|
+
_ref$linkText = _ref.linkText,
|
|
48634
|
+
linkText = _ref$linkText === void 0 ? "Terms and Conditions" : _ref$linkText,
|
|
48635
|
+
html = _ref.html,
|
|
48636
|
+
terms = _ref.terms,
|
|
48637
|
+
_ref$id = _ref.id,
|
|
48638
|
+
id = _ref$id === void 0 ? "terms-and-conditions" : _ref$id,
|
|
48639
|
+
_ref$displayInline = _ref.displayInline,
|
|
48640
|
+
displayInline = _ref$displayInline === void 0 ? true : _ref$displayInline,
|
|
48641
|
+
_ref$modalVariant = _ref.modalVariant,
|
|
48642
|
+
modalVariant = _ref$modalVariant === void 0 ? "default" : _ref$modalVariant,
|
|
48643
|
+
_ref$containerBackgro = _ref.containerBackground,
|
|
48644
|
+
containerBackground = _ref$containerBackgro === void 0 ? ATHENS_GREY : _ref$containerBackgro,
|
|
48645
|
+
_ref$checkboxMargin = _ref.checkboxMargin,
|
|
48646
|
+
checkboxMargin = _ref$checkboxMargin === void 0 ? "4px 8px 4px 4px" : _ref$checkboxMargin,
|
|
48647
|
+
_ref$modalTitle = _ref.modalTitle,
|
|
48648
|
+
modalTitle = _ref$modalTitle === void 0 ? "Terms and Conditions" : _ref$modalTitle;
|
|
48649
|
+
|
|
48650
|
+
var _useState = useState(false),
|
|
48651
|
+
_useState2 = _slicedToArray(_useState, 2),
|
|
48652
|
+
showTerms = _useState2[0],
|
|
48653
|
+
toggleShowTerms = _useState2[1];
|
|
48654
|
+
|
|
48655
|
+
var standardBoxShadow = generateShadows().standard.base;
|
|
48656
|
+
return /*#__PURE__*/React.createElement(Box, {
|
|
48657
|
+
padding: displayInline ? "0" : "1.5rem",
|
|
48658
|
+
minWidth: displayInline ? "0" : "100%",
|
|
48659
|
+
background: displayInline ? "transparent" : containerBackground,
|
|
48660
|
+
boxShadow: displayInline ? "none" : standardBoxShadow,
|
|
48661
|
+
borderRadius: displayInline ? "0" : "4px"
|
|
48662
|
+
}, /*#__PURE__*/React.createElement(Stack, {
|
|
48663
|
+
childGap: "0"
|
|
48664
|
+
}, html && /*#__PURE__*/React.createElement(Box, {
|
|
48665
|
+
padding: "0"
|
|
48666
|
+
}, html), /*#__PURE__*/React.createElement(Cluster, {
|
|
48667
|
+
justify: "flex-start",
|
|
48668
|
+
align: "center",
|
|
48669
|
+
nowrap: true
|
|
48670
|
+
}, showCheckbox && /*#__PURE__*/React.createElement(Checkbox$1, {
|
|
48671
|
+
name: id,
|
|
48672
|
+
error: hasError,
|
|
48673
|
+
checked: isChecked,
|
|
48674
|
+
onChange: onCheck,
|
|
48675
|
+
checkboxMargin: checkboxMargin,
|
|
48676
|
+
extraStyles: "align-self: flex-start;"
|
|
48677
|
+
}), /*#__PURE__*/React.createElement(Stack, {
|
|
48678
|
+
childGap: "0.25rem",
|
|
48679
|
+
fullHeight: true
|
|
48680
|
+
}, /*#__PURE__*/React.createElement(Cluster, {
|
|
48681
|
+
justify: "flex-start",
|
|
48682
|
+
align: "center",
|
|
48683
|
+
nowrap: true,
|
|
48684
|
+
extraStyles: "padding-right: 2px; > div > * { margin: 4px 2px; };"
|
|
48685
|
+
}, description && /*#__PURE__*/React.createElement(Text$1, {
|
|
48686
|
+
color: CHARADE_GREY
|
|
48687
|
+
}, description), terms && /*#__PURE__*/React.createElement(TermsAndConditionsModal$1, {
|
|
48688
|
+
link: linkText,
|
|
48689
|
+
terms: terms,
|
|
48690
|
+
isOpen: showTerms,
|
|
48691
|
+
toggleOpen: toggleShowTerms,
|
|
48692
|
+
linkVariant: modalVariant,
|
|
48693
|
+
title: modalTitle
|
|
48694
|
+
})), showCheckbox && hasError && /*#__PURE__*/React.createElement(Text$1, {
|
|
48695
|
+
variant: "pXS",
|
|
48696
|
+
color: ERROR_COLOR,
|
|
48697
|
+
id: "".concat(id, "-error-message")
|
|
48698
|
+
}, errorMessage)))));
|
|
48699
|
+
};
|
|
48700
|
+
|
|
48701
|
+
var _excluded$y = ["version"];
|
|
48702
|
+
|
|
48703
|
+
var TermsAndConditions = function TermsAndConditions(_ref) {
|
|
48704
|
+
var _ref$version = _ref.version,
|
|
48705
|
+
version = _ref$version === void 0 ? "v1" : _ref$version,
|
|
48706
|
+
rest = _objectWithoutProperties(_ref, _excluded$y);
|
|
48707
|
+
|
|
48708
|
+
var TermsAndConditionsControl = version === "v1" ? TermsAndConditionsControlV1 : TermsAndConditionsControlV2;
|
|
48709
|
+
return /*#__PURE__*/React.createElement(TermsAndConditionsControl, rest);
|
|
48710
|
+
};
|
|
48711
|
+
|
|
48585
48712
|
var Timeout = function Timeout(_ref) {
|
|
48586
48713
|
var onLogout = _ref.onLogout;
|
|
48587
48714
|
|
|
@@ -48987,5 +49114,5 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
|
|
|
48987
49114
|
|
|
48988
49115
|
var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$R));
|
|
48989
49116
|
|
|
48990
|
-
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, AutopayOnIcon, 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, 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,
|
|
49117
|
+
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, AutopayOnIcon, 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, 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, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PhoneForm, Placeholder$1 as Placeholder, 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, 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 };
|
|
48991
49118
|
//# sourceMappingURL=index.esm.js.map
|