@thecb/components 11.8.0-beta.6 → 11.8.0-beta.7

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
@@ -51167,35 +51167,25 @@ var TurnstileWidget = /*#__PURE__*/forwardRef(function (_ref4, ref) {
51167
51167
  }, error)));
51168
51168
  });
51169
51169
 
51170
- var hoverColor$6 = "#116285";
51171
- var activeColor$b = "#0E506D";
51172
- var tooltipTriggerColor = "#15749D";
51170
+ var TOOLTIP_THEME_SOURCE = "Popover";
51173
51171
  var fallbackValues$12 = {
51174
- hoverColor: hoverColor$6,
51175
- activeColor: activeColor$b,
51176
- tooltipTriggerColor: tooltipTriggerColor
51172
+ hoverColor: SAPPHIRE_BLUE,
51173
+ activeColor: PEACOCK_BLUE,
51174
+ popoverTriggerColor: MATISSE_BLUE,
51175
+ borderColor: "rgba(255, 255, 255, 0.85)"
51177
51176
  };
51178
-
51179
51177
  var Tooltip = function Tooltip(_ref) {
51180
- var _ref$tooltipContainer = _ref.tooltipContainerExtraStyles,
51181
- tooltipContainerExtraStyles = _ref$tooltipContainer === void 0 ? "" : _ref$tooltipContainer,
51182
- themeValues = _ref.themeValues,
51183
- _ref$tooltipID = _ref.tooltipID,
51184
- tooltipID = _ref$tooltipID === void 0 ? "tooltip-content" : _ref$tooltipID,
51178
+ var tooltipID = _ref.tooltipID,
51185
51179
  _ref$hasIconTrigger = _ref.hasIconTrigger,
51186
51180
  hasIconTrigger = _ref$hasIconTrigger === void 0 ? false : _ref$hasIconTrigger,
51187
51181
  _ref$IconTrigger = _ref.IconTrigger,
51188
51182
  IconTrigger = _ref$IconTrigger === void 0 ? WarningIconXS : _ref$IconTrigger,
51189
51183
  _ref$iconHelpText = _ref.iconHelpText,
51190
51184
  iconHelpText = _ref$iconHelpText === void 0 ? "Open the tooltip" : _ref$iconHelpText,
51185
+ _ref$triggerText = _ref.triggerText,
51186
+ triggerText = _ref$triggerText === void 0 ? "Open the tooltip" : _ref$triggerText,
51191
51187
  _ref$tooltipContent = _ref.tooltipContent,
51192
- tooltipContent = _ref$tooltipContent === void 0 ? "" : _ref$tooltipContent,
51193
- _ref$tooltipTriggerTe = _ref.tooltipTriggerText,
51194
- tooltipTriggerText = _ref$tooltipTriggerTe === void 0 ? "" : _ref$tooltipTriggerTe,
51195
- _ref$triggerTextExtra = _ref.triggerTextExtraStyles,
51196
- triggerTextExtraStyles = _ref$triggerTextExtra === void 0 ? "" : _ref$triggerTextExtra,
51197
- _ref$contentExtraStyl = _ref.contentExtraStyles,
51198
- contentExtraStyles = _ref$contentExtraStyl === void 0 ? "" : _ref$contentExtraStyl,
51188
+ tooltipContent = _ref$tooltipContent === void 0 ? "The contents of the tooltip go here." : _ref$tooltipContent,
51199
51189
  _ref$contentPosition = _ref.contentPosition,
51200
51190
  contentPosition = _ref$contentPosition === void 0 ? {
51201
51191
  top: "-110px",
@@ -51218,31 +51208,34 @@ var Tooltip = function Tooltip(_ref) {
51218
51208
  maxWidth = _ref$maxWidth === void 0 ? "300px" : _ref$maxWidth,
51219
51209
  _ref$height = _ref.height,
51220
51210
  height = _ref$height === void 0 ? "auto" : _ref$height,
51221
- buttonExtraStyles = _ref.buttonExtraStyles,
51222
- _ref$backgroundColor = _ref.backgroundColor,
51223
- backgroundColor = _ref$backgroundColor === void 0 ? "white" : _ref$backgroundColor,
51224
- _ref$borderColor = _ref.borderColor,
51225
- borderColor = _ref$borderColor === void 0 ? "rgba(255, 255, 255, 0.85)" : _ref$borderColor;
51226
- var hoverColor = themeValues.hoverColor,
51227
- activeColor = themeValues.activeColor,
51228
- tooltipTriggerColor = themeValues.tooltipTriggerColor;
51229
- var _ref2 = contentPosition !== null && contentPosition !== void 0 ? contentPosition : {},
51230
- top = _ref2.top,
51231
- right = _ref2.right,
51232
- bottom = _ref2.bottom,
51233
- left = _ref2.left;
51234
- var _ref3 = arrowPosition !== null && arrowPosition !== void 0 ? arrowPosition : {},
51235
- arrowTop = _ref3.arrowTop,
51236
- arrowRight = _ref3.arrowRight,
51237
- arrowBottom = _ref3.arrowBottom,
51238
- arrowLeft = _ref3.arrowLeft;
51211
+ _ref$containerExtraSt = _ref.containerExtraStyles,
51212
+ containerExtraStyles = _ref$containerExtraSt === void 0 ? "" : _ref$containerExtraSt,
51213
+ _ref$triggerExtraStyl = _ref.triggerExtraStyles,
51214
+ triggerExtraStyles = _ref$triggerExtraStyl === void 0 ? "" : _ref$triggerExtraStyl,
51215
+ _ref$triggerButtonVar = _ref.triggerButtonVariant,
51216
+ triggerButtonVariant = _ref$triggerButtonVar === void 0 ? "smallGhost" : _ref$triggerButtonVar;
51217
+ var closeTimeoutRef = useRef(null);
51239
51218
  var _useState = useState(false),
51240
51219
  _useState2 = _slicedToArray(_useState, 2),
51241
51220
  tooltipOpen = _useState2[0],
51242
51221
  setTooltipOpen = _useState2[1];
51243
- var handleToggleTooltip = function handleToggleTooltip(tooltipState) {
51244
- if (tooltipOpen !== tooltipState) {
51245
- setTooltipOpen(tooltipState);
51222
+ var themeContext = useContext(ThemeContext);
51223
+ var themeValues = createThemeValues(themeContext, fallbackValues$12, TOOLTIP_THEME_SOURCE);
51224
+ var borderColor = themeValues.borderColor,
51225
+ popoverTriggerColor = themeValues.popoverTriggerColor,
51226
+ hoverColor = themeValues.hoverColor,
51227
+ activeColor = themeValues.activeColor;
51228
+ var top = contentPosition.top,
51229
+ right = contentPosition.right,
51230
+ bottom = contentPosition.bottom,
51231
+ left = contentPosition.left;
51232
+ var arrowTop = arrowPosition.arrowTop,
51233
+ arrowRight = arrowPosition.arrowRight,
51234
+ arrowBottom = arrowPosition.arrowBottom,
51235
+ arrowLeft = arrowPosition.arrowLeft;
51236
+ var handleToggleTooltip = function handleToggleTooltip(desiredTooltipState) {
51237
+ if (tooltipOpen !== desiredTooltipState) {
51238
+ setTooltipOpen(desiredTooltipState);
51246
51239
  }
51247
51240
  };
51248
51241
  var handleKeyboardEvent = function handleKeyboardEvent(e) {
@@ -51250,62 +51243,76 @@ var Tooltip = function Tooltip(_ref) {
51250
51243
  handleToggleTooltip(false);
51251
51244
  }
51252
51245
  };
51246
+ var handleMouseEnter = function handleMouseEnter() {
51247
+ if (closeTimeoutRef.current) {
51248
+ clearTimeout(closeTimeoutRef.current);
51249
+ closeTimeoutRef.current = null;
51250
+ }
51251
+ handleToggleTooltip(true);
51252
+ };
51253
+ var handleMouseLeave = function handleMouseLeave() {
51254
+ closeTimeoutRef.current = setTimeout(function () {
51255
+ handleToggleTooltip(false);
51256
+ }, 300);
51257
+ };
51258
+ useEffect$1(function () {
51259
+ return function () {
51260
+ if (closeTimeoutRef.current) {
51261
+ clearTimeout(closeTimeoutRef.current);
51262
+ }
51263
+ };
51264
+ }, []);
51253
51265
  return /*#__PURE__*/React__default.createElement(Box, {
51266
+ ref: closeTimeoutRef,
51254
51267
  padding: "0",
51255
- extraStyles: "position: relative; ".concat(tooltipContainerExtraStyles)
51256
- }, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
51268
+ extraStyles: "position: relative; ".concat(containerExtraStyles),
51257
51269
  action: function action() {
51258
51270
  return noop$1;
51259
51271
  },
51272
+ onMouseEnter: handleMouseEnter,
51273
+ onMouseLeave: handleMouseLeave,
51274
+ onKeyDown: handleKeyboardEvent,
51275
+ "data-qa": "tooltip-container"
51276
+ }, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
51277
+ "aria-describedby": tooltipID,
51278
+ variant: triggerButtonVariant,
51260
51279
  onFocus: function onFocus() {
51261
51280
  return handleToggleTooltip(true);
51262
51281
  },
51263
51282
  onBlur: function onBlur() {
51264
51283
  return handleToggleTooltip(false);
51265
51284
  },
51266
- onKeyDown: handleKeyboardEvent,
51267
51285
  onTouchStart: function onTouchStart() {
51268
51286
  return handleToggleTooltip(true);
51269
51287
  },
51270
- onTouchEnd: function onTouchEnd() {
51271
- return handleToggleTooltip(false);
51272
- },
51273
- onMouseEnter: function onMouseEnter() {
51274
- return handleToggleTooltip(true);
51275
- },
51276
- onMouseLeave: function onMouseLeave() {
51277
- return handleToggleTooltip(false);
51278
- },
51279
- contentOverride: true,
51280
- variant: "smallGhost",
51281
- tabIndex: "0",
51282
- "aria-describedby": tooltipID,
51283
- extraStyles: buttonExtraStyles
51284
- }, hasIconTrigger && /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(Box, {
51288
+ "data-qa": "tooltip-trigger",
51289
+ contentOverride: true
51290
+ }, hasIconTrigger === true && /*#__PURE__*/React__default.createElement(React__default.Fragment, null, /*#__PURE__*/React__default.createElement(Box, {
51285
51291
  "aria-label": "Open tooltip"
51286
51292
  }, /*#__PURE__*/React__default.createElement(IconTrigger, {
51287
- color: tooltipTriggerColor
51293
+ color: themeValues.links
51288
51294
  })), /*#__PURE__*/React__default.createElement(Box, {
51289
51295
  padding: "0",
51290
51296
  srOnly: true
51291
- }, /*#__PURE__*/React__default.createElement(Text$1, null, iconHelpText))), !hasIconTrigger && /*#__PURE__*/React__default.createElement(Text$1, {
51292
- extraStyles: "color: ".concat(tooltipTriggerColor, "; &:hover {\n ").concat(hoverColor, "; &:active ").concat(activeColor, "; ").concat(triggerTextExtraStyles)
51293
- }, tooltipTriggerText)), /*#__PURE__*/React__default.createElement(Box, {
51294
- background: backgroundColor,
51295
- borderRadius: "4px",
51296
- boxShadow: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
51297
- id: tooltipID,
51297
+ }, /*#__PURE__*/React__default.createElement(Text$1, null, iconHelpText))), hasIconTrigger === false && /*#__PURE__*/React__default.createElement(Text$1, {
51298
+ color: popoverTriggerColor,
51299
+ extraStyles: "\n &:visited {\n color: ".concat(popoverTriggerColor, ";\n }\n &:hover {\n color: ").concat(hoverColor, "; \n }\n &:active {\n color: ").concat(activeColor, "; \n }\n ").concat(triggerExtraStyles, ";\n ")
51300
+ }, triggerText)), /*#__PURE__*/React__default.createElement(Box, {
51298
51301
  role: "tooltip",
51299
- minWidth: minWidth,
51300
- maxWidth: maxWidth,
51302
+ id: tooltipID,
51301
51303
  "aria-hidden": !tooltipOpen,
51302
- extraStyles: "\n display: ".concat(tooltipOpen ? "block" : "none", "; \n position: absolute; \n top: ").concat(top, "; \n right: ").concat(right, "; \n bottom: ").concat(bottom, "; \n left: ").concat(left, ";\n height: ").concat(height, ";\n ").concat(contentExtraStyles, ";\n ")
51304
+ "data-qa": "tooltip-contents",
51305
+ extraStyles: "\n position: absolute;\n display: ".concat(tooltipOpen ? "block" : "none", "; \n top: ").concat(top, "; \n right: ").concat(right, "; \n bottom: ").concat(bottom, "; \n left: ").concat(left, ";\n height: ").concat(height, ";\n "),
51306
+ boxShadow: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
51307
+ border: "1px solid transparent",
51308
+ borderRadius: "4px",
51309
+ minWidth: minWidth,
51310
+ maxWidth: maxWidth
51303
51311
  }, /*#__PURE__*/React__default.createElement(Paragraph$1, null, tooltipContent), /*#__PURE__*/React__default.createElement(Box, {
51304
51312
  padding: "0",
51305
51313
  extraStyles: "\n position: absolute;\n content: \"\";\n width: 0;\n height: 0;\n ".concat(arrowBorder(borderColor, arrowDirection, "8px"), ";\n filter: drop-shadow(2px 8px 14px black);\n bottom: ").concat(arrowBottom, ";\n right: ").concat(arrowRight, ";\n top: ").concat(arrowTop, ";\n left: ").concat(arrowLeft, ";\n ")
51306
51314
  })));
51307
51315
  };
