@saasquatch/mint-components 2.0.0-33 → 2.0.0-35
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 +48 -43
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard.js +50 -45
- package/dist/esm/sqm-banking-info-form_10.entry.js +48 -43
- package/dist/esm-es5/sqm-banking-info-form_10.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/{p-acb990b8.system.entry.js → p-08325696.system.entry.js} +1 -1
- package/dist/mint-components/p-967a9040.system.js +1 -1
- package/dist/mint-components/{p-13dc75cf.entry.js → p-b3847cfe.entry.js} +1 -1
- package/dist/types/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard.d.ts +1 -1
- package/dist/types/components.d.ts +2 -2
- package/docs/docs.docx +0 -0
- package/package.json +1 -1
- package/shoelace/assets/icons/twitter-x.svg +0 -4
|
@@ -4666,7 +4666,7 @@ const TaxAndCashDashboard = class {
|
|
|
4666
4666
|
this.cancelButton = "Cancel";
|
|
4667
4667
|
/**
|
|
4668
4668
|
* @undocumented
|
|
4669
|
-
* @componentState { "title": "Payouts on hold", "props": { "states": { "payoutStatus": "HOLD" } }, "
|
|
4669
|
+
* @componentState { "title": "Payouts on hold", "props": { "states": { "payoutStatus": "HOLD" } }, "uiGroup": "Dashboard Properties" }
|
|
4670
4670
|
*/
|
|
4671
4671
|
this.stateController = "{}";
|
|
4672
4672
|
domContextHooks_module.h$1(this);
|
|
@@ -4688,55 +4688,60 @@ const TaxAndCashDashboard = class {
|
|
|
4688
4688
|
const props = index_module.isDemo()
|
|
4689
4689
|
? useDemoTaxAndCashDashboard(this)
|
|
4690
4690
|
: useTaxAndCashDashboard(this);
|
|
4691
|
+
console.log({ stateController: this.stateController });
|
|
4691
4692
|
return (index.h(index.Host, null, index.h(TaxAndCashDashboardView, { callbacks: props.callbacks, states: props.states, text: props.text, slots: {
|
|
4692
4693
|
payoutDetailsCardSlot: (index.h("sqm-payout-details-card", Object.assign({}, this.getTextProps()))),
|
|
4693
4694
|
} })));
|
|
4694
4695
|
}
|
|
4695
4696
|
};
|
|
4696
4697
|
function useDemoTaxAndCashDashboard(props) {
|
|
4697
|
-
const
|
|
4698
|
-
const formatted = Object.keys(
|
|
4699
|
-
? { ...prev, ...
|
|
4700
|
-
: { ...prev, [`${key}_stateController`]:
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
|
|
4698
|
+
const states = parseStates.parseStates(props.stateController);
|
|
4699
|
+
const formatted = Object.keys(states).reduce((prev, key) => key === "sqm-tax-and-cash-dashboard"
|
|
4700
|
+
? { ...prev, ...states[key] }
|
|
4701
|
+
: { ...prev, [`${key}_stateController`]: states[key] }, {});
|
|
4702
|
+
console.log({ formatted });
|
|
4703
|
+
// @ts-ignore
|
|
4704
|
+
return cjs.cjs({
|
|
4705
|
+
states: {
|
|
4706
|
+
dateSubmitted: "today",
|
|
4707
|
+
documentType: "W9",
|
|
4708
|
+
documentTypeString: "W-9",
|
|
4709
|
+
status: "ACTIVE",
|
|
4710
|
+
country: "United States",
|
|
4711
|
+
indirectTaxNumber: "55555555",
|
|
4712
|
+
indirectTaxType: "Indirect Tax",
|
|
4713
|
+
noFormNeeded: false,
|
|
4714
|
+
disabled: false,
|
|
4715
|
+
loading: false,
|
|
4716
|
+
showNewFormDialog: false,
|
|
4717
|
+
hasHold: false,
|
|
4718
|
+
subRegion: "CA",
|
|
4719
|
+
subRegionTaxNumber: undefined,
|
|
4720
|
+
qstNumber: undefined,
|
|
4721
|
+
isBusinessEntity: false,
|
|
4722
|
+
province: undefined,
|
|
4723
|
+
notRegistered: true,
|
|
4724
|
+
loadingError: false,
|
|
4725
|
+
payoutStatus: "DONE",
|
|
4726
|
+
veriffLoading: false,
|
|
4727
|
+
canEditPayoutInfo: true,
|
|
4728
|
+
},
|
|
4729
|
+
callbacks: {
|
|
4730
|
+
onClick: () => console.debug("check step"),
|
|
4731
|
+
onEditPayoutInfo: () => console.debug("payout info"),
|
|
4732
|
+
onNewFormCancel: () => console.log("hide"),
|
|
4733
|
+
onNewFormClick: () => console.log("show"),
|
|
4734
|
+
onVerifyClick: () => console.log("verify"),
|
|
4735
|
+
},
|
|
4736
|
+
text: props.getTextProps(),
|
|
4737
|
+
slots: {
|
|
4738
|
+
payoutDetailsCardSlot: (index.h("sqm-payout-details-card", { demoData: {
|
|
4739
|
+
states: {
|
|
4740
|
+
badgeStatus: "nextPayout",
|
|
4741
|
+
},
|
|
4742
|
+
} })),
|
|
4735
4743
|
},
|
|
4736
|
-
|
|
4737
|
-
formatted,
|
|
4738
|
-
], { arrayMerge: (_, a) => a });
|
|
4739
|
-
return merged;
|
|
4744
|
+
}, formatted || props.demoData || {}, { arrayMerge: (_, a) => a });
|
|
4740
4745
|
}
|
|
4741
4746
|
|
|
4742
4747
|
const PHONE_EXTENSIONS = {
|
|
@@ -341,7 +341,7 @@ export class TaxAndCashDashboard {
|
|
|
341
341
|
this.cancelButton = "Cancel";
|
|
342
342
|
/**
|
|
343
343
|
* @undocumented
|
|
344
|
-
* @componentState { "title": "Payouts on hold", "props": { "states": { "payoutStatus": "HOLD" } }, "
|
|
344
|
+
* @componentState { "title": "Payouts on hold", "props": { "states": { "payoutStatus": "HOLD" } }, "uiGroup": "Dashboard Properties" }
|
|
345
345
|
*/
|
|
346
346
|
this.stateController = "{}";
|
|
347
347
|
withHooks(this);
|
|
@@ -363,6 +363,7 @@ export class TaxAndCashDashboard {
|
|
|
363
363
|
const props = isDemo()
|
|
364
364
|
? useDemoTaxAndCashDashboard(this)
|
|
365
365
|
: useTaxAndCashDashboard(this);
|
|
366
|
+
console.log({ stateController: this.stateController });
|
|
366
367
|
return (h(Host, null,
|
|
367
368
|
h(TaxAndCashDashboardView, { callbacks: props.callbacks, states: props.states, text: props.text, slots: {
|
|
368
369
|
payoutDetailsCardSlot: (h("sqm-payout-details-card", Object.assign({}, this.getTextProps()))),
|
|
@@ -1889,7 +1890,7 @@ export class TaxAndCashDashboard {
|
|
|
1889
1890
|
"text": undefined,
|
|
1890
1891
|
"name": "undocumented"
|
|
1891
1892
|
}, {
|
|
1892
|
-
"text": "{ \"title\": \"Payouts on hold\", \"props\": { \"states\": { \"payoutStatus\": \"HOLD\" } }, \"
|
|
1893
|
+
"text": "{ \"title\": \"Payouts on hold\", \"props\": { \"states\": { \"payoutStatus\": \"HOLD\" } }, \"uiGroup\": \"Dashboard Properties\" }",
|
|
1893
1894
|
"name": "componentState"
|
|
1894
1895
|
}],
|
|
1895
1896
|
"text": ""
|
|
@@ -1901,47 +1902,51 @@ export class TaxAndCashDashboard {
|
|
|
1901
1902
|
}; }
|
|
1902
1903
|
}
|
|
1903
1904
|
function useDemoTaxAndCashDashboard(props) {
|
|
1904
|
-
const
|
|
1905
|
-
const formatted = Object.keys(
|
|
1906
|
-
? { ...prev, ...
|
|
1907
|
-
: { ...prev, [`${key}_stateController`]:
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1905
|
+
const states = parseStates(props.stateController);
|
|
1906
|
+
const formatted = Object.keys(states).reduce((prev, key) => key === "sqm-tax-and-cash-dashboard"
|
|
1907
|
+
? { ...prev, ...states[key] }
|
|
1908
|
+
: { ...prev, [`${key}_stateController`]: states[key] }, {});
|
|
1909
|
+
console.log({ formatted });
|
|
1910
|
+
// @ts-ignore
|
|
1911
|
+
return deepmerge({
|
|
1912
|
+
states: {
|
|
1913
|
+
dateSubmitted: "today",
|
|
1914
|
+
documentType: "W9",
|
|
1915
|
+
documentTypeString: "W-9",
|
|
1916
|
+
status: "ACTIVE",
|
|
1917
|
+
country: "United States",
|
|
1918
|
+
indirectTaxNumber: "55555555",
|
|
1919
|
+
indirectTaxType: "Indirect Tax",
|
|
1920
|
+
noFormNeeded: false,
|
|
1921
|
+
disabled: false,
|
|
1922
|
+
loading: false,
|
|
1923
|
+
showNewFormDialog: false,
|
|
1924
|
+
hasHold: false,
|
|
1925
|
+
subRegion: "CA",
|
|
1926
|
+
subRegionTaxNumber: undefined,
|
|
1927
|
+
qstNumber: undefined,
|
|
1928
|
+
isBusinessEntity: false,
|
|
1929
|
+
province: undefined,
|
|
1930
|
+
notRegistered: true,
|
|
1931
|
+
loadingError: false,
|
|
1932
|
+
payoutStatus: "DONE",
|
|
1933
|
+
veriffLoading: false,
|
|
1934
|
+
canEditPayoutInfo: true,
|
|
1935
|
+
},
|
|
1936
|
+
callbacks: {
|
|
1937
|
+
onClick: () => console.debug("check step"),
|
|
1938
|
+
onEditPayoutInfo: () => console.debug("payout info"),
|
|
1939
|
+
onNewFormCancel: () => console.log("hide"),
|
|
1940
|
+
onNewFormClick: () => console.log("show"),
|
|
1941
|
+
onVerifyClick: () => console.log("verify"),
|
|
1942
|
+
},
|
|
1943
|
+
text: props.getTextProps(),
|
|
1944
|
+
slots: {
|
|
1945
|
+
payoutDetailsCardSlot: (h("sqm-payout-details-card", { demoData: {
|
|
1946
|
+
states: {
|
|
1947
|
+
badgeStatus: "nextPayout",
|
|
1948
|
+
},
|
|
1949
|
+
} })),
|
|
1950
|
+
},
|
|
1951
|
+
}, formatted || props.demoData || {}, { arrayMerge: (_, a) => a });
|
|
1947
1952
|
}
|
|
@@ -4662,7 +4662,7 @@ const TaxAndCashDashboard = class {
|
|
|
4662
4662
|
this.cancelButton = "Cancel";
|
|
4663
4663
|
/**
|
|
4664
4664
|
* @undocumented
|
|
4665
|
-
* @componentState { "title": "Payouts on hold", "props": { "states": { "payoutStatus": "HOLD" } }, "
|
|
4665
|
+
* @componentState { "title": "Payouts on hold", "props": { "states": { "payoutStatus": "HOLD" } }, "uiGroup": "Dashboard Properties" }
|
|
4666
4666
|
*/
|
|
4667
4667
|
this.stateController = "{}";
|
|
4668
4668
|
h$1(this);
|
|
@@ -4684,55 +4684,60 @@ const TaxAndCashDashboard = class {
|
|
|
4684
4684
|
const props = isDemo()
|
|
4685
4685
|
? useDemoTaxAndCashDashboard(this)
|
|
4686
4686
|
: useTaxAndCashDashboard(this);
|
|
4687
|
+
console.log({ stateController: this.stateController });
|
|
4687
4688
|
return (h(Host, null, h(TaxAndCashDashboardView, { callbacks: props.callbacks, states: props.states, text: props.text, slots: {
|
|
4688
4689
|
payoutDetailsCardSlot: (h("sqm-payout-details-card", Object.assign({}, this.getTextProps()))),
|
|
4689
4690
|
} })));
|
|
4690
4691
|
}
|
|
4691
4692
|
};
|
|
4692
4693
|
function useDemoTaxAndCashDashboard(props) {
|
|
4693
|
-
const
|
|
4694
|
-
const formatted = Object.keys(
|
|
4695
|
-
? { ...prev, ...
|
|
4696
|
-
: { ...prev, [`${key}_stateController`]:
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
|
|
4708
|
-
|
|
4709
|
-
|
|
4710
|
-
|
|
4711
|
-
|
|
4712
|
-
|
|
4713
|
-
|
|
4714
|
-
|
|
4715
|
-
|
|
4716
|
-
|
|
4717
|
-
|
|
4718
|
-
|
|
4719
|
-
|
|
4720
|
-
|
|
4721
|
-
|
|
4722
|
-
|
|
4723
|
-
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4729
|
-
|
|
4730
|
-
|
|
4694
|
+
const states = parseStates(props.stateController);
|
|
4695
|
+
const formatted = Object.keys(states).reduce((prev, key) => key === "sqm-tax-and-cash-dashboard"
|
|
4696
|
+
? { ...prev, ...states[key] }
|
|
4697
|
+
: { ...prev, [`${key}_stateController`]: states[key] }, {});
|
|
4698
|
+
console.log({ formatted });
|
|
4699
|
+
// @ts-ignore
|
|
4700
|
+
return cjs({
|
|
4701
|
+
states: {
|
|
4702
|
+
dateSubmitted: "today",
|
|
4703
|
+
documentType: "W9",
|
|
4704
|
+
documentTypeString: "W-9",
|
|
4705
|
+
status: "ACTIVE",
|
|
4706
|
+
country: "United States",
|
|
4707
|
+
indirectTaxNumber: "55555555",
|
|
4708
|
+
indirectTaxType: "Indirect Tax",
|
|
4709
|
+
noFormNeeded: false,
|
|
4710
|
+
disabled: false,
|
|
4711
|
+
loading: false,
|
|
4712
|
+
showNewFormDialog: false,
|
|
4713
|
+
hasHold: false,
|
|
4714
|
+
subRegion: "CA",
|
|
4715
|
+
subRegionTaxNumber: undefined,
|
|
4716
|
+
qstNumber: undefined,
|
|
4717
|
+
isBusinessEntity: false,
|
|
4718
|
+
province: undefined,
|
|
4719
|
+
notRegistered: true,
|
|
4720
|
+
loadingError: false,
|
|
4721
|
+
payoutStatus: "DONE",
|
|
4722
|
+
veriffLoading: false,
|
|
4723
|
+
canEditPayoutInfo: true,
|
|
4724
|
+
},
|
|
4725
|
+
callbacks: {
|
|
4726
|
+
onClick: () => console.debug("check step"),
|
|
4727
|
+
onEditPayoutInfo: () => console.debug("payout info"),
|
|
4728
|
+
onNewFormCancel: () => console.log("hide"),
|
|
4729
|
+
onNewFormClick: () => console.log("show"),
|
|
4730
|
+
onVerifyClick: () => console.log("verify"),
|
|
4731
|
+
},
|
|
4732
|
+
text: props.getTextProps(),
|
|
4733
|
+
slots: {
|
|
4734
|
+
payoutDetailsCardSlot: (h("sqm-payout-details-card", { demoData: {
|
|
4735
|
+
states: {
|
|
4736
|
+
badgeStatus: "nextPayout",
|
|
4737
|
+
},
|
|
4738
|
+
} })),
|
|
4731
4739
|
},
|
|
4732
|
-
|
|
4733
|
-
formatted,
|
|
4734
|
-
], { arrayMerge: (_, a) => a });
|
|
4735
|
-
return merged;
|
|
4740
|
+
}, formatted || props.demoData || {}, { arrayMerge: (_, a) => a });
|
|
4736
4741
|
}
|
|
4737
4742
|
|
|
4738
4743
|
const PHONE_EXTENSIONS = {
|