@thecb/components 11.2.2-beta.0 → 11.2.3-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.esm.js CHANGED
@@ -6248,6 +6248,38 @@ var adjustHexColor = function adjustHexColor(hex, percent, action) {
6248
6248
  return "#".concat(((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1).padStart(6, "0"));
6249
6249
  };
6250
6250
 
6251
+ /**
6252
+ * Converts a hex color code to an RGBA color string with the specified alpha value.
6253
+ *
6254
+ * @param {string} hex - The hex color code (e.g., "#3498db" or "3498db").
6255
+ * @param {number} alpha - The alpha value (opacity) between 0 and 1.
6256
+ * @returns {string} - The RGBA color string (e.g., "rgba(52, 152, 219, 0.5)").
6257
+ * @throws {Error} - Throws an error if the hex code is not a valid 3 or 6-digit hex color.
6258
+ */
6259
+ var hexToRGBA = function hexToRGBA(hex, alpha) {
6260
+ // Remove hash at the start if present
6261
+ hex = hex.replace(/^\s*#/, "");
6262
+
6263
+ // If hex is 3 characters, convert it to 6 characters.
6264
+ if (hex.length === 3) {
6265
+ hex = hex.split("").map(function (_char) {
6266
+ return _char + _char;
6267
+ }).join("");
6268
+ }
6269
+
6270
+ // Validate hex length
6271
+ if (hex.length !== 6) {
6272
+ throw new Error("Invalid hex color provided. Expected a 3 or 6-digit hex color.");
6273
+ }
6274
+
6275
+ // Parse the hex color components
6276
+ var bigint = parseInt(hex, 16);
6277
+ var r = bigint >> 16 & 255;
6278
+ var g = bigint >> 8 & 255;
6279
+ var b = bigint & 255;
6280
+ return "rgba(".concat(r, ", ").concat(g, ", ").concat(b, ", ").concat(alpha, ")");
6281
+ };
6282
+
6251
6283
  var general = /*#__PURE__*/Object.freeze({
6252
6284
  __proto__: null,
6253
6285
  noop: noop$1,
@@ -6269,7 +6301,8 @@ var general = /*#__PURE__*/Object.freeze({
6269
6301
  titleCaseString: titleCaseString,
6270
6302
  kebabCaseString: kebabCaseString,
6271
6303
  wrapIndex: wrapIndex,
6272
- adjustHexColor: adjustHexColor
6304
+ adjustHexColor: adjustHexColor,
6305
+ hexToRGBA: hexToRGBA
6273
6306
  });
6274
6307
 
6275
6308
  var _excluded$1 = ["themeValues", "weight", "color", "textWrap", "extraStyles", "hoverStyles", "onClick", "onKeyPress", "as", "dataQa", "children", "variant"];
@@ -16162,7 +16195,7 @@ var ExternalLinkIcon = function ExternalLinkIcon(_ref) {
16162
16195
  x: "-0.0864258",
16163
16196
  width: "14",
16164
16197
  height: "14",
16165
- fill: linkColor
16198
+ fill: "none"
16166
16199
  })));
16167
16200
  };
16168
16201
 
