@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.
@@ -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.b-cdn.net';
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 = `${lightUrl}/other/captureDropdown.svg`;
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 = `${lightUrl}/other/copyIcon.svg`;
50
- export const codeIcon = `${lightUrl}/other/codeIcon.svg`;
51
- export const greenCheckIcon = `${lightUrl}/other/GreenCheckMark2.svg`;
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 = `${lightUrl}/other/demaximize.svg`;
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 = `${lightUrl}/other/newWindow.svg`;
75
- export const viewAllIcon = `${lightUrl}/other/viewAll.svg`;
76
- export const hideIcon = `${lightUrl}/other/hide.svg`;
77
- export const quitIcon = `${lightUrl}/other/close.svg`;
78
- export const starIcon = `${lightUrl}/other/star.svg`;
79
- export const closeCircle = `${lightUrl}/other/closeCircle.svg`;
80
- export const acquirerIcon = `${lightUrl}/other/acquirer.svg`;
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 = `${lightUrl}/other/acquirerRed.svg`;
83
- export const gatewayIcon = `${lightUrl}/other/gateway.svg`;
84
- export const acquirerOrangeIcon = `${lightUrl}/other/acquirerOrange.svg`;
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 = `${lightUrl}/other/merchantInitiated.svg`;
87
- export const rightArrow = `${lightUrl}/other/rightArow.svg`;
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 = `${lightUrl}/other/orangeFlag.svg`;
90
- export const openFlagIcon = `${lightUrl}/other/openFlag.svg`;
91
- export const closedFlagIcon = `${lightUrl}/other/closedFlag.svg`;
92
- export const redFlagIcon = `${lightUrl}/other/redFlag.svg`;
93
- export const grayFlagIcon = `${lightUrl}/other/grayFlag.svg`;
94
- export const downArrowIcon = `${lightUrl}/other/downArrow.svg`;
95
- export const checkIcon = `${lightUrl}/other/check.svg`;
96
- export const closeXIcon = `${lightUrl}/other/closeX.svg`;
97
- export const dragIcon = `${lightUrl}/other/drag.svg`;
98
- export const checkboxIcon = `${lightUrl}/other/checkboxIcon.svg`;
99
- export const protectIcon = `${lightUrl}/other/checkboxIcon.svg`;
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 = `${lightUrl}/other/walletSmall.svg`;
118
- export const bankIcon = `${lightUrl}/other/bank.svg`;
119
- export const hijriIcon = `${lightUrl}/other/hijri.svg`;
120
- export const darkLeftArrowIcon = `${lightUrl}/other/darkLeftArrow.svg`;
121
- export const darkRightArrowIcon = `${lightUrl}/other/darkRightArrow.svg`;
122
- export const spinnerLoadingIcon = `${lightUrl}/other/spinnerLoading.svg`;
123
- export const spinnerLoadingAnimatedIcon = `${lightUrl}/other/spinnerLoadingAnimated.svg`;
124
- export const actionFailIcon = `${lightUrl}/other/actionFail.svg`;
125
- export const actionSuccessIcon = `${lightUrl}/other/actionSuccess.svg`;
126
- export const checkMarkIcon = `${lightUrl}/other/checkMark.svg`;
127
- export const logOutIcon = `${lightUrl}/other/logout.svg`;
128
- export const preferencesIcon = `${lightUrl}/other/preferences.svg`;
129
- export const transformIcon = `${lightUrl}/other/transform.svg`;
130
- export const tokenAppIcon = `${lightUrl}/other/token.svg`;
131
- export const billingAppIcon = `${lightUrl}/other/billing.svg`;
132
- export const receiptBillIcon = `${lightUrl}/other/receiptBill.svg`;
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 = `${lightUrl}/other/acceptance.svg`;
134
+ export const acceptanceAppIcon = `${appBaseUrl}/acceptance.svg`;
135
135
  export const acceptanceEnabledIcon = `${lightUrl}/acceptanceEnabled.svg`;
