@saasquatch/mint-components 2.1.5-3 → 2.1.5-4

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.
@@ -4253,7 +4253,7 @@ const TaxAndCashDashboardView = (props) => {
4253
4253
  ? text.taxAlertHeaderNotActiveW9
4254
4254
  : text.taxAlertHeaderNotActiveW8,
4255
4255
  }, {
4256
- documentType: states.documentTypeString,
4256
+ documentType: states.documentTypeString || "Your",
4257
4257
  })),
4258
4258
  index.h("br", null),
4259
4259
  global.intl.formatMessage({
@@ -4262,7 +4262,7 @@ const TaxAndCashDashboardView = (props) => {
4262
4262
  ? text.taxAlertNotActiveMessageW9
4263
4263
  : text.taxAlertNotActiveMessageW8,
4264
4264
  }, {
4265
- documentType: states.documentTypeString,
4265
+ documentType: states.documentTypeString || "tax",
4266
4266
  }))),
4267
4267
  };
4268
4268
  const getIndirectTaxRegisteredIn = () => {
@@ -17048,6 +17048,25 @@ const TaxAndCashDashboardNotActiveW8Form = () => {
17048
17048
  },
17049
17049
  } }));
17050
17050
  };
17051
+ const TaxAndCashDashboardNotActiveNoForm = () => {
17052
+ return (index.h("sqm-tax-and-cash-dashboard", { demoData: {
17053
+ ...dashboardProps,
17054
+ states: {
17055
+ payoutStatus: "DONE",
17056
+ veriffLoading: false,
17057
+ noFormNeeded: true,
17058
+ canEditPayoutInfo: true,
17059
+ status: "INACTIVE",
17060
+ documentType: "W8BEN",
17061
+ documentTypeString: "",
17062
+ country: "United Kingdom",
17063
+ indirectTaxType: "VAT",
17064
+ indirectTaxNumber: "123456",
17065
+ showNewFormDialog: false,
17066
+ hasHold: false,
17067
+ },
17068
+ } }));
17069
+ };
17051
17070
  const TaxAndCashDashboardNotVerifiedW9Form = () => {
17052
17071
  return (index.h("sqm-tax-and-cash-dashboard", { demoData: {
17053
17072
  ...dashboardProps,
@@ -17651,6 +17670,7 @@ const TaxForm = /*#__PURE__*/Object.freeze({
17651
17670
  TaxAndCashDashboardActiveW8BENEForm: TaxAndCashDashboardActiveW8BENEForm,
17652
17671
  TaxAndCashDashboardNotActiveW9Form: TaxAndCashDashboardNotActiveW9Form,
17653
17672
  TaxAndCashDashboardNotActiveW8Form: TaxAndCashDashboardNotActiveW8Form,
17673
+ TaxAndCashDashboardNotActiveNoForm: TaxAndCashDashboardNotActiveNoForm,
17654
17674
  TaxAndCashDashboardNotVerifiedW9Form: TaxAndCashDashboardNotVerifiedW9Form,
17655
17675
  TaxAndCashDashboardNotVerifiedW8BENForm: TaxAndCashDashboardNotVerifiedW8BENForm,
17656
17676
  TaxAndCashDashboardNotVerifiedW8BENEForm: TaxAndCashDashboardNotVerifiedW8BENEForm,
@@ -875,6 +875,25 @@ export const TaxAndCashDashboardNotActiveW8Form = () => {
875
875
  },
876
876
  } }));
877
877
  };
878
+ export const TaxAndCashDashboardNotActiveNoForm = () => {
879
+ return (h("sqm-tax-and-cash-dashboard", { demoData: {
880
+ ...dashboardProps,
881
+ states: {
882
+ payoutStatus: "DONE",
883
+ veriffLoading: false,
884
+ noFormNeeded: true,
885
+ canEditPayoutInfo: true,
886
+ status: "INACTIVE",
887
+ documentType: "W8BEN",
888
+ documentTypeString: "",
889
+ country: "United Kingdom",
890
+ indirectTaxType: "VAT",
891
+ indirectTaxNumber: "123456",
892
+ showNewFormDialog: false,
893
+ hasHold: false,
894
+ },
895
+ } }));
896
+ };
878
897
  export const TaxAndCashDashboardNotVerifiedW9Form = () => {
879
898
  return (h("sqm-tax-and-cash-dashboard", { demoData: {
880
899
  ...dashboardProps,
@@ -531,7 +531,7 @@ export const TaxAndCashDashboardView = (props) => {
531
531
  ? text.taxAlertHeaderNotActiveW9
532
532
  : text.taxAlertHeaderNotActiveW8,
533
533
  }, {
534
- documentType: states.documentTypeString,
534
+ documentType: states.documentTypeString || "Your",
535
535
  })),
536
536
  h("br", null),
537
537
  intl.formatMessage({
@@ -540,7 +540,7 @@ export const TaxAndCashDashboardView = (props) => {
540
540
  ? text.taxAlertNotActiveMessageW9
541
541
  : text.taxAlertNotActiveMessageW8,
542
542
  }, {
543
- documentType: states.documentTypeString,
543
+ documentType: states.documentTypeString || "tax",
544
544
  }))),
545
545
  };
546
546
  const getIndirectTaxRegisteredIn = () => {
@@ -4249,7 +4249,7 @@ const TaxAndCashDashboardView = (props) => {
4249
4249
  ? text.taxAlertHeaderNotActiveW9
4250
4250
  : text.taxAlertHeaderNotActiveW8,
4251
4251
  }, {
4252
- documentType: states.documentTypeString,
4252
+ documentType: states.documentTypeString || "Your",
4253
4253
  })),
4254
4254
  h("br", null),
4255
4255
  intl.formatMessage({
@@ -4258,7 +4258,7 @@ const TaxAndCashDashboardView = (props) => {
4258
4258
  ? text.taxAlertNotActiveMessageW9
4259
4259
  : text.taxAlertNotActiveMessageW8,
4260
4260
  }, {
4261
- documentType: states.documentTypeString,
4261
+ documentType: states.documentTypeString || "tax",
4262
4262
  }))),
4263
4263
  };