@@ -50080,11 +50113,13 @@ var fallbackValues$X = {
50080
50113
  var TabSidebar = function TabSidebar(_ref) {
50081
50114
  var links = _ref.links,
50082
50115
  isMobile = _ref.isMobile,
50083
- themeValues = _ref.themeValues;
50116
+ themeValues = _ref.themeValues,
50117
+ _ref$minHeight = _ref.minHeight,
50118
+ minHeight = _ref$minHeight === void 0 ? "100%" : _ref$minHeight;
50084
50119
  return /*#__PURE__*/React.createElement(Box, {
50085
50120
  padding: "0",
50086
50121
  background: COOL_GREY_05,
50087
- minHeight: "100%",
50122
+ minHeight: minHeight,
50088
50123
  role: "region",
50089
50124
  "aria-label": "Profile tabs",
50090
50125
  boxShadow: isMobile && "inset 0px -1px 0px 0px rgb(202, 206, 216)"
@@ -51271,6 +51306,116 @@ var MultipleSelectFilter = function MultipleSelectFilter(_ref) {
51271
51306
  };
51272
51307
  var MultipleSelectFilter$1 = themeComponent(MultipleSelectFilter, "MultipleSelectFilter", fallbackValues$$);
51273
51308
 
51309
+ var Container$1 = styled(Box).withConfig({
51310
+ displayName: "ContactCardstyled__Container",
51311
+ componentId: "sc-1v62a1n-0"
51312
+ })(["height:fit-content;display:flex;padding:1rem;flex-direction:column;align-items:flex-start;gap:1.5rem;border-radius:8px;"]);
51313
+ var Title$3 = styled(Heading$1).withConfig({
51314
+ displayName: "ContactCardstyled__Title",
51315
+ componentId: "sc-1v62a1n-1"
51316
+ })(["display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;align-self:stretch;overflow:hidden;text-overflow:ellipsis;background-color:transparent;font-weight:", ";"], FONT_WEIGHT_SEMIBOLD);
51317
+ var Content = styled(Box).withConfig({
51318
+ displayName: "ContactCardstyled__Content",
51319
+ componentId: "sc-1v62a1n-2"
51320
+ })(["padding:0;font-size:", ";line-height:1.313rem;overflow-wrap:normal;letter-spacing:0.14px;"], FONT_SIZE.SM);
51321
+ var Footer$1 = styled(Stack).withConfig({
51322
+ displayName: "ContactCardstyled__Footer",
51323
+ componentId: "sc-1v62a1n-3"
51324
+ })(["width:100%;"]);
51325
+ var Divider = styled(Box).withConfig({
51326
+ displayName: "ContactCardstyled__Divider",
51327
+ componentId: "sc-1v62a1n-4"
51328
+ })(["padding:0;height:1px;width:100%;"]);
51329
+
51330
+ var ContactCard = function ContactCard(_ref) {
51331
+ var title = _ref.title,
51332
+ _ref$secondTitle = _ref.secondTitle,
51333
+ secondTitle = _ref$secondTitle === void 0 ? "Helpful Links" : _ref$secondTitle,
51334
+ _ref$content = _ref.content,
51335
+ content = _ref$content === void 0 ? "" : _ref$content,
51336
+ _ref$links = _ref.links,
51337
+ links = _ref$links === void 0 ? [] : _ref$links,
51338
+ _ref$extraStyles = _ref.extraStyles,
51339
+ extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
51340
+ _ref$titleVariant = _ref.titleVariant,
51341
+ titleVariant = _ref$titleVariant === void 0 ? "h3" : _ref$titleVariant,
51342
+ _ref$ariaLabel = _ref.ariaLabel,
51343
+ ariaLabel = _ref$ariaLabel === void 0 ? "Contact Information" : _ref$ariaLabel,
51344
+ _ref$linkVariant = _ref.linkVariant,
51345
+ linkVariant = _ref$linkVariant === void 0 ? "primary" : _ref$linkVariant;
51346
+ var themeContext = useContext(ThemeContext);
51347
+ var isMobile = themeContext.isMobile;
51348
+ var linkFallbackValues = {
51349
+ externalLinkColor: ROYAL_BLUE_VIVID
51350
+ };
51351
+ var linkThemeValues = createThemeValues(themeContext, linkFallbackValues, "Link", linkVariant);
51352
+ return /*#__PURE__*/React.createElement(Container$1, {
51353
+ borderRadius: "8px",
51354
+ boxShadow: "0px 2px 4px rgba(0, 0, 0, 0.25)",
51355
+ dataQa: createIdFromString(title, "contact-card"),
51356
+ maxWidth: isMobile ? "100%" : "208px",
51357
+ minWidth: isMobile ? "240px" : "208px",
51358
+ minHeight: "141px",
51359
+ padding: "1.5rem",
51360
+ extraStyles: extraStyles,
51361
+ role: "complementary",
51362
+ "aria-label": ariaLabel
51363
+ }, /*#__PURE__*/React.createElement(Stack, {
51364
+ childGap: "8px",
51365
+ bottomItem: 3,
51366
+ justify: "space-between",
51367
+ style: {
51368
+ width: "100%"
51369
+ },
51370
+ fullHeight: true
51371
+ }, /*#__PURE__*/React.createElement(Box, {
51372
+ padding: 0,
51373
+ width: "100%"
51374
+ }, /*#__PURE__*/React.createElement(Title$3, {
51375
+ variant: titleVariant,
51376
+ margin: 0,
51377
+ fontSize: FONT_SIZE.MD
51378
+ }, title)), /*#__PURE__*/React.createElement(Box, {
51379
+ padding: "0",
51380
+ width: "100%"
51381
+ }, /*#__PURE__*/React.createElement(Content, null, content))), links.length > 0 && /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement(SolidDivider$1, {
51382
+ "aria-hidden": true
51383
+ }), /*#__PURE__*/React.createElement(Stack, {
51384
+ childGap: "8px",
51385
+ bottomItem: 3,
51386
+ justify: "space-between",
51387
+ style: {
51388
+ width: "100%"
51389
+ },
51390
+ fullHeight: true
51391
+ }, /*#__PURE__*/React.createElement(Title$3, {
51392
+ variant: titleVariant,
51393
+ margin: 0,
51394
+ fontSize: FONT_SIZE.MD
51395
+ }, secondTitle), /*#__PURE__*/React.createElement(Stack, {
51396
+ childGap: "4px",
51397
+ justify: "space-between",
51398
+ style: {
51399
+ width: "100%"
51400
+ },
51401
+ fullHeight: true
51402
+ }, links.map(function (link) {
51403
+ var linkID = createIdFromString(link.text, "contact-card-link");
51404
+ return /*#__PURE__*/React.createElement(ExternalLink, {
51405
+ key: linkID,
51406
+ dataQa: linkID,
51407
+ href: link.link,
51408
+ newTab: true,
51409
+ extraStyles: "\n flex-direction: row;\n align-items: center;\n align-content: flex-start;\n justify-content: space-between;\n ",
51410
+ size: FONT_SIZE.SM,
51411
+ lineHeight: "1.313rem"
51412
+ }, link.text, /*#__PURE__*/React.createElement(ExternalLinkIcon, {
51413
+ linkColor: linkThemeValues.externalLinkColor,
51414
+ text: link.text
51415
+ }));
51416
+ })))));
51417
+ };
51418
+
51274
51419
  var pageBackground = "#FBFCFD";
51275
51420
  var fallbackValues$10 = {
51276
51421
  pageBackground: pageBackground
@@ -51603,5 +51748,5 @@ var index$6 = /*#__PURE__*/Object.freeze({
51603
51748
  useLogoutTimers: useLogoutTimers
51604
51749
  });
51605
51750
 
51606
- 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, 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, CaretArrowDown$1 as CaretArrowDown, CaretArrowUp$1 as CaretArrowUp, 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, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, 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, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, 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, 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, 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, PointOfSaleImage, 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, 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, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
51751
+ 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, 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, CaretArrowDown$1 as CaretArrowDown, CaretArrowUp$1 as CaretArrowUp, 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, CloseIcon, Cluster, CollapsibleSection$1 as CollapsibleSection, ContactCard, Copyable, CountryDropdown, Cover, CustomerSearchIcon, DefaultPageTemplate, Detail$1 as Detail, DisabledAccountsAddIcon, DisabledPaymentMethodsAddIcon, DisabledPropertiesAddIcon, DisplayBox$1 as DisplayBox, DisplayCard, 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, FormattedAddress$1 as FormattedAddress, FormattedBankAccount$1 as FormattedBankAccount, FormattedCreditCard$1 as FormattedCreditCard, Frame, GenericCard, GenericCardLarge, GenericErrorIcon, GoToEmailIcon$1 as GoToEmailIcon, Grid, GuidedCheckoutImage, HamburgerButton, Heading$1 as Heading, 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, 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, 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, PointOfSaleImage, 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, 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, TrashIcon$1 as TrashIcon, TrashIconV2$1 as TrashIconV2, TypeaheadInput, VerifiedEmailIcon$1 as VerifiedEmailIcon, VoidedIcon, WalletBannerIcon$1 as WalletBannerIcon, WalletIcon$1 as WalletIcon, WalletIconSmall$1 as WalletIconSmall, WalletName, WarningIconXS, WelcomeModule$1 as WelcomeModule, WorkflowTile, XCircleIconMedium, XCircleIconSmall, cardRegistry, index$4 as constants, createPartialAmountFormState, createPartialAmountFormValidators, index$5 as hooks, index$6 as util, withWindowSize };
51607
51752
  //# sourceMappingURL=index.esm.js.map