136
- export const acceptanceAppDisabledIcon = `${lightUrl}/other/acceptanceAppIconDisabled.svg`;
137
- export const payoutAppDisabledIcon = `${lightUrl}/other/payoutsAppIconDisabled.svg`;
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 = `${lightUrl}/other/AuthenticationApp.svg`;
142
- export const walletAppIcon = `${lightUrl}/other/walletApp.svg`;
143
- export const payoutsAppIcon = `${lightUrl}/other/payouts.svg`;
144
- export const protectAppIcon = `${lightUrl}/other/protect.svg`;
145
- export const customersAppIcon = `${lightUrl}/other/customers.svg`;
146
- export const businessesAppIcon = `${lightUrl}/other/business.svg`;
147
- export const accountAppIcon = `${lightUrl}/other/account.svg`;
148
- export const unCheckedIcon = `${lightUrl}/other/disableCheck.svg`;
149
- export const wifiOffIcon = `${lightUrl}/other/wifiOff.svg`;
150
- export const SandboxHovered = `${lightUrl}/other/SandboxHovered.svg`;
151
- export const SandboxDefault = `${lightUrl}/other/Sandbox.svg`;
152
- export const warningInfoIcon = `${lightUrl}/other/ExclamationError.svg`;
153
- export const greyCheckIcon = `${lightUrl}/other/greyCheck.svg`;
154
- export const greyCrossIcon = `${lightUrl}/other/greyCross.svg`;
155
- export const blueCheckIcon = `${lightUrl}/other/blueCheck.svg`;
156
- export const disabledCheckIcon = `${lightUrl}/other/disabledCheck.svg`;
157
- export const darkCheckIcon = `${lightUrl}/other/darkCheck.svg`;
158
- export const collapseArrowIcon = `${lightUrl}/other/collapseArrow.svg`;
159
- export const worldIcon = `${lightUrl}/other/world.svg`;
160
- export const grayUpArrowIcon = `${lightUrl}/other/grayUpArrow.svg`;
161
- export const blackHeadingDownArrow = `${lightUrl}/other/blackHeadingDownArrowIcon.svg`;
162
- export const blueHeadingDropdownArrow = `${lightUrl}/other/blueHeadingDropdownArrow.svg`;
163
- export const blueDropdownArrowIcon = `${lightUrl}/other/dropdownArrow.svg`;
164
- export const greyDropdownIcon = `${lightUrl}/other/greyDropdownIcon.svg`;
165
- export const businessSegmentIcon = `${lightUrl}/other/business2.svg`;
166
- export const providerSegmentIcon = `${lightUrl}/other/provider.svg`;
167
- export const financialSegmentIcon = `${lightUrl}/other/financial.svg`;
168
- export const developmentSegmentIcon = `${lightUrl}/other/development.svg`;
169
- export const platformSegmentIcon = `${lightUrl}/other/platform.svg`;
170
- export const lightPlatformSegmentIcon = `${lightUrl}/other/light_platform.svg`;
171
- export const grayBrandIcon = `${lightUrl}/other/brandGray.svg`;
172
- export const jsonIcon = `${lightUrl}/other/json.svg`;
173
- export const jsonBlackIcon = `${lightUrl}/other/jsonBlackIcon.svg`;
174
- export const sortIcon = `${lightUrl}/other/sort1.svg`;
175
- export const SandboxHoveredLightIcon = `${lightUrl}/other/SandboxHoveredLight.svg`;
176
- export const emailChannelIcon = `${lightUrl}/other/emailColoured.svg`;
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 = `${lightUrl}/other/smsColoured.svg`;
181
- export const whatsappChannelIcon = `${lightUrl}/other/whatsAppColored.svg`;
182
- export const dueDateBlueIcon = `${lightUrl}/other/dueDateBlue.svg`;
183
- export const dueDateOrangeIcon = `${lightUrl}/other/dueDateOrange.svg`;
184
- export const dueDateYellowIcon = `${lightUrl}/other/dueDateYellow.svg`;
185
- export const dueDateRedIcon = `${lightUrl}/other/dueDateRed.svg`;
186
- export const dueDateBlackIcon = `${lightUrl}/other/dueDateBlack.svg`;
187
- export const dueDateGrayIcon = `${lightUrl}/other/dueDateGray.svg`;
188
- export const timerBlueIcon = `${lightUrl}/other/timerBlue.svg`;
189
- export const expiredIcon = `${lightUrl}/other/expiredIcon.svg`;
190
- export const remindedIcon = `${lightUrl}/other/invoiceReminder.svg`;
191
- export const remindedRedIcon = `${lightUrl}/other/remindedRed.svg`;
192
- export const chevronWhiteIcon = `${lightUrl}/other/chevronWhite.svg`;
193
- export const chevronGrayIcon = `${lightUrl}/other/chevronGray.svg`;
194
- export const notVerifiedIcon = `${lightUrl}/other/notVerified.svg`;
195
- export const verifiedIcon = `${lightUrl}/other/verified.svg`;
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 = `${lightUrl}/other/collapseArrowsIcon.svg`;
203
- export const expandArrowsIcon = `${lightUrl}/other/expandArrowsIcon.svg`;
204
- export const greenArrowRightIcon = `${lightUrl}/other/greenArrowRight.svg`;
205
- export const greenArrowLeftIcon = `${lightUrl}/other/greenArrowLeft1.svg`;
206
- export const greenArrowUpIcon = `${lightUrl}/other/greenIconWithArrowUp.svg`;
207
- export const whiteArrowRightIcon = `${lightUrl}/other/whiteArrowRight.svg`;
208
- export const whiteArrowLeftIcon = `${lightUrl}/other/whiteArrowLeft.svg`;
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 = `${lightUrl}/other/uploadIcon.svg`;
216
- export const uploadBlueIcon = `${lightUrl}/other/uploadBlueIcon.svg`;
217
- export const sandboxHoveredIcon = `${lightUrl}/other/SandboxHovered.svg`;
218
- export const sandboxDefaultIcon = `${lightUrl}/other/sandboxDefaultIcon.svg`;
219
- export const sandboxOrangeIcon = `${lightUrl}/other/SandboxIcon.svg`;
220
- export const clockIcon = `${lightUrl}/other/clock.svg`;
221
- export const redCloseIcon = `${lightUrl}/other/RedClose.svg`;
222
- export const xlsIcon = `${lightUrl}/other/xls.svg`;
223
- export const csvIcon = `${lightUrl}/other/csv.svg`;
224
- export const pdfIcon = `${lightUrl}/other/pdf.svg`;
225
- export const reportIcon = `${lightUrl}/other/Download.svg`;
226
- export const reportsIconOutlined = `${lightUrl}/other/reportsIconOutlined.svg`;
227
- export const doneIcon = `${lightUrl}/other/Done.svg`;
228
- export const reportAppsIcon = `${lightUrl}/other/reportApps.svg`;
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 = `${lightUrl}/other/OrderApp.svg`;
233
- export const orderWindowIcon = `${lightUrl}/other/OrderTitleIcon.svg`;
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 = `${lightUrl}/other/deletedStatus1.svg`;
238
- export const draftStatusIcon = `${lightUrl}/other/draftedStatus1.svg`;
239
- export const createdStatusIcon = `${lightUrl}/other/createdStatus1.svg`;
240
- export const cancelledStatusIcon = `${lightUrl}/other/cancelledStatus1.svg`;
241
- export const expiredStatusIcon = `${lightUrl}/other/expiredStatus1.svg`;
242
- export const paidStatusIcon = `${lightUrl}/other/paidStatus1.svg`;
243
- export const deliveredStatusIcon = `${lightUrl}/other/deliveredStatus1.svg`;
244
- export const viewedStatusIcon = `${lightUrl}/other/viewedStatus1.svg`;
245
- export const savedStatusIcon = `${lightUrl}/other/savedStatus1.svg`;
246
- export const scheduledStatusIcon = `${lightUrl}/other/scheduledStatus1.svg`;
247
- export const pendingStatusIcon = `${lightUrl}/other/invoicePendingStatus2.svg`;
248
- export const refundedStatusIcon = `${lightUrl}/other/invoiceRefundedStatus2.svg`;
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 = `${lightUrl}/other/chatDisabledIcon.svg`;
256
+ export const chatDisabledIcon = `${appBaseUrl}/chatDisabledIcon.svg`;
258
257
  export const exclamationDarkIcon = `${lightUrl}/exclamationDarkIcon.svg`;
