@saasquatch/mint-components 2.0.0-23 → 2.0.0-25

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.
@@ -18,7 +18,6 @@ const luxon = require('./luxon-949beaf2.js');
18
18
  const useReferralTable = require('./useReferralTable-90d4d6e9.js');
19
19
  const IndirectTaxDetailsView = require('./IndirectTaxDetailsView-e5f70b8b.js');
20
20
  const utils$1 = require('./utils-83d125fa.js');
21
- const parseStates = require('./parseStates-d1effc19.js');
22
21
  const data = require('./data-88adb95b.js');
23
22
  const keys = require('./keys-cff24974.js');
24
23
  const usePayoutStatus = require('./usePayoutStatus-fe32dd1a.js');
@@ -4694,52 +4693,48 @@ const TaxAndCashDashboard = class {
4694
4693
  }
4695
4694
  };
4696
4695
  function useDemoTaxAndCashDashboard(props) {
4697
- const parsed = parseStates.parseStates(props.stateController);
4698
- const formatted = Object.entries(parsed).reduce((acc, [key, value]) =>
4699
4696
  // @ts-ignore
4700
- key === "sqm-tax-and-cash-dashboard" ? { ...acc, ...value } : acc, {});
4701
- const merged = cjs.cjs.all([
4702
- {
4703
- states: {
4704
- dateSubmitted: "today",
4705
- documentType: "W9",
4706
- documentTypeString: "W-9",
4707
- status: "ACTIVE",
4708
- country: "United States",
4709
- indirectTaxNumber: "55555555",
4710
- indirectTaxType: "Indirect Tax",
4711
- noFormNeeded: false,
4712
- disabled: false,
4713
- loading: false,
4714
- showNewFormDialog: false,
4715
- hasHold: false,
4716
- subRegion: "CA",
4717
- subRegionTaxNumber: undefined,
4718
- qstNumber: undefined,
4719
- isBusinessEntity: false,
4720
- province: undefined,
4721
- notRegistered: true,
4722
- loadingError: false,
4723
- payoutStatus: "DONE",
4724
- veriffLoading: false,
4725
- canEditPayoutInfo: true,
4726
- },
4727
- callbacks: {
4728
- onClick: () => console.debug("check step"),
4729
- onEditPayoutInfo: () => console.debug("payout info"),
4730
- onNewFormCancel: () => console.log("hide"),
4731
- onNewFormClick: () => console.log("show"),
4732
- onVerifyClick: () => console.log("verify"),
4733
- },
4734
- text: props.getTextProps(),
4735
- slots: {
4736
- payoutDetailsCardSlot: (index.h("sqm-payout-details-card", { demoData: { states: { badgeStatus: "nextPayout" } } })),
4737
- },
4697
+ return cjs.cjs({
4698
+ states: {
4699
+ dateSubmitted: "today",
4700
+ documentType: "W9",
4701
+ documentTypeString: "W-9",
4702
+ status: "ACTIVE",
4703
+ country: "United States",
4704
+ indirectTaxNumber: "55555555",
4705
+ indirectTaxType: "Indirect Tax",
4706
+ noFormNeeded: false,
4707
+ disabled: false,
4708
+ loading: false,
4709
+ showNewFormDialog: false,
4710
+ hasHold: false,
4711
+ subRegion: "CA",
4712
+ subRegionTaxNumber: undefined,
4713
+ qstNumber: undefined,
4714
+ isBusinessEntity: false,
4715
+ province: undefined,
4716
+ notRegistered: true,
4717
+ loadingError: false,
4718
+ payoutStatus: "DONE",
4719
+ veriffLoading: false,
4720
+ canEditPayoutInfo: true,
4721
+ },
4722
+ callbacks: {
4723
+ onClick: () => console.debug("check step"),
4724
+ onEditPayoutInfo: () => console.debug("payout info"),
4725
+ onNewFormCancel: () => console.log("hide"),
4726
+ onNewFormClick: () => console.log("show"),
4727
+ onVerifyClick: () => console.log("verify"),
4728
+ },
4729
+ text: props.getTextProps(),
4730
+ slots: {
4731
+ payoutDetailsCardSlot: (index.h("sqm-payout-details-card", { demoData: {
4732
+ states: {
4733
+ badgeStatus: "nextPayout",
4734
+ },
4735
+ } })),
4738
4736
  },
4739
- props.demoData || {},
4740
- formatted || {},
4741
- ], { arrayMerge: (_, a) => a });
4742
- return merged;
4737
+ }, props.demoData || props.stateController || {}, { arrayMerge: (_, a) => a });
4743
4738
  }
4744
4739
 
4745
4740
  const PHONE_EXTENSIONS = {
@@ -5,7 +5,6 @@ import deepmerge from "deepmerge";
5
5
  import { getProps } from "../../../utils/utils";
6
6
  import { TaxAndCashDashboardView } from "./sqm-tax-and-cash-dashboard-view";
7
7
  import { useTaxAndCashDashboard, } from "./useTaxAndCashDashboard";
8
- import { parseStates } from "../../../utils/parseStates";
9
8
  /**
10
9
  * @uiName Tax and Cash Status Dashboard
11
10
  */
@@ -1901,50 +1900,46 @@ export class TaxAndCashDashboard {
1901
1900
  }; }
1902
1901
  }
