@secondstaxorg/sscomp 1.8.97 → 1.8.99
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/index.es.js +297 -300
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +351 -367
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +294 -296
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/AppActionsTable/type.d.ts +6 -0
- package/types/components/AppFormsTable/type.d.ts +6 -0
- package/types/components/AppModulesTable/type.d.ts +5 -0
- package/types/components/BankAccounts/type.d.ts +8 -0
- package/types/components/BidsCards/type.d.ts +3 -0
- package/types/components/BrokersTable/type.d.ts +7 -0
- package/types/components/CookieConsent/type.d.ts +6 -0
- package/types/components/CountrySelector/type.d.ts +3 -0
- package/types/components/CurrencyPairs/type.d.ts +7 -0
- package/types/components/DatePicker/type.d.ts +6 -0
- package/types/components/DateRangePicker/type.d.ts +8 -0
- package/types/components/DocumentViewer/type.d.ts +5 -0
- package/types/components/DropdownList/type.d.ts +4 -0
- package/types/components/ExchangeRates/type.d.ts +4 -0
- package/types/components/FileUpload/type.d.ts +7 -0
- package/types/components/Indices/type.d.ts +4 -0
- package/types/components/LPRequestTable/type.d.ts +18 -0
- package/types/components/MarketData/type.d.ts +3 -0
- package/types/components/MarketMovers/type.d.ts +5 -0
- package/types/components/NewsFilterBar/type.d.ts +6 -0
- package/types/components/NumberField/type.d.ts +4 -0
- package/types/components/OffersCard/style.d.ts +1 -0
- package/types/components/OffersCard/type.d.ts +10 -0
- package/types/components/Pagination/type.d.ts +4 -0
- package/types/components/PasswordField/type.d.ts +3 -0
- package/types/components/PaymentMethodsTable/type.d.ts +7 -0
- package/types/components/PhoneInput/type.d.ts +5 -0
- package/types/components/ProvidersTable/type.d.ts +7 -0
- package/types/components/RateHistory/type.d.ts +4 -0
- package/types/components/ReportsTable/type.d.ts +10 -0
- package/types/components/RequestForm/type.d.ts +9 -0
- package/types/components/SearchResultsBar/type.d.ts +4 -0
- package/types/components/Selector/types.d.ts +4 -0
- package/types/components/SideModal/type.d.ts +3 -0
- package/types/components/SignatureField/type.d.ts +10 -0
- package/types/components/SystemConfigTable/type.d.ts +7 -0
- package/types/components/TextArea/type.d.ts +3 -0
- package/types/components/TextField/type.d.ts +3 -0
- package/types/components/TransactionDetails/type.d.ts +8 -0
- package/types/components/TransactionDetailsWithPayment/type.d.ts +11 -0
- package/types/components/UpdateUserActions/type.d.ts +4 -0
- package/types/components/UserActions/type.d.ts +4 -0
- package/types/components/UserRolesTable/type.d.ts +6 -0
- package/types/components/UsersTable/type.d.ts +8 -0
package/package.json
CHANGED
|
@@ -20,4 +20,12 @@ export interface BankAcctsProps {
|
|
|
20
20
|
* A boolean to disable the action buttons for each bank account when an action such as getting the details of one of them is still in progress.
|
|
21
21
|
*/
|
|
22
22
|
loading: boolean;
|
|
23
|
+
labelOverrides?: {
|
|
24
|
+
acctName?: string;
|
|
25
|
+
currency?: string;
|
|
26
|
+
swiftCode?: string;
|
|
27
|
+
edit?: string;
|
|
28
|
+
deactivate?: string;
|
|
29
|
+
reactivate?: string;
|
|
30
|
+
};
|
|
23
31
|
}
|
|
@@ -43,6 +43,9 @@ export interface SelectorProps {
|
|
|
43
43
|
* Array containing list of items to be bubbled up to the top above all others
|
|
44
44
|
*/
|
|
45
45
|
priorityOptions?: string[];
|
|
46
|
+
labelOverrides?: {
|
|
47
|
+
search?: string;
|
|
48
|
+
};
|
|
46
49
|
}
|
|
47
50
|
export declare type optionType = {
|
|
48
51
|
optionName: string;
|
|
@@ -35,4 +35,12 @@ export interface DateRangePickerProps {
|
|
|
35
35
|
* Specify to disable past dates
|
|
36
36
|
*/
|
|
37
37
|
disablePastDays?: boolean;
|
|
38
|
+
labelOverrides?: {
|
|
39
|
+
reset?: string;
|
|
40
|
+
apply?: string;
|
|
41
|
+
cancel?: string;
|
|
42
|
+
daysOfWeek?: string[];
|
|
43
|
+
monthsOfYear?: string[];
|
|
44
|
+
placeholder?: string;
|
|
45
|
+
};
|
|
38
46
|
}
|
|
@@ -12,6 +12,11 @@ export interface PDFViewerProps {
|
|
|
12
12
|
* Callback function to close the viewer
|
|
13
13
|
*/
|
|
14
14
|
closeBtnFn?: (a: boolean) => void;
|
|
15
|
+
labelOverrides?: {
|
|
16
|
+
nextFile?: string;
|
|
17
|
+
prevFile?: string;
|
|
18
|
+
of?: string;
|
|
19
|
+
};
|
|
15
20
|
}
|
|
16
21
|
export declare type filesType = {
|
|
17
22
|
fileUrl: string;
|
|
@@ -23,4 +23,11 @@ export interface FileUploadProps {
|
|
|
23
23
|
* Maximum file size acceptable in Kilobytes
|
|
24
24
|
**/
|
|
25
25
|
maxFileSize?: number;
|
|
26
|
+
labelOverrides?: {
|
|
27
|
+
requiredField?: string;
|
|
28
|
+
acceptedFiles?: string;
|
|
29
|
+
maxSize?: string;
|
|
30
|
+
selectFile?: string;
|
|
31
|
+
noFileSelected?: string;
|
|
32
|
+
};
|
|
26
33
|
}
|
|
@@ -47,4 +47,22 @@ export interface RequestsProps {
|
|
|
47
47
|
* Boolean to display a column in the table for the broker
|
|
48
48
|
*/
|
|
49
49
|
showBroker?: boolean;
|
|
50
|
+
labelOverrides?: {
|
|
51
|
+
provider?: string;
|
|
52
|
+
broker?: string;
|
|
53
|
+
clientId?: string;
|
|
54
|
+
trxId?: string;
|
|
55
|
+
trxAmt?: string;
|
|
56
|
+
status?: string;
|
|
57
|
+
date?: string;
|
|
58
|
+
emptyMsg?: string;
|
|
59
|
+
beginTrx?: string;
|
|
60
|
+
new?: string;
|
|
61
|
+
pendingPayment?: string;
|
|
62
|
+
sentToLp?: string;
|
|
63
|
+
confirmedWithLp?: string;
|
|
64
|
+
processingAtLp?: string;
|
|
65
|
+
complete?: string;
|
|
66
|
+
cancelled?: string;
|
|
67
|
+
};
|
|
50
68
|
}
|
|
@@ -26,4 +26,10 @@ export interface NewsFilterProps extends React.HTMLAttributes<any> {
|
|
|
26
26
|
* Theme of the component whether to be in light mode or dark
|
|
27
27
|
*/
|
|
28
28
|
theme: 'light' | 'dark';
|
|
29
|
+
labelOverrides?: {
|
|
30
|
+
title?: string;
|
|
31
|
+
selectCountryPlaceholder?: string;
|
|
32
|
+
selectOutletPlaceholder?: string;
|
|
33
|
+
allOption?: string;
|
|
34
|
+
};
|
|
29
35
|
}
|
|
@@ -8,6 +8,7 @@ export declare const LoadingContent: import("styled-components").StyledComponent
|
|
|
8
8
|
export declare const Offers: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
9
9
|
export declare const OfferItem: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
10
10
|
export declare const OfferInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
|
+
export declare const OfferButton: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
11
12
|
export declare const ProviderInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
12
13
|
export declare const ProviderNameDelivery: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
13
14
|
export declare const RateInfo: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -37,4 +37,14 @@ export interface OffersProps {
|
|
|
37
37
|
* Boolean to specify whether there's data available
|
|
38
38
|
*/
|
|
39
39
|
dataAvailable: boolean;
|
|
40
|
+
labelOverrides?: {
|
|
41
|
+
bestRates?: string;
|
|
42
|
+
recommended?: string;
|
|
43
|
+
availableOffers?: string;
|
|
44
|
+
allOffersFound?: string;
|
|
45
|
+
sortBy?: string;
|
|
46
|
+
emptyAvailableOffers?: string;
|
|
47
|
+
deliveryTime?: string;
|
|
48
|
+
noProvidersFound?: string;
|
|
49
|
+
};
|
|
40
50
|
}
|
|
@@ -46,6 +46,11 @@ export interface PhoneInputProps {
|
|
|
46
46
|
* Specify whether the component is a readonly field
|
|
47
47
|
*/
|
|
48
48
|
readonly?: boolean;
|
|
49
|
+
labelOverrides?: {
|
|
50
|
+
selectCountryCodeMsg?: string;
|
|
51
|
+
requiredFieldMsg?: string;
|
|
52
|
+
searchCountryPlaceholder?: string;
|
|
53
|
+
};
|
|
49
54
|
}
|
|
50
55
|
export declare type countryCodesType = {
|
|
51
56
|
"country": string;
|
|
@@ -7,6 +7,13 @@ export interface ProvidersProps {
|
|
|
7
7
|
* Callback function to receive the selected provider when clicked
|
|
8
8
|
*/
|
|
9
9
|
callback: (a: providersType) => void;
|
|
10
|
+
labelOverrides?: {
|
|
11
|
+
name?: string;
|
|
12
|
+
email?: string;
|
|
13
|
+
phone?: string;
|
|
14
|
+
status?: string;
|
|
15
|
+
emptyMsg?: string;
|
|
16
|
+
};
|
|
10
17
|
}
|
|
11
18
|
export declare type Status = "active" | "inactive";
|
|
12
19
|
export declare type providersType = {
|
|
@@ -27,4 +27,14 @@ export interface ReportsProps {
|
|
|
27
27
|
currencyFlag: string;
|
|
28
28
|
dateAdded: string;
|
|
29
29
|
}) => void;
|
|
30
|
+
labelOverrides?: {
|
|
31
|
+
clientId?: string;
|
|
32
|
+
symbol?: string;
|
|
33
|
+
ticker?: string;
|
|
34
|
+
price?: string;
|
|
35
|
+
quantity?: string;
|
|
36
|
+
amount?: string;
|
|
37
|
+
dateAdded?: string;
|
|
38
|
+
emptyMsg?: string;
|
|
39
|
+
};
|
|
30
40
|
}
|
|
@@ -24,4 +24,13 @@ export interface RequestFormProps {
|
|
|
24
24
|
quantity: number;
|
|
25
25
|
baseCurrency: string;
|
|
26
26
|
}) => void;
|
|
27
|
+
labelOverrides?: {
|
|
28
|
+
symbol?: string;
|
|
29
|
+
price?: string;
|
|
30
|
+
quantity?: string;
|
|
31
|
+
currencyIHave?: string;
|
|
32
|
+
viewOffers?: string;
|
|
33
|
+
selectCountry?: string;
|
|
34
|
+
selectSymbol?: string;
|
|
35
|
+
};
|
|
27
36
|
}
|
|
@@ -62,6 +62,10 @@ export interface SelectorProps {
|
|
|
62
62
|
* Specify whether the component is a readonly field
|
|
63
63
|
*/
|
|
64
64
|
readonly?: boolean;
|
|
65
|
+
labelOverrides?: {
|
|
66
|
+
otherSpecify?: string;
|
|
67
|
+
selectOptionMsg?: string;
|
|
68
|
+
};
|
|
65
69
|
}
|
|
66
70
|
export declare type itemType = {
|
|
67
71
|
label: string;
|
|
@@ -6,4 +6,14 @@ export interface SignatureProps {
|
|
|
6
6
|
previewUrl?: string;
|
|
7
7
|
disableTypeField?: boolean;
|
|
8
8
|
disableUploadField?: boolean;
|
|
9
|
+
labelOverrides?: {
|
|
10
|
+
uploadSignature?: string;
|
|
11
|
+
nothingSelected?: string;
|
|
12
|
+
chooseFile?: string;
|
|
13
|
+
allowedFiles?: string;
|
|
14
|
+
maxFile?: string;
|
|
15
|
+
typeSignatureLabel?: string;
|
|
16
|
+
typeSignaturePlaceholder?: string;
|
|
17
|
+
removeFile?: string;
|
|
18
|
+
};
|
|
9
19
|
}
|
|
@@ -40,4 +40,12 @@ export interface TxnDetsProps {
|
|
|
40
40
|
acctName: string;
|
|
41
41
|
acctCurr: string;
|
|
42
42
|
};
|
|
43
|
+
labelOverrides?: {
|
|
44
|
+
clientId?: string;
|
|
45
|
+
requestedBy?: string;
|
|
46
|
+
requestDate?: string;
|
|
47
|
+
amount?: string;
|
|
48
|
+
provider?: string;
|
|
49
|
+
destinationAcct?: string;
|
|
50
|
+
};
|
|
43
51
|
}
|
|
@@ -36,4 +36,15 @@ export interface TxnDetsWPymntProps {
|
|
|
36
36
|
bankName: string;
|
|
37
37
|
paymentRemarks: string;
|
|
38
38
|
};
|
|
39
|
+
labelOverrides?: {
|
|
40
|
+
amount?: string;
|
|
41
|
+
provider?: string;
|
|
42
|
+
requestedBy?: string;
|
|
43
|
+
requestDate?: string;
|
|
44
|
+
paymentMethod?: string;
|
|
45
|
+
payeeName?: string;
|
|
46
|
+
bankName?: string;
|
|
47
|
+
bankCountry?: string;
|
|
48
|
+
remarks?: string;
|
|
49
|
+
};
|
|
39
50
|
}
|