259
- export const exclamationWarningIcon = `${lightUrl}/other/exclamationWarning.svg`;
258
+ export const exclamationWarningIcon = `${appBaseUrl}/exclamationWarning.svg`;
260
259
  export const exclamationErrorIcon = `${lightUrl}/exclamationError.svg`;
261
- export const greenCheckV2Icon = `${lightUrl}/other/greenCheckV2.svg`;
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 = `${lightUrl}/other/greyApple.svg`;
266
- export const greyLocationIcon = `${lightUrl}/other/greyLocationIcon.svg`;
267
- export const greyDesktopIcon = `${lightUrl}/other/greyDesktopIcon.svg`;
268
- export const darkGreyTimezoneIcon = `${lightUrl}/other/greyTimezone.svg`;
269
- export const safariIcon = `${lightUrl}/other/safariBrowser.svg`;
270
- export const chromeIcon = `${lightUrl}/other/chromeBrowser.svg`;
271
- export const firefoxIcon = `${lightUrl}/other/firefoxBrowser.svg`;
272
- export const edgeIcon = `${lightUrl}/other/edgeBrowser.svg`;
273
- export const operaIcon = `${lightUrl}/other/operaBrowser.svg`;
274
- export const braveIcon = `${lightUrl}/other/braveBrowser.svg`;
275
- export const arcIcon = `${lightUrl}/other/arcBrowser.svg`;
276
- export const chromiumIcon = `${lightUrl}/other/chromiumBrowser.svg`;
277
- export const userIcon = `${lightUrl}/other/userIcon.svg`;
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 = `${lightUrl}/other/DestinationWithoutBackground.svg`;
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 = `${lightUrl}/other/destinationSuccess.svg`;
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 = `${lightUrl}/other/viewInvoice.svg`;
310
- export const checkoutStatusIcon = `${lightUrl}/other/checkoutStatus.svg`;
311
- export const checkoutStatusBlueIcon = `${lightUrl}/other/checkStatusOutBlue.svg`;
312
- export const checkoutWithMarkStatusIcon = `${lightUrl}/other/checkoutWithMarkStatus.svg`;
313
- export const intentExpiredStatusIcon = `${lightUrl}/other/intentExpiredStatus.svg`;
314
- export const intentInitiatedStatusIcon = `${lightUrl}/other/intentInitiatedStatus.svg`;
315
- export const intentCancelledStatusIcon = `${lightUrl}/other/intentCancelledStatus.svg`;
316
- export const intentTransactedStatusIcon = `${lightUrl}/other/intentTransactedStatus.svg`;
317
- export const longWordsIcon = `${lightUrl}/other/longWordsIcon.svg`;
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 = `${lightUrl}/other/whiteCloseIcon.svg`;
321
+ export const whiteCloseIcon = `${appBaseUrl}/whiteCloseIcon.svg`;
323
322
  export const emptyIcon = `${lightUrl}/window/empty.svg`;
