@tap-payments/os-micro-frontend-shared 0.0.73 → 0.0.74
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/build/components/SearchButton/styles.d.ts +1 -1
- package/build/components/TableCells/CustomCells/ActionCell/style.d.ts +1 -1
- package/build/components/TableCells/CustomCells/SourceMergedCell/style.d.ts +1 -1
- package/build/components/TableCells/CustomCells/StatusCell/style.d.ts +1 -1
- package/build/components/VirtualTable/components/ColumnFilter/Inputs/Inputs.js +3 -8
- package/build/components/VirtualTable/style.d.ts +1 -1
- package/build/constants/assets.d.ts +1 -1
- package/build/constants/assets.js +197 -197
- package/package.json +1 -1
|
@@ -554,9 +554,9 @@ export declare const Icon: import("@emotion/styled").StyledComponent<{
|
|
|
554
554
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLImageElement> | undefined;
|
|
555
555
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
556
556
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
557
|
-
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
558
557
|
src?: string | undefined;
|
|
559
558
|
alt?: string | undefined;
|
|
559
|
+
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
560
560
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
561
561
|
useMap?: string | undefined;
|
|
562
562
|
loading?: "eager" | "lazy" | undefined;
|
|
@@ -269,9 +269,9 @@ export declare const ActionIcon: import("@emotion/styled").StyledComponent<{
|
|
|
269
269
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLImageElement> | undefined;
|
|
270
270
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
271
271
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
272
|
-
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
273
272
|
src?: string | undefined;
|
|
274
273
|
alt?: string | undefined;
|
|
274
|
+
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
275
275
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
276
276
|
useMap?: string | undefined;
|
|
277
277
|
loading?: "eager" | "lazy" | undefined;
|
|
@@ -273,9 +273,9 @@ export declare const MultiRefundIcon: import("@emotion/styled").StyledComponent<
|
|
|
273
273
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLImageElement> | undefined;
|
|
274
274
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
275
275
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
276
|
-
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
277
276
|
src?: string | undefined;
|
|
278
277
|
alt?: string | undefined;
|
|
278
|
+
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
279
279
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
280
280
|
useMap?: string | undefined;
|
|
281
281
|
loading?: "eager" | "lazy" | undefined;
|
|
@@ -262,9 +262,9 @@ export declare const MultiRefundIcon: import("@emotion/styled").StyledComponent<
|
|
|
262
262
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLImageElement> | undefined;
|
|
263
263
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
264
264
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
265
|
-
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
266
265
|
src?: string | undefined;
|
|
267
266
|
alt?: string | undefined;
|
|
267
|
+
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
268
268
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
269
269
|
useMap?: string | undefined;
|
|
270
270
|
loading?: "eager" | "lazy" | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useCallback, useEffect, useMemo, useState } from 'react';
|
|
2
|
+
import { Fragment, useCallback, useEffect, useMemo, useState } from 'react';
|
|
3
3
|
import Box from '@mui/material/Box';
|
|
4
4
|
import Collapse from '@mui/material/Collapse';
|
|
5
5
|
import lodashValues from 'lodash/values';
|
|
@@ -38,15 +38,10 @@ function Inputs({ onCloseDropdown, filter: { options = [], onConfirm, data, isOn
|
|
|
38
38
|
const isAnyInputWithValue = Object.entries(values).some(([inputKey, val]) => { var _a; return Boolean(val) && (((_a = getFilterByApiKey(inputKey)) === null || _a === void 0 ? void 0 : _a.filterGroup) !== filterGroup || !filterGroup); });
|
|
39
39
|
return isOnlyOneFilter && !inputWithValue && isAnyInputWithValue;
|
|
40
40
|
}, [options, values, isOnlyOneFilter]);
|
|
41
|
-
return (_jsxs(Wrapper, Object.assign({ component: "article", "data-testid": "ColumnFilterInputs" }, { children: [_jsx(Text, Object.assign({ component: "header", "data-testid": "ColumnFilterInputs_title" }, { children: t('filterBy') })), _jsx(InputsWrapper, Object.assign({ "data-testid": "ColumnFilterInputs_inputs", component: "main" }, { children: options.map(({ placeholder, apiKey, isDisabled, filterGroup, render }) => {
|
|
42
|
-
if (render) {
|
|
43
|
-
return render();
|
|
44
|
-
}
|
|
45
|
-
return (_jsx(InputStyled, { className: "input", "data-testid": "ColumnFilterInputs_InputStyled", name: apiKey, placeholder: placeholder, onChange: (e) => {
|
|
41
|
+
return (_jsxs(Wrapper, Object.assign({ component: "article", "data-testid": "ColumnFilterInputs" }, { children: [_jsx(Text, Object.assign({ component: "header", "data-testid": "ColumnFilterInputs_title" }, { children: t('filterBy') })), _jsx(InputsWrapper, Object.assign({ "data-testid": "ColumnFilterInputs_inputs", component: "main" }, { children: options.map(({ placeholder, apiKey, isDisabled, filterGroup, render }) => (_jsx(Fragment, { children: render ? (render()) : (_jsx(InputStyled, { className: "input", "data-testid": "ColumnFilterInputs_InputStyled", name: apiKey, placeholder: placeholder, onChange: (e) => {
|
|
46
42
|
setValues(Object.assign(Object.assign({}, values), { [apiKey]: e.target.value }));
|
|
47
43
|
}, disabled: isDisabled || isInputDisabled(apiKey, filterGroup), value: getInputValue(apiKey), inputProps: { autoComplete: 'off', 'data-testid': 'ColumnFilterInputs_input' }, endAdornment: _jsx(Box, { component: "img", "data-testid": "ColumnFilterInputs_icon", "data-icon": isInputHasValue(apiKey) ? 'close' : 'search', src: isInputHasValue(apiKey) ? grayCloseIcon : searchIcon, alt: "search", className: "icon", sx: { cursor: isInputHasValue(apiKey) ? 'pointer' : 'default' }, onClick: () => {
|
|
48
44
|
onClickResetInput(apiKey);
|
|
49
|
-
} }) }, apiKey));
|
|
50
|
-
}) })), _jsx(Collapse, Object.assign({ in: showClearButton, component: "section", "data-testid": "ColumnFilterInputs_Collapse" }, { children: _jsx(ClearWrapper, Object.assign({ "data-testid": "ColumnFilterInputs_ClearWrapper" }, { children: _jsx(ClearButton, Object.assign({ type: "button", onClick: onClickClear, "data-testid": "ColumnFilterInputs_ClearButton" }, { children: t('clear') })) })) })), _jsxs(Footer, Object.assign({ component: "footer", "data-testid": "ColumnFilterInputs_footer" }, { children: [_jsx(CancelButton, Object.assign({ type: "button", onClick: onClickCancel, "data-testid": "ColumnFilterInputs_CancelButton" }, { children: t('cancel') })), _jsx(OkayButton, Object.assign({ type: "button", onClick: onClickOkay, "data-testid": "ColumnFilterInputs_OkayButton" }, { children: t('okay') }))] }))] })));
|
|
45
|
+
} }) })) }, apiKey))) })), _jsx(Collapse, Object.assign({ in: showClearButton, component: "section", "data-testid": "ColumnFilterInputs_Collapse" }, { children: _jsx(ClearWrapper, Object.assign({ "data-testid": "ColumnFilterInputs_ClearWrapper" }, { children: _jsx(ClearButton, Object.assign({ type: "button", onClick: onClickClear, "data-testid": "ColumnFilterInputs_ClearButton" }, { children: t('clear') })) })) })), _jsxs(Footer, Object.assign({ component: "footer", "data-testid": "ColumnFilterInputs_footer" }, { children: [_jsx(CancelButton, Object.assign({ type: "button", onClick: onClickCancel, "data-testid": "ColumnFilterInputs_CancelButton" }, { children: t('cancel') })), _jsx(OkayButton, Object.assign({ type: "button", onClick: onClickOkay, "data-testid": "ColumnFilterInputs_OkayButton" }, { children: t('okay') }))] }))] })));
|
|
51
46
|
}
|
|
52
47
|
export default Inputs;
|
|
@@ -304,9 +304,9 @@ export declare const ActionIcon: import("@emotion/styled").StyledComponent<{
|
|
|
304
304
|
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLImageElement> | undefined;
|
|
305
305
|
onTransitionEnd?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
306
306
|
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLImageElement> | undefined;
|
|
307
|
-
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
308
307
|
src?: string | undefined;
|
|
309
308
|
alt?: string | undefined;
|
|
309
|
+
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
310
310
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
311
311
|
useMap?: string | undefined;
|
|
312
312
|
loading?: "eager" | "lazy" | undefined;
|
|
@@ -186,7 +186,6 @@ export declare const dueDateBlackIcon: string;
|
|
|
186
186
|
export declare const dueDateGrayIcon: string;
|
|
187
187
|
export declare const timerBlueIcon: string;
|
|
188
188
|
export declare const expiredIcon: string;
|
|
189
|
-
export declare const remindedIcon: string;
|
|
190
189
|
export declare const remindedRedIcon: string;
|
|
191
190
|
export declare const chevronWhiteIcon: string;
|
|
192
191
|
export declare const chevronGrayIcon: string;
|
|
@@ -482,3 +481,4 @@ export declare const bankNoteIcon: string;
|
|
|
482
481
|
export declare const terminalDeviceFrame: string;
|
|
483
482
|
export declare const blackBrushIcon: string;
|
|
484
483
|
export declare const mutedOutlinedCheckIcon: string;
|
|
484
|
+
export declare const outlinedPlatformIcon: string;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const cdnUrl = 'https://tap-assets
|
|
1
|
+
const cdnUrl = 'https://cdn.tap.company/tap-assets';
|
|
2
2
|
export const lightUrl = `${cdnUrl}/icons/dashboard/light`;
|
|
3
3
|
export const appBaseUrl = `${lightUrl}/other`;
|
|
4
4
|
export const functionBaseUrl = `${lightUrl}/function`;
|
|
@@ -40,15 +40,15 @@ export const visaIcon = `${lightUrl}/visa.svg`;
|
|
|
40
40
|
export const completedIcon = `${lightUrl}/completed.svg`;
|
|
41
41
|
export const chargeBackRequestedIcon = `${lightUrl}/chargebackRequested.svg`;
|
|
42
42
|
export const chargeBackIcon = `${lightUrl}/chargeback.svg`;
|
|
43
|
-
export const capturedDropdownIcon = `${
|
|
43
|
+
export const capturedDropdownIcon = `${appBaseUrl}/captureDropdown.svg`;
|
|
44
44
|
export const disputeResolvedIcon = `${lightUrl}/disputeResolved.svg`;
|
|
45
45
|
export const reversePayoutIcon = `${lightUrl}/reversePayout.svg`;
|
|
46
46
|
export const ellipsisHorizontalIcon = `${lightUrl}/ellipsisHorizontal.svg`;
|
|
47
47
|
export const threeDsIcon = `${lightUrl}/3ds.svg`;
|
|
48
48
|
export const idIcon = `${lightUrl}/id.svg`;
|
|
49
|
-
export const copyIcon = `${
|
|
50
|
-
export const codeIcon = `${
|
|
51
|
-
export const greenCheckIcon = `${
|
|
49
|
+
export const copyIcon = `${appBaseUrl}/copyIcon.svg`;
|
|
50
|
+
export const codeIcon = `${appBaseUrl}/codeIcon.svg`;
|
|
51
|
+
export const greenCheckIcon = `${appBaseUrl}/GreenCheckMark2.svg`;
|
|
52
52
|
export const closedDisputeIcon = `${lightUrl}/closedDispute.svg`;
|
|
53
53
|
export const openDisputeIcon = `${lightUrl}/openDispute.svg`;
|
|
54
54
|
export const desktopIcon = `${lightUrl}/desktop.svg`;
|
|
@@ -66,37 +66,37 @@ export const maximizeIcon = `${lightUrl}/maximize.svg`;
|
|
|
66
66
|
export const minimizeIcon = `${lightUrl}/minimize.svg`;
|
|
67
67
|
export const closeIcon = `${lightUrl}/close.svg`;
|
|
68
68
|
export const topUpIcon = `${lightUrl}/topup.svg`;
|
|
69
|
-
export const deMaximizeIcon = `${
|
|
69
|
+
export const deMaximizeIcon = `${appBaseUrl}/demaximize.svg`;
|
|
70
70
|
export const pendingFlag = `${lightUrl}/pendingFlag.svg`;
|
|
71
71
|
export const releasedFlag = `${lightUrl}/releasedFlag.svg`;
|
|
72
72
|
export const acceptedFlag = `${lightUrl}/acceptedFlag.svg`;
|
|
73
73
|
export const unCapturedIcon = `${lightUrl}/status/unCaptured.svg`;
|
|
74
|
-
export const newWindowIcon = `${
|
|
75
|
-
export const viewAllIcon = `${
|
|
76
|
-
export const hideIcon = `${
|
|
77
|
-
export const quitIcon = `${
|
|
78
|
-
export const starIcon = `${
|
|
79
|
-
export const closeCircle = `${
|
|
80
|
-
export const acquirerIcon = `${
|
|
74
|
+
export const newWindowIcon = `${appBaseUrl}/newWindow.svg`;
|
|
75
|
+
export const viewAllIcon = `${appBaseUrl}/viewAll.svg`;
|
|
76
|
+
export const hideIcon = `${appBaseUrl}/hide.svg`;
|
|
77
|
+
export const quitIcon = `${appBaseUrl}/close.svg`;
|
|
78
|
+
export const starIcon = `${appBaseUrl}/star.svg`;
|
|
79
|
+
export const closeCircle = `${appBaseUrl}/closeCircle.svg`;
|
|
80
|
+
export const acquirerIcon = `${appBaseUrl}/acquirer.svg`;
|
|
81
81
|
export const genericIconNew = `${lightUrl}/GenericIconNew.svg`;
|
|
82
|
-
export const acquirerRedIcon = `${
|
|
83
|
-
export const gatewayIcon = `${
|
|
84
|
-
export const acquirerOrangeIcon = `${
|
|
82
|
+
export const acquirerRedIcon = `${appBaseUrl}/acquirerRed.svg`;
|
|
83
|
+
export const gatewayIcon = `${appBaseUrl}/gateway.svg`;
|
|
84
|
+
export const acquirerOrangeIcon = `${appBaseUrl}/acquirerOrange.svg`;
|
|
85
85
|
export const capturedAuthorizeIcon = `${lightUrl}/status/capturedAuthorize.svg`;
|
|
86
|
-
export const merchantInitiatedIcon = `${
|
|
87
|
-
export const rightArrow = `${
|
|
86
|
+
export const merchantInitiatedIcon = `${appBaseUrl}/merchantInitiated.svg`;
|
|
87
|
+
export const rightArrow = `${appBaseUrl}/rightArow.svg`;
|
|
88
88
|
export const blackRightArrowIcon = `${lightUrl}/blackRightArrow.svg`;
|
|
89
|
-
export const orangeFlagIcon = `${
|
|
90
|
-
export const openFlagIcon = `${
|
|
91
|
-
export const closedFlagIcon = `${
|
|
92
|
-
export const redFlagIcon = `${
|
|
93
|
-
export const grayFlagIcon = `${
|
|
94
|
-
export const downArrowIcon = `${
|
|
95
|
-
export const checkIcon = `${
|
|
96
|
-
export const closeXIcon = `${
|
|
97
|
-
export const dragIcon = `${
|
|
98
|
-
export const checkboxIcon = `${
|
|
99
|
-
export const protectIcon = `${
|
|
89
|
+
export const orangeFlagIcon = `${appBaseUrl}/orangeFlag.svg`;
|
|
90
|
+
export const openFlagIcon = `${appBaseUrl}/openFlag.svg`;
|
|
91
|
+
export const closedFlagIcon = `${appBaseUrl}/closedFlag.svg`;
|
|
92
|
+
export const redFlagIcon = `${appBaseUrl}/redFlag.svg`;
|
|
93
|
+
export const grayFlagIcon = `${appBaseUrl}/grayFlag.svg`;
|
|
94
|
+
export const downArrowIcon = `${appBaseUrl}/downArrow.svg`;
|
|
95
|
+
export const checkIcon = `${appBaseUrl}/check.svg`;
|
|
96
|
+
export const closeXIcon = `${appBaseUrl}/closeX.svg`;
|
|
97
|
+
export const dragIcon = `${appBaseUrl}/drag.svg`;
|
|
98
|
+
export const checkboxIcon = `${appBaseUrl}/checkboxIcon.svg`;
|
|
99
|
+
export const protectIcon = `${appBaseUrl}/checkboxIcon.svg`;
|
|
100
100
|
export const unisoIcon = `${lightUrl}/Uniso.svg`;
|
|
101
101
|
export const addidasIcon = `${lightUrl}/addidas.svg`;
|
|
102
102
|
export const macIcon = `${lightUrl}/Mac.svg`;
|
|
@@ -114,138 +114,137 @@ export const messageIcon = `${lightUrl}/message.svg`;
|
|
|
114
114
|
export const pendingIcon = `${lightUrl}/pending.svg`;
|
|
115
115
|
export const payStreamIcon = `${lightUrl}/payStream.svg`;
|
|
116
116
|
export const clearCoinIcon = `${lightUrl}/clearCoin.svg`;
|
|
117
|
-
export const walletIcon = `${
|
|
118
|
-
export const bankIcon = `${
|
|
119
|
-
export const hijriIcon = `${
|
|
120
|
-
export const darkLeftArrowIcon = `${
|
|
121
|
-
export const darkRightArrowIcon = `${
|
|
122
|
-
export const spinnerLoadingIcon = `${
|
|
123
|
-
export const spinnerLoadingAnimatedIcon = `${
|
|
124
|
-
export const actionFailIcon = `${
|
|
125
|
-
export const actionSuccessIcon = `${
|
|
126
|
-
export const checkMarkIcon = `${
|
|
127
|
-
export const logOutIcon = `${
|
|
128
|
-
export const preferencesIcon = `${
|
|
129
|
-
export const transformIcon = `${
|
|
130
|
-
export const tokenAppIcon = `${
|
|
131
|
-
export const billingAppIcon = `${
|
|
132
|
-
export const receiptBillIcon = `${
|
|
117
|
+
export const walletIcon = `${appBaseUrl}/walletSmall.svg`;
|
|
118
|
+
export const bankIcon = `${appBaseUrl}/bank.svg`;
|
|
119
|
+
export const hijriIcon = `${appBaseUrl}/hijri.svg`;
|
|
120
|
+
export const darkLeftArrowIcon = `${appBaseUrl}/darkLeftArrow.svg`;
|
|
121
|
+
export const darkRightArrowIcon = `${appBaseUrl}/darkRightArrow.svg`;
|
|
122
|
+
export const spinnerLoadingIcon = `${appBaseUrl}/spinnerLoading.svg`;
|
|
123
|
+
export const spinnerLoadingAnimatedIcon = `${appBaseUrl}/spinnerLoadingAnimated.svg`;
|
|
124
|
+
export const actionFailIcon = `${appBaseUrl}/actionFail.svg`;
|
|
125
|
+
export const actionSuccessIcon = `${appBaseUrl}/actionSuccess.svg`;
|
|
126
|
+
export const checkMarkIcon = `${appBaseUrl}/checkMark.svg`;
|
|
127
|
+
export const logOutIcon = `${appBaseUrl}/logout.svg`;
|
|
128
|
+
export const preferencesIcon = `${appBaseUrl}/preferences.svg`;
|
|
129
|
+
export const transformIcon = `${appBaseUrl}/transform.svg`;
|
|
130
|
+
export const tokenAppIcon = `${appBaseUrl}/token.svg`;
|
|
131
|
+
export const billingAppIcon = `${appBaseUrl}/billing.svg`;
|
|
132
|
+
export const receiptBillIcon = `${appBaseUrl}/receiptBill.svg`;
|
|
133
133
|
export const newReceiptIcon = `${lightUrl}/newReceiptIcon.svg`;
|
|
134
|
-
export const acceptanceAppIcon = `${
|
|
134
|
+
export const acceptanceAppIcon = `${appBaseUrl}/acceptance.svg`;
|
|
135
135
|
export const acceptanceEnabledIcon = `${lightUrl}/acceptanceEnabled.svg`;
|
|
136
|
-
export const acceptanceAppDisabledIcon = `${
|
|
137
|
-
export const payoutAppDisabledIcon = `${
|
|
136
|
+
export const acceptanceAppDisabledIcon = `${appBaseUrl}/acceptanceAppIconDisabled.svg`;
|
|
137
|
+
export const payoutAppDisabledIcon = `${appBaseUrl}/payoutsAppIconDisabled.svg`;
|
|
138
138
|
export const payoutEnabledIcon = `${lightUrl}/payoutEnabled.svg`;
|
|
139
139
|
export const payoutDisabledRoundedIcon = `${lightUrl}/payoutDisabledRounded.svg`;
|
|
140
140
|
export const acceptanceDisabledRoundedIcon = `${lightUrl}/acceptanceDisabledRounded.svg`;
|
|
141
|
-
export const authenticationAppIcon = `${
|
|
142
|
-
export const walletAppIcon = `${
|
|
143
|
-
export const payoutsAppIcon = `${
|
|
144
|
-
export const protectAppIcon = `${
|
|
145
|
-
export const customersAppIcon = `${
|
|
146
|
-
export const businessesAppIcon = `${
|
|
147
|
-
export const accountAppIcon = `${
|
|
148
|
-
export const unCheckedIcon = `${
|
|
149
|
-
export const wifiOffIcon = `${
|
|
150
|
-
export const SandboxHovered = `${
|
|
151
|
-
export const SandboxDefault = `${
|
|
152
|
-
export const warningInfoIcon = `${
|
|
153
|
-
export const greyCheckIcon = `${
|
|
154
|
-
export const greyCrossIcon = `${
|
|
155
|
-
export const blueCheckIcon = `${
|
|
156
|
-
export const disabledCheckIcon = `${
|
|
157
|
-
export const darkCheckIcon = `${
|
|
158
|
-
export const collapseArrowIcon = `${
|
|
159
|
-
export const worldIcon = `${
|
|
160
|
-
export const grayUpArrowIcon = `${
|
|
161
|
-
export const blackHeadingDownArrow = `${
|
|
162
|
-
export const blueHeadingDropdownArrow = `${
|
|
163
|
-
export const blueDropdownArrowIcon = `${
|
|
164
|
-
export const greyDropdownIcon = `${
|
|
165
|
-
export const businessSegmentIcon = `${
|
|
166
|
-
export const providerSegmentIcon = `${
|
|
167
|
-
export const financialSegmentIcon = `${
|
|
168
|
-
export const developmentSegmentIcon = `${
|
|
169
|
-
export const platformSegmentIcon = `${
|
|
170
|
-
export const lightPlatformSegmentIcon = `${
|
|
171
|
-
export const grayBrandIcon = `${
|
|
172
|
-
export const jsonIcon = `${
|
|
173
|
-
export const jsonBlackIcon = `${
|
|
174
|
-
export const sortIcon = `${
|
|
175
|
-
export const SandboxHoveredLightIcon = `${
|
|
176
|
-
export const emailChannelIcon = `${
|
|
141
|
+
export const authenticationAppIcon = `${appBaseUrl}/AuthenticationApp.svg`;
|
|
142
|
+
export const walletAppIcon = `${appBaseUrl}/walletApp.svg`;
|
|
143
|
+
export const payoutsAppIcon = `${appBaseUrl}/payouts.svg`;
|
|
144
|
+
export const protectAppIcon = `${appBaseUrl}/protect.svg`;
|
|
145
|
+
export const customersAppIcon = `${appBaseUrl}/customers.svg`;
|
|
146
|
+
export const businessesAppIcon = `${appBaseUrl}/business.svg`;
|
|
147
|
+
export const accountAppIcon = `${appBaseUrl}/account.svg`;
|
|
148
|
+
export const unCheckedIcon = `${appBaseUrl}/disableCheck.svg`;
|
|
149
|
+
export const wifiOffIcon = `${appBaseUrl}/wifiOff.svg`;
|
|
150
|
+
export const SandboxHovered = `${appBaseUrl}/SandboxHovered.svg`;
|
|
151
|
+
export const SandboxDefault = `${appBaseUrl}/Sandbox.svg`;
|
|
152
|
+
export const warningInfoIcon = `${appBaseUrl}/ExclamationError.svg`;
|
|
153
|
+
export const greyCheckIcon = `${appBaseUrl}/greyCheck.svg`;
|
|
154
|
+
export const greyCrossIcon = `${appBaseUrl}/greyCross.svg`;
|
|
155
|
+
export const blueCheckIcon = `${appBaseUrl}/blueCheck.svg`;
|
|
156
|
+
export const disabledCheckIcon = `${appBaseUrl}/disabledCheck.svg`;
|
|
157
|
+
export const darkCheckIcon = `${appBaseUrl}/darkCheck.svg`;
|
|
158
|
+
export const collapseArrowIcon = `${appBaseUrl}/collapseArrow.svg`;
|
|
159
|
+
export const worldIcon = `${appBaseUrl}/world.svg`;
|
|
160
|
+
export const grayUpArrowIcon = `${appBaseUrl}/grayUpArrow.svg`;
|
|
161
|
+
export const blackHeadingDownArrow = `${appBaseUrl}/blackHeadingDownArrowIcon.svg`;
|
|
162
|
+
export const blueHeadingDropdownArrow = `${appBaseUrl}/blueHeadingDropdownArrow.svg`;
|
|
163
|
+
export const blueDropdownArrowIcon = `${appBaseUrl}/dropdownArrow.svg`;
|
|
164
|
+
export const greyDropdownIcon = `${appBaseUrl}/greyDropdownIcon.svg`;
|
|
165
|
+
export const businessSegmentIcon = `${appBaseUrl}/business2.svg`;
|
|
166
|
+
export const providerSegmentIcon = `${appBaseUrl}/provider.svg`;
|
|
167
|
+
export const financialSegmentIcon = `${appBaseUrl}/financial.svg`;
|
|
168
|
+
export const developmentSegmentIcon = `${appBaseUrl}/development.svg`;
|
|
169
|
+
export const platformSegmentIcon = `${appBaseUrl}/platform.svg`;
|
|
170
|
+
export const lightPlatformSegmentIcon = `${appBaseUrl}/light_platform.svg`;
|
|
171
|
+
export const grayBrandIcon = `${appBaseUrl}/brandGray.svg`;
|
|
172
|
+
export const jsonIcon = `${appBaseUrl}/json.svg`;
|
|
173
|
+
export const jsonBlackIcon = `${appBaseUrl}/jsonBlackIcon.svg`;
|
|
174
|
+
export const sortIcon = `${appBaseUrl}/sort1.svg`;
|
|
175
|
+
export const SandboxHoveredLightIcon = `${appBaseUrl}/SandboxHoveredLight.svg`;
|
|
176
|
+
export const emailChannelIcon = `${appBaseUrl}/emailColoured.svg`;
|
|
177
177
|
export const orderIcon = `${lightUrl}/OrderIcon.svg`;
|
|
178
178
|
export const transactionIcon = `${lightUrl}/TransactionIcon.svg`;
|
|
179
179
|
export const genericIcon = `${lightUrl}/GenericIcon.svg`;
|
|
180
|
-
export const smsChannelIcon = `${
|
|
181
|
-
export const whatsappChannelIcon = `${
|
|
182
|
-
export const dueDateBlueIcon = `${
|
|
183
|
-
export const dueDateOrangeIcon = `${
|
|
184
|
-
export const dueDateYellowIcon = `${
|
|
185
|
-
export const dueDateRedIcon = `${
|
|
186
|
-
export const dueDateBlackIcon = `${
|
|
187
|
-
export const dueDateGrayIcon = `${
|
|
188
|
-
export const timerBlueIcon = `${
|
|
189
|
-
export const expiredIcon = `${
|
|
190
|
-
export const
|
|
191
|
-
export const
|
|
192
|
-
export const
|
|
193
|
-
export const
|
|
194
|
-
export const
|
|
195
|
-
export const
|
|
196
|
-
export const verifyReviewIcon = `${lightUrl}/other/verifyReview.svg`;
|
|
180
|
+
export const smsChannelIcon = `${appBaseUrl}/smsColoured.svg`;
|
|
181
|
+
export const whatsappChannelIcon = `${appBaseUrl}/whatsAppColored.svg`;
|
|
182
|
+
export const dueDateBlueIcon = `${appBaseUrl}/dueDateBlue.svg`;
|
|
183
|
+
export const dueDateOrangeIcon = `${appBaseUrl}/dueDateOrange.svg`;
|
|
184
|
+
export const dueDateYellowIcon = `${appBaseUrl}/dueDateYellow.svg`;
|
|
185
|
+
export const dueDateRedIcon = `${appBaseUrl}/dueDateRed.svg`;
|
|
186
|
+
export const dueDateBlackIcon = `${appBaseUrl}/dueDateBlack.svg`;
|
|
187
|
+
export const dueDateGrayIcon = `${appBaseUrl}/dueDateGray.svg`;
|
|
188
|
+
export const timerBlueIcon = `${appBaseUrl}/timerBlue.svg`;
|
|
189
|
+
export const expiredIcon = `${appBaseUrl}/expiredIcon.svg`;
|
|
190
|
+
export const remindedRedIcon = `${appBaseUrl}/remindedRed.svg`;
|
|
191
|
+
export const chevronWhiteIcon = `${appBaseUrl}/chevronWhite.svg`;
|
|
192
|
+
export const chevronGrayIcon = `${appBaseUrl}/chevronGray.svg`;
|
|
193
|
+
export const notVerifiedIcon = `${appBaseUrl}/notVerified.svg`;
|
|
194
|
+
export const verifiedIcon = `${appBaseUrl}/verified.svg`;
|
|
195
|
+
export const verifyReviewIcon = `${appBaseUrl}/verifyReview.svg`;
|
|
197
196
|
export const attentionIcon = `${lightUrl}/window/attention.svg`;
|
|
198
197
|
export const initialAcceptanceIcon = `${lightUrl}/window/initalAcceptance.svg`;
|
|
199
198
|
export const completedAcceptanceIcon = `${lightUrl}/window/completedAcceptance.svg`;
|
|
200
199
|
export const initialPayoutsIcon = `${lightUrl}/window/initalPayouts.svg`;
|
|
201
200
|
export const completedPayoutsIcon = `${lightUrl}/window/completedPayouts.svg`;
|
|
202
|
-
export const collapseArrowsIcon = `${
|
|
203
|
-
export const expandArrowsIcon = `${
|
|
204
|
-
export const greenArrowRightIcon = `${
|
|
205
|
-
export const greenArrowLeftIcon = `${
|
|
206
|
-
export const greenArrowUpIcon = `${
|
|
207
|
-
export const whiteArrowRightIcon = `${
|
|
208
|
-
export const whiteArrowLeftIcon = `${
|
|
201
|
+
export const collapseArrowsIcon = `${appBaseUrl}/collapseArrowsIcon.svg`;
|
|
202
|
+
export const expandArrowsIcon = `${appBaseUrl}/expandArrowsIcon.svg`;
|
|
203
|
+
export const greenArrowRightIcon = `${appBaseUrl}/greenArrowRight.svg`;
|
|
204
|
+
export const greenArrowLeftIcon = `${appBaseUrl}/greenArrowLeft1.svg`;
|
|
205
|
+
export const greenArrowUpIcon = `${appBaseUrl}/greenIconWithArrowUp.svg`;
|
|
206
|
+
export const whiteArrowRightIcon = `${appBaseUrl}/whiteArrowRight.svg`;
|
|
207
|
+
export const whiteArrowLeftIcon = `${appBaseUrl}/whiteArrowLeft.svg`;
|
|
209
208
|
export const HSBCBankIcon = `${lightUrl}/HSBCBank.svg`;
|
|
210
209
|
export const shopifyBadgeIcon = `${lightUrl}/shopifyIcon.svg`;
|
|
211
210
|
export const verifiedGreenBadgeIcon = `${lightUrl}/verifiedGreenBadge.svg`;
|
|
212
211
|
export const backButtonLeftIcon = `${lightUrl}/backButtonLeft.svg`;
|
|
213
212
|
export const eyeHideIcon = `${lightUrl}/eyeHideIcon.svg`;
|
|
214
213
|
export const eyeShowIcon = `${lightUrl}/eyeShowIcon.svg`;
|
|
215
|
-
export const uploadIcon = `${
|
|
216
|
-
export const uploadBlueIcon = `${
|
|
217
|
-
export const sandboxHoveredIcon = `${
|
|
218
|
-
export const sandboxDefaultIcon = `${
|
|
219
|
-
export const sandboxOrangeIcon = `${
|
|
220
|
-
export const clockIcon = `${
|
|
221
|
-
export const redCloseIcon = `${
|
|
222
|
-
export const xlsIcon = `${
|
|
223
|
-
export const csvIcon = `${
|
|
224
|
-
export const pdfIcon = `${
|
|
225
|
-
export const reportIcon = `${
|
|
226
|
-
export const reportsIconOutlined = `${
|
|
227
|
-
export const doneIcon = `${
|
|
228
|
-
export const reportAppsIcon = `${
|
|
214
|
+
export const uploadIcon = `${appBaseUrl}/uploadIcon.svg`;
|
|
215
|
+
export const uploadBlueIcon = `${appBaseUrl}/uploadBlueIcon.svg`;
|
|
216
|
+
export const sandboxHoveredIcon = `${appBaseUrl}/SandboxHovered.svg`;
|
|
217
|
+
export const sandboxDefaultIcon = `${appBaseUrl}/sandboxDefaultIcon.svg`;
|
|
218
|
+
export const sandboxOrangeIcon = `${appBaseUrl}/SandboxIcon.svg`;
|
|
219
|
+
export const clockIcon = `${appBaseUrl}/clock.svg`;
|
|
220
|
+
export const redCloseIcon = `${appBaseUrl}/RedClose.svg`;
|
|
221
|
+
export const xlsIcon = `${appBaseUrl}/xls.svg`;
|
|
222
|
+
export const csvIcon = `${appBaseUrl}/csv.svg`;
|
|
223
|
+
export const pdfIcon = `${appBaseUrl}/pdf.svg`;
|
|
224
|
+
export const reportIcon = `${appBaseUrl}/Download.svg`;
|
|
225
|
+
export const reportsIconOutlined = `${appBaseUrl}/reportsIconOutlined.svg`;
|
|
226
|
+
export const doneIcon = `${appBaseUrl}/Done.svg`;
|
|
227
|
+
export const reportAppsIcon = `${appBaseUrl}/reportApps.svg`;
|
|
229
228
|
export const reportAppIcon = `${lightUrl}/window/ReportsApp.svg`;
|
|
230
229
|
export const leadAppIcon = `${lightUrl}/window/leadApp.svg`;
|
|
231
230
|
export const leadTitleIcon = `${lightUrl}/window/leadTitleIcon.svg`;
|
|
232
|
-
export const orderAppIcon = `${
|
|
233
|
-
export const orderWindowIcon = `${
|
|
231
|
+
export const orderAppIcon = `${appBaseUrl}/OrderApp.svg`;
|
|
232
|
+
export const orderWindowIcon = `${appBaseUrl}/OrderTitleIcon.svg`;
|
|
234
233
|
export const dottedLine = `${lightUrl}/dottedLine.svg`;
|
|
235
234
|
export const dollarSignIcon = `${lightUrl}/dollarSign.svg`;
|
|
236
235
|
export const reloadIcon = `${lightUrl}/reload.svg`;
|
|
237
|
-
export const deletedStatusIcon = `${
|
|
238
|
-
export const draftStatusIcon = `${
|
|
239
|
-
export const createdStatusIcon = `${
|
|
240
|
-
export const cancelledStatusIcon = `${
|
|
241
|
-
export const expiredStatusIcon = `${
|
|
242
|
-
export const paidStatusIcon = `${
|
|
243
|
-
export const deliveredStatusIcon = `${
|
|
244
|
-
export const viewedStatusIcon = `${
|
|
245
|
-
export const savedStatusIcon = `${
|
|
246
|
-
export const scheduledStatusIcon = `${
|
|
247
|
-
export const pendingStatusIcon = `${
|
|
248
|
-
export const refundedStatusIcon = `${
|
|
236
|
+
export const deletedStatusIcon = `${appBaseUrl}/deletedStatus1.svg`;
|
|
237
|
+
export const draftStatusIcon = `${appBaseUrl}/draftedStatus1.svg`;
|
|
238
|
+
export const createdStatusIcon = `${appBaseUrl}/createdStatus1.svg`;
|
|
239
|
+
export const cancelledStatusIcon = `${appBaseUrl}/cancelledStatus1.svg`;
|
|
240
|
+
export const expiredStatusIcon = `${appBaseUrl}/expiredStatus1.svg`;
|
|
241
|
+
export const paidStatusIcon = `${appBaseUrl}/paidStatus1.svg`;
|
|
242
|
+
export const deliveredStatusIcon = `${appBaseUrl}/deliveredStatus1.svg`;
|
|
243
|
+
export const viewedStatusIcon = `${appBaseUrl}/viewedStatus1.svg`;
|
|
244
|
+
export const savedStatusIcon = `${appBaseUrl}/savedStatus1.svg`;
|
|
245
|
+
export const scheduledStatusIcon = `${appBaseUrl}/scheduledStatus1.svg`;
|
|
246
|
+
export const pendingStatusIcon = `${appBaseUrl}/invoicePendingStatus2.svg`;
|
|
247
|
+
export const refundedStatusIcon = `${appBaseUrl}/invoiceRefundedStatus2.svg`;
|
|
249
248
|
export const newFileIcon = `${lightUrl}/newFileIcon.svg`;
|
|
250
249
|
export const teamWindowIcon = `${lightUrl}/teamWindowIcon.svg`;
|
|
251
250
|
export const blueAppsIcon = `${lightUrl}/blueAppsIcon.svg`;
|
|
@@ -254,27 +253,27 @@ export const disabledCodeIcon = `${lightUrl}/disabledCodeIcon.svg`;
|
|
|
254
253
|
export const layersIcon = `${lightUrl}/layersIcon.svg`;
|
|
255
254
|
export const pendingOnTapIcon = `${lightUrl}/status/pendingOnTapIcon.svg`;
|
|
256
255
|
export const leadWhiteIcon = `${lightUrl}/leadWhiteIcon.svg`;
|
|
257
|
-
export const chatDisabledIcon = `${
|
|
256
|
+
export const chatDisabledIcon = `${appBaseUrl}/chatDisabledIcon.svg`;
|
|
258
257
|
export const exclamationDarkIcon = `${lightUrl}/exclamationDarkIcon.svg`;
|
|
259
|
-
export const exclamationWarningIcon = `${
|
|
258
|
+
export const exclamationWarningIcon = `${appBaseUrl}/exclamationWarning.svg`;
|
|
260
259
|
export const exclamationErrorIcon = `${lightUrl}/exclamationError.svg`;
|
|
261
|
-
export const greenCheckV2Icon = `${
|
|
260
|
+
export const greenCheckV2Icon = `${appBaseUrl}/greenCheckV2.svg`;
|
|
262
261
|
export const iosIcon = `${lightUrl}/iosIcon1.svg`;
|
|
263
262
|
export const androidIcon = `${lightUrl}/androidIcon.svg`;
|
|
264
263
|
export const websiteIcon = `${lightUrl}/websiteIcon.svg`;
|
|
265
|
-
export const greyAppleIcon = `${
|
|
266
|
-
export const greyLocationIcon = `${
|
|
267
|
-
export const greyDesktopIcon = `${
|
|
268
|
-
export const darkGreyTimezoneIcon = `${
|
|
269
|
-
export const safariIcon = `${
|
|
270
|
-
export const chromeIcon = `${
|
|
271
|
-
export const firefoxIcon = `${
|
|
272
|
-
export const edgeIcon = `${
|
|
273
|
-
export const operaIcon = `${
|
|
274
|
-
export const braveIcon = `${
|
|
275
|
-
export const arcIcon = `${
|
|
276
|
-
export const chromiumIcon = `${
|
|
277
|
-
export const userIcon = `${
|
|
264
|
+
export const greyAppleIcon = `${appBaseUrl}/greyApple.svg`;
|
|
265
|
+
export const greyLocationIcon = `${appBaseUrl}/greyLocationIcon.svg`;
|
|
266
|
+
export const greyDesktopIcon = `${appBaseUrl}/greyDesktopIcon.svg`;
|
|
267
|
+
export const darkGreyTimezoneIcon = `${appBaseUrl}/greyTimezone.svg`;
|
|
268
|
+
export const safariIcon = `${appBaseUrl}/safariBrowser.svg`;
|
|
269
|
+
export const chromeIcon = `${appBaseUrl}/chromeBrowser.svg`;
|
|
270
|
+
export const firefoxIcon = `${appBaseUrl}/firefoxBrowser.svg`;
|
|
271
|
+
export const edgeIcon = `${appBaseUrl}/edgeBrowser.svg`;
|
|
272
|
+
export const operaIcon = `${appBaseUrl}/operaBrowser.svg`;
|
|
273
|
+
export const braveIcon = `${appBaseUrl}/braveBrowser.svg`;
|
|
274
|
+
export const arcIcon = `${appBaseUrl}/arcBrowser.svg`;
|
|
275
|
+
export const chromiumIcon = `${appBaseUrl}/chromiumBrowser.svg`;
|
|
276
|
+
export const userIcon = `${appBaseUrl}/userIcon.svg`;
|
|
278
277
|
export const abandonedTableIcon = `${lightUrl}/status/table/abandoned.svg`;
|
|
279
278
|
export const cancelledTableIcon = `${lightUrl}/status/table/cancelled.svg`;
|
|
280
279
|
export const capturedTableIcon = `${lightUrl}/status/table/captured.svg`;
|
|
@@ -283,12 +282,12 @@ export const chargeBackRequestedTableIcon = `${lightUrl}/status/table/chargeBack
|
|
|
283
282
|
export const completedTableIcon = `${lightUrl}/status/table/completed.svg`;
|
|
284
283
|
export const declinedTableIcon = `${lightUrl}/status/table/declined.svg`;
|
|
285
284
|
export const destinationReversedTableIcon = `${lightUrl}/status/table/destinationReversed.svg`;
|
|
286
|
-
export const destinationWithoutBackgroundIcon = `${
|
|
285
|
+
export const destinationWithoutBackgroundIcon = `${appBaseUrl}/DestinationWithoutBackground.svg`;
|
|
287
286
|
export const disputeResolvedTableIcon = `${lightUrl}/status/table/disputeResolved.svg`;
|
|
288
287
|
export const failedTableIcon = `${lightUrl}/status/table/failed.svg`;
|
|
289
288
|
export const failedNoBgTableIcon = `${lightUrl}/status/table/failedNoBG.svg`;
|
|
290
289
|
export const declinedNoBgTableIcon = `${lightUrl}/status/table/declinedNoBg.svg`;
|
|
291
|
-
export const destinationSuccessTableIcon = `${
|
|
290
|
+
export const destinationSuccessTableIcon = `${appBaseUrl}/destinationSuccess.svg`;
|
|
292
291
|
export const authenticationFailedTableIcon = `${lightUrl}/status/authenticationFailed.svg`;
|
|
293
292
|
export const authenticatedIcon = `${lightUrl}/status/table/authenticated.svg`;
|
|
294
293
|
export const scheduledFilterIcon = `${lightUrl}/paidOutFilterIcon.svg`;
|
|
@@ -306,41 +305,41 @@ export const authenticationWithoutTransactionIcon = `${lightUrl}/status/Authenti
|
|
|
306
305
|
export const authenticationWithTransactionIcon = `${lightUrl}/status/authenticationWithTransaction1 2.svg`;
|
|
307
306
|
export const authenticatedSuccessIcon = `${lightUrl}/status/AuthenticationAuthenticated.svg`;
|
|
308
307
|
export const authenticationPendingIcon = `${lightUrl}/status/authenticationPending2.svg`;
|
|
309
|
-
export const viewInvoiceIcon = `${
|
|
310
|
-
export const checkoutStatusIcon = `${
|
|
311
|
-
export const checkoutStatusBlueIcon = `${
|
|
312
|
-
export const checkoutWithMarkStatusIcon = `${
|
|
313
|
-
export const intentExpiredStatusIcon = `${
|
|
314
|
-
export const intentInitiatedStatusIcon = `${
|
|
315
|
-
export const intentCancelledStatusIcon = `${
|
|
316
|
-
export const intentTransactedStatusIcon = `${
|
|
317
|
-
export const longWordsIcon = `${
|
|
308
|
+
export const viewInvoiceIcon = `${appBaseUrl}/viewInvoice.svg`;
|
|
309
|
+
export const checkoutStatusIcon = `${appBaseUrl}/checkoutStatus.svg`;
|
|
310
|
+
export const checkoutStatusBlueIcon = `${appBaseUrl}/checkStatusOutBlue.svg`;
|
|
311
|
+
export const checkoutWithMarkStatusIcon = `${appBaseUrl}/checkoutWithMarkStatus.svg`;
|
|
312
|
+
export const intentExpiredStatusIcon = `${appBaseUrl}/intentExpiredStatus.svg`;
|
|
313
|
+
export const intentInitiatedStatusIcon = `${appBaseUrl}/intentInitiatedStatus.svg`;
|
|
314
|
+
export const intentCancelledStatusIcon = `${appBaseUrl}/intentCancelledStatus.svg`;
|
|
315
|
+
export const intentTransactedStatusIcon = `${appBaseUrl}/intentTransactedStatus.svg`;
|
|
316
|
+
export const longWordsIcon = `${appBaseUrl}/longWordsIcon.svg`;
|
|
318
317
|
export const abandonedNoBGIcon = `${lightUrl}/abandonedNoBG.svg`;
|
|
319
318
|
export const paidOutTableIcon = `${lightUrl}/status/table/paidOut.svg`;
|
|
320
319
|
export const reversePayoutTableIcon = `${lightUrl}/status/table/reversePayout.svg`;
|
|
321
320
|
export const pendingPayoutIcon = `${lightUrl}/status/pendingPayout.svg`;
|
|
322
|
-
export const whiteCloseIcon = `${
|
|
321
|
+
export const whiteCloseIcon = `${appBaseUrl}/whiteCloseIcon.svg`;
|
|
323
322
|
export const emptyIcon = `${lightUrl}/window/empty.svg`;
|
|
324
|
-
export const reverseActionIcon = `${
|
|
325
|
-
export const authenticationWalletIcon = `${
|
|
326
|
-
export const authenticationAppTypeIcon = `${
|
|
327
|
-
export const authenticationBiometricIcon = `${
|
|
328
|
-
export const authenticationDeviceIcon = `${
|
|
329
|
-
export const authenticationIssuerIcon = `${
|
|
330
|
-
export const authenticationSchemeIcon = `${
|
|
331
|
-
export const switcherIcon = `${
|
|
323
|
+
export const reverseActionIcon = `${appBaseUrl}/reverseActionIcon.svg`;
|
|
324
|
+
export const authenticationWalletIcon = `${appBaseUrl}/authenticationWallet.svg`;
|
|
325
|
+
export const authenticationAppTypeIcon = `${appBaseUrl}/authenticationApp.svg`;
|
|
326
|
+
export const authenticationBiometricIcon = `${appBaseUrl}/authenticationBiometric.svg`;
|
|
327
|
+
export const authenticationDeviceIcon = `${appBaseUrl}/authenticationDevice.svg`;
|
|
328
|
+
export const authenticationIssuerIcon = `${appBaseUrl}/authenticationIssuer.svg`;
|
|
329
|
+
export const authenticationSchemeIcon = `${appBaseUrl}/authenticationScheme.svg`;
|
|
330
|
+
export const switcherIcon = `${appBaseUrl}/switcher.svg`;
|
|
332
331
|
export const tokenSavedStatusIcon = `${lightUrl}/status/table/tokensSaved.svg`;
|
|
333
332
|
export const tokenTransactedStatusIcon = `${lightUrl}/status/table/tokensTransacted.svg`;
|
|
334
333
|
export const tokenExpiredStatusIcon = `${lightUrl}/status/table/tokensExpired.svg`;
|
|
335
334
|
export const tokenPendingStatusIcon = `${lightUrl}/status/table/tokensPending.svg`;
|
|
336
|
-
export const tokenCardIcon = `${
|
|
337
|
-
export const tableLoadingSpinnerIcon = `${
|
|
338
|
-
export const tableLoadingSpinnerWhiteIcon = `${
|
|
335
|
+
export const tokenCardIcon = `${appBaseUrl}/tokenCardIcon.svg`;
|
|
336
|
+
export const tableLoadingSpinnerIcon = `${appBaseUrl}/TableloadingSpinner.svg`;
|
|
337
|
+
export const tableLoadingSpinnerWhiteIcon = `${appBaseUrl}/loadingSpinnerWhite.svg`;
|
|
339
338
|
export const tableBackgroundLoader = `${lightUrl}/backgroundLoader.svg`;
|
|
340
|
-
export const tableBlueArrowUpIcon = `${
|
|
341
|
-
export const tableBlueCheckMarkShadowedIcon = `${
|
|
342
|
-
export const cardViewButtonIcon = `${
|
|
343
|
-
export const listViewButtonIcon = `${
|
|
339
|
+
export const tableBlueArrowUpIcon = `${appBaseUrl}/arrowUpBlue1.svg`;
|
|
340
|
+
export const tableBlueCheckMarkShadowedIcon = `${appBaseUrl}/BlueCheckMarkShadowed1.svg`;
|
|
341
|
+
export const cardViewButtonIcon = `${appBaseUrl}/cardViewButton.svg`;
|
|
342
|
+
export const listViewButtonIcon = `${appBaseUrl}/listViewButton1.svg`;
|
|
344
343
|
export const blueArrowUpIcon = `${lightUrl}/BlueArrowUpIcon.svg`;
|
|
345
344
|
export const blueCircleLoaderIcon = `${lightUrl}/BlueCircleLoaderIcon.svg`;
|
|
346
345
|
export const appsGridIcon = `${lightUrl}/appsGridIcon2.svg`;
|
|
@@ -351,7 +350,7 @@ export const agreementInstallmentIcon = `${lightUrl}/status/InstallmentAgreement
|
|
|
351
350
|
export const agreementSavedCardIcon = `${lightUrl}/status/CardAgreementIcon.svg`;
|
|
352
351
|
export const agreementSubscriptionIcon = `${lightUrl}/status/SubscriptionAgreementIcon.svg`;
|
|
353
352
|
export const brandPlaceholderIcon = `${lightUrl}/brandPlaceholder.svg`;
|
|
354
|
-
export const noAgreementIcon = `${
|
|
353
|
+
export const noAgreementIcon = `${appBaseUrl}/No Agreement.svg`;
|
|
355
354
|
export const getPaymentMethodsIcon = (source) => `${lightUrl}/payment-method/v2/${source}.svg`;
|
|
356
355
|
export const getCountriesIcon = (source) => `${lightUrl}/country/${source}.svg`;
|
|
357
356
|
export const getCurrenciesIcon = (currency) => `${cdnUrl}/currency/v2/light/${currency}.svg`;
|
|
@@ -369,7 +368,7 @@ export const tokensWindowIcon = `${lightUrl}/window/tokens.svg`;
|
|
|
369
368
|
export const accountWindowIcon = `${lightUrl}/window/account.svg`;
|
|
370
369
|
export const businessesWindowIcon = `${lightUrl}/window/businesses.svg`;
|
|
371
370
|
export const authenticationWindowIcon = `${lightUrl}/window/authentication.svg`;
|
|
372
|
-
export const reportsWindowIcon = `${
|
|
371
|
+
export const reportsWindowIcon = `${appBaseUrl}/reportsIcon.svg`;
|
|
373
372
|
export const tokensReportsIcon = `${lightUrl}/window/tokensReports.svg`;
|
|
374
373
|
export const windowBrandIcon = `${lightUrl}/window/brand.svg`;
|
|
375
374
|
export const windowEntityIcon = `${lightUrl}/window/entity.svg`;
|
|
@@ -391,7 +390,7 @@ export const pdfGrayIcon = `${lightUrl}/pdfGrayIcon.svg`;
|
|
|
391
390
|
export const productLabel = `${lightUrl}/productLabel.svg`;
|
|
392
391
|
export const quantityIcon = `${lightUrl}/quantityIcon.svg`;
|
|
393
392
|
export const removeAllItem = `${lightUrl}/removeItem.svg`;
|
|
394
|
-
export const removeItem = `${
|
|
393
|
+
export const removeItem = `${appBaseUrl}/removeItem2.svg`;
|
|
395
394
|
export const smsIcon = `${lightUrl}/smsIcon.svg`;
|
|
396
395
|
export const taxIcon = `${lightUrl}/taxIcon.svg`;
|
|
397
396
|
export const totalAmountIcon = `${lightUrl}/totalAmountIcon.svg`;
|
|
@@ -402,14 +401,14 @@ export const newInvoiceIcon = `${lightUrl}/newInvoice.svg`;
|
|
|
402
401
|
export const activeActionIcon = `${lightUrl}/activeActionIcon.svg`;
|
|
403
402
|
export const grayProductLabel = `${lightUrl}/grayProductLabel.svg`;
|
|
404
403
|
export const plusQty = `${lightUrl}/plusQty.svg`;
|
|
405
|
-
export const downArrowIcon3 = `${
|
|
404
|
+
export const downArrowIcon3 = `${appBaseUrl}/downArrow3.svg`;
|
|
406
405
|
export const customerIcon2 = `${lightUrl}/customer.svg`;
|
|
407
|
-
export const noteIcon2 = `${
|
|
408
|
-
export const attachIcon2 = `${
|
|
406
|
+
export const noteIcon2 = `${appBaseUrl}/note.svg`;
|
|
407
|
+
export const attachIcon2 = `${appBaseUrl}/attach.svg`;
|
|
409
408
|
export const lateFeeIcon2 = `${lightUrl}/lateFee.svg`;
|
|
410
409
|
export const addItemIcon = `${lightUrl}/addItemIcon.svg`;
|
|
411
410
|
export const blueCircleCheckIcon = `${lightUrl}/blueCheckIcon.svg`;
|
|
412
|
-
export const trashBinIcon = `${
|
|
411
|
+
export const trashBinIcon = `${appBaseUrl}/trash-bin.svg`;
|
|
413
412
|
export const blueVerifyIcon = `${lightUrl}/blueVerifyIcon.svg`;
|
|
414
413
|
export const darkBlueVerifyIcon = `${lightUrl}/verificationDarkBlue.svg`;
|
|
415
414
|
export const grayVerifyIcon = `${lightUrl}/grayVerifyIcon.svg`;
|
|
@@ -419,7 +418,7 @@ export const closedVerifyIcon = `${lightUrl}/closedVerifyIcon.svg`;
|
|
|
419
418
|
export const archivedVerifyIcon = `${lightUrl}/archivedVerifyIcon.svg`;
|
|
420
419
|
export const penIcon = `${lightUrl}/penIcon.svg`;
|
|
421
420
|
export const getServiceFunctionIcon = (functionCode) => `${lightUrl}/function/${functionCode}.svg`;
|
|
422
|
-
export const listShadowBg = `${
|
|
421
|
+
export const listShadowBg = `${appBaseUrl}/listShadow.svg`;
|
|
423
422
|
export const defaultCountryIcon = `${lightUrl}/defaultCountryIcon.svg`;
|
|
424
423
|
export const defaultDeviceIcon = `${lightUrl}/defaultDeviceIcon.svg`;
|
|
425
424
|
export const biometricIcon = `${lightUrl}/biometric.svg`;
|
|
@@ -427,12 +426,12 @@ export const threeDSIcon = `${lightUrl}/3dsBlue.svg`;
|
|
|
427
426
|
export const createChargeIcon = `${appBaseUrl}/createCharge.svg`;
|
|
428
427
|
export const successCheckIcon = `${appBaseUrl}/successCheck.svg`;
|
|
429
428
|
export const receiptIcon = `${appBaseUrl}/receipt.svg`;
|
|
430
|
-
export const userTimezoneIcon = `${
|
|
431
|
-
export const entityTimezoneIcon = `${
|
|
432
|
-
export const savedTimezoneIcon = `${
|
|
433
|
-
export const smallBlueCheckIcon = `${
|
|
434
|
-
export const fileDownloadBlueIcon = `${
|
|
435
|
-
export const fileDownloadGreyIcon = `${
|
|
429
|
+
export const userTimezoneIcon = `${appBaseUrl}/browserTimezone.svg`;
|
|
430
|
+
export const entityTimezoneIcon = `${appBaseUrl}/entityTimezone.svg`;
|
|
431
|
+
export const savedTimezoneIcon = `${appBaseUrl}/historyTimezone.svg`;
|
|
432
|
+
export const smallBlueCheckIcon = `${appBaseUrl}/smallBlueCheck.svg`;
|
|
433
|
+
export const fileDownloadBlueIcon = `${appBaseUrl}/fileDownloadBlue.svg`;
|
|
434
|
+
export const fileDownloadGreyIcon = `${appBaseUrl}/fileDownloadGrey.svg`;
|
|
436
435
|
export const metaIcon = `${lightUrl}/meta.svg`;
|
|
437
436
|
export const darkFilterIcon = `${lightUrl}/darkFilterIcon.svg`;
|
|
438
437
|
export const homeIcon = `${lightUrl}/home.svg`;
|
|
@@ -469,10 +468,10 @@ export const socialLinksIcon = `${lightUrl}/socialLinksIcon.svg`;
|
|
|
469
468
|
export const smallLeftArrowIcon = `${lightUrl}/smallLeftArrow.svg`;
|
|
470
469
|
export const searchBlueIcon = `${lightUrl}/searchBlueIcon.svg`;
|
|
471
470
|
export const rightLightArrowIcon = `${appBaseUrl}/rightLightArrow.svg`;
|
|
472
|
-
export const segmentInstitutionIcon = `${
|
|
473
|
-
export const segmentTechnologyIcon = `${
|
|
474
|
-
export const segmentDevelopmentHouseIcon = `${
|
|
475
|
-
export const terminalAppIcon = `${
|
|
471
|
+
export const segmentInstitutionIcon = `${appBaseUrl}/segmentInstitution.svg`;
|
|
472
|
+
export const segmentTechnologyIcon = `${appBaseUrl}/segmentTechnology.svg`;
|
|
473
|
+
export const segmentDevelopmentHouseIcon = `${appBaseUrl}/segmentDevelopmentHouse.svg`;
|
|
474
|
+
export const terminalAppIcon = `${appBaseUrl}/terminal.svg`;
|
|
476
475
|
export const terminalWindowIcon = `${lightUrl}/window/terminal.svg`;
|
|
477
476
|
export const terminalCardPhone = `${lightUrl}/terminalCardPhone.svg`;
|
|
478
477
|
export const toastPOSIcon = `${lightUrl}/ToastPOS.svg`;
|
|
@@ -486,3 +485,4 @@ export const bankNoteIcon = `${lightUrl}/bankNoteIcon.svg`;
|
|
|
486
485
|
export const terminalDeviceFrame = `${lightUrl}/terminalDeviceFrame.svg`;
|
|
487
486
|
export const blackBrushIcon = `${lightUrl}/blackBrushIcon.svg`;
|
|
488
487
|
export const mutedOutlinedCheckIcon = `${lightUrl}/mutedOutlinedCheckIcon.svg`;
|
|
488
|
+
export const outlinedPlatformIcon = `${lightUrl}/outlinedPlatformIcon.svg`;
|
package/package.json
CHANGED