4264
4264
  const getIndirectTaxRegisteredIn = () => {
@@ -17044,6 +17044,25 @@ const TaxAndCashDashboardNotActiveW8Form = () => {
17044
17044
  },
17045
17045
  } }));
17046
17046
  };
17047
+ const TaxAndCashDashboardNotActiveNoForm = () => {
17048
+ return (h("sqm-tax-and-cash-dashboard", { demoData: {
17049
+ ...dashboardProps,
17050
+ states: {
17051
+ payoutStatus: "DONE",
17052
+ veriffLoading: false,
17053
+ noFormNeeded: true,
17054
+ canEditPayoutInfo: true,
17055
+ status: "INACTIVE",
17056
+ documentType: "W8BEN",
17057
+ documentTypeString: "",
17058
+ country: "United Kingdom",
17059
+ indirectTaxType: "VAT",
17060
+ indirectTaxNumber: "123456",
17061
+ showNewFormDialog: false,
17062
+ hasHold: false,
17063
+ },
17064
+ } }));
17065
+ };
17047
17066
  const TaxAndCashDashboardNotVerifiedW9Form = () => {
17048
17067
  return (h("sqm-tax-and-cash-dashboard", { demoData: {
17049
17068
  ...dashboardProps,
@@ -17647,6 +17666,7 @@ const TaxForm = /*#__PURE__*/Object.freeze({
17647
17666
  TaxAndCashDashboardActiveW8BENEForm: TaxAndCashDashboardActiveW8BENEForm,
17648
17667
  TaxAndCashDashboardNotActiveW9Form: TaxAndCashDashboardNotActiveW9Form,
17649
17668
  TaxAndCashDashboardNotActiveW8Form: TaxAndCashDashboardNotActiveW8Form,
17669
+ TaxAndCashDashboardNotActiveNoForm: TaxAndCashDashboardNotActiveNoForm,
17650
17670
  TaxAndCashDashboardNotVerifiedW9Form: TaxAndCashDashboardNotVerifiedW9Form,
17651
17671
  TaxAndCashDashboardNotVerifiedW8BENForm: TaxAndCashDashboardNotVerifiedW8BENForm,
17652
17672
  TaxAndCashDashboardNotVerifiedW8BENEForm: TaxAndCashDashboardNotVerifiedW8BENEForm,