1903
1902
  function useDemoTaxAndCashDashboard(props) {
1904
- const parsed = parseStates(props.stateController);
1905
- const formatted = Object.entries(parsed).reduce((acc, [key, value]) =>
1906
1903
  // @ts-ignore
1907
- key === "sqm-tax-and-cash-dashboard" ? { ...acc, ...value } : acc, {});
1908
- const merged = deepmerge.all([
1909
- {
1910
- states: {
1911
- dateSubmitted: "today",
1912
- documentType: "W9",
1913
- documentTypeString: "W-9",
1914
- status: "ACTIVE",
1915
- country: "United States",
1916
- indirectTaxNumber: "55555555",
1917
- indirectTaxType: "Indirect Tax",
1918
- noFormNeeded: false,
1919
- disabled: false,
1920
- loading: false,
1921
- showNewFormDialog: false,
1922
- hasHold: false,
1923
- subRegion: "CA",
1924
- subRegionTaxNumber: undefined,
1925
- qstNumber: undefined,
1926
- isBusinessEntity: false,
1927
- province: undefined,
1928
- notRegistered: true,
1929
- loadingError: false,
1930
- payoutStatus: "DONE",
1931
- veriffLoading: false,
1932
- canEditPayoutInfo: true,
1933
- },
1934
- callbacks: {
1935
- onClick: () => console.debug("check step"),
1936
- onEditPayoutInfo: () => console.debug("payout info"),
1937
- onNewFormCancel: () => console.log("hide"),
1938
- onNewFormClick: () => console.log("show"),
1939
- onVerifyClick: () => console.log("verify"),
1940
- },
1941
- text: props.getTextProps(),
1942
- slots: {
1943
- payoutDetailsCardSlot: (h("sqm-payout-details-card", { demoData: { states: { badgeStatus: "nextPayout" } } })),
1944
- },
1945
- },
1946
- props.demoData || {},
1947
- formatted || {},
1948
- ], { arrayMerge: (_, a) => a });
1949
- return merged;
1904
+ return deepmerge({
1905
+ states: {
1906
+ dateSubmitted: "today",
1907
+ documentType: "W9",
1908
+ documentTypeString: "W-9",
1909
+ status: "ACTIVE",
1910
+ country: "United States",
1911
+ indirectTaxNumber: "55555555",
1912
+ indirectTaxType: "Indirect Tax",
1913
+ noFormNeeded: false,
1914
+ disabled: false,
1915
+ loading: false,
1916
+ showNewFormDialog: false,
1917
+ hasHold: false,
1918
+ subRegion: "CA",
1919
+ subRegionTaxNumber: undefined,
1920
+ qstNumber: undefined,
1921
+ isBusinessEntity: false,
1922
+ province: undefined,
1923
+ notRegistered: true,
1924
+ loadingError: false,
1925
+ payoutStatus: "DONE",
1926
+ veriffLoading: false,
1927
+ canEditPayoutInfo: true,
1928
+ },
1929
+ callbacks: {
1930
+ onClick: () => console.debug("check step"),
1931
+ onEditPayoutInfo: () => console.debug("payout info"),
1932
+ onNewFormCancel: () => console.log("hide"),
1933
+ onNewFormClick: () => console.log("show"),
1934
+ onVerifyClick: () => console.log("verify"),
1935
+ },
1936
+ text: props.getTextProps(),
1937
+ slots: {
1938
+ payoutDetailsCardSlot: (h("sqm-payout-details-card", { demoData: {
1939
+ states: {
1940
+ badgeStatus: "nextPayout",
1941
+ },
1942
+ } })),
1943
+ },
1944
+ }, props.demoData || props.stateController || {}, { arrayMerge: (_, a) => a });
1950
1945
  }
@@ -14,7 +14,6 @@ import { l as luxon } from './luxon-bbf75a9d.js';
14
14
  import { g as generateUserError } from './useReferralTable-909ccb28.js';
15
15
  import { a as INDIRECT_TAX_SPAIN_REGIONS, b as INDIRECT_TAX_PROVINCES, O as OtherRegionSlotView, I as InvoiceTableView, v as vatLabels, A as ADDRESS_REGIONS } from './IndirectTaxDetailsView-0a57b622.js';
16
16
  import { t as taxTypeToName, v as validTaxDocument, g as getCountryObj, L as LoadingView, f as formatErrorMessage, a as validateBillingField, o as objectIsFull } from './utils-6122971b.js';