51308
- var Tooltip$1 = themeComponent(Tooltip, "Tooltip", fallbackValues$12);
51309
51316
 
51310
51317
  var pageBackground = "#FBFCFD";
51311
51318
  var fallbackValues$13 = {
@@ -51638,5 +51645,5 @@ var index$2 = /*#__PURE__*/Object.freeze({
51638
51645
  useLogoutTimers: useLogoutTimers
51639
51646
  });
51640
51647
 
51641
- export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, AgencyIcon, Alert$1 as Alert, AllocatedIcon, AmExSmallIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankGenericSmallIcon, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CaretArrowDown$1 as CaretArrowDown, CaretArrowUp$1 as CaretArrowUp, CarrotIcon$1 as CarrotIcon, CashIcon, CashSmallIcon, CashieringImage, 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, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, ContactCard, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DiscoverSmallIcon, DisplayBox$1 as DisplayBox, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, 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, FormTextarea$1 as FormTextarea, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GenericSmallIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HeroImage$1 as HeroImage, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, IdleModal, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, MasterCardSmallIcon, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, MultipleSelectFilter$1 as MultipleSelectFilter, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaydotImage, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentStatusIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PersonIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, Popover$1 as Popover, PopupMenu$1 as PopupMenu, 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, RegistrationBanner$1 as RegistrationBanner, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, Search$1 as Search, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, SortableTableHeading$1 as SortableTableHeading, 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, 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, ToastNotification, ToggleSwitch$1 as ToggleSwitch, Tooltip$1 as Tooltip, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TurnstileWidget, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VisaSmallIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WireSmallIcon, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$1 as hooks, index$2 as util, withWindowSize };
51648
+ export { AccountNumberImage, AccountsAddIcon$1 as AccountsAddIcon, AccountsIcon$1 as AccountsIcon, AccountsIconSmall$1 as AccountsIconSmall, AchReturnIcon, AddObligation$1 as AddObligation, AddressForm, AgencyIcon, Alert$1 as Alert, AllocatedIcon, AmExSmallIcon, AmountCallout$1 as AmountCallout, ArrowDownCircleIconSmall, ArrowLeftCircleIconMedium, ArrowLeftCircleIconSmall, ArrowRightCircleIconSmall, ArrowRightIcon, ArrowUpCircleIconSmall, AutopayIcon, AutopayOnIcon, Badge$1 as Badge, BankGenericSmallIcon, BankIcon, BankIconLarge, Banner$1 as Banner, Box, BoxWithShadow$1 as BoxWithShadow, Breadcrumbs as Breadcrumb, ButtonWithAction, ButtonWithLink, CalendarIcon, Card$1 as Card, CaretArrowDown$1 as CaretArrowDown, CaretArrowUp$1 as CaretArrowUp, CarrotIcon$1 as CarrotIcon, CashIcon, CashSmallIcon, CashieringImage, 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, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, ContactCard, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DiscoverSmallIcon, DisplayBox$1 as DisplayBox, Dropdown$1 as Dropdown, DuplicateIcon, EditNameForm, EditableList, EditableTable, EmailForm, EmptyCartIcon$1 as EmptyCartIcon, EmptyCartIconV2$1 as EmptyCartIconV2, 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, FormTextarea$1 as FormTextarea, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GenericSmallIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, HeroImage$1 as HeroImage, HighlightTabRow$1 as HighlightTabRow, HistoryIconSmall$1 as HistoryIconSmall, IconAdd, IconQuitLarge, IdleModal, ImageBox, Imposter, InternalLink, Jumbo$1 as Jumbo, KebabMenuIcon, KioskImage, LabeledAmount$1 as LabeledAmount, LineItem$1 as LineItem, LinkCard$1 as LinkCard, Loading, LoadingLine, LoginForm, MasterCardSmallIcon, Modal$3 as Modal, Module$1 as Module, Motion, MultiCartIcon, MultipleSelectFilter$1 as MultipleSelectFilter, NavFooter, NavHeader, NavMenuDesktop$1 as NavMenuDesktop, NavMenuMobile$1 as NavMenuMobile, NavTabs, NoResultsIcon, NotFoundIcon, Obligation$1 as Obligation, iconsMap as ObligationIcons, OverageIcon, Pagination$1 as Pagination, Paragraph$1 as Paragraph, PartialAmountForm, PasswordRequirements, PaydotImage, PaymentButtonBar, PaymentDetails$1 as PaymentDetails, PaymentFormACH, PaymentFormCard$1 as PaymentFormCard, PaymentMethodAddIcon$1 as PaymentMethodAddIcon, PaymentMethodIcon$1 as PaymentMethodIcon, PaymentSearchIcon, PaymentStatusIcon, PaymentsIconSmall$1 as PaymentsIconSmall, PencilIcon$1 as PencilIcon, PendingIcon, PeriscopeDashboardIframe, PeriscopeFailedIcon, PersonIcon, PhoneForm, Placeholder$1 as Placeholder, PlusCircleIcon, Popover$1 as Popover, PopupMenu$1 as PopupMenu, 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, RegistrationBanner$1 as RegistrationBanner, RegistrationForm, RejectedIcon, RejectedVelocityIcon, ResetConfirmationForm$1 as ResetConfirmationForm, ResetPasswordForm, ResetPasswordIcon, ResetPasswordSuccess$1 as ResetPasswordSuccess, RevenueManagementImage, ReversalNeededIcon, RoutingNumberImage, Search$1 as Search, SearchIcon, SearchableSelect$1 as SearchableSelect, SettingsIconSmall$1 as SettingsIconSmall, ShoppingCartIcon, ShortageIcon, Sidebar, SidebarSingleContent$1 as SidebarSingleContent, SidebarStackContent$1 as SidebarStackContent, SolidDivider$1 as SolidDivider, SortableTableHeading$1 as SortableTableHeading, 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, 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, ToastNotification, ToggleSwitch$1 as ToggleSwitch, Tooltip, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TurnstileWidget, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VisaSmallIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WireSmallIcon, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$1 as hooks, index$2 as util, withWindowSize };
51642
51649
  //# sourceMappingURL=index.esm.js.map