@tap-payments/os-micro-frontend-shared 0.0.74 → 0.0.75-pin-icon-v13
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/LICENSE +21 -21
- package/README.md +12 -12
- package/build/components/VirtualTable/SheetViewVirtualTable.d.ts +9 -0
- package/build/components/VirtualTable/SheetViewVirtualTable.js +163 -0
- package/build/components/VirtualTable/components/ColumnFilter/Inputs/Inputs.js +8 -3
- package/build/components/VirtualTable/components/SheetViewTableHeader.d.ts +24 -0
- package/build/components/VirtualTable/components/SheetViewTableHeader.js +99 -0
- package/build/components/VirtualTable/components/virtualScroll/ListItemWrapper.d.ts +1 -1
- package/build/components/VirtualTable/components/virtualScroll/ListItemWrapper.js +6 -2
- package/build/components/VirtualTable/components/virtualScroll/VirtualScrollList.d.ts +4 -5
- package/build/components/VirtualTable/components/virtualScroll/VirtualScrollList.js +3 -3
- package/build/components/VirtualTable/style.d.ts +1 -1
- package/build/components/VirtualTable/style.js +3 -0
- package/build/components/index.d.ts +1 -0
- package/build/components/index.js +1 -0
- package/build/constants/assets.d.ts +3 -1
- package/build/constants/assets.js +199 -197
- package/build/types/table.d.ts +2 -0
- package/package.json +129 -129
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const cdnUrl = 'https://
|
|
1
|
+
const cdnUrl = 'https://tap-assets.b-cdn.net';
|
|
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 = `${lightUrl}/other/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 = `${lightUrl}/other/copyIcon.svg`;
|
|
50
|
+
export const codeIcon = `${lightUrl}/other/codeIcon.svg`;
|
|
51
|
+
export const greenCheckIcon = `${lightUrl}/other/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 = `${lightUrl}/other/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 = `${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`;
|
|
81
81
|
export const genericIconNew = `${lightUrl}/GenericIconNew.svg`;
|
|
82
|
-
export const acquirerRedIcon = `${
|
|
83
|
-
export const gatewayIcon = `${
|
|
84
|
-
export const acquirerOrangeIcon = `${
|
|
82
|
+
export const acquirerRedIcon = `${lightUrl}/other/acquirerRed.svg`;
|
|
83
|
+
export const gatewayIcon = `${lightUrl}/other/gateway.svg`;
|
|
84
|
+
export const acquirerOrangeIcon = `${lightUrl}/other/acquirerOrange.svg`;
|
|
85
85
|
export const capturedAuthorizeIcon = `${lightUrl}/status/capturedAuthorize.svg`;
|
|
86
|
-
export const merchantInitiatedIcon = `${
|
|
87
|
-
export const rightArrow = `${
|
|
86
|
+
export const merchantInitiatedIcon = `${lightUrl}/other/merchantInitiated.svg`;
|
|
87
|
+
export const rightArrow = `${lightUrl}/other/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 = `${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`;
|
|
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,137 +114,138 @@ 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 = `${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`;
|
|
133
133
|
export const newReceiptIcon = `${lightUrl}/newReceiptIcon.svg`;
|
|
134
|
-
export const acceptanceAppIcon = `${
|
|
134
|
+
export const acceptanceAppIcon = `${lightUrl}/other/acceptance.svg`;
|
|
135
135
|
export const acceptanceEnabledIcon = `${lightUrl}/acceptanceEnabled.svg`;
|
|
136
|
-
export const acceptanceAppDisabledIcon = `${
|
|
137
|
-
export const payoutAppDisabledIcon = `${
|
|
136
|
+
export const acceptanceAppDisabledIcon = `${lightUrl}/other/acceptanceAppIconDisabled.svg`;
|
|
137
|
+
export const payoutAppDisabledIcon = `${lightUrl}/other/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 = `${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`;
|
|
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
|
|
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`;
|
|
196
197
|
export const attentionIcon = `${lightUrl}/window/attention.svg`;
|
|
197
198
|
export const initialAcceptanceIcon = `${lightUrl}/window/initalAcceptance.svg`;
|
|
198
199
|
export const completedAcceptanceIcon = `${lightUrl}/window/completedAcceptance.svg`;
|
|
199
200
|
export const initialPayoutsIcon = `${lightUrl}/window/initalPayouts.svg`;
|
|
200
201
|
export const completedPayoutsIcon = `${lightUrl}/window/completedPayouts.svg`;
|
|
201
|
-
export const collapseArrowsIcon = `${
|
|
202
|
-
export const expandArrowsIcon = `${
|
|
203
|
-
export const greenArrowRightIcon = `${
|
|
204
|
-
export const greenArrowLeftIcon = `${
|
|
205
|
-
export const greenArrowUpIcon = `${
|
|
206
|
-
export const whiteArrowRightIcon = `${
|
|
207
|
-
export const whiteArrowLeftIcon = `${
|
|
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`;
|
|
208
209
|
export const HSBCBankIcon = `${lightUrl}/HSBCBank.svg`;
|
|
209
210
|
export const shopifyBadgeIcon = `${lightUrl}/shopifyIcon.svg`;
|
|
210
211
|
export const verifiedGreenBadgeIcon = `${lightUrl}/verifiedGreenBadge.svg`;
|
|
211
212
|
export const backButtonLeftIcon = `${lightUrl}/backButtonLeft.svg`;
|
|
212
213
|
export const eyeHideIcon = `${lightUrl}/eyeHideIcon.svg`;
|
|
213
214
|
export const eyeShowIcon = `${lightUrl}/eyeShowIcon.svg`;
|
|
214
|
-
export const uploadIcon = `${
|
|
215
|
-
export const uploadBlueIcon = `${
|
|
216
|
-
export const sandboxHoveredIcon = `${
|
|
217
|
-
export const sandboxDefaultIcon = `${
|
|
218
|
-
export const sandboxOrangeIcon = `${
|
|
219
|
-
export const clockIcon = `${
|
|
220
|
-
export const redCloseIcon = `${
|
|
221
|
-
export const xlsIcon = `${
|
|
222
|
-
export const csvIcon = `${
|
|
223
|
-
export const pdfIcon = `${
|
|
224
|
-
export const reportIcon = `${
|
|
225
|
-
export const reportsIconOutlined = `${
|
|
226
|
-
export const doneIcon = `${
|
|
227
|
-
export const reportAppsIcon = `${
|
|
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`;
|
|
228
229
|
export const reportAppIcon = `${lightUrl}/window/ReportsApp.svg`;
|
|
229
230
|
export const leadAppIcon = `${lightUrl}/window/leadApp.svg`;
|
|
230
231
|
export const leadTitleIcon = `${lightUrl}/window/leadTitleIcon.svg`;
|
|
231
|
-
export const orderAppIcon = `${
|
|
232
|
-
export const orderWindowIcon = `${
|
|
232
|
+
export const orderAppIcon = `${lightUrl}/other/OrderApp.svg`;
|
|
233
|
+
export const orderWindowIcon = `${lightUrl}/other/OrderTitleIcon.svg`;
|
|
233
234
|
export const dottedLine = `${lightUrl}/dottedLine.svg`;
|
|
234
235
|
export const dollarSignIcon = `${lightUrl}/dollarSign.svg`;
|
|
235
236
|
export const reloadIcon = `${lightUrl}/reload.svg`;
|
|
236
|
-
export const deletedStatusIcon = `${
|
|
237
|
-
export const draftStatusIcon = `${
|
|
238
|
-
export const createdStatusIcon = `${
|
|
239
|
-
export const cancelledStatusIcon = `${
|
|
240
|
-
export const expiredStatusIcon = `${
|
|
241
|
-
export const paidStatusIcon = `${
|
|
242
|
-
export const deliveredStatusIcon = `${
|
|
243
|
-
export const viewedStatusIcon = `${
|
|
244
|
-
export const savedStatusIcon = `${
|
|
245
|
-
export const scheduledStatusIcon = `${
|
|
246
|
-
export const pendingStatusIcon = `${
|
|
247
|
-
export const refundedStatusIcon = `${
|
|
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`;
|
|
248
249
|
export const newFileIcon = `${lightUrl}/newFileIcon.svg`;
|
|
249
250
|
export const teamWindowIcon = `${lightUrl}/teamWindowIcon.svg`;
|
|
250
251
|
export const blueAppsIcon = `${lightUrl}/blueAppsIcon.svg`;
|
|
@@ -253,27 +254,27 @@ export const disabledCodeIcon = `${lightUrl}/disabledCodeIcon.svg`;
|
|
|
253
254
|
export const layersIcon = `${lightUrl}/layersIcon.svg`;
|
|
254
255
|
export const pendingOnTapIcon = `${lightUrl}/status/pendingOnTapIcon.svg`;
|
|
255
256
|
export const leadWhiteIcon = `${lightUrl}/leadWhiteIcon.svg`;
|
|
256
|
-
export const chatDisabledIcon = `${
|
|
257
|
+
export const chatDisabledIcon = `${lightUrl}/other/chatDisabledIcon.svg`;
|
|
257
258
|
export const exclamationDarkIcon = `${lightUrl}/exclamationDarkIcon.svg`;
|
|
258
|
-
export const exclamationWarningIcon = `${
|
|
259
|
+
export const exclamationWarningIcon = `${lightUrl}/other/exclamationWarning.svg`;
|
|
259
260
|
export const exclamationErrorIcon = `${lightUrl}/exclamationError.svg`;
|
|
260
|
-
export const greenCheckV2Icon = `${
|
|
261
|
+
export const greenCheckV2Icon = `${lightUrl}/other/greenCheckV2.svg`;
|
|
261
262
|
export const iosIcon = `${lightUrl}/iosIcon1.svg`;
|
|
262
263
|
export const androidIcon = `${lightUrl}/androidIcon.svg`;
|
|
263
264
|
export const websiteIcon = `${lightUrl}/websiteIcon.svg`;
|
|
264
|
-
export const greyAppleIcon = `${
|
|
265
|
-
export const greyLocationIcon = `${
|
|
266
|
-
export const greyDesktopIcon = `${
|
|
267
|
-
export const darkGreyTimezoneIcon = `${
|
|
268
|
-
export const safariIcon = `${
|
|
269
|
-
export const chromeIcon = `${
|
|
270
|
-
export const firefoxIcon = `${
|
|
271
|
-
export const edgeIcon = `${
|
|
272
|
-
export const operaIcon = `${
|
|
273
|
-
export const braveIcon = `${
|
|
274
|
-
export const arcIcon = `${
|
|
275
|
-
export const chromiumIcon = `${
|
|
276
|
-
export const userIcon = `${
|
|
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`;
|
|
277
278
|
export const abandonedTableIcon = `${lightUrl}/status/table/abandoned.svg`;
|
|
278
279
|
export const cancelledTableIcon = `${lightUrl}/status/table/cancelled.svg`;
|
|
279
280
|
export const capturedTableIcon = `${lightUrl}/status/table/captured.svg`;
|
|
@@ -282,12 +283,12 @@ export const chargeBackRequestedTableIcon = `${lightUrl}/status/table/chargeBack
|
|
|
282
283
|
export const completedTableIcon = `${lightUrl}/status/table/completed.svg`;
|
|
283
284
|
export const declinedTableIcon = `${lightUrl}/status/table/declined.svg`;
|
|
284
285
|
export const destinationReversedTableIcon = `${lightUrl}/status/table/destinationReversed.svg`;
|
|
285
|
-
export const destinationWithoutBackgroundIcon = `${
|
|
286
|
+
export const destinationWithoutBackgroundIcon = `${lightUrl}/other/DestinationWithoutBackground.svg`;
|
|
286
287
|
export const disputeResolvedTableIcon = `${lightUrl}/status/table/disputeResolved.svg`;
|
|
287
288
|
export const failedTableIcon = `${lightUrl}/status/table/failed.svg`;
|
|
288
289
|
export const failedNoBgTableIcon = `${lightUrl}/status/table/failedNoBG.svg`;
|
|
289
290
|
export const declinedNoBgTableIcon = `${lightUrl}/status/table/declinedNoBg.svg`;
|
|
290
|
-
export const destinationSuccessTableIcon = `${
|
|
291
|
+
export const destinationSuccessTableIcon = `${lightUrl}/other/destinationSuccess.svg`;
|
|
291
292
|
export const authenticationFailedTableIcon = `${lightUrl}/status/authenticationFailed.svg`;
|
|
292
293
|
export const authenticatedIcon = `${lightUrl}/status/table/authenticated.svg`;
|
|
293
294
|
export const scheduledFilterIcon = `${lightUrl}/paidOutFilterIcon.svg`;
|
|
@@ -305,41 +306,43 @@ export const authenticationWithoutTransactionIcon = `${lightUrl}/status/Authenti
|
|
|
305
306
|
export const authenticationWithTransactionIcon = `${lightUrl}/status/authenticationWithTransaction1 2.svg`;
|
|
306
307
|
export const authenticatedSuccessIcon = `${lightUrl}/status/AuthenticationAuthenticated.svg`;
|
|
307
308
|
export const authenticationPendingIcon = `${lightUrl}/status/authenticationPending2.svg`;
|
|
308
|
-
export const viewInvoiceIcon = `${
|
|
309
|
-
export const checkoutStatusIcon = `${
|
|
310
|
-
export const checkoutStatusBlueIcon = `${
|
|
311
|
-
export const checkoutWithMarkStatusIcon = `${
|
|
312
|
-
export const intentExpiredStatusIcon = `${
|
|
313
|
-
export const intentInitiatedStatusIcon = `${
|
|
314
|
-
export const intentCancelledStatusIcon = `${
|
|
315
|
-
export const intentTransactedStatusIcon = `${
|
|
316
|
-
export const longWordsIcon = `${
|
|
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`;
|
|
317
318
|
export const abandonedNoBGIcon = `${lightUrl}/abandonedNoBG.svg`;
|
|
318
319
|
export const paidOutTableIcon = `${lightUrl}/status/table/paidOut.svg`;
|
|
319
320
|
export const reversePayoutTableIcon = `${lightUrl}/status/table/reversePayout.svg`;
|
|
320
321
|
export const pendingPayoutIcon = `${lightUrl}/status/pendingPayout.svg`;
|
|
321
|
-
export const whiteCloseIcon = `${
|
|
322
|
+
export const whiteCloseIcon = `${lightUrl}/other/whiteCloseIcon.svg`;
|
|
322
323
|
export const emptyIcon = `${lightUrl}/window/empty.svg`;
|
|
323
|
-
export const reverseActionIcon = `${
|
|
324
|
-
export const authenticationWalletIcon = `${
|
|
325
|
-
export const authenticationAppTypeIcon = `${
|
|
326
|
-
export const authenticationBiometricIcon = `${
|
|
327
|
-
export const authenticationDeviceIcon = `${
|
|
328
|
-
export const authenticationIssuerIcon = `${
|
|
329
|
-
export const authenticationSchemeIcon = `${
|
|
330
|
-
export const
|
|
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 pinIcon = `${lightUrl}/Pin.svg`;
|
|
332
|
+
export const unpinIcon = `${lightUrl}/unpin.svg`;
|
|
333
|
+
export const switcherIcon = `${lightUrl}/other/switcher.svg`;
|
|
331
334
|
export const tokenSavedStatusIcon = `${lightUrl}/status/table/tokensSaved.svg`;
|
|
332
335
|
export const tokenTransactedStatusIcon = `${lightUrl}/status/table/tokensTransacted.svg`;
|
|
333
336
|
export const tokenExpiredStatusIcon = `${lightUrl}/status/table/tokensExpired.svg`;
|
|
334
337
|
export const tokenPendingStatusIcon = `${lightUrl}/status/table/tokensPending.svg`;
|
|
335
|
-
export const tokenCardIcon = `${
|
|
336
|
-
export const tableLoadingSpinnerIcon = `${
|
|
337
|
-
export const tableLoadingSpinnerWhiteIcon = `${
|
|
338
|
+
export const tokenCardIcon = `${lightUrl}/other/tokenCardIcon.svg`;
|
|
339
|
+
export const tableLoadingSpinnerIcon = `${lightUrl}/other/TableloadingSpinner.svg`;
|
|
340
|
+
export const tableLoadingSpinnerWhiteIcon = `${lightUrl}/other/loadingSpinnerWhite.svg`;
|
|
338
341
|
export const tableBackgroundLoader = `${lightUrl}/backgroundLoader.svg`;
|
|
339
|
-
export const tableBlueArrowUpIcon = `${
|
|
340
|
-
export const tableBlueCheckMarkShadowedIcon = `${
|
|
341
|
-
export const cardViewButtonIcon = `${
|
|
342
|
-
export const listViewButtonIcon = `${
|
|
342
|
+
export const tableBlueArrowUpIcon = `${lightUrl}/other/arrowUpBlue1.svg`;
|
|
343
|
+
export const tableBlueCheckMarkShadowedIcon = `${lightUrl}/other/BlueCheckMarkShadowed1.svg`;
|
|
344
|
+
export const cardViewButtonIcon = `${lightUrl}/other/cardViewButton.svg`;
|
|
345
|
+
export const listViewButtonIcon = `${lightUrl}/other/listViewButton1.svg`;
|
|
343
346
|
export const blueArrowUpIcon = `${lightUrl}/BlueArrowUpIcon.svg`;
|
|
344
347
|
export const blueCircleLoaderIcon = `${lightUrl}/BlueCircleLoaderIcon.svg`;
|
|
345
348
|
export const appsGridIcon = `${lightUrl}/appsGridIcon2.svg`;
|
|
@@ -350,7 +353,7 @@ export const agreementInstallmentIcon = `${lightUrl}/status/InstallmentAgreement
|
|
|
350
353
|
export const agreementSavedCardIcon = `${lightUrl}/status/CardAgreementIcon.svg`;
|
|
351
354
|
export const agreementSubscriptionIcon = `${lightUrl}/status/SubscriptionAgreementIcon.svg`;
|
|
352
355
|
export const brandPlaceholderIcon = `${lightUrl}/brandPlaceholder.svg`;
|
|
353
|
-
export const noAgreementIcon = `${
|
|
356
|
+
export const noAgreementIcon = `${lightUrl}/other/No Agreement.svg`;
|
|
354
357
|
export const getPaymentMethodsIcon = (source) => `${lightUrl}/payment-method/v2/${source}.svg`;
|
|
355
358
|
export const getCountriesIcon = (source) => `${lightUrl}/country/${source}.svg`;
|
|
356
359
|
export const getCurrenciesIcon = (currency) => `${cdnUrl}/currency/v2/light/${currency}.svg`;
|
|
@@ -368,7 +371,7 @@ export const tokensWindowIcon = `${lightUrl}/window/tokens.svg`;
|
|
|
368
371
|
export const accountWindowIcon = `${lightUrl}/window/account.svg`;
|
|
369
372
|
export const businessesWindowIcon = `${lightUrl}/window/businesses.svg`;
|
|
370
373
|
export const authenticationWindowIcon = `${lightUrl}/window/authentication.svg`;
|
|
371
|
-
export const reportsWindowIcon = `${
|
|
374
|
+
export const reportsWindowIcon = `${lightUrl}/other/reportsIcon.svg`;
|
|
372
375
|
export const tokensReportsIcon = `${lightUrl}/window/tokensReports.svg`;
|
|
373
376
|
export const windowBrandIcon = `${lightUrl}/window/brand.svg`;
|
|
374
377
|
export const windowEntityIcon = `${lightUrl}/window/entity.svg`;
|
|
@@ -390,7 +393,7 @@ export const pdfGrayIcon = `${lightUrl}/pdfGrayIcon.svg`;
|
|
|
390
393
|
export const productLabel = `${lightUrl}/productLabel.svg`;
|
|
391
394
|
export const quantityIcon = `${lightUrl}/quantityIcon.svg`;
|
|
392
395
|
export const removeAllItem = `${lightUrl}/removeItem.svg`;
|
|
393
|
-
export const removeItem = `${
|
|
396
|
+
export const removeItem = `${lightUrl}/other/removeItem2.svg`;
|
|
394
397
|
export const smsIcon = `${lightUrl}/smsIcon.svg`;
|
|
395
398
|
export const taxIcon = `${lightUrl}/taxIcon.svg`;
|
|
396
399
|
export const totalAmountIcon = `${lightUrl}/totalAmountIcon.svg`;
|
|
@@ -401,14 +404,14 @@ export const newInvoiceIcon = `${lightUrl}/newInvoice.svg`;
|
|
|
401
404
|
export const activeActionIcon = `${lightUrl}/activeActionIcon.svg`;
|
|
402
405
|
export const grayProductLabel = `${lightUrl}/grayProductLabel.svg`;
|
|
403
406
|
export const plusQty = `${lightUrl}/plusQty.svg`;
|
|
404
|
-
export const downArrowIcon3 = `${
|
|
407
|
+
export const downArrowIcon3 = `${lightUrl}/other/downArrow3.svg`;
|
|
405
408
|
export const customerIcon2 = `${lightUrl}/customer.svg`;
|
|
406
|
-
export const noteIcon2 = `${
|
|
407
|
-
export const attachIcon2 = `${
|
|
409
|
+
export const noteIcon2 = `${lightUrl}/other/note.svg`;
|
|
410
|
+
export const attachIcon2 = `${lightUrl}/other/attach.svg`;
|
|
408
411
|
export const lateFeeIcon2 = `${lightUrl}/lateFee.svg`;
|
|
409
412
|
export const addItemIcon = `${lightUrl}/addItemIcon.svg`;
|
|
410
413
|
export const blueCircleCheckIcon = `${lightUrl}/blueCheckIcon.svg`;
|
|
411
|
-
export const trashBinIcon = `${
|
|
414
|
+
export const trashBinIcon = `${lightUrl}/other/trash-bin.svg`;
|
|
412
415
|
export const blueVerifyIcon = `${lightUrl}/blueVerifyIcon.svg`;
|
|
413
416
|
export const darkBlueVerifyIcon = `${lightUrl}/verificationDarkBlue.svg`;
|
|
414
417
|
export const grayVerifyIcon = `${lightUrl}/grayVerifyIcon.svg`;
|
|
@@ -418,7 +421,7 @@ export const closedVerifyIcon = `${lightUrl}/closedVerifyIcon.svg`;
|
|
|
418
421
|
export const archivedVerifyIcon = `${lightUrl}/archivedVerifyIcon.svg`;
|
|
419
422
|
export const penIcon = `${lightUrl}/penIcon.svg`;
|
|
420
423
|
export const getServiceFunctionIcon = (functionCode) => `${lightUrl}/function/${functionCode}.svg`;
|
|
421
|
-
export const listShadowBg = `${
|
|
424
|
+
export const listShadowBg = `${lightUrl}/other/listShadow.svg`;
|
|
422
425
|
export const defaultCountryIcon = `${lightUrl}/defaultCountryIcon.svg`;
|
|
423
426
|
export const defaultDeviceIcon = `${lightUrl}/defaultDeviceIcon.svg`;
|
|
424
427
|
export const biometricIcon = `${lightUrl}/biometric.svg`;
|
|
@@ -426,12 +429,12 @@ export const threeDSIcon = `${lightUrl}/3dsBlue.svg`;
|
|
|
426
429
|
export const createChargeIcon = `${appBaseUrl}/createCharge.svg`;
|
|
427
430
|
export const successCheckIcon = `${appBaseUrl}/successCheck.svg`;
|
|
428
431
|
export const receiptIcon = `${appBaseUrl}/receipt.svg`;
|
|
429
|
-
export const userTimezoneIcon = `${
|
|
430
|
-
export const entityTimezoneIcon = `${
|
|
431
|
-
export const savedTimezoneIcon = `${
|
|
432
|
-
export const smallBlueCheckIcon = `${
|
|
433
|
-
export const fileDownloadBlueIcon = `${
|
|
434
|
-
export const fileDownloadGreyIcon = `${
|
|
432
|
+
export const userTimezoneIcon = `${lightUrl}/other/browserTimezone.svg`;
|
|
433
|
+
export const entityTimezoneIcon = `${lightUrl}/other/entityTimezone.svg`;
|
|
434
|
+
export const savedTimezoneIcon = `${lightUrl}/other/historyTimezone.svg`;
|
|
435
|
+
export const smallBlueCheckIcon = `${lightUrl}/other/smallBlueCheck.svg`;
|
|
436
|
+
export const fileDownloadBlueIcon = `${lightUrl}/other/fileDownloadBlue.svg`;
|
|
437
|
+
export const fileDownloadGreyIcon = `${lightUrl}/other/fileDownloadGrey.svg`;
|
|
435
438
|
export const metaIcon = `${lightUrl}/meta.svg`;
|
|
436
439
|
export const darkFilterIcon = `${lightUrl}/darkFilterIcon.svg`;
|
|
437
440
|
export const homeIcon = `${lightUrl}/home.svg`;
|
|
@@ -468,10 +471,10 @@ export const socialLinksIcon = `${lightUrl}/socialLinksIcon.svg`;
|
|
|
468
471
|
export const smallLeftArrowIcon = `${lightUrl}/smallLeftArrow.svg`;
|
|
469
472
|
export const searchBlueIcon = `${lightUrl}/searchBlueIcon.svg`;
|
|
470
473
|
export const rightLightArrowIcon = `${appBaseUrl}/rightLightArrow.svg`;
|
|
471
|
-
export const segmentInstitutionIcon = `${
|
|
472
|
-
export const segmentTechnologyIcon = `${
|
|
473
|
-
export const segmentDevelopmentHouseIcon = `${
|
|
474
|
-
export const terminalAppIcon = `${
|
|
474
|
+
export const segmentInstitutionIcon = `${lightUrl}/other/segmentInstitution.svg`;
|
|
475
|
+
export const segmentTechnologyIcon = `${lightUrl}/other/segmentTechnology.svg`;
|
|
476
|
+
export const segmentDevelopmentHouseIcon = `${lightUrl}/other/segmentDevelopmentHouse.svg`;
|
|
477
|
+
export const terminalAppIcon = `${lightUrl}/other/terminal.svg`;
|
|
475
478
|
export const terminalWindowIcon = `${lightUrl}/window/terminal.svg`;
|
|
476
479
|
export const terminalCardPhone = `${lightUrl}/terminalCardPhone.svg`;
|
|
477
480
|
export const toastPOSIcon = `${lightUrl}/ToastPOS.svg`;
|
|
@@ -485,4 +488,3 @@ export const bankNoteIcon = `${lightUrl}/bankNoteIcon.svg`;
|
|
|
485
488
|
export const terminalDeviceFrame = `${lightUrl}/terminalDeviceFrame.svg`;
|
|
486
489
|
export const blackBrushIcon = `${lightUrl}/blackBrushIcon.svg`;
|
|
487
490
|
export const mutedOutlinedCheckIcon = `${lightUrl}/mutedOutlinedCheckIcon.svg`;
|
|
488
|
-
export const outlinedPlatformIcon = `${lightUrl}/outlinedPlatformIcon.svg`;
|
package/build/types/table.d.ts
CHANGED