@saasquatch/mint-components 1.11.0-1 → 1.11.0-2

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 (31) hide show
  1. package/dist/cjs/sqm-banking-info-form_16.cjs.entry.js +32 -26
  2. package/dist/cjs/{sqm-invoice-table-view-c26fb670.js → sqm-invoice-table-view-7739a5b4.js} +1 -0
  3. package/dist/cjs/sqm-stencilbook.cjs.entry.js +1 -1
  4. package/dist/collection/components/tax-and-cash/TaxForm.stories.js +1 -0
  5. package/dist/collection/components/tax-and-cash/sqm-docusign-form/docusign-iframe/DocusignIframe.js +4 -1
  6. package/dist/collection/components/tax-and-cash/sqm-docusign-form/sqm-docusign-form-view.js +1 -5
  7. package/dist/collection/components/tax-and-cash/sqm-docusign-form/sqm-docusign-form.js +1 -0
  8. package/dist/collection/components/tax-and-cash/sqm-docusign-form/useDocusignForm.js +8 -6
  9. package/dist/collection/components/tax-and-cash/sqm-tax-and-cash/data.js +14 -13
  10. package/dist/collection/components/tax-and-cash/sqm-tax-and-cash/useTaxAndCash.js +3 -0
  11. package/dist/esm/sqm-banking-info-form_16.entry.js +32 -26
  12. package/dist/esm/{sqm-invoice-table-view-2175569f.js → sqm-invoice-table-view-fb2f95b9.js} +1 -0
  13. package/dist/esm/sqm-stencilbook.entry.js +1 -1
  14. package/dist/esm-es5/sqm-banking-info-form_16.entry.js +1 -1
  15. package/dist/esm-es5/sqm-invoice-table-view-fb2f95b9.js +1 -0
  16. package/dist/esm-es5/sqm-stencilbook.entry.js +1 -1
  17. package/dist/mint-components/mint-components.esm.js +1 -1
  18. package/dist/mint-components/p-51721f6b.system.js +1 -0
  19. package/dist/mint-components/{p-05a9bc83.entry.js → p-70232f5f.entry.js} +1 -1
  20. package/dist/mint-components/p-97198e2c.system.js +1 -1
  21. package/dist/mint-components/{p-76b69493.entry.js → p-b19524e2.entry.js} +19 -18
  22. package/dist/mint-components/p-ce523fb3.system.entry.js +1 -0
  23. package/dist/mint-components/{p-5301a2da.system.entry.js → p-e17d1ed7.system.entry.js} +1 -1
  24. package/dist/types/components/tax-and-cash/sqm-docusign-form/docusign-iframe/DocusignIframe.d.ts +1 -0
  25. package/dist/types/components/tax-and-cash/sqm-docusign-form/useDocusignForm.d.ts +1 -0
  26. package/docs/docs.docx +0 -0
  27. package/package.json +1 -1
  28. package/dist/esm-es5/sqm-invoice-table-view-2175569f.js +0 -1
  29. package/dist/mint-components/p-3dbf752a.system.entry.js +0 -1
  30. package/dist/mint-components/p-482bf487.system.js +0 -1
  31. /package/dist/mint-components/{p-227dec48.js → p-28b6106f.js} +0 -0
@@ -16,7 +16,7 @@ const useChildElements = require('./useChildElements-e0d44916.js');
16
16
  const luxon = require('./luxon-05098e19.js');
17
17
  const useReferralTable = require('./useReferralTable-a76adb0d.js');
18
18
  const utils = require('./utils-6847bc06.js');
19
- const sqmInvoiceTableView = require('./sqm-invoice-table-view-c26fb670.js');
19
+ const sqmInvoiceTableView = require('./sqm-invoice-table-view-7739a5b4.js');
20
20
 
21
21
  const TAX_CONTEXT_NAMESPACE = "sq:tax-and-cash";
22
22
  const TAX_FORM_CONTEXT_NAMESPACE = "sq:tax-form-context";
