@saasquatch/mint-components 2.1.5-0 → 2.1.5-2
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 +13 -20
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +133 -3
- package/dist/collection/components/tax-and-cash/TaxForm.stories.js +126 -2
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard-view.js +11 -18
- package/dist/collection/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard.js +6 -6
- 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 +13 -20
- package/dist/esm/sqm-stencilbook.entry.js +133 -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-stencilbook.entry.js +1 -1
- package/dist/mint-components/mint-components.esm.js +1 -1
- package/dist/mint-components/{p-bc8e0c52.system.entry.js → p-3b066cd0.system.entry.js} +1 -1
- package/dist/mint-components/{p-96f570fc.entry.js → p-83c42aa8.entry.js} +2 -2
- package/dist/mint-components/{p-bb2565d0.entry.js → p-886f2cf2.entry.js} +2 -2
- package/dist/mint-components/p-af123d2b.system.js +1 -1
- package/dist/mint-components/{p-be49a492.system.entry.js → p-b3561440.system.entry.js} +1 -1
- package/dist/types/components/tax-and-cash/TaxForm.stories.d.ts +7 -1
- package/dist/types/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard-view.d.ts +1 -1
- package/dist/types/components/tax-and-cash/sqm-tax-and-cash-dashboard/sqm-tax-and-cash-dashboard.d.ts +2 -2
- package/dist/types/components.d.ts +10 -10
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
- package/shoelace/assets/icons/twitter-x.svg +4 -0
|
@@ -64,7 +64,13 @@ export declare const TaxAndCashDashboardIdentityVerifcationFailedInternal: () =>
|
|
|
64
64
|
export declare const TaxAndCashDashboardW9ThresholdReached: () => any;
|
|
65
65
|
export declare const TaxAndCashDashboardNewTaxForm: () => any;
|
|
66
66
|
export declare const TaxAndCashDashboardPayoutsOnHold: () => any;
|
|
67
|
-
export declare const
|
|
67
|
+
export declare const TaxAndCashDashboardNoTaxFormRequiredAndBeneficiaryNameInvalid: () => any;
|
|
68
|
+
export declare const TaxAndCashDashboardNoTaxFormRequiredAndBeneficiaryNameInvalidUS: () => any;
|
|
69
|
+
export declare const TaxAndCashDashboardNoDocumentType: () => any;
|
|
70
|
+
export declare const TaxAndCashDashboardNoDocumentTypeNoFormNeeded: () => any;
|
|
71
|
+
export declare const TaxAndCashDashboardFallbackDocumentTypeW9: () => any;
|
|
72
|
+
export declare const TaxAndCashDashboardFallbackDocumentTypeW8BEN: () => any;
|
|
73
|
+
export declare const TaxAndCashDashboardDeferW9NoDocumentType: () => any;
|
|
68
74
|
export declare const TaxAndCashDashboardLoading: () => any;
|
|
69
75
|
export declare const TaxAndCashDashboardWithLoadingError: () => any;
|
|
70
76
|
export declare const TaxAndCashDashboardWithGeneralError: () => any;
|
|
@@ -66,6 +66,7 @@ export interface TaxAndCashDashboardProps {
|
|
|
66
66
|
indirectTaxDetails?: string;
|
|
67
67
|
taxDocumentSectionHeader?: string;
|
|
68
68
|
taxDocumentSectionSubHeader?: string;
|
|
69
|
+
taxDocumentSectionSubHeaderNoDocument?: string;
|
|
69
70
|
newFormButton?: string;
|
|
70
71
|
editPaymentInformationButton?: string;
|
|
71
72
|
invalidForm?: string;
|
|
@@ -116,7 +117,6 @@ export interface TaxAndCashDashboardProps {
|
|
|
116
117
|
termsAndConditions: string;
|
|
117
118
|
cancelButton: string;
|
|
118
119
|
supportLink: string;
|
|
119
|
-
taxDocumentNotRequiredAndSubmittedDescription: string;
|
|
120
120
|
error: {
|
|
121
121
|
generalTitle: string;
|
|
122
122
|
generalDescription: string;
|
|
@@ -99,9 +99,9 @@ export declare class TaxAndCashDashboard {
|
|
|
99
99
|
/**
|
|
100
100
|
* Displayed under the tax document section header.
|
|
101
101
|
*
|
|
102
|
-
* @uiName Tax
|
|
102
|
+
* @uiName Tax documents section description
|
|
103
103
|
*/
|
|
104
|
-
|
|
104
|
+
taxDocumentSectionSubHeaderNoDocument: string;
|
|
105
105
|
/**
|
|
106
106
|
*
|
|
107
107
|
* @uiName Indirect tax section header
|
|
@@ -6582,11 +6582,6 @@ export namespace Components {
|
|
|
6582
6582
|
* @uiWidget textArea
|
|
6583
6583
|
*/
|
|
6584
6584
|
"taxAlertNotActiveMessageW9"?: string;
|
|
6585
|
-
/**
|
|
6586
|
-
* Displayed under the tax document section header.
|
|
6587
|
-
* @uiName Tax document description when form is previously submitted but no longer required
|
|
6588
|
-
*/
|
|
6589
|
-
"taxDocumentNotRequiredAndSubmittedDescription": string;
|
|
6590
6585
|
/**
|
|
6591
6586
|
* @uiName Tax document section header
|
|
6592
6587
|
*/
|
|
@@ -6596,6 +6591,11 @@ export namespace Components {
|
|
|
6596
6591
|
* @uiName Tax documents section description
|
|
6597
6592
|
*/
|
|
6598
6593
|
"taxDocumentSectionSubHeader": string;
|
|
6594
|
+
/**
|
|
6595
|
+
* Displayed under the tax document section header.
|
|
6596
|
+
* @uiName Tax documents section description
|
|
6597
|
+
*/
|
|
6598
|
+
"taxDocumentSectionSubHeaderNoDocument": string;
|
|
6599
6599
|
/**
|
|
6600
6600
|
* @uiName Terms and Conditions text
|
|
6601
6601
|
*/
|
|
@@ -14443,11 +14443,6 @@ declare namespace LocalJSX {
|
|
|
14443
14443
|
* @uiWidget textArea
|
|
14444
14444
|
*/
|
|
14445
14445
|
"taxAlertNotActiveMessageW9"?: string;
|
|
14446
|
-
/**
|
|
14447
|
-
* Displayed under the tax document section header.
|
|
14448
|
-
* @uiName Tax document description when form is previously submitted but no longer required
|
|
14449
|
-
*/
|
|
14450
|
-
"taxDocumentNotRequiredAndSubmittedDescription"?: string;
|
|
14451
14446
|
/**
|
|
14452
14447
|
* @uiName Tax document section header
|
|
14453
14448
|
*/
|
|
@@ -14457,6 +14452,11 @@ declare namespace LocalJSX {
|
|
|
14457
14452
|
* @uiName Tax documents section description
|
|
14458
14453
|
*/
|
|
14459
14454
|
"taxDocumentSectionSubHeader"?: string;
|
|
14455
|
+
/**
|
|
14456
|
+
* Displayed under the tax document section header.
|
|
14457
|
+
* @uiName Tax documents section description
|
|
14458
|
+
*/
|
|
14459
|
+
"taxDocumentSectionSubHeaderNoDocument"?: string;
|
|
14460
14460
|
/**
|
|
14461
14461
|
* @uiName Terms and Conditions text
|
|
14462
14462
|
*/
|
package/docs/docs.docx
CHANGED
|
Binary file
|