324
- export const reverseActionIcon = `${lightUrl}/other/reverseActionIcon.svg`;
325
- export const authenticationWalletIcon = `${lightUrl}/other/authenticationWallet.svg`;
326
- export const authenticationAppTypeIcon = `${lightUrl}/other/authenticationApp.svg`;
327
- export const authenticationBiometricIcon = `${lightUrl}/other/authenticationBiometric.svg`;
328
- export const authenticationDeviceIcon = `${lightUrl}/other/authenticationDevice.svg`;
329
- export const authenticationIssuerIcon = `${lightUrl}/other/authenticationIssuer.svg`;
330
- export const authenticationSchemeIcon = `${lightUrl}/other/authenticationScheme.svg`;
331
- export const switcherIcon = `${lightUrl}/other/switcher.svg`;
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 = `${lightUrl}/other/tokenCardIcon.svg`;
337
- export const tableLoadingSpinnerIcon = `${lightUrl}/other/TableloadingSpinner.svg`;
338
- export const tableLoadingSpinnerWhiteIcon = `${lightUrl}/other/loadingSpinnerWhite.svg`;
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 = `${lightUrl}/other/arrowUpBlue1.svg`;
341
- export const tableBlueCheckMarkShadowedIcon = `${lightUrl}/other/BlueCheckMarkShadowed1.svg`;
342
- export const cardViewButtonIcon = `${lightUrl}/other/cardViewButton.svg`;
343
- export const listViewButtonIcon = `${lightUrl}/other/listViewButton1.svg`;
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 = `${lightUrl}/other/No Agreement.svg`;
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 = `${lightUrl}/other/reportsIcon.svg`;
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 = `${lightUrl}/other/removeItem2.svg`;
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 = `${lightUrl}/other/downArrow3.svg`;
404
+ export const downArrowIcon3 = `${appBaseUrl}/downArrow3.svg`;
406
405
  export const customerIcon2 = `${lightUrl}/customer.svg`;
407
- export const noteIcon2 = `${lightUrl}/other/note.svg`;
408
- export const attachIcon2 = `${lightUrl}/other/attach.svg`;
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 = `${lightUrl}/other/trash-bin.svg`;
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 = `${lightUrl}/other/listShadow.svg`;
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 = `${lightUrl}/other/browserTimezone.svg`;
431
- export const entityTimezoneIcon = `${lightUrl}/other/entityTimezone.svg`;
432
- export const savedTimezoneIcon = `${lightUrl}/other/historyTimezone.svg`;
433
- export const smallBlueCheckIcon = `${lightUrl}/other/smallBlueCheck.svg`;
434
- export const fileDownloadBlueIcon = `${lightUrl}/other/fileDownloadBlue.svg`;
435
- export const fileDownloadGreyIcon = `${lightUrl}/other/fileDownloadGrey.svg`;
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 = `${lightUrl}/other/segmentInstitution.svg`;
473
- export const segmentTechnologyIcon = `${lightUrl}/other/segmentTechnology.svg`;
474
- export const segmentDevelopmentHouseIcon = `${lightUrl}/other/segmentDevelopmentHouse.svg`;
475
- export const terminalAppIcon = `${lightUrl}/other/terminal.svg`;
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.0.73",
4
+ "version": "0.0.74",
5
5
  "type": "module",
6
6
  "main": "build/index.js",
7
7
  "module": "build/index.js",