@@ -69,19 +69,20 @@ const GET_USER = index_module.dist.gql `
69
69
  type
70
70
  dateCreated
71
71
  }
72
- withdrawalSettings {
73
- paymentMethod
74
- paypalEmailAddress
75
- bankCountry
76
- bankAccountNumber
77
- paymentSchedulingType
78
- paymentThreshold
79
- paymentDay
80
- }
81
- payoutsAccount {
82
- hold
83
- balance
84
- }
72
+ # !!!!! UNCOMMENT ME !!!!!!!!
73
+ # withdrawalSettings {
74
+ # paymentMethod
75
+ # paypalEmailAddress
76
+ # bankCountry
77
+ # bankAccountNumber
78
+ # paymentSchedulingType
79
+ # paymentThreshold
80
+ # paymentDay
81
+ # }
82
+ # payoutsAccount {
83
+ # hold
84
+ # balance
85
+ # }
85
86
  }
86
87
  }
87
88
  }
@@ -1718,17 +1719,11 @@ function useDocusignForm(props) {
1718
1719
  accountId: user.accountId,
1719
1720
  },
1720
1721
  });
1721
- console.log({ result });
1722
1722
  if (!result || result.message)
1723
1723
  throw new Error();
1724
1724
  // @ts-expect-error: no data type for result
1725
1725
  if (!result.completeImpactPublisherTaxDocument.success)
1726
1726
  throw new Error();
1727
- setStep(context.overrideNextStep ||
1728
- !!(publisher === null || publisher === void 0 ? void 0 : publisher.withdrawalSettings) ||
1729
- !(publisher === null || publisher === void 0 ? void 0 : publisher.brandedSignup)
1730
- ? "/dashboard"
1731
- : "/4");
1732
1727
  }
1733
1728
  catch (e) {
1734
1729
  setErrors({ general: true });
@@ -1737,6 +1732,13 @@ function useDocusignForm(props) {
1737
1732
  setLoading(false);
1738
1733
  }
1739
1734
  };
1735
+ const progressStep = () => {
1736
+ setStep(context.overrideNextStep ||
1737
+ !!(publisher === null || publisher === void 0 ? void 0 : publisher.withdrawalSettings) ||
1738
+ !(publisher === null || publisher === void 0 ? void 0 : publisher.brandedSignup)
1739
+ ? "/dashboard"
1740
+ : "/4");
1741
+ };
1740
1742
  const allLoading = userLoading || documentLoading || loading;
1741
1743
  return {
1742
1744
  states: {
@@ -1763,6 +1765,7 @@ function useDocusignForm(props) {
1763
1765
  callbacks: {
1764
1766
  setDocusignStatus,
1765
1767
  completeDocument,
1768
+ progressStep,
1766
1769
  setParticipantType,
1767
1770
  },
1768
1771
  text: props.getTextProps(),
@@ -1847,9 +1850,12 @@ const DocusignIframe = ({ states, data, callbacks, text, }) => {
1847
1850
  const allowed = allowedDomains.some((d) => { var _a; return (_a = e.origin) === null || _a === void 0 ? void 0 : _a.includes(d); });
1848
1851
  if (!allowed)
1849
1852
  return;
1850
- if (e.data === "Complyexchange Thank you page Exit") {
1853
+ if (e.data === "Complyexchange Thank you page Load") {
1851
1854
  callbacks.completeDocument();
1852
1855
  }
1856
+ if (e.data == "Complyexchange Thank you page Exit") {
1857
+ callbacks.progressStep();
1858
+ }
1853
1859
  }, []);
1854
1860
  stencilHooks_module.useEffect(() => {
1855
1861
  window.addEventListener("message", callback, false);
@@ -2041,11 +2047,7 @@ const DocusignFormView = (props) => {
2041
2047
  ? text.taxFormDescriptionIndividualParticipant
2042
2048
  : text.taxFormDescriptionBusinessEntity,
2043
2049
  }, { documentType: documentTypeString }))),
2044
- index.h("div", null,
2045
- index.h("sl-alert", { exportparts: "base: alert-base, icon:alert-icon", type: "primary", open: true, class: classes.InfoAlert },
2046
- index.h("sl-icon", { class: classes.InfoIcon, slot: "icon", name: "info-circle" }),
2047
- text.docusignSessionWarning),
2048
- slots.docusignIframeSlot))));
2050
+ index.h("div", null, slots.docusignIframeSlot))));
2049
2051
  };
2050
2052
 
2051
2053
  const DocusignForm = class {
@@ -2174,6 +2176,7 @@ const DocusignForm = class {
2174
2176
  }, data: {
2175
2177
  documentUrl: props.data.documentUrl,
2176
2178
  }, callbacks: {
2179
+ progressStep: props.callbacks.progressStep,
2177
2180
  completeDocument: props.callbacks.completeDocument,
2178
2181
  }, text: props.text }));
2179
2182
  return (index.h(index.Host, null, index.h(DocusignFormView, { callbacks: props.callbacks, states: props.states, text: props.text, slots: {
@@ -3771,6 +3774,9 @@ function useTaxAndCash() {
3771
3774
  namespace: USER_QUERY_NAMESPACE,
3772
3775
  query: GET_USER,
3773
3776
  skip: !user,
3777
+ options: {
3778
+ batch: false,
3779
+ },
3774
3780
  });
3775
3781
  const countryCode = ((_c = (_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) === null || _c === void 0 ? void 0 : _c.countryCode) ||
3776
3782
  userFormContext.countryCode;
@@ -740,6 +740,7 @@ const docusignFormProps = {
740
740
  },
741
741
  },
742
742
  callbacks: {
743
+ progressStep: () => { },
743
744
  completeDocument: async () => { },
744
745
  setParticipantType: (p) => console.log({ p }),
745
746
  setDocusignStatus: (status) => console.log(status),
@@ -30,7 +30,7 @@ const sqmPortalResetPasswordView = require('./sqm-portal-reset-password-view-96f
30
30
  const sqmPortalVerifyEmailView = require('./sqm-portal-verify-email-view-7ffcc0d4.js');
31
31
  const ShadowViewAddon = require('./ShadowViewAddon-21aa34f8.js');
32
32
  const sqmPortalContainerView = require('./sqm-portal-container-view-5fb2ad49.js');
33
- const sqmInvoiceTableView = require('./sqm-invoice-table-view-c26fb670.js');
33
+ const sqmInvoiceTableView = require('./sqm-invoice-table-view-7739a5b4.js');
34
34
 
35
35
  /**
36
36
  * lodash (Custom Build) <https://lodash.com/>
@@ -236,6 +236,7 @@ const docusignFormProps = {
236
236
  },
237
237
  },
238
238
  callbacks: {
239
+ progressStep: () => { },
239
240
  completeDocument: async () => { },
240
241
  setParticipantType: (p) => console.log({ p }),
241
242
  setDocusignStatus: (status) => console.log(status),
@@ -72,9 +72,12 @@ export const DocusignIframe = ({ states, data, callbacks, text, }) => {
72
72
  const allowed = allowedDomains.some((d) => { var _a; return (_a = e.origin) === null || _a === void 0 ? void 0 : _a.includes(d); });
73
73
  if (!allowed)
74
74
  return;
75
- if (e.data === "Complyexchange Thank you page Exit") {
75
+ if (e.data === "Complyexchange Thank you page Load") {
76
76
  callbacks.completeDocument();
77
77
  }
78
+ if (e.data == "Complyexchange Thank you page Exit") {
79
+ callbacks.progressStep();
80
+ }
78
81
  }, []);
79
82
  useEffect(() => {
80
83
  window.addEventListener("message", callback, false);
@@ -177,9 +177,5 @@ export const DocusignFormView = (props) => {
177
177
  ? text.taxFormDescriptionIndividualParticipant
178
178
  : text.taxFormDescriptionBusinessEntity,
179
179
  }, { documentType: documentTypeString }))),
180
- h("div", null,
181
- h("sl-alert", { exportparts: "base: alert-base, icon:alert-icon", type: "primary", open: true, class: classes.InfoAlert },
182
- h("sl-icon", { class: classes.InfoIcon, slot: "icon", name: "info-circle" }),
183
- text.docusignSessionWarning),
184
- slots.docusignIframeSlot))));
180
+ h("div", null, slots.docusignIframeSlot))));
185
181
  };
@@ -137,6 +137,7 @@ export class DocusignForm {
137
137
  }, data: {
138
138
  documentUrl: props.data.documentUrl,
139
139
  }, callbacks: {
140
+ progressStep: props.callbacks.progressStep,
140
141
  completeDocument: props.callbacks.completeDocument,
141
142
  }, text: props.text }));
142
143
  return (h(Host, null,
@@ -95,17 +95,11 @@ export function useDocusignForm(props) {
95
95
  accountId: user.accountId,
96
96
  },
97
97
  });
98
- console.log({ result });
99
98
  if (!result || result.message)
100
99
  throw new Error();
101
100
  // @ts-expect-error: no data type for result
102
101
  if (!result.completeImpactPublisherTaxDocument.success)
103
102
  throw new Error();
104
- setStep(context.overrideNextStep ||
105
- !!(publisher === null || publisher === void 0 ? void 0 : publisher.withdrawalSettings) ||
106
- !(publisher === null || publisher === void 0 ? void 0 : publisher.brandedSignup)
107
- ? "/dashboard"
108
- : "/4");
109
103
  }
110
104
  catch (e) {
111
105
  setErrors({ general: true });
@@ -114,6 +108,13 @@ export function useDocusignForm(props) {
114
108
  setLoading(false);
115
109
  }
116
110
  };
111
+ const progressStep = () => {
112
+ setStep(context.overrideNextStep ||
113
+ !!(publisher === null || publisher === void 0 ? void 0 : publisher.withdrawalSettings) ||
114
+ !(publisher === null || publisher === void 0 ? void 0 : publisher.brandedSignup)
115
+ ? "/dashboard"
116
+ : "/4");
117
+ };
117
118
  const allLoading = userLoading || documentLoading || loading;
118
119
  return {
119
120
  states: {
@@ -140,6 +141,7 @@ export function useDocusignForm(props) {
140
141
  callbacks: {
141
142
  setDocusignStatus,
142
143
  completeDocument,
144
+ progressStep,
143
145
  setParticipantType,
144
146
  },
145
147
  text: props.getTextProps(),
@@ -50,19 +50,20 @@ export const GET_USER = gql `
50
50
  type
