@saasquatch/mint-components 1.11.0-0 → 1.11.0-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.
Files changed (34) hide show
  1. package/dist/cjs/sqm-banking-info-form_16.cjs.entry.js +47 -58
  2. package/dist/cjs/{sqm-invoice-table-view-1ea0d1fe.js → sqm-invoice-table-view-c26fb670.js} +5 -8
  3. package/dist/cjs/sqm-stencilbook.cjs.entry.js +1 -1
  4. package/dist/collection/components/tax-and-cash/TaxForm.stories.js +1 -1
  5. package/dist/collection/components/tax-and-cash/sqm-docusign-form/docusign-iframe/DocusignIframe.js +1 -1
  6. package/dist/collection/components/tax-and-cash/sqm-docusign-form/sqm-docusign-form.js +2 -3
  7. package/dist/collection/components/tax-and-cash/sqm-docusign-form/useDocusignForm.js +30 -39
  8. package/dist/collection/components/tax-and-cash/sqm-indirect-tax-form/useIndirectTaxForm.js +2 -2
  9. package/dist/collection/components/tax-and-cash/sqm-tax-and-cash/useTaxAndCash.js +2 -3
  10. package/dist/collection/components/tax-and-cash/sqm-tax-and-cash-dashboard/useTaxAndCashDashboard.js +12 -12
  11. package/dist/collection/components/tax-and-cash/utils.js +4 -7
  12. package/dist/esm/sqm-banking-info-form_16.entry.js +47 -58
  13. package/dist/esm/{sqm-invoice-table-view-6945ea24.js → sqm-invoice-table-view-2175569f.js} +5 -8
  14. package/dist/esm/sqm-stencilbook.entry.js +1 -1
  15. package/dist/esm-es5/sqm-banking-info-form_16.entry.js +1 -1
  16. package/dist/esm-es5/sqm-invoice-table-view-2175569f.js +1 -0
  17. package/dist/esm-es5/sqm-stencilbook.entry.js +1 -1
  18. package/dist/mint-components/mint-components.esm.js +1 -1
  19. package/dist/mint-components/{p-03deaf76.entry.js → p-05a9bc83.entry.js} +1 -1
  20. package/dist/mint-components/p-227dec48.js +1 -0
  21. package/dist/mint-components/p-3dbf752a.system.entry.js +1 -0
  22. package/dist/mint-components/p-482bf487.system.js +1 -0
  23. package/dist/mint-components/{p-e566b746.system.entry.js → p-5301a2da.system.entry.js} +1 -1
  24. package/dist/mint-components/{p-c6c63bc0.entry.js → p-76b69493.entry.js} +11 -6
  25. package/dist/mint-components/p-97198e2c.system.js +1 -1
  26. package/dist/types/components/tax-and-cash/sqm-docusign-form/docusign-iframe/DocusignIframe.d.ts +1 -2
  27. package/dist/types/components/tax-and-cash/sqm-docusign-form/useDocusignForm.d.ts +1 -2
  28. package/dist/types/components/tax-and-cash/utils.d.ts +2 -2
  29. package/docs/docs.docx +0 -0
  30. package/package.json +1 -1
  31. package/dist/esm-es5/sqm-invoice-table-view-6945ea24.js +0 -1
  32. package/dist/mint-components/p-869c4ee1.system.entry.js +0 -1
  33. package/dist/mint-components/p-956cd716.system.js +0 -1
  34. package/dist/mint-components/p-bfdd2042.js +0 -1
@@ -12,7 +12,7 @@ import { u as useChildElements } from './useChildElements-32e1bda1.js';
12
12
  import { l as luxon } from './luxon-7600be8d.js';
13
13
  import { g as generateUserError } from './useReferralTable-f4de0650.js';
14
14
  import { g as getProps, l as luxonLocale } from './utils-334c1e34.js';
