@tap-payments/os-micro-frontend-shared 0.1.375 → 0.1.376
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.
|
@@ -7,6 +7,7 @@ export declare const getPaymentMethodsIcon: (source: string) => string;
|
|
|
7
7
|
export declare const getPaymentIssuersIcon: (source: string) => string;
|
|
8
8
|
export declare const getCountriesIcon: (source: string) => string;
|
|
9
9
|
export declare const getServiceFunctionIcon: (functionCode: string) => string;
|
|
10
|
+
export declare const getStatusIcon: (statusCode: string) => string;
|
|
10
11
|
export declare const getCurrenciesIcon: (currency: string) => string;
|
|
11
12
|
export declare const getAuthorityIcon: (authority: string) => string;
|
|
12
13
|
export declare const SARIconImage: string;
|
|
@@ -9,6 +9,7 @@ export const getPaymentMethodsIcon = (source) => `${lightUrl}/payment-method/v2/
|
|
|
9
9
|
export const getPaymentIssuersIcon = (source) => `${lightUrl}/payment-issuer/${source}.svg`;
|
|
10
10
|
export const getCountriesIcon = (source) => `${lightUrl}/country/v3/${source}.svg`;
|
|
11
11
|
export const getServiceFunctionIcon = (functionCode) => `${lightUrl}/function/${functionCode}.svg`;
|
|
12
|
+
export const getStatusIcon = (statusCode) => `${lightUrl}/statusIcons/${statusCode}.svg`;
|
|
12
13
|
export const getCurrenciesIcon = (currency) => `${cdnUrl}/currency/v3/light/${currency}.svg`;
|
|
13
14
|
export const getAuthorityIcon = (authority) => {
|
|
14
15
|
const authorityWithoutSpaces = authority.replace(/\s/g, '');
|
package/package.json
CHANGED