17
- import { p as parseStates } from './parseStates-ed75e224.js';
18
17
  import { i as FORM_STEPS, a as TAX_FORM_CONTEXT_NAMESPACE, S as SORTED_COUNTRIES_NAMESPACE, c as USER_QUERY_NAMESPACE, T as TAX_CONTEXT_NAMESPACE, F as FINANCE_NETWORK_SETTINGS_NAMESPACE, U as USER_FORM_CONTEXT_NAMESPACE, d as COUNTRIES_QUERY_NAMESPACE, C as CURRENCIES_NAMESPACE } from './data-807686c2.js';
19
18
  import { b as VERIFICATION_EVENT_KEY } from './keys-406491dc.js';
20
19
  import { T as TAX_FORM_UPDATED_EVENT_KEY, a as useVeriffApp, g as getStatus, V as VERIFF_COMPLETE_EVENT_KEY } from './usePayoutStatus-42cc6a2c.js';
@@ -4690,52 +4689,48 @@ const TaxAndCashDashboard = class {
4690
4689
  }
4691
4690
  };
4692
4691
  function useDemoTaxAndCashDashboard(props) {
4693
- const parsed = parseStates(props.stateController);
4694
- const formatted = Object.entries(parsed).reduce((acc, [key, value]) =>
4695
4692
  // @ts-ignore
4696
- key === "sqm-tax-and-cash-dashboard" ? { ...acc, ...value } : acc, {});
4697
- const merged = cjs.all([
4698
- {
4699
- states: {
4700
- dateSubmitted: "today",
4701
- documentType: "W9",
4702
- documentTypeString: "W-9",
4703
- status: "ACTIVE",
4704
- country: "United States",
4705
- indirectTaxNumber: "55555555",
4706
- indirectTaxType: "Indirect Tax",
4707
- noFormNeeded: false,
4708
- disabled: false,
4709
- loading: false,
4710
- showNewFormDialog: false,
4711
- hasHold: false,
4712
- subRegion: "CA",
4713
- subRegionTaxNumber: undefined,
4714
- qstNumber: undefined,
4715
- isBusinessEntity: false,
4716
- province: undefined,
4717
- notRegistered: true,
4718
- loadingError: false,
4719
- payoutStatus: "DONE",
4720
- veriffLoading: false,
4721
- canEditPayoutInfo: true,
4722
- },
4723
- callbacks: {
4724
- onClick: () => console.debug("check step"),
4725
- onEditPayoutInfo: () => console.debug("payout info"),
4726
- onNewFormCancel: () => console.log("hide"),
4727
- onNewFormClick: () => console.log("show"),
4728
- onVerifyClick: () => console.log("verify"),
4729
- },
4730
- text: props.getTextProps(),
4731
- slots: {
4732
- payoutDetailsCardSlot: (h("sqm-payout-details-card", { demoData: { states: { badgeStatus: "nextPayout" } } })),
4733
- },
4693
+ return cjs({
4694
+ states: {
4695
+ dateSubmitted: "today",
4696
+ documentType: "W9",
4697
+ documentTypeString: "W-9",
4698
+ status: "ACTIVE",
4699
+ country: "United States",
4700
+ indirectTaxNumber: "55555555",
4701
+ indirectTaxType: "Indirect Tax",
4702
+ noFormNeeded: false,
4703
+ disabled: false,
4704
+ loading: false,
4705
+ showNewFormDialog: false,
4706
+ hasHold: false,
4707
+ subRegion: "CA",
4708
+ subRegionTaxNumber: undefined,
4709
+ qstNumber: undefined,
4710
+ isBusinessEntity: false,
4711
+ province: undefined,
4712
+ notRegistered: true,
4713
+ loadingError: false,
4714
+ payoutStatus: "DONE",
4715
+ veriffLoading: false,
4716
+ canEditPayoutInfo: true,
4717
+ },
4718
+ callbacks: {
4719
+ onClick: () => console.debug("check step"),
4720
+ onEditPayoutInfo: () => console.debug("payout info"),
4721
+ onNewFormCancel: () => console.log("hide"),
4722
+ onNewFormClick: () => console.log("show"),
4723
+ onVerifyClick: () => console.log("verify"),
4724
+ },
4725
+ text: props.getTextProps(),
4726
+ slots: {
4727
+ payoutDetailsCardSlot: (h("sqm-payout-details-card", { demoData: {
4728
+ states: {
4729
+ badgeStatus: "nextPayout",
4730
+ },
4731
+ } })),
4734
4732
  },
4735
- props.demoData || {},
4736
- formatted || {},
4737
- ], { arrayMerge: (_, a) => a });
4738
- return merged;
4733
+ }, props.demoData || props.stateController || {}, { arrayMerge: (_, a) => a });
4739
4734
  }
4740
4735
 
4741
4736
  const PHONE_EXTENSIONS = {