15
- import { t as taxTypeToName, v as validTaxDocument, a as INDIRECT_TAX_SPAIN_REGIONS, b as INDIRECT_TAX_PROVINCES, g as getCountryObj, O as OtherRegionSlotView, I as InvoiceTableView, E as ErrorView, L as LoadingView, c as vatLabels, G as GeneralLoadingView, f as formatErrorMessage, d as validateBillingField, o as objectIsFull, A as ADDRESS_REGIONS } from './sqm-invoice-table-view-6945ea24.js';
15
+ import { t as taxTypeToName, v as validTaxDocument, a as INDIRECT_TAX_SPAIN_REGIONS, b as INDIRECT_TAX_PROVINCES, g as getCountryObj, O as OtherRegionSlotView, I as InvoiceTableView, E as ErrorView, L as LoadingView, c as vatLabels, G as GeneralLoadingView, f as formatErrorMessage, d as validateBillingField, o as objectIsFull, A as ADDRESS_REGIONS } from './sqm-invoice-table-view-2175569f.js';
16
16
 
17
17
  const TAX_CONTEXT_NAMESPACE = "sq:tax-and-cash";
18
18
  const TAX_FORM_CONTEXT_NAMESPACE = "sq:tax-form-context";
@@ -1631,7 +1631,13 @@ const GET_TAX_DOCUMENT = dist.gql `
1631
1631
  createImpactPublisherTaxDocumentInput: $vars
1632
1632
  ) {
1633
1633
  documentUrl
1634
- returnUrl
1634
+ }
1635
+ }
1636
+ `;
1637
+ const COMPLETE_TAX_DOCUMENT = dist.gql `
1638
+ mutation completeImpactPublisherTaxDocument($vars: UserIdInput!) {
1639
+ completeImpactPublisherTaxDocument(user: $vars) {
1640
+ success
1635
1641
  }
1636
1642
  }
1637
1643
  `;
@@ -1643,20 +1649,21 @@ const DOCUSIGN_ERROR_STATES = [
1643
1649
  ];
1644
1650
  const DOCUSIGN_EXPIRED_STATES = ["ttl_expired", "session_timeout"];
