@saasquatch/mint-components 2.0.0-34 → 2.0.0-36
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 +43 -48
- package/dist/cjs/sqm-big-stat_46.cjs.entry.js +1 -0
- package/dist/collection/components/tax-and-cash/sqm-payout-status-alert/sqm-payout-status-alert.js +1 -0
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard.js +45 -50
- package/dist/esm/sqm-banking-info-form_10.entry.js +43 -48
- package/dist/esm/sqm-big-stat_46.entry.js +1 -0
- package/dist/esm-es5/sqm-banking-info-form_10.entry.js +1 -1
- package/dist/esm-es5/sqm-big-stat_46.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/{p-b3847cfe.entry.js → p-13dc75cf.entry.js} +1 -1
- package/dist/mint-components/p-967a9040.system.js +1 -1
- package/dist/mint-components/{p-08325696.system.entry.js → p-acb990b8.system.entry.js} +1 -1
- package/dist/mint-components/{p-38263521.entry.js → p-be3d8440.entry.js} +1 -1
- package/dist/mint-components/{p-69d8b4f2.system.entry.js → p-e1c9351d.system.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/docs/raisins.json +1 -1
- package/package.json +1 -1
- package/shoelace/assets/icons/twitter-x.svg +4 -0
|
@@ -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" } }, "uiGroup": "Dashboard Properties" }
|
|
4669
|
+
* @componentState { "title": "Payouts on hold", "props": { "states": { "payoutStatus": "HOLD" } }, "dependencies": ["sqm-payout-status-alert"] "uiGroup": "Dashboard Properties" }
|
|
4670
4670
|
*/
|
|
4671
4671
|
this.stateController = "{}";
|
|
4672
4672
|
domContextHooks_module.h$1(this);
|
|
@@ -4688,60 +4688,55 @@ const TaxAndCashDashboard = class {
|
|
|
4688
4688
|
const props = index_module.isDemo()
|
|
4689
4689
|
? useDemoTaxAndCashDashboard(this)
|
|
4690
4690
|
: useTaxAndCashDashboard(this);
|
|
4691
|
-
console.log({ stateController: this.stateController });
|
|
4692
4691
|
return (index.h(index.Host, null, index.h(TaxAndCashDashboardView, { callbacks: props.callbacks, states: props.states, text: props.text, slots: {
|
|
4693
4692
|
payoutDetailsCardSlot: (index.h("sqm-payout-details-card", Object.assign({}, this.getTextProps()))),
|
|
4694
4693
|
} })));
|
|
4695
4694
|
}
|
|
4696
4695
|
};
|
|
4697
4696
|
function useDemoTaxAndCashDashboard(props) {
|
|
4698
|
-
const
|
|
4699
|
-
const formatted = Object.keys(
|
|
4700
|
-
? { ...prev, ...
|
|
4701
|
-
: { ...prev, [`${key}_stateController`]:
|
|
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
|
-
|
|
4735
|
-
|
|
4736
|
-
text: props.getTextProps(),
|
|
4737
|
-
slots: {
|
|
4738
|
-
payoutDetailsCardSlot: (index.h("sqm-payout-details-card", { demoData: {
|
|
4739
|
-
states: {
|
|
4740
|
-
badgeStatus: "nextPayout",
|
|
4741
|
-
},
|
|
4742
|
-
} })),
|
|
4697
|
+
const parsed = parseStates.parseStates(props.stateController);
|
|
4698
|
+
const formatted = Object.keys(parsed).reduce((prev, key) => key === "sqm-tax-and-cash-dashboard"
|
|
4699
|
+
? { ...prev, ...parsed[key] }
|
|
4700
|
+
: { ...prev, [`${key}_stateController`]: parsed[key] }, {});
|
|
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(),
|
|
4743
4735
|
},
|
|
4744
|
-
|
|
4736
|
+
props.demoData || {},
|
|
4737
|
+
formatted,
|
|
4738
|
+
], { arrayMerge: (_, a) => a });
|
|
4739
|
+
return merged;
|
|
4745
4740
|
}
|
|
4746
4741
|
|
|
4747
4742
|
const PHONE_EXTENSIONS = {
|
|
@@ -3206,6 +3206,7 @@ const PayoutStatusAlert = class {
|
|
|
3206
3206
|
}
|
|
3207
3207
|
};
|
|
3208
3208
|
function useDemoPayoutStatusAlert(props) {
|
|
3209
|
+
console.log(props.stateController, "stateController in sqm-payout-status-alert");
|
|
3209
3210
|
const states = parseStates.parseStates(props.stateController);
|
|
3210
3211
|
const formatted = Object.keys(states).reduce((prev, key) => key === "sqm-payout-status-alert"
|
|
3211
3212
|
? { ...prev, ...states[key] }
|
package/dist/collection/components/tax-and-cash/sqm-payout-status-alert/sqm-payout-status-alert.js
CHANGED
|
@@ -703,6 +703,7 @@ export class PayoutStatusAlert {
|
|
|
703
703
|
}; }
|
|
704
704
|
}
|
|
705
705
|
function useDemoPayoutStatusAlert(props) {
|
|
706
|
+
console.log(props.stateController, "stateController in sqm-payout-status-alert");
|
|
706
707
|
const states = parseStates(props.stateController);
|
|
707
708
|
const formatted = Object.keys(states).reduce((prev, key) => key === "sqm-payout-status-alert"
|
|
708
709
|
? { ...prev, ...states[key] }
|
|
@@ -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" } }, "uiGroup": "Dashboard Properties" }
|
|
344
|
+
* @componentState { "title": "Payouts on hold", "props": { "states": { "payoutStatus": "HOLD" } }, "dependencies": ["sqm-payout-status-alert"] "uiGroup": "Dashboard Properties" }
|
|
345
345
|
*/
|
|
346
346
|
this.stateController = "{}";
|
|
347
347
|
withHooks(this);
|
|
@@ -363,7 +363,6 @@ export class TaxAndCashDashboard {
|
|
|
363
363
|
const props = isDemo()
|
|
364
364
|
? useDemoTaxAndCashDashboard(this)
|
|
365
365
|
: useTaxAndCashDashboard(this);
|
|
366
|
-
console.log({ stateController: this.stateController });
|
|
367
366
|
return (h(Host, null,
|
|
368
367
|
h(TaxAndCashDashboardView, { callbacks: props.callbacks, states: props.states, text: props.text, slots: {
|
|
369
368
|
payoutDetailsCardSlot: (h("sqm-payout-details-card", Object.assign({}, this.getTextProps()))),
|
|
@@ -1890,7 +1889,7 @@ export class TaxAndCashDashboard {
|
|
|
1890
1889
|
"text": undefined,
|
|
1891
1890
|
"name": "undocumented"
|
|
1892
1891
|
}, {
|
|
1893
|
-
"text": "{ \"title\": \"Payouts on hold\", \"props\": { \"states\": { \"payoutStatus\": \"HOLD\" } }, \"uiGroup\": \"Dashboard Properties\" }",
|
|
1892
|
+
"text": "{ \"title\": \"Payouts on hold\", \"props\": { \"states\": { \"payoutStatus\": \"HOLD\" } }, \"dependencies\": [\"sqm-payout-status-alert\"] \"uiGroup\": \"Dashboard Properties\" }",
|
|
1894
1893
|
"name": "componentState"
|
|
1895
1894
|
}],
|
|
1896
1895
|
"text": ""
|
|
@@ -1902,51 +1901,47 @@ export class TaxAndCashDashboard {
|
|
|
1902
1901
|
}; }
|
|
1903
1902
|
}
|
|
1904
1903
|
function useDemoTaxAndCashDashboard(props) {
|
|
1905
|
-
const
|
|
1906
|
-
const formatted = Object.keys(
|
|
1907
|
-
? { ...prev, ...
|
|
1908
|
-
: { ...prev, [`${key}_stateController`]:
|
|
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
|
-
|
|
1947
|
-
|
|
1948
|
-
},
|
|
1949
|
-
} })),
|
|
1950
|
-
},
|
|
1951
|
-
}, formatted || props.demoData || {}, { arrayMerge: (_, a) => a });
|
|
1904
|
+
const parsed = parseStates(props.stateController);
|
|
1905
|
+
const formatted = Object.keys(parsed).reduce((prev, key) => key === "sqm-tax-and-cash-dashboard"
|
|
1906
|
+
? { ...prev, ...parsed[key] }
|
|
1907
|
+
: { ...prev, [`${key}_stateController`]: parsed[key] }, {});
|
|
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
|
+
},
|
|
1943
|
+
props.demoData || {},
|
|
1944
|
+
formatted,
|
|
1945
|
+
], { arrayMerge: (_, a) => a });
|
|
1946
|
+
return merged;
|
|
1952
1947
|
}
|
|
@@ -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" } }, "uiGroup": "Dashboard Properties" }
|
|
4665
|
+
* @componentState { "title": "Payouts on hold", "props": { "states": { "payoutStatus": "HOLD" } }, "dependencies": ["sqm-payout-status-alert"] "uiGroup": "Dashboard Properties" }
|
|
4666
4666
|
*/
|
|
4667
4667
|
this.stateController = "{}";
|
|
4668
4668
|
h$1(this);
|
|
@@ -4684,60 +4684,55 @@ const TaxAndCashDashboard = class {
|
|
|
4684
4684
|
const props = isDemo()
|
|
4685
4685
|
? useDemoTaxAndCashDashboard(this)
|
|
4686
4686
|
: useTaxAndCashDashboard(this);
|
|
4687
|
-
console.log({ stateController: this.stateController });
|
|
4688
4687
|
return (h(Host, null, h(TaxAndCashDashboardView, { callbacks: props.callbacks, states: props.states, text: props.text, slots: {
|
|
4689
4688
|
payoutDetailsCardSlot: (h("sqm-payout-details-card", Object.assign({}, this.getTextProps()))),
|
|
4690
4689
|
} })));
|
|
4691
4690
|
}
|
|
4692
4691
|
};
|
|
4693
4692
|
function useDemoTaxAndCashDashboard(props) {
|
|
4694
|
-
const
|
|
4695
|
-
const formatted = Object.keys(
|
|
4696
|
-
? { ...prev, ...
|
|
4697
|
-
: { ...prev, [`${key}_stateController`]:
|
|
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
|
-
|
|
4731
|
-
|
|
4732
|
-
text: props.getTextProps(),
|
|
4733
|
-
slots: {
|
|
4734
|
-
payoutDetailsCardSlot: (h("sqm-payout-details-card", { demoData: {
|
|
4735
|
-
states: {
|
|
4736
|
-
badgeStatus: "nextPayout",
|
|
4737
|
-
},
|
|
4738
|
-
} })),
|
|
4693
|
+
const parsed = parseStates(props.stateController);
|
|
4694
|
+
const formatted = Object.keys(parsed).reduce((prev, key) => key === "sqm-tax-and-cash-dashboard"
|
|
4695
|
+
? { ...prev, ...parsed[key] }
|
|
4696
|
+
: { ...prev, [`${key}_stateController`]: parsed[key] }, {});
|
|
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(),
|
|
4739
4731
|
},
|
|
4740
|
-
|
|
4732
|
+
props.demoData || {},
|
|
4733
|
+
formatted,
|
|
4734
|
+
], { arrayMerge: (_, a) => a });
|
|
4735
|
+
return merged;
|
|
4741
4736
|
}
|
|
4742
4737
|
|
|
4743
4738
|
const PHONE_EXTENSIONS = {
|
|
@@ -3202,6 +3202,7 @@ const PayoutStatusAlert = class {
|
|
|
3202
3202
|
}
|
|
3203
3203
|
};
|
|
3204
3204
|
function useDemoPayoutStatusAlert(props) {
|
|
3205
|
+
console.log(props.stateController, "stateController in sqm-payout-status-alert");
|
|
3205
3206
|
const states = parseStates(props.stateController);
|
|
3206
3207
|
const formatted = Object.keys(states).reduce((prev, key) => key === "sqm-payout-status-alert"
|
|
3207
3208
|
? { ...prev, ...states[key] }
|