@saasquatch/mint-components 2.0.0-5 → 2.0.0-7
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/loader.cjs.js +1 -1
- package/dist/cjs/mint-components.cjs.js +1 -1
- package/dist/cjs/sqm-banking-info-form_10.cjs.entry.js +0 -1
- package/dist/cjs/sqm-big-stat_46.cjs.entry.js +21 -36
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +4 -3
- package/dist/collection/components/sqm-reward-exchange-list/sqm-reward-exchange-list.js +1 -34
- package/dist/collection/components/tax-and-cash/TaxForm.stories.js +4 -3
- package/dist/collection/components/tax-and-cash/sqm-payout-status-alert/sqm-payout-status-alert.js +72 -2
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard.js +0 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/mint-components.js +1 -1
- package/dist/esm/sqm-banking-info-form_10.entry.js +0 -1
- package/dist/esm/sqm-big-stat_46.entry.js +21 -36
- package/dist/esm/sqm-stencilbook.entry.js +4 -3
- package/dist/esm-es5/loader.js +1 -1
- package/dist/esm-es5/mint-components.js +1 -1
- 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/esm-es5/sqm-stencilbook.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/{p-46b88149.entry.js → p-38b92bc5.entry.js} +12 -12
- package/dist/mint-components/{p-13e66b37.system.entry.js → p-3d713973.system.entry.js} +1 -1
- package/dist/mint-components/{p-3c09c632.system.entry.js → p-3ea29bac.system.entry.js} +1 -1
- package/dist/mint-components/p-967a9040.system.js +1 -1
- package/dist/mint-components/{p-a0730259.entry.js → p-ab79297a.entry.js} +1 -1
- package/dist/mint-components/{p-f5c49a83.entry.js → p-e110688b.entry.js} +1 -1
- package/dist/mint-components/{p-5853132a.system.entry.js → p-ec25aaa7.system.entry.js} +1 -1
- package/dist/types/components/tax-and-cash/sqm-payout-status-alert/sqm-payout-status-alert.d.ts +14 -0
- package/dist/types/components.d.ts +28 -0
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
package/dist/types/components/tax-and-cash/sqm-payout-status-alert/sqm-payout-status-alert.d.ts
CHANGED
|
@@ -103,6 +103,20 @@ export declare class PayoutStatusAlert {
|
|
|
103
103
|
* @uiName Error description
|
|
104
104
|
*/
|
|
105
105
|
errorDescription: string;
|
|
106
|
+
/**
|
|
107
|
+
* @undocumented
|
|
108
|
+
* @componentState { "title": "Information Required", "props": { "demoData": { "states": { "status": "INFORMATION_REQUIRED" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
109
|
+
* @componentState { "title": "Over W9 Threshold - Defer", "props": { "demoData": { "states": { "status": "OVER_W9_THRESHOLD", "enforceUsTaxComplianceOption": "CASH_ONLY_DEFER_W9" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
110
|
+
* @componentState { "title": "Over W9 Threshold - Hold", "props": { "demoData": { "states": { "status": "OVER_W9_THRESHOLD", "enforceUsTaxComplianceOption": "NONE" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
111
|
+
* @componentState { "title": "Verification Required", "props": { "demoData": { "states": { "status": "VERIFICATION:REQUIRED" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
112
|
+
* @componentState { "title": "Verification Internal", "props": { "demoData": { "states": { "status": "VERIFICATION:INTERNAL" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
113
|
+
* @componentState { "title": "Verification Review", "props": { "demoData": { "states": { "status": "VERIFICATION:REVIEW" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
114
|
+
* @componentState { "title": "Verification Failed", "props": { "demoData": { "states": { "status": "VERIFICATION:FAILED" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
115
|
+
* @componentState { "title": "Account Review", "props": { "demoData": { "states": { "status": "ACCOUNT_REVIEW" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
116
|
+
* @componentState { "title": "Hold", "props": { "demoData": { "states": { "status": "HOLD" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
117
|
+
* @componentState { "title": "Error State", "props": { "demoData": { "states": { "error": true } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
118
|
+
*/
|
|
119
|
+
stateController?: string;
|
|
106
120
|
/**
|
|
107
121
|
* @undocumented
|
|
108
122
|
* @uiType object
|
|
@@ -2284,6 +2284,20 @@ export namespace Components {
|
|
|
2284
2284
|
* @uiName Info required alert header
|
|
2285
2285
|
*/
|
|
2286
2286
|
"informationRequiredHeader": string;
|
|
2287
|
+
/**
|
|
2288
|
+
* @undocumented
|
|
2289
|
+
* @componentState { "title": "Information Required", "props": { "demoData": { "states": { "status": "INFORMATION_REQUIRED" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2290
|
+
* @componentState { "title": "Over W9 Threshold - Defer", "props": { "demoData": { "states": { "status": "OVER_W9_THRESHOLD", "enforceUsTaxComplianceOption": "CASH_ONLY_DEFER_W9" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2291
|
+
* @componentState { "title": "Over W9 Threshold - Hold", "props": { "demoData": { "states": { "status": "OVER_W9_THRESHOLD", "enforceUsTaxComplianceOption": "NONE" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2292
|
+
* @componentState { "title": "Verification Required", "props": { "demoData": { "states": { "status": "VERIFICATION:REQUIRED" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2293
|
+
* @componentState { "title": "Verification Internal", "props": { "demoData": { "states": { "status": "VERIFICATION:INTERNAL" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2294
|
+
* @componentState { "title": "Verification Review", "props": { "demoData": { "states": { "status": "VERIFICATION:REVIEW" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2295
|
+
* @componentState { "title": "Verification Failed", "props": { "demoData": { "states": { "status": "VERIFICATION:FAILED" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2296
|
+
* @componentState { "title": "Account Review", "props": { "demoData": { "states": { "status": "ACCOUNT_REVIEW" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2297
|
+
* @componentState { "title": "Hold", "props": { "demoData": { "states": { "status": "HOLD" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2298
|
+
* @componentState { "title": "Error State", "props": { "demoData": { "states": { "error": true } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
2299
|
+
*/
|
|
2300
|
+
"stateController"?: string;
|
|
2287
2301
|
/**
|
|
2288
2302
|
* @uiName Support link text
|
|
2289
2303
|
*/
|
|
@@ -9977,6 +9991,20 @@ declare namespace LocalJSX {
|
|
|
9977
9991
|
* @uiName Info required alert header
|
|
9978
9992
|
*/
|
|
9979
9993
|
"informationRequiredHeader"?: string;
|
|
9994
|
+
/**
|
|
9995
|
+
* @undocumented
|
|
9996
|
+
* @componentState { "title": "Information Required", "props": { "demoData": { "states": { "status": "INFORMATION_REQUIRED" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
9997
|
+
* @componentState { "title": "Over W9 Threshold - Defer", "props": { "demoData": { "states": { "status": "OVER_W9_THRESHOLD", "enforceUsTaxComplianceOption": "CASH_ONLY_DEFER_W9" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
9998
|
+
* @componentState { "title": "Over W9 Threshold - Hold", "props": { "demoData": { "states": { "status": "OVER_W9_THRESHOLD", "enforceUsTaxComplianceOption": "NONE" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
9999
|
+
* @componentState { "title": "Verification Required", "props": { "demoData": { "states": { "status": "VERIFICATION:REQUIRED" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
10000
|
+
* @componentState { "title": "Verification Internal", "props": { "demoData": { "states": { "status": "VERIFICATION:INTERNAL" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
10001
|
+
* @componentState { "title": "Verification Review", "props": { "demoData": { "states": { "status": "VERIFICATION:REVIEW" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
10002
|
+
* @componentState { "title": "Verification Failed", "props": { "demoData": { "states": { "status": "VERIFICATION:FAILED" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
10003
|
+
* @componentState { "title": "Account Review", "props": { "demoData": { "states": { "status": "ACCOUNT_REVIEW" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
10004
|
+
* @componentState { "title": "Hold", "props": { "demoData": { "states": { "status": "HOLD" } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
10005
|
+
* @componentState { "title": "Error State", "props": { "demoData": { "states": { "error": true } } }, "dependencies": ["sqm-payout-status-alert"] }
|
|
10006
|
+
*/
|
|
10007
|
+
"stateController"?: string;
|
|
9980
10008
|
/**
|
|
9981
10009
|
* @uiName Support link text
|
|
9982
10010
|
*/
|
package/docs/docs.docx
CHANGED
|
Binary file
|