1645
1651
  function useDocusignForm(props) {
1646
- var _a, _b, _c, _d, _e, _f;
1652
+ var _a, _b, _c;
1647
1653
  const user = Q();
1648
1654
  const context = In(TAX_FORM_CONTEXT_NAMESPACE);
1649
1655
  const [step, setStep] = bn(TAX_CONTEXT_NAMESPACE);
1650
1656
  const { data, loading: userLoading, refetch, } = Mn(USER_QUERY_NAMESPACE);
1651
1657
  const publisher = (_b = (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.impactConnection) === null || _b === void 0 ? void 0 : _b.publisher;
1652
1658
  const [createTaxDocument, { loading: documentLoading, data: document, errors: documentErrors },] = $e(GET_TAX_DOCUMENT);
1659
+ const [completeTaxDocument, { loading: completeDocumentLoading, data: completeData, errors: completeErrors, },] = $e(COMPLETE_TAX_DOCUMENT);
1653
1660
  const [docusignStatus, setDocusignStatus] = useState(undefined);
1654
1661
  const [participantType, setParticipantType] = useState(undefined);
1655
1662
  const [errors, setErrors] = useState({});
1656
1663
  const [loading, setLoading] = useState(false);
1657
1664
  // Only look at current document if it's valid (same as required type)
1658
- const existingDocumentType = validTaxDocument(publisher === null || publisher === void 0 ? void 0 : publisher.requiredTaxDocumentType, (_c = publisher === null || publisher === void 0 ? void 0 : publisher.currentTaxDocument) === null || _c === void 0 ? void 0 : _c.type)
1659
- ? (_d = publisher === null || publisher === void 0 ? void 0 : publisher.currentTaxDocument) === null || _d === void 0 ? void 0 : _d.type : undefined;
1665
+ const existingDocumentType = validTaxDocument(publisher === null || publisher === void 0 ? void 0 : publisher.requiredTaxDocumentType) && (publisher === null || publisher === void 0 ? void 0 : publisher.currentTaxDocument)
1666
+ ? publisher === null || publisher === void 0 ? void 0 : publisher.requiredTaxDocumentType : undefined;
1660
1667
  const actualDocumentType = existingDocumentType ||
1661
1668
  getDocumentType(participantType) || (publisher === null || publisher === void 0 ? void 0 : publisher.requiredTaxDocumentType);
1662
1669
  useEffect(() => {
@@ -1677,6 +1684,7 @@ function useDocusignForm(props) {
1677
1684
  try {
1678
1685
  const result = await createTaxDocument({
1679
1686
  vars: {
1687
+ provider: "COMPLY_EXCHANGE",
1680
1688
  user: {
1681
1689
  id: user.id,
1682
1690
  accountId: user.accountId,
@@ -1695,13 +1703,23 @@ function useDocusignForm(props) {
1695
1703
  };
1696
1704
  fetchDocument();
1697
1705
  }, [user, publisher, participantType]);
1698
- const progressStep = async () => {
1699
- // TODO: Needs graphql call to determine status of document
1706
+ const completeDocument = async () => {
1707
+ if (!user)
1708
+ return;
1700
1709
  try {
1701
1710
  setLoading(true);
1702
- await refetch();
1703
- // Skip banking info form if it already is saved
1704
- // or if brandedSignup is false
1711
+ const result = await completeTaxDocument({
1712
+ vars: {
1713
+ id: user.id,
1714
+ accountId: user.accountId,
1715
+ },
1716
+ });
1717
+ console.log({ result });
1718
+ if (!result || result.message)
1719
+ throw new Error();
1720
+ // @ts-expect-error: no data type for result
1721
+ if (!result.completeImpactPublisherTaxDocument.success)
1722
+ throw new Error();
1705
1723
  setStep(context.overrideNextStep ||
1706
1724
  !!(publisher === null || publisher === void 0 ? void 0 : publisher.withdrawalSettings) ||
1707
1725
  !(publisher === null || publisher === void 0 ? void 0 : publisher.brandedSignup)
@@ -1715,32 +1733,6 @@ function useDocusignForm(props) {
1715
1733
  setLoading(false);
1716
1734
  }
1717
1735
  };
1718
- // useEffect(() => {
1719
- // const onSubmit = async () => {
1720
- // try {
1721
- // setLoading(true);
1722
- // await refetch();
1723
- // // Skip banking info form if it already is saved
1724
- // // or if brandedSignup is false
1725
- // setStep(
1726
- // context.overrideNextStep ||
1727
- // !!publisher?.withdrawalSettings ||
1728
- // !publisher?.brandedSignup
1729
- // ? "/dashboard"
1730
- // : "/4"
1731
- // );
1732
- // } catch (e) {
1733
- // setErrors({ general: true });
1734
- // } finally {
1735
- // setLoading(false);
1736
- // }
1737
- // };
1738
- // // Handled in view
1739
- // if (DOCUSIGN_ERROR_STATES.includes(docusignStatus)) return;
1740
- // if (DOCUSIGN_SUCCESS_STATES.includes(docusignStatus)) {
1741
- // onSubmit();
1742
- // }
1743
- // }, [docusignStatus, refetch]);
1744
1736
  const allLoading = userLoading || documentLoading || loading;
1745
1737
  return {
1746
1738
  states: {
@@ -1748,7 +1740,7 @@ function useDocusignForm(props) {
1748
1740
  hideSteps: context.hideSteps,
1749
1741
  disabled: allLoading,
1750
1742
  participantTypeDisabled: allLoading || !!existingDocumentType,
1751
- loading: userLoading || loading,
1743
+ loading: userLoading || loading || completeDocumentLoading,
1752
1744
  urlLoading: documentLoading,
1753
1745
  loadingError: !!(documentErrors === null || documentErrors === void 0 ? void 0 : documentErrors.message),
1754
1746
  formState: {
@@ -1762,12 +1754,11 @@ function useDocusignForm(props) {
1762
1754
  },
1763
1755
  data: {
1764
1756
  taxForm: actualDocumentType,
1765
- documentUrl: (_e = document === null || document === void 0 ? void 0 : document.createImpactPublisherTaxDocument) === null || _e === void 0 ? void 0 : _e.documentUrl,
1766
- returnUrl: (_f = document === null || document === void 0 ? void 0 : document.createImpactPublisherTaxDocument) === null || _f === void 0 ? void 0 : _f.returnUrl,
1757
+ documentUrl: (_c = document === null || document === void 0 ? void 0 : document.createImpactPublisherTaxDocument) === null || _c === void 0 ? void 0 : _c.documentUrl,
1767
1758
  },
1768
1759
  callbacks: {
1769
1760
  setDocusignStatus,
1770
- progressStep,
1761
+ completeDocument,
1771
1762
  setParticipantType,
1772
1763
  },
1773
1764
  text: props.getTextProps(),
@@ -1853,7 +1844,7 @@ const DocusignIframe = ({ states, data, callbacks, text, }) => {
1853
1844
  if (!allowed)
1854
1845
  return;
1855
1846
  if (e.data === "Complyexchange Thank you page Exit") {
1856
- callbacks.progressStep();
1847
+ callbacks.completeDocument();
1857
1848
  }
1858
1849
  }, []);
1859
1850
  useEffect(() => {
@@ -2178,9 +2169,8 @@ const DocusignForm = class {
2178
2169
  urlLoading: props.states.urlLoading,
2179
2170
  }, data: {
2180
2171
  documentUrl: props.data.documentUrl,
2181
- returnUrl: props.data.returnUrl,
2182
2172
  }, callbacks: {
2183
- progressStep: props.callbacks.progressStep,
2173
+ completeDocument: props.callbacks.completeDocument,
2184
2174
  }, text: props.text }));
2185
2175
  return (h(Host, null, h(DocusignFormView, { callbacks: props.callbacks, states: props.states, text: props.text, slots: {
2186
2176
  docusignIframeSlot: _isDemo
@@ -2528,7 +2518,7 @@ function useIndirectTaxForm(props) {
2528
2518
  setFormState((p) => ({ ...p, [field]: value }));
2529
2519
  };
2530
2520
  const onSubmit = async (event) => {
2531
- var _a, _b, _c, _d, _e, _f;
2521
+ var _a, _b, _c, _d, _e;
2532
2522
  if (!option) {
2533
2523
  setErrors({ taxDetails: true });
2534
2524
  return;
@@ -2589,7 +2579,7 @@ function useIndirectTaxForm(props) {
2589
2579
  await refetch();
2590
2580
  const resultPublisher = (_e = (_d = (_c = result
2591
2581
  .createImpactConnection) === null || _c === void 0 ? void 0 : _c.user) === null || _d === void 0 ? void 0 : _d.impactConnection) === null || _e === void 0 ? void 0 : _e.publisher;
2592
- const hasValidCurrentDocument = validTaxDocument(resultPublisher === null || resultPublisher === void 0 ? void 0 : resultPublisher.requiredTaxDocumentType, (_f = resultPublisher === null || resultPublisher === void 0 ? void 0 : resultPublisher.currentTaxDocument) === null || _f === void 0 ? void 0 : _f.type);
2582
+ const hasValidCurrentDocument = validTaxDocument(resultPublisher === null || resultPublisher === void 0 ? void 0 : resultPublisher.requiredTaxDocumentType) && (resultPublisher === null || resultPublisher === void 0 ? void 0 : resultPublisher.currentTaxDocument);
2593
2583
  if ((resultPublisher === null || resultPublisher === void 0 ? void 0 : resultPublisher.requiredTaxDocumentType) &&
2594
2584
  !hasValidCurrentDocument) {
2595
2585
  // Go to docusign form
@@ -3729,8 +3719,7 @@ function getCurrentStep(user) {
3729
3719
  }
3730
3720
  const { requiredTaxDocumentType, currentTaxDocument, withdrawalSettings, brandedSignup, } = user.impactConnection.publisher;
3731
3721
  // If they do have a required document, look at current document
3732
- if (requiredTaxDocumentType &&
3733
- !validTaxDocument(requiredTaxDocumentType, currentTaxDocument === null || currentTaxDocument === void 0 ? void 0 : currentTaxDocument.type))
3722
+ if (requiredTaxDocumentType && !currentTaxDocument)
3734
3723
  return "/3";
3735
3724
  if (!withdrawalSettings && brandedSignup)
3736
3725
  return "/4";
@@ -5177,7 +5166,7 @@ function getIndirectTaxType(taxInformation) {
5177
5166
  return "Indirect Tax";
5178
5167
  }
5179
5168
  const useTaxAndCashDashboard = (props) => {
5180
- var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
5169
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
5181
5170
  const setStep = wn(TAX_CONTEXT_NAMESPACE);
5182
5171
  const setContext = wn(TAX_FORM_CONTEXT_NAMESPACE);
5183
5172
  const [showDialog, setShowDialog] = useState(false);
@@ -5188,8 +5177,8 @@ const useTaxAndCashDashboard = (props) => {
5188
5177
  }, []);
5189
5178
  const { data, loading, errors: userError, } = Mn(USER_QUERY_NAMESPACE);
5190
5179
  const publisher = (_b = (_a = data === null || data === void 0 ? void 0 : data.user) === null || _a === void 0 ? void 0 : _a.impactConnection) === null || _b === void 0 ? void 0 : _b.publisher;
5191
- const documentType = (_c = publisher === null || publisher === void 0 ? void 0 : publisher.currentTaxDocument) === null || _c === void 0 ? void 0 : _c.type;
5192
- const submissionDate = (_d = publisher === null || publisher === void 0 ? void 0 : publisher.currentTaxDocument) === null || _d === void 0 ? void 0 : _d.dateCreated;
5180
+ const documentType = publisher === null || publisher === void 0 ? void 0 : publisher.requiredTaxDocumentType;
5181
+ const submissionDate = (_c = publisher === null || publisher === void 0 ? void 0 : publisher.currentTaxDocument) === null || _c === void 0 ? void 0 : _c.dateCreated;
5193
5182
  const dateSubmitted = submissionDate
5194
5183
  ? luxon.DateTime.fromMillis(submissionDate).toFormat("LLL dd, yyyy")
5195
5184
  : undefined;
@@ -5210,23 +5199,23 @@ const useTaxAndCashDashboard = (props) => {
5210
5199
  });
5211
5200
  setStep("/3");
5212
5201
  };
5213
- const provinceName = (_e = INDIRECT_TAX_PROVINCES.find((p) => { var _a; return p.regionCode === ((_a = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _a === void 0 ? void 0 : _a.indirectTaxRegion); })) === null || _e === void 0 ? void 0 : _e.displayName;
5202
+ const provinceName = (_d = INDIRECT_TAX_PROVINCES.find((p) => { var _a; return p.regionCode === ((_a = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _a === void 0 ? void 0 : _a.indirectTaxRegion); })) === null || _d === void 0 ? void 0 : _d.displayName;
5214
5203
  return {
5215
5204
  states: {
5216
5205
  dateSubmitted,
5217
5206
  documentType,
5218
5207
  canEditPayoutInfo: publisher === null || publisher === void 0 ? void 0 : publisher.brandedSignup,
5219
5208
  documentTypeString: taxTypeToName(documentType),
5220
- status: (_f = publisher === null || publisher === void 0 ? void 0 : publisher.currentTaxDocument) === null || _f === void 0 ? void 0 : _f.status,
5221
- subRegion: getSubRegionName((_g = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _g === void 0 ? void 0 : _g.indirectTaxRegion),
5222
- subRegionTaxNumber: (_h = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _h === void 0 ? void 0 : _h.withholdingTaxId,
5223
- qstNumber: (_j = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _j === void 0 ? void 0 : _j.additionalTaxId,
5209
+ status: (_e = publisher === null || publisher === void 0 ? void 0 : publisher.currentTaxDocument) === null || _e === void 0 ? void 0 : _e.status,
5210
+ subRegion: getSubRegionName((_f = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _f === void 0 ? void 0 : _f.indirectTaxRegion),
5211
+ subRegionTaxNumber: (_g = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _g === void 0 ? void 0 : _g.withholdingTaxId,
5212
+ qstNumber: (_h = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _h === void 0 ? void 0 : _h.additionalTaxId,
5224
5213
  indirectTaxType: getIndirectTaxType(publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation),
5225
- indirectTaxNumber: (_k = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _k === void 0 ? void 0 : _k.indirectTaxId,
5214
+ indirectTaxNumber: (_j = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _j === void 0 ? void 0 : _j.indirectTaxId,
5226
5215
  isBusinessEntity: (publisher === null || publisher === void 0 ? void 0 : publisher.requiredTaxDocumentType) === "W8BENE",
5227
5216
  province: provinceName,
5228
- country: getCountryName((_l = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _l === void 0 ? void 0 : _l.indirectTaxCountryCode, locale),
5229
- notRegistered: !((_m = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _m === void 0 ? void 0 : _m.indirectTaxId),
5217
+ country: getCountryName((_k = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _k === void 0 ? void 0 : _k.indirectTaxCountryCode, locale),
5218
+ notRegistered: !((_l = publisher === null || publisher === void 0 ? void 0 : publisher.taxInformation) === null || _l === void 0 ? void 0 : _l.indirectTaxId),
5230
5219
  noFormNeeded: !documentType,
5231
5220
  disabled: loading,
5232
5221
  loading,
@@ -432,11 +432,9 @@ const LoadingView = () => {
432
432
  h("sl-skeleton", { class: sheet.classes.ButtonSkeleton })));
433
433
  };
434
434
 
435
- function validTaxDocument(requiredType, currentType) {
436
- if (requiredType === "W9" && currentType === "W9")
437
- return true;
438
- if ((requiredType === "W8BEN" || requiredType === "W8BENE") &&
439
- (currentType === "W8BEN" || currentType === "W8BENE"))
435
+ function validTaxDocument(requiredType) {
436
+ const validTypes = ["W9", "W8BENE", "W8BEN"];
437
+ if (validTypes.includes(requiredType))
440
438
  return true;
441
439
  return false;
442
440
  }
@@ -448,9 +446,8 @@ const taxTypeToName = (taxType) => {
448
446
  case "W9":
449
447
  return "W-9";
450
448
  case "W8BEN":
451
- return "W-8 BEN";
452
449
  case "W8BENE":
453
- return "W-8 BEN-E";
450
+ return "W-8";
454
451
  default:
455
452
  return "";
456
453
  }
@@ -741,7 +738,7 @@ const docusignFormProps = {
741
738
  },
742
739
  },
743
740
  callbacks: {
744
- progressStep: async () => { },
741
+ completeDocument: async () => { },
745
742
  setParticipantType: (p) => console.log({ p }),
746
743
  setDocusignStatus: (status) => console.log(status),
747
744
  },
@@ -26,7 +26,7 @@ import { P as PortalResetPasswordView } from './sqm-portal-reset-password-view-7
26
26
  import { P as PortalVerifyEmailView } from './sqm-portal-verify-email-view-d7ea2c56.js';
27
27
  import { S as ShareButtonView, L as LeaderboardView, C as CopyTextView, B as BigStatView, P as PortalFrameView, E as EditProfileView, u as useShareLink, a as useShareButton, b as useDemoBigStat, c as StatContainerView, d as PortalChangePasswordView, e as PortalLoginView, f as PortalRegisterView, T as TaskCardView, g as ProgressBarView, h as PoweredByImg$1, i as PortalFooterView, H as HeroView, R as ReferralIframeView, N as NameFieldsView, j as CheckboxFieldView, D as DropdownFieldView, I as InputFieldView, k as RewardExchangeView, r as rewardExchangeCustomErrorMsg, l as rewardExchangeLongText, m as rewardExchangeSelected, n as chooseAmountFixed, o as chooseAmountFixedNoDescription, p as chooseAmountVariable, q as chooseAmountVariableNoDescription, s as chooseAmountVariableDisabled, t as chooseAmountVariableUnavailable, v as confirmFixed, w as confirmVariable, x as redemptionError, y as queryError, z as success, A as successVariable, F as loading, G as empty$1, J as rewardExchange, K as CardFeedView, M as CouponCodeView, O as ProgressBar$2, Q as autoColorScaleCss, U as ShadowViewAddon } from './ShadowViewAddon-90897c22.js';
28
28
  import { P as PortalContainerView, a as PortalSectionView } from './sqm-portal-container-view-ab89c6cc.js';
29
- import { O as OtherRegionSlotView, I as InvoiceTableView, T as TaxForm } from './sqm-invoice-table-view-6945ea24.js';
29
+ import { O as OtherRegionSlotView, I as InvoiceTableView, T as TaxForm } from './sqm-invoice-table-view-2175569f.js';
30
30
 
31
31
  /**
32
32
  * lodash (Custom Build) <https://lodash.com/>