@saasquatch/mint-components 2.1.7 → 2.1.8-1
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/{ShadowViewAddon-1d15cdf7.js → ShadowViewAddon-5ce32291.js} +89 -0
- 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 +377 -50
- package/dist/cjs/{sqm-big-stat_45.cjs.entry.js → sqm-big-stat_46.cjs.entry.js} +329 -1
- package/dist/cjs/sqm-stencilbook.cjs.entry.js +158 -1
- package/dist/collection/collection-manifest.json +1 -0
- package/dist/collection/components/sqm-partner-info-modal/PartnerInfoModal.stories.js +143 -0
- package/dist/collection/components/sqm-partner-info-modal/sqm-partner-info-modal-view.js +90 -0
- package/dist/collection/components/sqm-partner-info-modal/sqm-partner-info-modal.js +462 -0
- package/dist/collection/components/sqm-partner-info-modal/usePartnerInfoModal.js +180 -0
- package/dist/collection/components/sqm-stencilbook/sqm-stencilbook.js +2 -0
- package/dist/collection/components/tax-and-cash/sqm-banking-info-form/formDefinitions.js +75 -37
- package/dist/collection/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form.js +688 -13
- package/dist/collection/components/tax-and-cash/sqm-banking-info-form/useBankingInfoForm.js +95 -1
- package/dist/esm/{ShadowViewAddon-53b9090b.js → ShadowViewAddon-9d97b5d5.js} +89 -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 +377 -50
- package/dist/esm/{sqm-big-stat_45.entry.js → sqm-big-stat_46.entry.js} +333 -6
- package/dist/esm/sqm-stencilbook.entry.js +158 -1
- package/dist/esm-es5/{ShadowViewAddon-53b9090b.js → ShadowViewAddon-9d97b5d5.js} +1 -1
- 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 -0
- 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-0f036907.system.js +1 -0
- package/dist/mint-components/{p-0e6c90b1.entry.js → p-22e39d2c.entry.js} +90 -21
- package/dist/mint-components/p-499885aa.entry.js +9 -0
- package/dist/mint-components/p-a6621899.system.entry.js +1 -0
- package/dist/mint-components/{p-e980472a.js → p-adc4e263.js} +25 -25
- package/dist/mint-components/p-b0253f4c.entry.js +108 -0
- package/dist/mint-components/p-ca098be1.system.js +1 -1
- package/dist/mint-components/p-d93e19e9.system.entry.js +1 -0
- package/dist/mint-components/p-e45a9966.system.entry.js +1 -0
- package/dist/types/components/sqm-partner-info-modal/PartnerInfoModal.stories.d.ts +13 -0
- package/dist/types/components/sqm-partner-info-modal/sqm-partner-info-modal-view.d.ts +41 -0
- package/dist/types/components/sqm-partner-info-modal/sqm-partner-info-modal.d.ts +80 -0
- package/dist/types/components/sqm-partner-info-modal/usePartnerInfoModal.d.ts +16 -0
- package/dist/types/components/tax-and-cash/sqm-banking-info-form/formDefinitions.d.ts +2 -0
- package/dist/types/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form-view.d.ts +4 -0
- package/dist/types/components/tax-and-cash/sqm-banking-info-form/sqm-banking-info-form.d.ts +165 -0
- package/dist/types/components.d.ts +378 -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/esm-es5/sqm-big-stat_45.entry.js +0 -1
- package/dist/mint-components/p-54ea8b9b.system.entry.js +0 -1
- package/dist/mint-components/p-807ed3bf.system.js +0 -1
- package/dist/mint-components/p-cacb897d.system.entry.js +0 -1
- package/dist/mint-components/p-de7bb373.entry.js +0 -9
- package/dist/mint-components/p-e9258d20.system.entry.js +0 -1
- package/dist/mint-components/p-ff378015.entry.js +0 -106
|
@@ -34,6 +34,7 @@ import { NavigationMenuViewProps } from "./components/sqm-navigation-menu/sqm-na
|
|
|
34
34
|
import { NavigationSidebarViewProps } from "./components/sqm-navigation-sidebar/sqm-navigation-sidebar-view";
|
|
35
35
|
import { NavigationSidebarItemViewProps } from "./components/sqm-navigation-sidebar-item/sqm-navigation-sidebar-item-view";
|
|
36
36
|
import { UsePagination } from "./components/sqm-pagination/usePagination";
|
|
37
|
+
import { PartnerInfoModalViewProps } from "./components/sqm-partner-info-modal/sqm-partner-info-modal-view";
|
|
37
38
|
import { PasswordFieldViewDemoProps } from "./components/sqm-password-field/usePasswordField";
|
|
38
39
|
import { PayoutButtonScrollViewProps } from "./components/sqm-payout-button-scroll/sqm-payout-button-scroll-view";
|
|
39
40
|
import { PayoutStatusAlertViewProps } from "./components/tax-and-cash/sqm-payout-status-alert/sqm-payout-status-alert-view";
|
|
@@ -64,6 +65,12 @@ export namespace Components {
|
|
|
64
65
|
"renderLabel": (idx: any) => Promise<any>;
|
|
65
66
|
}
|
|
66
67
|
interface SqmBankingInfoForm {
|
|
68
|
+
/**
|
|
69
|
+
* Error messages for the agency code field. Supports error codes: empty, alphanumeric, tooShort
|
|
70
|
+
* @uiName Agency code error
|
|
71
|
+
* @uiWidget textArea
|
|
72
|
+
*/
|
|
73
|
+
"agencyCodeError": string;
|
|
67
74
|
/**
|
|
68
75
|
* @uiName Agency code field label
|
|
69
76
|
*/
|
|
@@ -73,18 +80,42 @@ export namespace Components {
|
|
|
73
80
|
* @uiName Back button label
|
|
74
81
|
*/
|
|
75
82
|
"backButton": string;
|
|
83
|
+
/**
|
|
84
|
+
* Error messages for the bank account number / IBAN field. Supports error codes: empty, invalidUk, invalid, ibanEmpty, ibanAlphanumeric, ibanInvalid, ibanCountryMismatch
|
|
85
|
+
* @uiName Bank account number / IBAN error
|
|
86
|
+
* @uiWidget textArea
|
|
87
|
+
*/
|
|
88
|
+
"bankAccountNumberError": string;
|
|
76
89
|
/**
|
|
77
90
|
* @uiName Bank account number field label
|
|
78
91
|
*/
|
|
79
92
|
"bankAccountNumberLabel": string;
|
|
93
|
+
/**
|
|
94
|
+
* Error messages for the bank account type field. Supports error codes: empty
|
|
95
|
+
* @uiName Bank account type error
|
|
96
|
+
* @uiWidget textArea
|
|
97
|
+
*/
|
|
98
|
+
"bankAccountTypeError": string;
|
|
80
99
|
/**
|
|
81
100
|
* @uiName Bank account type field label
|
|
82
101
|
*/
|
|
83
102
|
"bankAccountTypeLabel": string;
|
|
103
|
+
/**
|
|
104
|
+
* Error messages for the bank address field. Supports error codes: empty
|
|
105
|
+
* @uiName Bank address error
|
|
106
|
+
* @uiWidget textArea
|
|
107
|
+
*/
|
|
108
|
+
"bankAddressError": string;
|
|
84
109
|
/**
|
|
85
110
|
* @uiName Bank address field label
|
|
86
111
|
*/
|
|
87
112
|
"bankAddressLabel": string;
|
|
113
|
+
/**
|
|
114
|
+
* Error messages for the bank city field. Supports error codes: empty
|
|
115
|
+
* @uiName Bank city error
|
|
116
|
+
* @uiWidget textArea
|
|
117
|
+
*/
|
|
118
|
+
"bankCityError": string;
|
|
88
119
|
/**
|
|
89
120
|
* @uiName Bank city field label
|
|
90
121
|
*/
|
|
@@ -93,14 +124,32 @@ export namespace Components {
|
|
|
93
124
|
* @uiName Bank country field label
|
|
94
125
|
*/
|
|
95
126
|
"bankLocationLabel": string;
|
|
127
|
+
/**
|
|
128
|
+
* Error messages for the bank name field. Supports error codes: empty
|
|
129
|
+
* @uiName Bank name error
|
|
130
|
+
* @uiWidget textArea
|
|
131
|
+
*/
|
|
132
|
+
"bankNameError": string;
|
|
96
133
|
/**
|
|
97
134
|
* @uiName Bank name field label
|
|
98
135
|
*/
|
|
99
136
|
"bankNameLabel": string;
|
|
137
|
+
/**
|
|
138
|
+
* Error messages for the bank postal code field. Supports error codes: empty
|
|
139
|
+
* @uiName Bank postal code error
|
|
140
|
+
* @uiWidget textArea
|
|
141
|
+
*/
|
|
142
|
+
"bankPostalCodeError": string;
|
|
100
143
|
/**
|
|
101
144
|
* @uiName Bank postal code field label
|
|
102
145
|
*/
|
|
103
146
|
"bankPostalCodeLabel": string;
|
|
147
|
+
/**
|
|
148
|
+
* Error messages for the bank province/state field. Supports error codes: empty
|
|
149
|
+
* @uiName Bank province/state error
|
|
150
|
+
* @uiWidget textArea
|
|
151
|
+
*/
|
|
152
|
+
"bankStateError": string;
|
|
104
153
|
/**
|
|
105
154
|
* @uiName Bank province/state field label
|
|
106
155
|
*/
|
|
@@ -109,14 +158,32 @@ export namespace Components {
|
|
|
109
158
|
* @uiName Beneficiary account field description
|
|
110
159
|
*/
|
|
111
160
|
"beneficiaryAccountNameDescription": string;
|
|
161
|
+
/**
|
|
162
|
+
* Error messages for the beneficiary / account holder name field. Supports error codes: empty, invalidCharacters, numeric, tooLong, nonEnglish, businessNameMismatch, nameMismatch, businessPayeeMismatch, payeeMismatch
|
|
163
|
+
* @uiName Beneficiary account name error
|
|
164
|
+
* @uiWidget textArea
|
|
165
|
+
*/
|
|
166
|
+
"beneficiaryAccountNameError": string;
|
|
112
167
|
/**
|
|
113
168
|
* @uiName Beneficiary account field label
|
|
114
169
|
*/
|
|
115
170
|
"beneficiaryAccountNameLabel": string;
|
|
171
|
+
/**
|
|
172
|
+
* Error messages for the branch code field. Supports error codes: invalid
|
|
173
|
+
* @uiName Branch code error
|
|
174
|
+
* @uiWidget textArea
|
|
175
|
+
*/
|
|
176
|
+
"branchCodeError": string;
|
|
116
177
|
/**
|
|
117
178
|
* @uiName Branch code field label
|
|
118
179
|
*/
|
|
119
180
|
"branchCodeLabel": string;
|
|
181
|
+
/**
|
|
182
|
+
* Error messages for the branch name field. Supports error codes: empty
|
|
183
|
+
* @uiName Branch name error
|
|
184
|
+
* @uiWidget textArea
|
|
185
|
+
*/
|
|
186
|
+
"branchNameError": string;
|
|
120
187
|
/**
|
|
121
188
|
* One of three options listed for the classification field
|
|
122
189
|
* @uiName Business classification option
|
|
@@ -130,6 +197,12 @@ export namespace Components {
|
|
|
130
197
|
* @uiName Classification CPF field label
|
|
131
198
|
*/
|
|
132
199
|
"classificationCPFLabel": string;
|
|
200
|
+
/**
|
|
201
|
+
* Error messages for the classification code field. Supports error codes: empty, invalidKzt
|
|
202
|
+
* @uiName Classification code error
|
|
203
|
+
* @uiWidget textArea
|
|
204
|
+
*/
|
|
205
|
+
"classificationCodeError": string;
|
|
133
206
|
/**
|
|
134
207
|
* @uiName Classification entity field label
|
|
135
208
|
*/
|
|
@@ -237,6 +310,12 @@ export namespace Components {
|
|
|
237
310
|
* @uiName Information modal title
|
|
238
311
|
*/
|
|
239
312
|
"modalTitle": string;
|
|
313
|
+
/**
|
|
314
|
+
* Error messages for the patronymic name field. Supports error codes: empty, alphanumeric
|
|
315
|
+
* @uiName Patronymic name error
|
|
316
|
+
* @uiWidget textArea
|
|
317
|
+
*/
|
|
318
|
+
"patronymicNameError": string;
|
|
240
319
|
/**
|
|
241
320
|
* @uiName Patronymic name field label
|
|
242
321
|
*/
|
|
@@ -246,6 +325,12 @@ export namespace Components {
|
|
|
246
325
|
* @uiName PayPal email field label
|
|
247
326
|
*/
|
|
248
327
|
"payPalInputLabel": string;
|
|
328
|
+
/**
|
|
329
|
+
* Error messages for the payment day field. Supports error codes: empty, invalid
|
|
330
|
+
* @uiName Payment day error
|
|
331
|
+
* @uiWidget textArea
|
|
332
|
+
*/
|
|
333
|
+
"paymentDayError": string;
|
|
249
334
|
/**
|
|
250
335
|
* Label text for the payment day select option for the fifteenth of the month
|
|
251
336
|
* @uiName Fifteenth of month payday option
|
|
@@ -281,11 +366,29 @@ export namespace Components {
|
|
|
281
366
|
* @uiName Fixed day payment schedule option
|
|
282
367
|
*/
|
|
283
368
|
"paymentScheduleFixedDay": string;
|
|
369
|
+
/**
|
|
370
|
+
* Error messages for the payment threshold field. Supports error codes: empty, invalid
|
|
371
|
+
* @uiName Payment threshold error
|
|
372
|
+
* @uiWidget textArea
|
|
373
|
+
*/
|
|
374
|
+
"paymentThresholdError": string;
|
|
284
375
|
/**
|
|
285
376
|
* Participant use this field to select the balance at which they want to be paid
|
|
286
377
|
* @uiName Payment threshold field label
|
|
287
378
|
*/
|
|
288
379
|
"paymentThresholdSelectLabel": string;
|
|
380
|
+
/**
|
|
381
|
+
* Error messages for the PayPal email field. Supports error codes: empty, unsupportedCurrency, invalidEmail, verificationIncomplete
|
|
382
|
+
* @uiName PayPal email error
|
|
383
|
+
* @uiWidget textArea
|
|
384
|
+
*/
|
|
385
|
+
"paypalEmailError": string;
|
|
386
|
+
/**
|
|
387
|
+
* Error messages for the routing code / sort code / BSB field. Supports error codes: invalidBsb, invalidSortCode, empty, invalid
|
|
388
|
+
* @uiName Routing code error
|
|
389
|
+
* @uiWidget textArea
|
|
390
|
+
*/
|
|
391
|
+
"routingCodeError": string;
|
|
289
392
|
/**
|
|
290
393
|
* @uiName Routing code field label
|
|
291
394
|
*/
|
|
@@ -303,6 +406,12 @@ export namespace Components {
|
|
|
303
406
|
* @uiName Support link text
|
|
304
407
|
*/
|
|
305
408
|
"supportLink": string;
|
|
409
|
+
/**
|
|
410
|
+
* Error messages for the SWIFT / BIC code field. Supports error codes: empty, alphanumeric, invalid
|
|
411
|
+
* @uiName SWIFT code error
|
|
412
|
+
* @uiWidget textArea
|
|
413
|
+
*/
|
|
414
|
+
"swiftCodeError": string;
|
|
306
415
|
/**
|
|
307
416
|
* @uiName SWIFT code field label
|
|
308
417
|
*/
|
|
@@ -316,6 +425,12 @@ export namespace Components {
|
|
|
316
425
|
* @uiName Page description
|
|
317
426
|
*/
|
|
318
427
|
"taxAndPayoutsDescription": string;
|
|
428
|
+
/**
|
|
429
|
+
* Error messages for the tax payer ID / classification entity field. Supports error codes: empty, emptyAr, emptyKr, alphanumeric, alphanumericAr, alphanumericKr, invalid, invalidAr, invalidKr, invalidKzt, cnpjTooShort, cpfTooShort
|
|
430
|
+
* @uiName Tax payer ID error
|
|
431
|
+
* @uiWidget textArea
|
|
432
|
+
*/
|
|
433
|
+
"taxPayerIdError": string;
|
|
319
434
|
/**
|
|
320
435
|
* @uiName Taxpayer ID field label
|
|
321
436
|
*/
|
|
@@ -333,6 +448,12 @@ export namespace Components {
|
|
|
333
448
|
* @uiName Verify email header
|
|
334
449
|
*/
|
|
335
450
|
"verifyEmailHeaderText": string;
|
|
451
|
+
/**
|
|
452
|
+
* Error messages for the VO code field. Supports error codes: empty, alphanumeric
|
|
453
|
+
* @uiName VO code error
|
|
454
|
+
* @uiWidget textArea
|
|
455
|
+
*/
|
|
456
|
+
"voCodeError": string;
|
|
336
457
|
/**
|
|
337
458
|
* @uiName VO code field label
|
|
338
459
|
*/
|
|
@@ -2190,6 +2311,70 @@ export namespace Components {
|
|
|
2190
2311
|
*/
|
|
2191
2312
|
"paginationText": string;
|
|
2192
2313
|
}
|
|
2314
|
+
interface SqmPartnerInfoModal {
|
|
2315
|
+
/**
|
|
2316
|
+
* Brand name shown in the modal header
|
|
2317
|
+
* @uiName Brand name
|
|
2318
|
+
*/
|
|
2319
|
+
"brandName": string;
|
|
2320
|
+
/**
|
|
2321
|
+
* @uiName Confirm button label
|
|
2322
|
+
*/
|
|
2323
|
+
"confirmButtonLabel": string;
|
|
2324
|
+
/**
|
|
2325
|
+
* @uiName Country label
|
|
2326
|
+
*/
|
|
2327
|
+
"countryLabel": string;
|
|
2328
|
+
/**
|
|
2329
|
+
* @uiName Currency label
|
|
2330
|
+
*/
|
|
2331
|
+
"currencyLabel": string;
|
|
2332
|
+
/**
|
|
2333
|
+
* @undocumented
|
|
2334
|
+
* @uiType object
|
|
2335
|
+
*/
|
|
2336
|
+
"demoData"?: DemoData<PartnerInfoModalViewProps>;
|
|
2337
|
+
/**
|
|
2338
|
+
* Description for existing partner confirmation
|
|
2339
|
+
* @uiName Existing partner description
|
|
2340
|
+
* @uiWidget textArea
|
|
2341
|
+
*/
|
|
2342
|
+
"descriptionExistingPartner": string;
|
|
2343
|
+
/**
|
|
2344
|
+
* Description for new partner setup
|
|
2345
|
+
* @uiName New partner description
|
|
2346
|
+
* @uiWidget textArea
|
|
2347
|
+
*/
|
|
2348
|
+
"descriptionNewPartner": string;
|
|
2349
|
+
/**
|
|
2350
|
+
* @uiName Missing fields error text
|
|
2351
|
+
* @uiWidget textArea
|
|
2352
|
+
*/
|
|
2353
|
+
"missingFieldsErrorText": string;
|
|
2354
|
+
/**
|
|
2355
|
+
* Header text when user has no existing partner
|
|
2356
|
+
* @uiName New partner header
|
|
2357
|
+
* @uiWidget textArea
|
|
2358
|
+
*/
|
|
2359
|
+
"modalBrandHeader": string;
|
|
2360
|
+
/**
|
|
2361
|
+
* @uiName Network error text
|
|
2362
|
+
* @uiWidget textArea
|
|
2363
|
+
*/
|
|
2364
|
+
"networkErrorText": string;
|
|
2365
|
+
/**
|
|
2366
|
+
* @uiName Search country placeholder
|
|
2367
|
+
*/
|
|
2368
|
+
"searchCountryPlaceholder": string;
|
|
2369
|
+
/**
|
|
2370
|
+
* @uiName Search currency placeholder
|
|
2371
|
+
*/
|
|
2372
|
+
"searchCurrencyPlaceholder": string;
|
|
2373
|
+
/**
|
|
2374
|
+
* @uiName Submit button label
|
|
2375
|
+
*/
|
|
2376
|
+
"submitButtonLabel": string;
|
|
2377
|
+
}
|
|
2193
2378
|
interface SqmPasswordField {
|
|
2194
2379
|
/**
|
|
2195
2380
|
* @undocumented
|
|
@@ -7377,6 +7562,12 @@ declare global {
|
|
|
7377
7562
|
prototype: HTMLSqmPaginationElement;
|
|
7378
7563
|
new (): HTMLSqmPaginationElement;
|
|
7379
7564
|
};
|
|
7565
|
+
interface HTMLSqmPartnerInfoModalElement extends Components.SqmPartnerInfoModal, HTMLStencilElement {
|
|
7566
|
+
}
|
|
7567
|
+
var HTMLSqmPartnerInfoModalElement: {
|
|
7568
|
+
prototype: HTMLSqmPartnerInfoModalElement;
|
|
7569
|
+
new (): HTMLSqmPartnerInfoModalElement;
|
|
7570
|
+
};
|
|
7380
7571
|
interface HTMLSqmPasswordFieldElement extends Components.SqmPasswordField, HTMLStencilElement {
|
|
7381
7572
|
}
|
|
7382
7573
|
var HTMLSqmPasswordFieldElement: {
|
|
@@ -7901,6 +8092,7 @@ declare global {
|
|
|
7901
8092
|
"sqm-navigation-sidebar": HTMLSqmNavigationSidebarElement;
|
|
7902
8093
|
"sqm-navigation-sidebar-item": HTMLSqmNavigationSidebarItemElement;
|
|
7903
8094
|
"sqm-pagination": HTMLSqmPaginationElement;
|
|
8095
|
+
"sqm-partner-info-modal": HTMLSqmPartnerInfoModalElement;
|
|
7904
8096
|
"sqm-password-field": HTMLSqmPasswordFieldElement;
|
|
7905
8097
|
"sqm-payout-button-scroll": HTMLSqmPayoutButtonScrollElement;
|
|
7906
8098
|
"sqm-payout-details-card": HTMLSqmPayoutDetailsCardElement;
|
|
@@ -7986,6 +8178,12 @@ declare namespace LocalJSX {
|
|
|
7986
8178
|
interface RaisinsPlopTarget {
|
|
7987
8179
|
}
|
|
7988
8180
|
interface SqmBankingInfoForm {
|
|
8181
|
+
/**
|
|
8182
|
+
* Error messages for the agency code field. Supports error codes: empty, alphanumeric, tooShort
|
|
8183
|
+
* @uiName Agency code error
|
|
8184
|
+
* @uiWidget textArea
|
|
8185
|
+
*/
|
|
8186
|
+
"agencyCodeError"?: string;
|
|
7989
8187
|
/**
|
|
7990
8188
|
* @uiName Agency code field label
|
|
7991
8189
|
*/
|
|
@@ -7995,18 +8193,42 @@ declare namespace LocalJSX {
|
|
|
7995
8193
|
* @uiName Back button label
|
|
7996
8194
|
*/
|
|
7997
8195
|
"backButton"?: string;
|
|
8196
|
+
/**
|
|
8197
|
+
* Error messages for the bank account number / IBAN field. Supports error codes: empty, invalidUk, invalid, ibanEmpty, ibanAlphanumeric, ibanInvalid, ibanCountryMismatch
|
|
8198
|
+
* @uiName Bank account number / IBAN error
|
|
8199
|
+
* @uiWidget textArea
|
|
8200
|
+
*/
|
|
8201
|
+
"bankAccountNumberError"?: string;
|
|
7998
8202
|
/**
|
|
7999
8203
|
* @uiName Bank account number field label
|
|
8000
8204
|
*/
|
|
8001
8205
|
"bankAccountNumberLabel"?: string;
|
|
8206
|
+
/**
|
|
8207
|
+
* Error messages for the bank account type field. Supports error codes: empty
|
|
8208
|
+
* @uiName Bank account type error
|
|
8209
|
+
* @uiWidget textArea
|
|
8210
|
+
*/
|
|
8211
|
+
"bankAccountTypeError"?: string;
|
|
8002
8212
|
/**
|
|
8003
8213
|
* @uiName Bank account type field label
|
|
8004
8214
|
*/
|
|
8005
8215
|
"bankAccountTypeLabel"?: string;
|
|
8216
|
+
/**
|
|
8217
|
+
* Error messages for the bank address field. Supports error codes: empty
|
|
8218
|
+
* @uiName Bank address error
|
|
8219
|
+
* @uiWidget textArea
|
|
8220
|
+
*/
|
|
8221
|
+
"bankAddressError"?: string;
|
|
8006
8222
|
/**
|
|
8007
8223
|
* @uiName Bank address field label
|
|
8008
8224
|
*/
|
|
8009
8225
|
"bankAddressLabel"?: string;
|
|
8226
|
+
/**
|
|
8227
|
+
* Error messages for the bank city field. Supports error codes: empty
|
|
8228
|
+
* @uiName Bank city error
|
|
8229
|
+
* @uiWidget textArea
|
|
8230
|
+
*/
|
|
8231
|
+
"bankCityError"?: string;
|
|
8010
8232
|
/**
|
|
8011
8233
|
* @uiName Bank city field label
|
|
8012
8234
|
*/
|
|
@@ -8015,14 +8237,32 @@ declare namespace LocalJSX {
|
|
|
8015
8237
|
* @uiName Bank country field label
|
|
8016
8238
|
*/
|
|
8017
8239
|
"bankLocationLabel"?: string;
|
|
8240
|
+
/**
|
|
8241
|
+
* Error messages for the bank name field. Supports error codes: empty
|
|
8242
|
+
* @uiName Bank name error
|
|
8243
|
+
* @uiWidget textArea
|
|
8244
|
+
*/
|
|
8245
|
+
"bankNameError"?: string;
|
|
8018
8246
|
/**
|
|
8019
8247
|
* @uiName Bank name field label
|
|
8020
8248
|
*/
|
|
8021
8249
|
"bankNameLabel"?: string;
|
|
8250
|
+
/**
|
|
8251
|
+
* Error messages for the bank postal code field. Supports error codes: empty
|
|
8252
|
+
* @uiName Bank postal code error
|
|
8253
|
+
* @uiWidget textArea
|
|
8254
|
+
*/
|
|
8255
|
+
"bankPostalCodeError"?: string;
|
|
8022
8256
|
/**
|
|
8023
8257
|
* @uiName Bank postal code field label
|
|
8024
8258
|
*/
|
|
8025
8259
|
"bankPostalCodeLabel"?: string;
|
|
8260
|
+
/**
|
|
8261
|
+
* Error messages for the bank province/state field. Supports error codes: empty
|
|
8262
|
+
* @uiName Bank province/state error
|
|
8263
|
+
* @uiWidget textArea
|
|
8264
|
+
*/
|
|
8265
|
+
"bankStateError"?: string;
|
|
8026
8266
|
/**
|
|
8027
8267
|
* @uiName Bank province/state field label
|
|
8028
8268
|
*/
|
|
@@ -8031,14 +8271,32 @@ declare namespace LocalJSX {
|
|
|
8031
8271
|
* @uiName Beneficiary account field description
|
|
8032
8272
|
*/
|
|
8033
8273
|
"beneficiaryAccountNameDescription"?: string;
|
|
8274
|
+
/**
|
|
8275
|
+
* Error messages for the beneficiary / account holder name field. Supports error codes: empty, invalidCharacters, numeric, tooLong, nonEnglish, businessNameMismatch, nameMismatch, businessPayeeMismatch, payeeMismatch
|
|
8276
|
+
* @uiName Beneficiary account name error
|
|
8277
|
+
* @uiWidget textArea
|
|
8278
|
+
*/
|
|
8279
|
+
"beneficiaryAccountNameError"?: string;
|
|
8034
8280
|
/**
|
|
8035
8281
|
* @uiName Beneficiary account field label
|
|
8036
8282
|
*/
|
|
8037
8283
|
"beneficiaryAccountNameLabel"?: string;
|
|
8284
|
+
/**
|
|
8285
|
+
* Error messages for the branch code field. Supports error codes: invalid
|
|
8286
|
+
* @uiName Branch code error
|
|
8287
|
+
* @uiWidget textArea
|
|
8288
|
+
*/
|
|
8289
|
+
"branchCodeError"?: string;
|
|
8038
8290
|
/**
|
|
8039
8291
|
* @uiName Branch code field label
|
|
8040
8292
|
*/
|
|
8041
8293
|
"branchCodeLabel"?: string;
|
|
8294
|
+
/**
|
|
8295
|
+
* Error messages for the branch name field. Supports error codes: empty
|
|
8296
|
+
* @uiName Branch name error
|
|
8297
|
+
* @uiWidget textArea
|
|
8298
|
+
*/
|
|
8299
|
+
"branchNameError"?: string;
|
|
8042
8300
|
/**
|
|
8043
8301
|
* One of three options listed for the classification field
|
|
8044
8302
|
* @uiName Business classification option
|
|
@@ -8052,6 +8310,12 @@ declare namespace LocalJSX {
|
|
|
8052
8310
|
* @uiName Classification CPF field label
|
|
8053
8311
|
*/
|
|
8054
8312
|
"classificationCPFLabel"?: string;
|
|
8313
|
+
/**
|
|
8314
|
+
* Error messages for the classification code field. Supports error codes: empty, invalidKzt
|
|
8315
|
+
* @uiName Classification code error
|
|
8316
|
+
* @uiWidget textArea
|
|
8317
|
+
*/
|
|
8318
|
+
"classificationCodeError"?: string;
|
|
8055
8319
|
/**
|
|
8056
8320
|
* @uiName Classification entity field label
|
|
8057
8321
|
*/
|
|
@@ -8159,6 +8423,12 @@ declare namespace LocalJSX {
|
|
|
8159
8423
|
* @uiName Information modal title
|
|
8160
8424
|
*/
|
|
8161
8425
|
"modalTitle"?: string;
|
|
8426
|
+
/**
|
|
8427
|
+
* Error messages for the patronymic name field. Supports error codes: empty, alphanumeric
|
|
8428
|
+
* @uiName Patronymic name error
|
|
8429
|
+
* @uiWidget textArea
|
|
8430
|
+
*/
|
|
8431
|
+
"patronymicNameError"?: string;
|
|
8162
8432
|
/**
|
|
8163
8433
|
* @uiName Patronymic name field label
|
|
8164
8434
|
*/
|
|
@@ -8168,6 +8438,12 @@ declare namespace LocalJSX {
|
|
|
8168
8438
|
* @uiName PayPal email field label
|
|
8169
8439
|
*/
|
|
8170
8440
|
"payPalInputLabel"?: string;
|
|
8441
|
+
/**
|
|
8442
|
+
* Error messages for the payment day field. Supports error codes: empty, invalid
|
|
8443
|
+
* @uiName Payment day error
|
|
8444
|
+
* @uiWidget textArea
|
|
8445
|
+
*/
|
|
8446
|
+
"paymentDayError"?: string;
|
|
8171
8447
|
/**
|
|
8172
8448
|
* Label text for the payment day select option for the fifteenth of the month
|
|
8173
8449
|
* @uiName Fifteenth of month payday option
|
|
@@ -8203,11 +8479,29 @@ declare namespace LocalJSX {
|
|
|
8203
8479
|
* @uiName Fixed day payment schedule option
|
|
8204
8480
|
*/
|
|
8205
8481
|
"paymentScheduleFixedDay"?: string;
|
|
8482
|
+
/**
|
|
8483
|
+
* Error messages for the payment threshold field. Supports error codes: empty, invalid
|
|
8484
|
+
* @uiName Payment threshold error
|
|
8485
|
+
* @uiWidget textArea
|
|
8486
|
+
*/
|
|
8487
|
+
"paymentThresholdError"?: string;
|
|
8206
8488
|
/**
|
|
8207
8489
|
* Participant use this field to select the balance at which they want to be paid
|
|
8208
8490
|
* @uiName Payment threshold field label
|
|
8209
8491
|
*/
|
|
8210
8492
|
"paymentThresholdSelectLabel"?: string;
|
|
8493
|
+
/**
|
|
8494
|
+
* Error messages for the PayPal email field. Supports error codes: empty, unsupportedCurrency, invalidEmail, verificationIncomplete
|
|
8495
|
+
* @uiName PayPal email error
|
|
8496
|
+
* @uiWidget textArea
|
|
8497
|
+
*/
|
|
8498
|
+
"paypalEmailError"?: string;
|
|
8499
|
+
/**
|
|
8500
|
+
* Error messages for the routing code / sort code / BSB field. Supports error codes: invalidBsb, invalidSortCode, empty, invalid
|
|
8501
|
+
* @uiName Routing code error
|
|
8502
|
+
* @uiWidget textArea
|
|
8503
|
+
*/
|
|
8504
|
+
"routingCodeError"?: string;
|
|
8211
8505
|
/**
|
|
8212
8506
|
* @uiName Routing code field label
|
|
8213
8507
|
*/
|
|
@@ -8225,6 +8519,12 @@ declare namespace LocalJSX {
|
|
|
8225
8519
|
* @uiName Support link text
|
|
8226
8520
|
*/
|
|
8227
8521
|
"supportLink"?: string;
|
|
8522
|
+
/**
|
|
8523
|
+
* Error messages for the SWIFT / BIC code field. Supports error codes: empty, alphanumeric, invalid
|
|
8524
|
+
* @uiName SWIFT code error
|
|
8525
|
+
* @uiWidget textArea
|
|
8526
|
+
*/
|
|
8527
|
+
"swiftCodeError"?: string;
|
|
8228
8528
|
/**
|
|
8229
8529
|
* @uiName SWIFT code field label
|
|
8230
8530
|
*/
|
|
@@ -8238,6 +8538,12 @@ declare namespace LocalJSX {
|
|
|
8238
8538
|
* @uiName Page description
|
|
8239
8539
|
*/
|
|
8240
8540
|
"taxAndPayoutsDescription"?: string;
|
|
8541
|
+
/**
|
|
8542
|
+
* Error messages for the tax payer ID / classification entity field. Supports error codes: empty, emptyAr, emptyKr, alphanumeric, alphanumericAr, alphanumericKr, invalid, invalidAr, invalidKr, invalidKzt, cnpjTooShort, cpfTooShort
|
|
8543
|
+
* @uiName Tax payer ID error
|
|
8544
|
+
* @uiWidget textArea
|
|
8545
|
+
*/
|
|
8546
|
+
"taxPayerIdError"?: string;
|
|
8241
8547
|
/**
|
|
8242
8548
|
* @uiName Taxpayer ID field label
|
|
8243
8549
|
*/
|
|
@@ -8255,6 +8561,12 @@ declare namespace LocalJSX {
|
|
|
8255
8561
|
* @uiName Verify email header
|
|
8256
8562
|
*/
|
|
8257
8563
|
"verifyEmailHeaderText"?: string;
|
|
8564
|
+
/**
|
|
8565
|
+
* Error messages for the VO code field. Supports error codes: empty, alphanumeric
|
|
8566
|
+
* @uiName VO code error
|
|
8567
|
+
* @uiWidget textArea
|
|
8568
|
+
*/
|
|
8569
|
+
"voCodeError"?: string;
|
|
8258
8570
|
/**
|
|
8259
8571
|
* @uiName VO code field label
|
|
8260
8572
|
*/
|
|
@@ -10107,6 +10419,70 @@ declare namespace LocalJSX {
|
|
|
10107
10419
|
*/
|
|
10108
10420
|
"paginationText"?: string;
|
|
10109
10421
|
}
|
|
10422
|
+
interface SqmPartnerInfoModal {
|
|
10423
|
+
/**
|
|
10424
|
+
* Brand name shown in the modal header
|
|
10425
|
+
* @uiName Brand name
|
|
10426
|
+
*/
|
|
10427
|
+
"brandName"?: string;
|
|
10428
|
+
/**
|
|
10429
|
+
* @uiName Confirm button label
|
|
10430
|
+
*/
|
|
10431
|
+
"confirmButtonLabel"?: string;
|
|
10432
|
+
/**
|
|
10433
|
+
* @uiName Country label
|
|
10434
|
+
*/
|
|
10435
|
+
"countryLabel"?: string;
|
|
10436
|
+
/**
|
|
10437
|
+
* @uiName Currency label
|
|
10438
|
+
*/
|
|
10439
|
+
"currencyLabel"?: string;
|
|
10440
|
+
/**
|
|
10441
|
+
* @undocumented
|
|
10442
|
+
* @uiType object
|
|
10443
|
+
*/
|
|
10444
|
+
"demoData"?: DemoData<PartnerInfoModalViewProps>;
|
|
10445
|
+
/**
|
|
10446
|
+
* Description for existing partner confirmation
|
|
10447
|
+
* @uiName Existing partner description
|
|
10448
|
+
* @uiWidget textArea
|
|
10449
|
+
*/
|
|
10450
|
+
"descriptionExistingPartner"?: string;
|
|
10451
|
+
/**
|
|
10452
|
+
* Description for new partner setup
|
|
10453
|
+
* @uiName New partner description
|
|
10454
|
+
* @uiWidget textArea
|
|
10455
|
+
*/
|
|
10456
|
+
"descriptionNewPartner"?: string;
|
|
10457
|
+
/**
|
|
10458
|
+
* @uiName Missing fields error text
|
|
10459
|
+
* @uiWidget textArea
|
|
10460
|
+
*/
|
|
10461
|
+
"missingFieldsErrorText"?: string;
|
|
10462
|
+
/**
|
|
10463
|
+
* Header text when user has no existing partner
|
|
10464
|
+
* @uiName New partner header
|
|
10465
|
+
* @uiWidget textArea
|
|
10466
|
+
*/
|
|
10467
|
+
"modalBrandHeader"?: string;
|
|
10468
|
+
/**
|
|
10469
|
+
* @uiName Network error text
|
|
10470
|
+
* @uiWidget textArea
|
|
10471
|
+
*/
|
|
10472
|
+
"networkErrorText"?: string;
|
|
10473
|
+
/**
|
|
10474
|
+
* @uiName Search country placeholder
|
|
10475
|
+
*/
|
|
10476
|
+
"searchCountryPlaceholder"?: string;
|
|
10477
|
+
/**
|
|
10478
|
+
* @uiName Search currency placeholder
|
|
10479
|
+
*/
|
|
10480
|
+
"searchCurrencyPlaceholder"?: string;
|
|
10481
|
+
/**
|
|
10482
|
+
* @uiName Submit button label
|
|
10483
|
+
*/
|
|
10484
|
+
"submitButtonLabel"?: string;
|
|
10485
|
+
}
|
|
10110
10486
|
interface SqmPasswordField {
|
|
10111
10487
|
/**
|
|
10112
10488
|
* @undocumented
|
|
@@ -15023,6 +15399,7 @@ declare namespace LocalJSX {
|
|
|
15023
15399
|
"sqm-navigation-sidebar": SqmNavigationSidebar;
|
|
15024
15400
|
"sqm-navigation-sidebar-item": SqmNavigationSidebarItem;
|
|
15025
15401
|
"sqm-pagination": SqmPagination;
|
|
15402
|
+
"sqm-partner-info-modal": SqmPartnerInfoModal;
|
|
15026
15403
|
"sqm-password-field": SqmPasswordField;
|
|
15027
15404
|
"sqm-payout-button-scroll": SqmPayoutButtonScroll;
|
|
15028
15405
|
"sqm-payout-details-card": SqmPayoutDetailsCard;
|
|
@@ -15157,6 +15534,7 @@ declare module "@stencil/core" {
|
|
|
15157
15534
|
"sqm-navigation-sidebar": LocalJSX.SqmNavigationSidebar & JSXBase.HTMLAttributes<HTMLSqmNavigationSidebarElement>;
|
|
15158
15535
|
"sqm-navigation-sidebar-item": LocalJSX.SqmNavigationSidebarItem & JSXBase.HTMLAttributes<HTMLSqmNavigationSidebarItemElement>;
|
|
15159
15536
|
"sqm-pagination": LocalJSX.SqmPagination & JSXBase.HTMLAttributes<HTMLSqmPaginationElement>;
|
|
15537
|
+
"sqm-partner-info-modal": LocalJSX.SqmPartnerInfoModal & JSXBase.HTMLAttributes<HTMLSqmPartnerInfoModalElement>;
|
|
15160
15538
|
"sqm-password-field": LocalJSX.SqmPasswordField & JSXBase.HTMLAttributes<HTMLSqmPasswordFieldElement>;
|
|
15161
15539
|
"sqm-payout-button-scroll": LocalJSX.SqmPayoutButtonScroll & JSXBase.HTMLAttributes<HTMLSqmPayoutButtonScrollElement>;
|
|
15162
15540
|
"sqm-payout-details-card": LocalJSX.SqmPayoutDetailsCard & JSXBase.HTMLAttributes<HTMLSqmPayoutDetailsCardElement>;
|
package/docs/docs.docx
CHANGED
|
Binary file
|