51
51
  dateCreated
52
52
  }
53
- withdrawalSettings {
54
- paymentMethod
55
- paypalEmailAddress
56
- bankCountry
57
- bankAccountNumber
58
- paymentSchedulingType
59
- paymentThreshold
60
- paymentDay
61
- }
62
- payoutsAccount {
63
- hold
64
- balance
65
- }
53
+ # !!!!! UNCOMMENT ME !!!!!!!!
54
+ # withdrawalSettings {
55
+ # paymentMethod
56
+ # paypalEmailAddress
57
+ # bankCountry
58
+ # bankAccountNumber
59
+ # paymentSchedulingType
60
+ # paymentThreshold
61
+ # paymentDay
62
+ # }
63
+ # payoutsAccount {
64
+ # hold
65
+ # balance
66
+ # }
66
67
  }
67
68
  }
68
69
  }
@@ -57,6 +57,9 @@ export function useTaxAndCash() {
57
57
  namespace: USER_QUERY_NAMESPACE,
58
58
  query: GET_USER,
59
59
  skip: !user,
60
+ options: {
61
+ batch: false,
62
+ },
60
63
  });
61
64
  const countryCode = ((_c = (_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) === null || _c === void 0 ? void 0 : _c.countryCode) ||
62
65
  userFormContext.countryCode;
@@ -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-2175569f.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-fb2f95b9.js';
16
16
 
17
17
  const TAX_CONTEXT_NAMESPACE = "sq:tax-and-cash";
18
18
  const TAX_FORM_CONTEXT_NAMESPACE = "sq:tax-form-context";
@@ -65,19 +65,20 @@ const GET_USER = dist.gql `
65
65
  type
66
66
  dateCreated
67
67
  }
68
- withdrawalSettings {
69
- paymentMethod
70
- paypalEmailAddress
71
- bankCountry
72
- bankAccountNumber
73
- paymentSchedulingType
74
- paymentThreshold
75
- paymentDay
76
- }
77
- payoutsAccount {
78
- hold
79
- balance
80
- }
68
+ # !!!!! UNCOMMENT ME !!!!!!!!
69
+ # withdrawalSettings {
70
+ # paymentMethod
71
+ # paypalEmailAddress
72
+ # bankCountry
73
+ # bankAccountNumber
74
+ # paymentSchedulingType
75
+ # paymentThreshold
76
+ # paymentDay
77
+ # }
78
+ # payoutsAccount {
79
+ # hold
80
+ # balance
81
+ # }
81
82
  }
82
83
  }
83
84
  }
@@ -1714,17 +1715,11 @@ function useDocusignForm(props) {
1714
1715
  accountId: user.accountId,
1715
1716
  },
1716
1717
  });
1717
- console.log({ result });
1718
1718
  if (!result || result.message)
1719
1719
  throw new Error();
1720
1720
  // @ts-expect-error: no data type for result
1721
1721
  if (!result.completeImpactPublisherTaxDocument.success)
1722
1722
  throw new Error();
1723
- setStep(context.overrideNextStep ||
1724
- !!(publisher === null || publisher === void 0 ? void 0 : publisher.withdrawalSettings) ||
1725
- !(publisher === null || publisher === void 0 ? void 0 : publisher.brandedSignup)
1726
- ? "/dashboard"
1727
- : "/4");
1728
1723
  }
1729
1724
  catch (e) {
1730
1725
  setErrors({ general: true });
@@ -1733,6 +1728,13 @@ function useDocusignForm(props) {
1733
1728
  setLoading(false);
1734
1729
  }
1735
1730
  };
1731
+ const progressStep = () => {
1732
+ setStep(context.overrideNextStep ||
1733
+ !!(publisher === null || publisher === void 0 ? void 0 : publisher.withdrawalSettings) ||
1734
+ !(publisher === null || publisher === void 0 ? void 0 : publisher.brandedSignup)
1735
+ ? "/dashboard"
1736
+ : "/4");
1737
+ };
1736
1738
  const allLoading = userLoading || documentLoading || loading;
1737
1739
  return {
1738
1740
  states: {
@@ -1759,6 +1761,7 @@ function useDocusignForm(props) {
1759
1761
  callbacks: {
1760
1762
  setDocusignStatus,
1761
1763
  completeDocument,
1764
+ progressStep,
1762
1765
  setParticipantType,
1763
1766
  },
1764
1767
  text: props.getTextProps(),
@@ -1843,9 +1846,12 @@ const DocusignIframe = ({ states, data, callbacks, text, }) => {
1843
1846
  const allowed = allowedDomains.some((d) => { var _a; return (_a = e.origin) === null || _a === void 0 ? void 0 : _a.includes(d); });
1844
1847
  if (!allowed)
1845
1848
  return;
1846
- if (e.data === "Complyexchange Thank you page Exit") {
1849
+ if (e.data === "Complyexchange Thank you page Load") {
1847
1850
  callbacks.completeDocument();
1848
1851
  }
1852
+ if (e.data == "Complyexchange Thank you page Exit") {
1853
+ callbacks.progressStep();
1854
+ }
1849
1855
  }, []);
1850
1856
  useEffect(() => {
1851
1857
  window.addEventListener("message", callback, false);
@@ -2037,11 +2043,7 @@ const DocusignFormView = (props) => {
2037
2043
  ? text.taxFormDescriptionIndividualParticipant
2038
2044
  : text.taxFormDescriptionBusinessEntity,
2039
2045
  }, { documentType: documentTypeString }))),
2040
- h("div", null,
2041
- h("sl-alert", { exportparts: "base: alert-base, icon:alert-icon", type: "primary", open: true, class: classes.InfoAlert },
2042
- h("sl-icon", { class: classes.InfoIcon, slot: "icon", name: "info-circle" }),
2043
- text.docusignSessionWarning),
2044
- slots.docusignIframeSlot))));
2046
+ h("div", null, slots.docusignIframeSlot))));
2045
2047
  };
2046
2048
 
2047
2049
  const DocusignForm = class {
@@ -2170,6 +2172,7 @@ const DocusignForm = class {
2170
2172
  }, data: {
2171
2173
  documentUrl: props.data.documentUrl,
2172
2174
  }, callbacks: {
2175
+ progressStep: props.callbacks.progressStep,
2173
2176
  completeDocument: props.callbacks.completeDocument,
2174
2177
  }, text: props.text }));
2175
2178
  return (h(Host, null, h(DocusignFormView, { callbacks: props.callbacks, states: props.states, text: props.text, slots: {
@@ -3767,6 +3770,9 @@ function useTaxAndCash() {
3767
3770
  namespace: USER_QUERY_NAMESPACE,
3768
3771
  query: GET_USER,
3769
3772
  skip: !user,
3773
+ options: {
3774
+ batch: false,
3775
+ },
3770
3776
  });
3771
3777
  const countryCode = ((_c = (_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) === null || _c === void 0 ? void 0 : _c.countryCode) ||
3772
3778
  userFormContext.countryCode;
@@ -738,6 +738,7 @@ const docusignFormProps = {
738
738
  },
739
739
  },
740
740
  callbacks: {
741
+ progressStep: () => { },
741
742
  completeDocument: async () => { },
742
743
  setParticipantType: (p) => console.log({ p }),
743
744
  setDocusignStatus: (status) => console.log(status),
@@ -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-2175569f.js';
29
+ import { O as OtherRegionSlotView, I as InvoiceTableView, T as TaxForm } from './sqm-invoice-table-view-fb2f95b9.js';
30
30
 
31
31
  /**
32
32
  * lodash (Custom Build) <https://lodash.com/>