@saasquatch/mint-components 2.1.5-2 → 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.
- package/dist/cjs/sqm-banking-info-form_10.cjs.entry.js +3 -3
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +40 -0
- package/dist/collection/components/tax-and-cash/TaxForm.stories.js +38 -0
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard-view.js +3 -3
- package/dist/esm/sqm-banking-info-form_10.entry.js +3 -3
- package/dist/esm/sqm-stencilbook.entry.js +40 -0
- package/dist/esm-es5/sqm-banking-info-form_10.entry.js +1 -1
- package/dist/esm-es5/sqm-stencilbook.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/{p-83c42aa8.entry.js → p-12521cf1.entry.js} +1 -1
- package/dist/mint-components/{p-b3561440.system.entry.js → p-51384e0e.system.entry.js} +1 -1
- package/dist/mint-components/{p-3b066cd0.system.entry.js → p-940365f1.system.entry.js} +1 -1
- package/dist/mint-components/p-af123d2b.system.js +1 -1
- package/dist/mint-components/{p-886f2cf2.entry.js → p-d7967a1d.entry.js} +2 -2
- package/dist/types/components/tax-and-cash/TaxForm.stories.d.ts +2 -0
- package/docs/docs.docx +0 -0
- package/package.json +1 -1
|
@@ -4245,7 +4245,7 @@ const TaxAndCashDashboardView = (props) => {
|
|
|
4245
4245
|
})))),
|
|
4246
4246
|
};
|
|
4247
4247
|
const alertMap = {
|
|
4248
|
-
INACTIVE: (index.h("sl-alert", { exportparts: "base: alert-base, icon:alert-icon", type: "danger", open: true },
|
|
4248
|
+
INACTIVE: (index.h("sl-alert", { exportparts: "base: alert-base, icon:alert-icon", class: sheet$4.classes.ErrorHoldAlertContainer, type: "danger", open: true },
|
|
4249
4249
|
index.h("sl-icon", { slot: "icon", name: "exclamation-octagon" }),
|
|
4250
4250
|
index.h("strong", null, global.intl.formatMessage({
|
|
4251
4251
|
id: `taxAlertHeaderNotActive`,
|
|
@@ -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 = () => {
|
|
@@ -17029,6 +17029,44 @@ const TaxAndCashDashboardNotActiveW9Form = () => {
|
|
|
17029
17029
|
},
|
|
17030
17030
|
} }));
|
|
17031
17031
|
};
|
|
17032
|
+
const TaxAndCashDashboardNotActiveW8Form = () => {
|
|
17033
|
+
return (index.h("sqm-tax-and-cash-dashboard", { demoData: {
|
|
17034
|
+
...dashboardProps,
|
|
17035
|
+
states: {
|
|
17036
|
+
payoutStatus: "DONE",
|
|
17037
|
+
veriffLoading: false,
|
|
17038
|
+
noFormNeeded: false,
|
|
17039
|
+
canEditPayoutInfo: true,
|
|
17040
|
+
status: "INACTIVE",
|
|
17041
|
+
documentType: "W8BEN",
|
|
17042
|
+
documentTypeString: data.taxTypeToName("W8BEN"),
|
|
17043
|
+
country: "United Kingdom",
|
|
17044
|
+
indirectTaxType: "VAT",
|
|
17045
|
+
indirectTaxNumber: "123456",
|
|
17046
|
+
showNewFormDialog: false,
|
|
17047
|
+
hasHold: false,
|
|
17048
|
+
},
|
|
17049
|
+
} }));
|
|
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
|
+
};
|
|
17032
17070
|
const TaxAndCashDashboardNotVerifiedW9Form = () => {
|
|
17033
17071
|
return (index.h("sqm-tax-and-cash-dashboard", { demoData: {
|
|
17034
17072
|
...dashboardProps,
|
|
@@ -17631,6 +17669,8 @@ const TaxForm = /*#__PURE__*/Object.freeze({
|
|
|
17631
17669
|
TaxAndCashDashboardActiveW8BENForm: TaxAndCashDashboardActiveW8BENForm,
|
|
17632
17670
|
TaxAndCashDashboardActiveW8BENEForm: TaxAndCashDashboardActiveW8BENEForm,
|
|
17633
17671
|
TaxAndCashDashboardNotActiveW9Form: TaxAndCashDashboardNotActiveW9Form,
|
|
17672
|
+
TaxAndCashDashboardNotActiveW8Form: TaxAndCashDashboardNotActiveW8Form,
|
|
17673
|
+
TaxAndCashDashboardNotActiveNoForm: TaxAndCashDashboardNotActiveNoForm,
|
|
17634
17674
|
TaxAndCashDashboardNotVerifiedW9Form: TaxAndCashDashboardNotVerifiedW9Form,
|
|
17635
17675
|
TaxAndCashDashboardNotVerifiedW8BENForm: TaxAndCashDashboardNotVerifiedW8BENForm,
|
|
17636
17676
|
TaxAndCashDashboardNotVerifiedW8BENEForm: TaxAndCashDashboardNotVerifiedW8BENEForm,
|
|
@@ -856,6 +856,44 @@ export const TaxAndCashDashboardNotActiveW9Form = () => {
|
|
|
856
856
|
},
|
|
857
857
|
} }));
|
|
858
858
|
};
|
|
859
|
+
export const TaxAndCashDashboardNotActiveW8Form = () => {
|
|
860
|
+
return (h("sqm-tax-and-cash-dashboard", { demoData: {
|
|
861
|
+
...dashboardProps,
|
|
862
|
+
states: {
|
|
863
|
+
payoutStatus: "DONE",
|
|
864
|
+
veriffLoading: false,
|
|
865
|
+
noFormNeeded: false,
|
|
866
|
+
canEditPayoutInfo: true,
|
|
867
|
+
status: "INACTIVE",
|
|
868
|
+
documentType: "W8BEN",
|
|
869
|
+
documentTypeString: taxTypeToName("W8BEN"),
|
|
870
|
+
country: "United Kingdom",
|
|
871
|
+
indirectTaxType: "VAT",
|
|
872
|
+
indirectTaxNumber: "123456",
|
|
873
|
+
showNewFormDialog: false,
|
|
874
|
+
hasHold: false,
|
|
875
|
+
},
|
|
876
|
+
} }));
|
|
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
|
+
};
|
|
859
897
|
export const TaxAndCashDashboardNotVerifiedW9Form = () => {
|
|
860
898
|
return (h("sqm-tax-and-cash-dashboard", { demoData: {
|
|
861
899
|
...dashboardProps,
|
|
@@ -523,7 +523,7 @@ export const TaxAndCashDashboardView = (props) => {
|
|
|
523
523
|
})))),
|
|
524
524
|
};
|
|
525
525
|
const alertMap = {
|
|
526
|
-
INACTIVE: (h("sl-alert", { exportparts: "base: alert-base, icon:alert-icon", type: "danger", open: true },
|
|
526
|
+
INACTIVE: (h("sl-alert", { exportparts: "base: alert-base, icon:alert-icon", class: sheet.classes.ErrorHoldAlertContainer, type: "danger", open: true },
|
|
527
527
|
h("sl-icon", { slot: "icon", name: "exclamation-octagon" }),
|
|
528
528
|
h("strong", null, intl.formatMessage({
|
|
529
529
|
id: `taxAlertHeaderNotActive`,
|
|
@@ -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 = () => {
|
|
@@ -4241,7 +4241,7 @@ const TaxAndCashDashboardView = (props) => {
|
|
|
4241
4241
|
})))),
|
|
4242
4242
|
};
|
|
4243
4243
|
const alertMap = {
|
|
4244
|
-
INACTIVE: (h("sl-alert", { exportparts: "base: alert-base, icon:alert-icon", type: "danger", open: true },
|
|
4244
|
+
INACTIVE: (h("sl-alert", { exportparts: "base: alert-base, icon:alert-icon", class: sheet$4.classes.ErrorHoldAlertContainer, type: "danger", open: true },
|
|
4245
4245
|
h("sl-icon", { slot: "icon", name: "exclamation-octagon" }),
|
|
4246
4246
|
h("strong", null, intl.formatMessage({
|
|
4247
4247
|
id: `taxAlertHeaderNotActive`,
|
|
@@ -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 = () => {
|
|
@@ -17025,6 +17025,44 @@ const TaxAndCashDashboardNotActiveW9Form = () => {
|
|
|
17025
17025
|
},
|
|
17026
17026
|
} }));
|
|
17027
17027
|
};
|
|
17028
|
+
const TaxAndCashDashboardNotActiveW8Form = () => {
|
|
17029
|
+
return (h("sqm-tax-and-cash-dashboard", { demoData: {
|
|
17030
|
+
...dashboardProps,
|
|
17031
|
+
states: {
|
|
17032
|
+
payoutStatus: "DONE",
|
|
17033
|
+
veriffLoading: false,
|
|
17034
|
+
noFormNeeded: false,
|
|
17035
|
+
canEditPayoutInfo: true,
|
|
17036
|
+
status: "INACTIVE",
|
|
17037
|
+
documentType: "W8BEN",
|
|
17038
|
+
documentTypeString: taxTypeToName("W8BEN"),
|
|
17039
|
+
country: "United Kingdom",
|
|
17040
|
+
indirectTaxType: "VAT",
|
|
17041
|
+
indirectTaxNumber: "123456",
|
|
17042
|
+
showNewFormDialog: false,
|
|
17043
|
+
hasHold: false,
|
|
17044
|
+
},
|
|
17045
|
+
} }));
|
|
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
|
+
};
|
|
17028
17066
|
const TaxAndCashDashboardNotVerifiedW9Form = () => {
|
|
17029
17067
|
return (h("sqm-tax-and-cash-dashboard", { demoData: {
|
|
17030
17068
|
...dashboardProps,
|
|
@@ -17627,6 +17665,8 @@ const TaxForm = /*#__PURE__*/Object.freeze({
|
|
|
17627
17665
|
TaxAndCashDashboardActiveW8BENForm: TaxAndCashDashboardActiveW8BENForm,
|
|
17628
17666
|
TaxAndCashDashboardActiveW8BENEForm: TaxAndCashDashboardActiveW8BENEForm,
|
|
17629
17667
|
TaxAndCashDashboardNotActiveW9Form: TaxAndCashDashboardNotActiveW9Form,
|
|
17668
|
+
TaxAndCashDashboardNotActiveW8Form: TaxAndCashDashboardNotActiveW8Form,
|
|
17669
|
+
TaxAndCashDashboardNotActiveNoForm: TaxAndCashDashboardNotActiveNoForm,
|
|
17630
17670
|
TaxAndCashDashboardNotVerifiedW9Form: TaxAndCashDashboardNotVerifiedW9Form,
|
|
17631
17671
|
TaxAndCashDashboardNotVerifiedW8BENForm: TaxAndCashDashboardNotVerifiedW8BENForm,
|
|
17632
17672
|
TaxAndCashDashboardNotVerifiedW8BENEForm: TaxAndCashDashboardNotVerifiedW8BENEForm,
|