@thecb/components 7.10.0 → 7.10.1-beta.1

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