@taiga-ui/cdk 3.29.2 → 3.30.0
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/bundles/taiga-ui-cdk-components-alert-host.umd.js +32 -8
- package/bundles/taiga-ui-cdk-components-alert-host.umd.js.map +1 -1
- package/bundles/taiga-ui-cdk-components-dialog-host.umd.js +33 -11
- package/bundles/taiga-ui-cdk-components-dialog-host.umd.js.map +1 -1
- package/bundles/taiga-ui-cdk-constants.umd.js +1 -1
- package/bundles/taiga-ui-cdk-constants.umd.js.map +1 -1
- package/bundles/taiga-ui-cdk-observables.umd.js +10 -0
- package/bundles/taiga-ui-cdk-observables.umd.js.map +1 -1
- package/bundles/taiga-ui-cdk-services.umd.js +3 -1
- package/bundles/taiga-ui-cdk-services.umd.js.map +1 -1
- package/bundles/taiga-ui-cdk-tokens.umd.js +1 -1
- package/bundles/taiga-ui-cdk-tokens.umd.js.map +1 -1
- package/components/alert-host/alert-host.component.d.ts +9 -5
- package/components/dialog-host/dialog-host.component.d.ts +8 -5
- package/constants/version.d.ts +1 -1
- package/constants/version.js +1 -1
- package/esm2015/components/alert-host/alert-host.component.js +32 -6
- package/esm2015/components/dialog-host/dialog-host.component.js +31 -9
- package/esm2015/constants/version.js +2 -2
- package/esm2015/observables/index.js +2 -1
- package/esm2015/observables/scroll-from.js +10 -0
- package/esm2015/services/parents-scroll.service.js +4 -2
- package/esm2015/tokens/removed-element.js +2 -2
- package/fesm2015/taiga-ui-cdk-components-alert-host.js +31 -5
- package/fesm2015/taiga-ui-cdk-components-alert-host.js.map +1 -1
- package/fesm2015/taiga-ui-cdk-components-dialog-host.js +30 -8
- package/fesm2015/taiga-ui-cdk-components-dialog-host.js.map +1 -1
- package/fesm2015/taiga-ui-cdk-constants.js +1 -1
- package/fesm2015/taiga-ui-cdk-constants.js.map +1 -1
- package/fesm2015/taiga-ui-cdk-observables.js +10 -1
- package/fesm2015/taiga-ui-cdk-observables.js.map +1 -1
- package/fesm2015/taiga-ui-cdk-services.js +3 -1
- package/fesm2015/taiga-ui-cdk-services.js.map +1 -1
- package/fesm2015/taiga-ui-cdk-tokens.js +1 -1
- package/fesm2015/taiga-ui-cdk-tokens.js.map +1 -1
- package/observables/index.d.ts +1 -0
- package/observables/scroll-from.d.ts +5 -0
- package/package.json +2 -2
- package/schematics/migration.json +5 -0
- package/schematics/ng-add/schema.json +1 -1
- package/schematics/ng-update/utils/templates/replace-attr-values.d.ts +10 -0
- package/schematics/ng-update/utils/templates/replace-attr-values.js +30 -0
- package/schematics/ng-update/v3/constants/templates.d.ts +1 -1
- package/schematics/ng-update/v3/constants/templates.js +3 -3
- package/schematics/ng-update/v3/interfaces/replaceable-attribute-value.d.ts +1 -1
- package/schematics/ng-update/v3/steps/migrate-templates.js +6 -20
- package/schematics/ng-update/v3-30/constants/constants.d.ts +2 -0
- package/schematics/ng-update/v3-30/constants/constants.js +8 -0
- package/schematics/ng-update/v3-30/constants/icons.d.ts +4 -0
- package/schematics/ng-update/v3-30/constants/icons.js +993 -0
- package/schematics/ng-update/v3-30/index.d.ts +3 -0
- package/schematics/ng-update/v3-30/index.js +33 -0
- package/schematics/ng-update/v3-30/steps/replace-text.d.ts +4 -0
- package/schematics/ng-update/v3-30/steps/replace-text.js +19 -0
- package/schematics/utils/templates/elements.d.ts +1 -1
- package/schematics/utils/templates/elements.js +2 -2
- /package/schematics/ng-update/{v3/interfaces → interfaces}/replaceable-attribute.d.ts +0 -0
- /package/schematics/ng-update/{v3/interfaces → interfaces}/replaceable-attribute.js +0 -0
@@ -0,0 +1,993 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.ICONS = void 0;
|
4
|
+
exports.ICONS = [
|
5
|
+
{
|
6
|
+
from: `tuiIconAcquiringMarker`,
|
7
|
+
to: `tuiIconTdsPosTerminalMedium`,
|
8
|
+
},
|
9
|
+
{
|
10
|
+
from: `tuiIconAllMarker`,
|
11
|
+
to: `tuiIconTdsGridMedium`,
|
12
|
+
},
|
13
|
+
{
|
14
|
+
from: `tuiIconAnalyzeUpMarker`,
|
15
|
+
to: `tuiIconTdsChartGrowMedium`,
|
16
|
+
},
|
17
|
+
{
|
18
|
+
from: `tuiIconArrestMarker`,
|
19
|
+
to: `tuiIconTdsAlertMedium`,
|
20
|
+
},
|
21
|
+
{
|
22
|
+
from: `tuiIconArrowDownMarker`,
|
23
|
+
to: `tuiIconTdsArrowDownCircleMedium`,
|
24
|
+
},
|
25
|
+
{
|
26
|
+
from: `tuiIconArrowsAngleMarker`,
|
27
|
+
to: `tuiIconTdsArrowsLeftRight2Medium`,
|
28
|
+
},
|
29
|
+
{
|
30
|
+
from: `tuiIconArrowsLeftRightMarker`,
|
31
|
+
to: `tuiIconTdsArrowsLeftRight2Medium`,
|
32
|
+
},
|
33
|
+
{
|
34
|
+
from: `tuiIconAttentionMarker`,
|
35
|
+
to: `tuiIconTdsAlertMedium`,
|
36
|
+
},
|
37
|
+
{
|
38
|
+
from: `tuiIconAutobahnMarker`,
|
39
|
+
to: `tuiIconTdsTollRoadMedium`,
|
40
|
+
},
|
41
|
+
{
|
42
|
+
from: `tuiIconBagsMarker`,
|
43
|
+
to: `tuiIconTdsShoppingBagMedium`,
|
44
|
+
},
|
45
|
+
{
|
46
|
+
from: `tuiIconBakeryMarker`,
|
47
|
+
to: `tuiIconTdsBreadMedium`,
|
48
|
+
},
|
49
|
+
{
|
50
|
+
from: `tuiIconBalloonMarker`,
|
51
|
+
to: `tuiIconTdsGiftMedium`,
|
52
|
+
},
|
53
|
+
{
|
54
|
+
from: `tuiIconBanquetMarker`,
|
55
|
+
to: `tuiIconTdsChickenDishMedium`,
|
56
|
+
},
|
57
|
+
{
|
58
|
+
from: `tuiIconBeachMarker`,
|
59
|
+
to: `tuiIconTdsSunMedium`,
|
60
|
+
},
|
61
|
+
{
|
62
|
+
from: `tuiIconBeautyMarker`,
|
63
|
+
to: `tuiIconTdsMirrorMedium`,
|
64
|
+
},
|
65
|
+
{
|
66
|
+
from: `tuiIconBillMarker`,
|
67
|
+
to: `tuiIconTdsReceiptExitMedium`,
|
68
|
+
},
|
69
|
+
{
|
70
|
+
from: `tuiIconBookkeepingMarker`,
|
71
|
+
to: `tuiIconTdsCalendarCheckMedium`,
|
72
|
+
},
|
73
|
+
{
|
74
|
+
from: `tuiIconBooksMarker`,
|
75
|
+
to: `tuiIconTdsBookOpenMedium`,
|
76
|
+
},
|
77
|
+
{
|
78
|
+
from: `tuiIconBowlingMarker`,
|
79
|
+
to: `tuiIconTdsStarMedium`,
|
80
|
+
},
|
81
|
+
{
|
82
|
+
from: `tuiIconBudgetMarker`,
|
83
|
+
to: `tuiIconTdsMountainsFlagMedium`,
|
84
|
+
},
|
85
|
+
{
|
86
|
+
from: `tuiIconBusMarker`,
|
87
|
+
to: `tuiIconTdsTransportBusMedium`,
|
88
|
+
},
|
89
|
+
{
|
90
|
+
from: `tuiIconBusinessCardMarker`,
|
91
|
+
to: `tuiIconTdsCardPersonMedium`,
|
92
|
+
},
|
93
|
+
{
|
94
|
+
from: `tuiIconButterflyMarker`,
|
95
|
+
to: `tuiIconTdsFlowerMedium`,
|
96
|
+
},
|
97
|
+
{
|
98
|
+
from: `tuiIconCCMarker`,
|
99
|
+
to: `tuiIconTdsCardsMedium`,
|
100
|
+
},
|
101
|
+
{
|
102
|
+
from: `tuiIconCalendarCheckMarker`,
|
103
|
+
to: `tuiIconTdsCalendarCheckMedium`,
|
104
|
+
},
|
105
|
+
{
|
106
|
+
from: `tuiIconCallCenterMarker`,
|
107
|
+
to: `tuiIconTdsHeadsetMedium`,
|
108
|
+
},
|
109
|
+
{
|
110
|
+
from: `tuiIconCallMarker`,
|
111
|
+
to: `tuiIconTdsPhoneMedium`,
|
112
|
+
},
|
113
|
+
{
|
114
|
+
from: `tuiIconCarMarker`,
|
115
|
+
to: `tuiIconTdsLogoMyCarMedium`,
|
116
|
+
},
|
117
|
+
{
|
118
|
+
from: `tuiIconCardInMarker`,
|
119
|
+
to: `tuiIconTdsCardFrontsideMedium`,
|
120
|
+
},
|
121
|
+
{
|
122
|
+
from: `tuiIconCardMarker`,
|
123
|
+
to: `tuiIconTdsCardFrontsideMedium`,
|
124
|
+
},
|
125
|
+
{
|
126
|
+
from: `tuiIconCardOutMarker`,
|
127
|
+
to: `tuiIconTdsCardOutMedium`,
|
128
|
+
},
|
129
|
+
{
|
130
|
+
from: `tuiIconCardPlusMarker`,
|
131
|
+
to: `tuiIconTdsCardFrontsidePlusMedium`,
|
132
|
+
},
|
133
|
+
{
|
134
|
+
from: `tuiIconCardsMarker`,
|
135
|
+
to: `tuiIconTdsCardsMedium`,
|
136
|
+
},
|
137
|
+
{
|
138
|
+
from: `tuiIconCashMarker`,
|
139
|
+
to: `tuiIconTdsCashMedium`,
|
140
|
+
},
|
141
|
+
{
|
142
|
+
from: `tuiIconCashRegisterMarker`,
|
143
|
+
to: `tuiIconTdsPosTerminalMedium`,
|
144
|
+
},
|
145
|
+
{
|
146
|
+
from: `tuiIconCertifyingCenterMarker`,
|
147
|
+
to: `tuiIconTdsKeyMedium`,
|
148
|
+
},
|
149
|
+
{
|
150
|
+
from: `tuiIconChatMarker`,
|
151
|
+
to: `tuiIconTdsChatMedium`,
|
152
|
+
},
|
153
|
+
{
|
154
|
+
from: `tuiIconChefMarker`,
|
155
|
+
to: `tuiIconTdsBurgerMedium`,
|
156
|
+
},
|
157
|
+
{
|
158
|
+
from: `tuiIconCinemaMarker`,
|
159
|
+
to: `tuiIconTdsCameraVideoMedium`,
|
160
|
+
},
|
161
|
+
{
|
162
|
+
from: `tuiIconClipboardMarker`,
|
163
|
+
to: `tuiIconTdsClipboardMedium`,
|
164
|
+
},
|
165
|
+
{
|
166
|
+
from: `tuiIconClothesMarker`,
|
167
|
+
to: `tuiIconTdsHangerMedium`,
|
168
|
+
},
|
169
|
+
{
|
170
|
+
from: `tuiIconClothesOnlineMarker`,
|
171
|
+
to: `tuiIconTdsTShirtMedium`,
|
172
|
+
},
|
173
|
+
{
|
174
|
+
from: `tuiIconCocktailMarker`,
|
175
|
+
to: `tuiIconTdsCocktailMedium`,
|
176
|
+
},
|
177
|
+
{
|
178
|
+
from: `tuiIconCoffeeshopMarker`,
|
179
|
+
to: `tuiIconTdsCupMedium`,
|
180
|
+
},
|
181
|
+
{
|
182
|
+
from: `tuiIconCogCheckMarker`,
|
183
|
+
to: `tuiIconTdsSettingsCheckMedium`,
|
184
|
+
},
|
185
|
+
{
|
186
|
+
from: `tuiIconCogMarker`,
|
187
|
+
to: `tuiIconTdsSettingsMedium`,
|
188
|
+
},
|
189
|
+
{
|
190
|
+
from: `tuiIconCoinCheckMarker`,
|
191
|
+
to: `tuiIconTdsTwoCoinsMedium`,
|
192
|
+
},
|
193
|
+
{
|
194
|
+
from: `tuiIconCoinInMarker`,
|
195
|
+
to: `tuiIconTdsCoinDropMedium`,
|
196
|
+
},
|
197
|
+
{
|
198
|
+
from: `tuiIconCoinOutMarker`,
|
199
|
+
to: `tuiIconTdsCoinDropMedium`,
|
200
|
+
},
|
201
|
+
{
|
202
|
+
from: `tuiIconCoinPlusMarker`,
|
203
|
+
to: `tuiIconTdsTwoCoinsMedium`,
|
204
|
+
},
|
205
|
+
{
|
206
|
+
from: `tuiIconCoinsMarker`,
|
207
|
+
to: `tuiIconTdsTwoCoinsMedium`,
|
208
|
+
},
|
209
|
+
{
|
210
|
+
from: `tuiIconCoinsRenewMarker`,
|
211
|
+
to: `tuiIconTdsTwoCoinsMedium`,
|
212
|
+
},
|
213
|
+
{
|
214
|
+
from: `tuiIconCommunicationsMarker`,
|
215
|
+
to: `tuiIconTdsCellularMedium`,
|
216
|
+
},
|
217
|
+
{
|
218
|
+
from: `tuiIconConsoleMarker`,
|
219
|
+
to: `tuiIconTdsDeviceDesktopMedium`,
|
220
|
+
},
|
221
|
+
{
|
222
|
+
from: `tuiIconContactBookMarker`,
|
223
|
+
to: `tuiIconTdsBookMedium`,
|
224
|
+
},
|
225
|
+
{
|
226
|
+
from: `tuiIconCourtMarker`,
|
227
|
+
to: `tuiIconTdsGavelMedium`,
|
228
|
+
},
|
229
|
+
{
|
230
|
+
from: `tuiIconCreditsMarker`,
|
231
|
+
to: `tuiIconTdsCashPercentMedium`,
|
232
|
+
},
|
233
|
+
{
|
234
|
+
from: `tuiIconCrmMarker`,
|
235
|
+
to: `tuiIconTdsStructureMedium`,
|
236
|
+
},
|
237
|
+
{
|
238
|
+
from: `tuiIconCrowdMarker`,
|
239
|
+
to: `tuiIconTdsUsersMedium`,
|
240
|
+
},
|
241
|
+
{
|
242
|
+
from: `tuiIconCrownMarker`,
|
243
|
+
to: `tuiIconTdsCrownMedium`,
|
244
|
+
},
|
245
|
+
{
|
246
|
+
from: `tuiIconCupMarker`,
|
247
|
+
to: `tuiIconTdsGobletMedium`,
|
248
|
+
},
|
249
|
+
{
|
250
|
+
from: `tuiIconCurrencyAEDMarker`,
|
251
|
+
to: `tuiIconTdsCurrencyAedMedium`,
|
252
|
+
},
|
253
|
+
{
|
254
|
+
from: `tuiIconCurrencyAMDMarker`,
|
255
|
+
to: `tuiIconTdsCurrencyAmdMedium`,
|
256
|
+
},
|
257
|
+
{
|
258
|
+
from: `tuiIconCurrencyAUDMarker`,
|
259
|
+
to: `tuiIconTdsCurrencyAudMedium`,
|
260
|
+
},
|
261
|
+
{
|
262
|
+
from: `tuiIconCurrencyAZNMarker`,
|
263
|
+
to: `tuiIconTdsCurrencyAznMedium`,
|
264
|
+
},
|
265
|
+
{
|
266
|
+
from: `tuiIconCurrencyBGNMarker`,
|
267
|
+
to: `tuiIconTdsCurrencyBgnMedium`,
|
268
|
+
},
|
269
|
+
{
|
270
|
+
from: `tuiIconCurrencyBYNMarker`,
|
271
|
+
to: `tuiIconTdsCurrencyBynMedium`,
|
272
|
+
},
|
273
|
+
{
|
274
|
+
from: `tuiIconCurrencyCADMarker`,
|
275
|
+
to: `tuiIconTdsCurrencyCadMedium`,
|
276
|
+
},
|
277
|
+
{
|
278
|
+
from: `tuiIconCurrencyCHFMarker`,
|
279
|
+
to: `tuiIconTdsCurrencyChfMedium`,
|
280
|
+
},
|
281
|
+
{
|
282
|
+
from: `tuiIconCurrencyCNYMarker`,
|
283
|
+
to: `tuiIconTdsCurrencyCnyMedium`,
|
284
|
+
},
|
285
|
+
{
|
286
|
+
from: `tuiIconCurrencyCZKMarker`,
|
287
|
+
to: `tuiIconTdsCurrencyCzkMedium`,
|
288
|
+
},
|
289
|
+
{
|
290
|
+
from: `tuiIconCurrencyDefaultMarker`,
|
291
|
+
to: `tuiIconTdsCoinMedium`,
|
292
|
+
},
|
293
|
+
{
|
294
|
+
from: `tuiIconCurrencyDollarMarker`,
|
295
|
+
to: `tuiIconTdsCurrencyUsdMedium`,
|
296
|
+
},
|
297
|
+
{
|
298
|
+
from: `tuiIconCurrencyEuroMarker`,
|
299
|
+
to: `tuiIconTdsCurrencyEurMedium`,
|
300
|
+
},
|
301
|
+
{
|
302
|
+
from: `tuiIconCurrencyGELMarker`,
|
303
|
+
to: `tuiIconTdsCurrencyGelMedium`,
|
304
|
+
},
|
305
|
+
{
|
306
|
+
from: `tuiIconCurrencyHKDMarker`,
|
307
|
+
to: `tuiIconTdsCurrencyHkdMedium`,
|
308
|
+
},
|
309
|
+
{
|
310
|
+
from: `tuiIconCurrencyHUFMarker`,
|
311
|
+
to: `tuiIconTdsCurrencyHufMedium`,
|
312
|
+
},
|
313
|
+
{
|
314
|
+
from: `tuiIconCurrencyIDRMarker`,
|
315
|
+
to: `tuiIconTdsCurrencyIdrMedium`,
|
316
|
+
},
|
317
|
+
{
|
318
|
+
from: `tuiIconCurrencyILSMarker`,
|
319
|
+
to: `tuiIconTdsCurrencyIlsMedium`,
|
320
|
+
},
|
321
|
+
{
|
322
|
+
from: `tuiIconCurrencyINRMarker`,
|
323
|
+
to: `tuiIconTdsCurrencyInrMedium`,
|
324
|
+
},
|
325
|
+
{
|
326
|
+
from: `tuiIconCurrencyKRWMarker`,
|
327
|
+
to: `tuiIconTdsCurrencyKrwMedium`,
|
328
|
+
},
|
329
|
+
{
|
330
|
+
from: `tuiIconCurrencyKZTMarker`,
|
331
|
+
to: `tuiIconTdsCurrencyKztMedium`,
|
332
|
+
},
|
333
|
+
{
|
334
|
+
from: `tuiIconCurrencyNOKMarker`,
|
335
|
+
to: `tuiIconTdsCurrencyNokMedium`,
|
336
|
+
},
|
337
|
+
{
|
338
|
+
from: `tuiIconCurrencyPLNMarker`,
|
339
|
+
to: `tuiIconTdsCurrencyPlnMedium`,
|
340
|
+
},
|
341
|
+
{
|
342
|
+
from: `tuiIconCurrencyPoundMarker`,
|
343
|
+
to: `tuiIconTdsCurrencyGbpMedium`,
|
344
|
+
},
|
345
|
+
{
|
346
|
+
from: `tuiIconCurrencyRubleMarker`,
|
347
|
+
to: `tuiIconTdsCurrencyRubMedium`,
|
348
|
+
},
|
349
|
+
{
|
350
|
+
from: `tuiIconCurrencySEKMarker`,
|
351
|
+
to: `tuiIconTdsCurrencySekMedium`,
|
352
|
+
},
|
353
|
+
{
|
354
|
+
from: `tuiIconCurrencySGDMarker`,
|
355
|
+
to: `tuiIconTdsCurrencySgdMedium`,
|
356
|
+
},
|
357
|
+
{
|
358
|
+
from: `tuiIconCurrencyTHBMarker`,
|
359
|
+
to: `tuiIconTdsCurrencyThbMedium`,
|
360
|
+
},
|
361
|
+
{
|
362
|
+
from: `tuiIconCurrencyTRYMarker`,
|
363
|
+
to: `tuiIconTdsCurrencyTryMedium`,
|
364
|
+
},
|
365
|
+
{
|
366
|
+
from: `tuiIconCurrencyUKRMarker`,
|
367
|
+
to: `tuiIconTdsCurrencyUahMedium`,
|
368
|
+
},
|
369
|
+
{
|
370
|
+
from: `tuiIconCurrencyVDNMarker`,
|
371
|
+
to: `tuiIconTdsCurrencyVndMedium`,
|
372
|
+
},
|
373
|
+
{
|
374
|
+
from: `tuiIconCurrencyYenMarker`,
|
375
|
+
to: `tuiIconTdsCurrencyCnyMedium`,
|
376
|
+
},
|
377
|
+
{
|
378
|
+
from: `tuiIconCursorMarker`,
|
379
|
+
to: `tuiIconTdsWindowBagMedium`,
|
380
|
+
},
|
381
|
+
{
|
382
|
+
from: `tuiIconDachaMarker`,
|
383
|
+
to: `tuiIconTdsHomeMedium`,
|
384
|
+
},
|
385
|
+
{
|
386
|
+
from: `tuiIconDevicesMarker`,
|
387
|
+
to: `tuiIconTdsDeviceLaptopMedium`,
|
388
|
+
},
|
389
|
+
{
|
390
|
+
from: `tuiIconDinerMarker`,
|
391
|
+
to: `tuiIconTdsChickenDishMedium`,
|
392
|
+
},
|
393
|
+
{
|
394
|
+
from: `tuiIconDocCheckMarker`,
|
395
|
+
to: `tuiIconTdsDocCheckboxMedium`,
|
396
|
+
},
|
397
|
+
{
|
398
|
+
from: `tuiIconDocConstructorMarker`,
|
399
|
+
to: `tuiIconTdsDocBlankMedium`,
|
400
|
+
},
|
401
|
+
{
|
402
|
+
from: `tuiIconDocErrorMarker`,
|
403
|
+
to: `tuiIconTdsDocBlankMedium`,
|
404
|
+
},
|
405
|
+
{
|
406
|
+
from: `tuiIconDocMarker`,
|
407
|
+
to: `tuiIconTdsDocMedium`,
|
408
|
+
},
|
409
|
+
{
|
410
|
+
from: `tuiIconDocOutMarker`,
|
411
|
+
to: `tuiIconTdsDocArrowUpMedium`,
|
412
|
+
},
|
413
|
+
{
|
414
|
+
from: `tuiIconDocflowMarker`,
|
415
|
+
to: `tuiIconTdsDocBlankMultipleMedium`,
|
416
|
+
},
|
417
|
+
{
|
418
|
+
from: `tuiIconDollarPlusMarker`,
|
419
|
+
to: `tuiIconTdsCurrencyUsdMedium`,
|
420
|
+
},
|
421
|
+
{
|
422
|
+
from: `tuiIconDoughnutMarker`,
|
423
|
+
to: `tuiIconTdsBurgerMedium`,
|
424
|
+
},
|
425
|
+
{
|
426
|
+
from: `tuiIconDrinksMarker`,
|
427
|
+
to: `tuiIconTdsJuiceMedium`,
|
428
|
+
},
|
429
|
+
{
|
430
|
+
from: `tuiIconDutyFreeMarker`,
|
431
|
+
to: `tuiIconTdsShoppingCartMedium`,
|
432
|
+
},
|
433
|
+
{
|
434
|
+
from: `tuiIconECommerceMarker`,
|
435
|
+
to: `tuiIconTdsShoppingBagChartMedium`,
|
436
|
+
},
|
437
|
+
{
|
438
|
+
from: `tuiIconESignMarker`,
|
439
|
+
to: `tuiIconTdsUsbStickMedium`,
|
440
|
+
},
|
441
|
+
{
|
442
|
+
from: `tuiIconEditMarker`,
|
443
|
+
to: `tuiIconTdsPencilMedium`,
|
444
|
+
},
|
445
|
+
{
|
446
|
+
from: `tuiIconEducationMarker`,
|
447
|
+
to: `tuiIconTdsCapAcademicMedium`,
|
448
|
+
},
|
449
|
+
{
|
450
|
+
from: `tuiIconEncashmentMarker`,
|
451
|
+
to: `tuiIconTdsTransportEncashmentMedium`,
|
452
|
+
},
|
453
|
+
{
|
454
|
+
from: `tuiIconErrorMarker`,
|
455
|
+
to: `tuiIconTdsCrossMedium`,
|
456
|
+
},
|
457
|
+
{
|
458
|
+
from: `tuiIconEshopMarker`,
|
459
|
+
to: `tuiIconTdsShoppingBagChartMedium`,
|
460
|
+
},
|
461
|
+
{
|
462
|
+
from: `tuiIconEyeClosedMarker`,
|
463
|
+
to: `tuiIconTdsEyeOffMedium`,
|
464
|
+
},
|
465
|
+
{
|
466
|
+
from: `tuiIconEyeOpenMarker`,
|
467
|
+
to: `tuiIconTdsEyeMedium`,
|
468
|
+
},
|
469
|
+
{
|
470
|
+
from: `tuiIconFastfoodMarker`,
|
471
|
+
to: `tuiIconTdsBurgerMedium`,
|
472
|
+
},
|
473
|
+
{
|
474
|
+
from: `tuiIconFavoritesMarker`,
|
475
|
+
to: `tuiIconTdsHeartFilledMedium`,
|
476
|
+
},
|
477
|
+
{
|
478
|
+
from: `tuiIconFemaleClothesMarker`,
|
479
|
+
to: `tuiIconTdsHangerMedium`,
|
480
|
+
},
|
481
|
+
{
|
482
|
+
from: `tuiIconFemaleMarker`,
|
483
|
+
to: `tuiIconTdsUserFemaleMedium`,
|
484
|
+
},
|
485
|
+
{
|
486
|
+
from: `tuiIconFlowersMarker`,
|
487
|
+
to: `tuiIconTdsFlowerMedium`,
|
488
|
+
},
|
489
|
+
{
|
490
|
+
from: `tuiIconFuelMarker`,
|
491
|
+
to: `tuiIconTdsLogoFuelMedium`,
|
492
|
+
},
|
493
|
+
{
|
494
|
+
from: `tuiIconFurnitureMarker`,
|
495
|
+
to: `tuiIconTdsArmchairMedium`,
|
496
|
+
},
|
497
|
+
{
|
498
|
+
from: `tuiIconGalleryMarker`,
|
499
|
+
to: `tuiIconTdsImageMedium`,
|
500
|
+
},
|
501
|
+
{
|
502
|
+
from: `tuiIconGamesMarker`,
|
503
|
+
to: `tuiIconTdsGamepadMedium`,
|
504
|
+
},
|
505
|
+
{
|
506
|
+
from: `tuiIconGiftMarker`,
|
507
|
+
to: `tuiIconTdsGiftMedium`,
|
508
|
+
},
|
509
|
+
{
|
510
|
+
from: `tuiIconGosMarker`,
|
511
|
+
to: `tuiIconTdsRussiaMedium`,
|
512
|
+
},
|
513
|
+
{
|
514
|
+
from: `tuiIconGroceriesMarker`,
|
515
|
+
to: `tuiIconTdsShoppingBagMedium`,
|
516
|
+
},
|
517
|
+
{
|
518
|
+
from: `tuiIconHeartHandsMarker`,
|
519
|
+
to: `tuiIconTdsRibbonMedium`,
|
520
|
+
},
|
521
|
+
{
|
522
|
+
from: `tuiIconHelpMarker`,
|
523
|
+
to: `tuiIconTdsChatQuestionMedium`,
|
524
|
+
},
|
525
|
+
{
|
526
|
+
from: `tuiIconHotelMarker`,
|
527
|
+
to: `tuiIconTdsLogoHotelsMedium`,
|
528
|
+
},
|
529
|
+
{
|
530
|
+
from: `tuiIconHouseMarker`,
|
531
|
+
to: `tuiIconTdsHomeMedium`,
|
532
|
+
},
|
533
|
+
{
|
534
|
+
from: `tuiIconIcecreamMarker`,
|
535
|
+
to: `tuiIconTdsJuiceMedium`,
|
536
|
+
},
|
537
|
+
{
|
538
|
+
from: `tuiIconInMarker`,
|
539
|
+
to: `tuiIconTdsArrowInDownMedium`,
|
540
|
+
},
|
541
|
+
{
|
542
|
+
from: `tuiIconInfinityArrowMarker`,
|
543
|
+
to: `tuiIconTdsInfinityMedium`,
|
544
|
+
},
|
545
|
+
{
|
546
|
+
from: `tuiIconInfoMarker`,
|
547
|
+
to: `tuiIconTdsInfoMedium`,
|
548
|
+
},
|
549
|
+
{
|
550
|
+
from: `tuiIconInternetAcquiringMarker`,
|
551
|
+
to: `tuiIconTdsShoppingCartMedium`,
|
552
|
+
},
|
553
|
+
{
|
554
|
+
from: `tuiIconInvestMarker`,
|
555
|
+
to: `tuiIconTdsChartGrowMedium`,
|
556
|
+
},
|
557
|
+
{
|
558
|
+
from: `tuiIconInviteMarker`,
|
559
|
+
to: `tuiIconTdsGiftMedium`,
|
560
|
+
},
|
561
|
+
{
|
562
|
+
from: `tuiIconInvoicingMarker`,
|
563
|
+
to: `tuiIconTdsDocArrowUpMedium`,
|
564
|
+
},
|
565
|
+
{
|
566
|
+
from: `tuiIconJapaneseMarker`,
|
567
|
+
to: `tuiIconTdsSushiMedium`,
|
568
|
+
},
|
569
|
+
{
|
570
|
+
from: `tuiIconJewelryMarker`,
|
571
|
+
to: `tuiIconTdsDiamondMedium`,
|
572
|
+
},
|
573
|
+
{
|
574
|
+
from: `tuiIconKidsClubMarker`,
|
575
|
+
to: `tuiIconTdsGirlMedium`,
|
576
|
+
},
|
577
|
+
{
|
578
|
+
from: `tuiIconKidsMarker`,
|
579
|
+
to: `tuiIconTdsGirlMedium`,
|
580
|
+
},
|
581
|
+
{
|
582
|
+
from: `tuiIconLegalHelpMarker`,
|
583
|
+
to: `tuiIconTdsCompareMedium`,
|
584
|
+
},
|
585
|
+
{
|
586
|
+
from: `tuiIconLikeMarker`,
|
587
|
+
to: `tuiIconTdsThumbUpMedium`,
|
588
|
+
},
|
589
|
+
{
|
590
|
+
from: `tuiIconLimitMarker`,
|
591
|
+
to: `tuiIconTdsLimitsMedium`,
|
592
|
+
},
|
593
|
+
{
|
594
|
+
from: `tuiIconLinkFillMarker`,
|
595
|
+
to: `tuiIconTdsLinkMedium`,
|
596
|
+
},
|
597
|
+
{
|
598
|
+
from: `tuiIconLinkMarker`,
|
599
|
+
to: `tuiIconTdsLinkMedium`,
|
600
|
+
},
|
601
|
+
{
|
602
|
+
from: `tuiIconLoansMarker`,
|
603
|
+
to: `tuiIconTdsPercentMedium`,
|
604
|
+
},
|
605
|
+
{
|
606
|
+
from: `tuiIconLockMarker`,
|
607
|
+
to: `tuiIconTdsLockMedium`,
|
608
|
+
},
|
609
|
+
{
|
610
|
+
from: `tuiIconMailMarker`,
|
611
|
+
to: `tuiIconTdsLetterMedium`,
|
612
|
+
},
|
613
|
+
{
|
614
|
+
from: `tuiIconMailingMarker`,
|
615
|
+
to: `tuiIconTdsSpeakerMedium`,
|
616
|
+
},
|
617
|
+
{
|
618
|
+
from: `tuiIconMaleClothesMarker`,
|
619
|
+
to: `tuiIconTdsTShirtMedium`,
|
620
|
+
},
|
621
|
+
{
|
622
|
+
from: `tuiIconMaleMarker`,
|
623
|
+
to: `tuiIconTdsUserMaleMedium`,
|
624
|
+
},
|
625
|
+
{
|
626
|
+
from: `tuiIconManagementMarker`,
|
627
|
+
to: `tuiIconTdsChartPieMedium`,
|
628
|
+
},
|
629
|
+
{
|
630
|
+
from: `tuiIconMedicineMarker`,
|
631
|
+
to: `tuiIconTdsBriefcaseMedicineMedium`,
|
632
|
+
},
|
633
|
+
{
|
634
|
+
from: `tuiIconMicrophoneMarker`,
|
635
|
+
to: `tuiIconTdsMicrophoneMedium`,
|
636
|
+
},
|
637
|
+
{
|
638
|
+
from: `tuiIconMilkshakeMarker`,
|
639
|
+
to: `tuiIconTdsJuiceMedium`,
|
640
|
+
},
|
641
|
+
{
|
642
|
+
from: `tuiIconMoneyInMarker`,
|
643
|
+
to: `tuiIconTdsCashInMedium`,
|
644
|
+
},
|
645
|
+
{
|
646
|
+
from: `tuiIconMoneyMarker`,
|
647
|
+
to: `tuiIconTdsCashMedium`,
|
648
|
+
},
|
649
|
+
{
|
650
|
+
from: `tuiIconMoneyOutMarker`,
|
651
|
+
to: `tuiIconTdsCashOutMedium`,
|
652
|
+
},
|
653
|
+
{
|
654
|
+
from: `tuiIconMortageMarker`,
|
655
|
+
to: `tuiIconTdsHomePercentMedium`,
|
656
|
+
},
|
657
|
+
{
|
658
|
+
from: `tuiIconMountainMarker`,
|
659
|
+
to: `tuiIconTdsMountainsFlagMedium`,
|
660
|
+
},
|
661
|
+
{
|
662
|
+
from: `tuiIconMuseumMarker`,
|
663
|
+
to: `tuiIconTdsMuseumMedium`,
|
664
|
+
},
|
665
|
+
{
|
666
|
+
from: `tuiIconMusicMarker`,
|
667
|
+
to: `tuiIconTdsMusicMedium`,
|
668
|
+
},
|
669
|
+
{
|
670
|
+
from: `tuiIconNetMarker`,
|
671
|
+
to: `tuiIconTdsStructureMedium`,
|
672
|
+
},
|
673
|
+
{
|
674
|
+
from: `tuiIconNeutralMarker`,
|
675
|
+
to: `tuiIconTdsUserImpersonalMedium`,
|
676
|
+
},
|
677
|
+
{
|
678
|
+
from: `tuiIconNewMarker`,
|
679
|
+
to: `tuiIconTdsBonusPlusMedium`,
|
680
|
+
},
|
681
|
+
{
|
682
|
+
from: `tuiIconNewsMarker`,
|
683
|
+
to: `tuiIconTdsPaperLongMedium`,
|
684
|
+
},
|
685
|
+
{
|
686
|
+
from: `tuiIconNoCardMarker`,
|
687
|
+
to: `tuiIconTdsCardFrontsideMedium`,
|
688
|
+
},
|
689
|
+
{
|
690
|
+
from: `tuiIconNoiconMarker`,
|
691
|
+
to: `tuiIconTdsPuzzleMedium`,
|
692
|
+
},
|
693
|
+
{
|
694
|
+
from: `tuiIconNotificationsMarker`,
|
695
|
+
to: `tuiIconTdsBellFilledMedium`,
|
696
|
+
},
|
697
|
+
{
|
698
|
+
from: `tuiIconOtherMarker`,
|
699
|
+
to: `tuiIconTdsMoreMedium`,
|
700
|
+
},
|
701
|
+
{
|
702
|
+
from: `tuiIconOutMarker`,
|
703
|
+
to: `tuiIconTdsShareMedium`,
|
704
|
+
},
|
705
|
+
{
|
706
|
+
from: `tuiIconOvernightInMarker`,
|
707
|
+
to: `tuiIconTdsNight2Medium`,
|
708
|
+
},
|
709
|
+
{
|
710
|
+
from: `tuiIconOvernightMarker`,
|
711
|
+
to: `tuiIconTdsNight2Medium`,
|
712
|
+
},
|
713
|
+
{
|
714
|
+
from: `tuiIconOvernightOutMarker`,
|
715
|
+
to: `tuiIconTdsNight2Medium`,
|
716
|
+
},
|
717
|
+
{
|
718
|
+
from: `tuiIconPalmMarker`,
|
719
|
+
to: `tuiIconTdsTravelBagMedium`,
|
720
|
+
},
|
721
|
+
{
|
722
|
+
from: `tuiIconPartnersMarker`,
|
723
|
+
to: `tuiIconTdsDrawerMedium`,
|
724
|
+
},
|
725
|
+
{
|
726
|
+
from: `tuiIconPaymentsMarker`,
|
727
|
+
to: `tuiIconPaymentsMarker`,
|
728
|
+
},
|
729
|
+
{
|
730
|
+
from: `tuiIconPaypassMarker`,
|
731
|
+
to: `tuiIconTdsPaypassMedium`,
|
732
|
+
},
|
733
|
+
{
|
734
|
+
from: `tuiIconPeopleMarker`,
|
735
|
+
to: `tuiIconTdsUsersMedium`,
|
736
|
+
},
|
737
|
+
{
|
738
|
+
from: `tuiIconPercentCircleMarker`,
|
739
|
+
to: `tuiIconTdsPercentCircleMedium`,
|
740
|
+
},
|
741
|
+
{
|
742
|
+
from: `tuiIconPercentMarker`,
|
743
|
+
to: `tuiIconTdsPercentMedium`,
|
744
|
+
},
|
745
|
+
{
|
746
|
+
from: `tuiIconPercentTriangleMarker`,
|
747
|
+
to: `tuiIconTdsPercentCircleMedium`,
|
748
|
+
},
|
749
|
+
{
|
750
|
+
from: `tuiIconPerfumeMarker`,
|
751
|
+
to: `tuiIconTdsFlaconMedium`,
|
752
|
+
},
|
753
|
+
{
|
754
|
+
from: `tuiIconPetsMarker`,
|
755
|
+
to: `tuiIconTdsAnimalsMedium`,
|
756
|
+
},
|
757
|
+
{
|
758
|
+
from: `tuiIconPharmacyMarker`,
|
759
|
+
to: `tuiIconTdsPillMedium`,
|
760
|
+
},
|
761
|
+
{
|
762
|
+
from: `tuiIconPhoneMarker`,
|
763
|
+
to: `tuiIconTdsDevicePhoneMedium`,
|
764
|
+
},
|
765
|
+
{
|
766
|
+
from: `tuiIconPhotoMarker`,
|
767
|
+
to: `tuiIconTdsCameraPhotoMedium`,
|
768
|
+
},
|
769
|
+
{
|
770
|
+
from: `tuiIconPieMarker`,
|
771
|
+
to: `tuiIconTdsChartPieMedium`,
|
772
|
+
},
|
773
|
+
{
|
774
|
+
from: `tuiIconPinMarker`,
|
775
|
+
to: `tuiIconTdsAtmMedium`,
|
776
|
+
},
|
777
|
+
{
|
778
|
+
from: `tuiIconPinnedMarker`,
|
779
|
+
to: `tuiIconTdsPinMedium`,
|
780
|
+
},
|
781
|
+
{
|
782
|
+
from: `tuiIconPizzaMarker`,
|
783
|
+
to: `tuiIconTdsPizzaMedium`,
|
784
|
+
},
|
785
|
+
{
|
786
|
+
from: `tuiIconPlaneMarker`,
|
787
|
+
to: `tuiIconTdsAirplaneMedium`,
|
788
|
+
},
|
789
|
+
{
|
790
|
+
from: `tuiIconPlanetariumMarker`,
|
791
|
+
to: `tuiIconTdsGlobeMedium`,
|
792
|
+
},
|
793
|
+
{
|
794
|
+
from: `tuiIconPuzzleMarker`,
|
795
|
+
to: `tuiIconTdsPuzzleMedium`,
|
796
|
+
},
|
797
|
+
{
|
798
|
+
from: `tuiIconQuestionMarker`,
|
799
|
+
to: `tuiIconTdsChatQuestionMedium`,
|
800
|
+
},
|
801
|
+
{
|
802
|
+
from: `tuiIconRealtySearchMarker`,
|
803
|
+
to: `tuiIconTdsKeyMedium`,
|
804
|
+
},
|
805
|
+
{
|
806
|
+
from: `tuiIconReconstructMarker`,
|
807
|
+
to: `tuiIconTdsCraneHookMedium`,
|
808
|
+
},
|
809
|
+
{
|
810
|
+
from: `tuiIconRecruitMarker`,
|
811
|
+
to: `tuiIconTdsUserMaleMedium`,
|
812
|
+
},
|
813
|
+
{
|
814
|
+
from: `tuiIconRegularMarker`,
|
815
|
+
to: `tuiIconTdsArrowsLeftRightMedium`,
|
816
|
+
},
|
817
|
+
{
|
818
|
+
from: `tuiIconRestaurantMarker`,
|
819
|
+
to: `tuiIconTdsLogoRestaurantsMedium`,
|
820
|
+
},
|
821
|
+
{
|
822
|
+
from: `tuiIconRetryMarker`,
|
823
|
+
to: `tuiIconTdsArrowRepeatMedium`,
|
824
|
+
},
|
825
|
+
{
|
826
|
+
from: `tuiIconRevertMarker`,
|
827
|
+
to: `tuiIconTdsArrowRewindMedium`,
|
828
|
+
},
|
829
|
+
{
|
830
|
+
from: `tuiIconRubleIncomeMarker`,
|
831
|
+
to: `tuiIconTdsCoinDropMedium`,
|
832
|
+
},
|
833
|
+
{
|
834
|
+
from: `tuiIconRubleMarker`,
|
835
|
+
to: `tuiIconTdsCurrencyRubMedium`,
|
836
|
+
},
|
837
|
+
{
|
838
|
+
from: `tuiIconRubleMinusMarker`,
|
839
|
+
to: `tuiIconTdsCashRubleMedium`,
|
840
|
+
},
|
841
|
+
{
|
842
|
+
from: `tuiIconRublePlusMarker`,
|
843
|
+
to: `tuiIconTdsCashRubleMedium`,
|
844
|
+
},
|
845
|
+
{
|
846
|
+
from: `tuiIconRussiaMarker`,
|
847
|
+
to: `tuiIconTdsRussiaMedium`,
|
848
|
+
},
|
849
|
+
{
|
850
|
+
from: `tuiIconSafeMarker`,
|
851
|
+
to: `tuiIconTdsSafeDepositMedium`,
|
852
|
+
},
|
853
|
+
{
|
854
|
+
from: `tuiIconSalaryMarker`,
|
855
|
+
to: `tuiIconTdsWalletMedium`,
|
856
|
+
},
|
857
|
+
{
|
858
|
+
from: `tuiIconSearchMarker`,
|
859
|
+
to: `tuiIconTdsMagnifierMedium`,
|
860
|
+
},
|
861
|
+
{
|
862
|
+
from: `tuiIconServiceMarker`,
|
863
|
+
to: `tuiIconTdsWrenchMedium`,
|
864
|
+
},
|
865
|
+
{
|
866
|
+
from: `tuiIconServicesMarker`,
|
867
|
+
to: `tuiIconTdsWrenchMedium`,
|
868
|
+
},
|
869
|
+
{
|
870
|
+
from: `tuiIconSettingsMarker`,
|
871
|
+
to: `tuiIconTdsSettings2Medium`,
|
872
|
+
},
|
873
|
+
{
|
874
|
+
from: `tuiIconShieldCheckMarker`,
|
875
|
+
to: `tuiIconTdsShieldMedium`,
|
876
|
+
},
|
877
|
+
{
|
878
|
+
from: `tuiIconShieldRubleMarker`,
|
879
|
+
to: `tuiIconTdsShieldRubleMedium`,
|
880
|
+
},
|
881
|
+
{
|
882
|
+
from: `tuiIconShoesMarker`,
|
883
|
+
to: `tuiIconTdsShoesMedium`,
|
884
|
+
},
|
885
|
+
{
|
886
|
+
from: `tuiIconShopMarker`,
|
887
|
+
to: `tuiIconTdsShoppingCartMedium`,
|
888
|
+
},
|
889
|
+
{
|
890
|
+
from: `tuiIconSimMarker`,
|
891
|
+
to: `tuiIconTdsSimMedium`,
|
892
|
+
},
|
893
|
+
{
|
894
|
+
from: `tuiIconSiteConstructorMarker`,
|
895
|
+
to: `tuiIconTdsWindowSettingsMedium`,
|
896
|
+
},
|
897
|
+
{
|
898
|
+
from: `tuiIconSkatingMarker`,
|
899
|
+
to: `tuiIconTdsStarMedium`,
|
900
|
+
},
|
901
|
+
{
|
902
|
+
from: `tuiIconSpecialsMarker`,
|
903
|
+
to: `tuiIconTdsStarMedium`,
|
904
|
+
},
|
905
|
+
{
|
906
|
+
from: `tuiIconSplitMarker`,
|
907
|
+
to: `tuiIconTdsSplitMedium`,
|
908
|
+
},
|
909
|
+
{
|
910
|
+
from: `tuiIconSportsMarker`,
|
911
|
+
to: `tuiIconTdsLogoSportMedium`,
|
912
|
+
},
|
913
|
+
{
|
914
|
+
from: `tuiIconStarMarker`,
|
915
|
+
to: `tuiIconTdsStarMedium`,
|
916
|
+
},
|
917
|
+
{
|
918
|
+
from: `tuiIconStartMarker`,
|
919
|
+
to: `tuiIconTdsDocBlankMedium`,
|
920
|
+
},
|
921
|
+
{
|
922
|
+
from: `tuiIconStatementMarker`,
|
923
|
+
to: `tuiIconTdsClipboardMedium`,
|
924
|
+
},
|
925
|
+
{
|
926
|
+
from: `tuiIconStreamingMarker`,
|
927
|
+
to: `tuiIconTdsVideoMedium`,
|
928
|
+
},
|
929
|
+
{
|
930
|
+
from: `tuiIconSuccessMarker`,
|
931
|
+
to: `tuiIconTdsCheckMedium`,
|
932
|
+
},
|
933
|
+
{
|
934
|
+
from: `tuiIconSuitcaseMarker`,
|
935
|
+
to: `tuiIconTdsBriefcaseMedium`,
|
936
|
+
},
|
937
|
+
{
|
938
|
+
from: `tuiIconTearoomMarker`,
|
939
|
+
to: `tuiIconTdsCupMedium`,
|
940
|
+
},
|
941
|
+
{
|
942
|
+
from: `tuiIconTelephonyMarker`,
|
943
|
+
to: `tuiIconTdsPhoneMedium`,
|
944
|
+
},
|
945
|
+
{
|
946
|
+
from: `tuiIconTenderMarker`,
|
947
|
+
to: `tuiIconTdsGavelMedium`,
|
948
|
+
},
|
949
|
+
{
|
950
|
+
from: `tuiIconTerminalMarker`,
|
951
|
+
to: `tuiIconTdsPosTerminalMedium`,
|
952
|
+
},
|
953
|
+
{
|
954
|
+
from: `tuiIconTheaterMarker`,
|
955
|
+
to: `tuiIconTdsLogoTheatreMedium`,
|
956
|
+
},
|
957
|
+
{
|
958
|
+
from: `tuiIconTicketMarker`,
|
959
|
+
to: `tuiIconTdsTicketMedium`,
|
960
|
+
},
|
961
|
+
{
|
962
|
+
from: `tuiIconTimeMarker`,
|
963
|
+
to: `tuiIconTdsClockMedium`,
|
964
|
+
},
|
965
|
+
{
|
966
|
+
from: `tuiIconTrainMarker`,
|
967
|
+
to: `tuiIconTdsTransportTrainMedium`,
|
968
|
+
},
|
969
|
+
{
|
970
|
+
from: `tuiIconTvMarker`,
|
971
|
+
to: `tuiIconTdsDeviceDesktopMedium`,
|
972
|
+
},
|
973
|
+
{
|
974
|
+
from: `tuiIconUmbrellaMarker`,
|
975
|
+
to: `tuiIconTdsLogoInsuranceMedium`,
|
976
|
+
},
|
977
|
+
{
|
978
|
+
from: `tuiIconVideoMarker`,
|
979
|
+
to: `tuiIconTdsCameraVideoMedium`,
|
980
|
+
},
|
981
|
+
{
|
982
|
+
from: `tuiIconWarningMarker`,
|
983
|
+
to: `tuiIconTdsAlertMedium`,
|
984
|
+
},
|
985
|
+
{
|
986
|
+
from: `tuiIconWithdrawCloseMarker`,
|
987
|
+
to: `tuiIconTdsCoinDropMedium`,
|
988
|
+
},
|
989
|
+
{
|
990
|
+
from: `tuiIconWorldMarker`,
|
991
|
+
to: `tuiIconTdsGlobeMedium`,
|
992
|
+
},
|
993
|
+
];
|