@lumx/icons 3.0.6 → 3.0.7-alpha.1
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/dist/README-v4-to-v5-migration.md +19 -0
- package/{cjs → dist/cjs}/index.js +0 -0
- package/{cjs → dist/cjs}/index.js.map +0 -0
- package/dist/font.scss +4 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +5984 -0
- package/{index.js.map → dist/index.js.map} +0 -0
- package/dist/package.json +39 -0
- package/dist/rollup.config.js +51 -0
- package/dist/v4-to-v5-aliases.d.ts +247 -0
- package/dist/v4-to-v5-aliases.js +371 -0
- package/dist/v4-to-v5-aliases.scss +485 -0
- package/index.js +2 -5983
- package/package.json +2 -4
|
@@ -0,0 +1,485 @@
|
|
|
1
|
+
.mdi-cowboy {
|
|
2
|
+
@extend .mdi-account-cowboy-hat;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.mdi-worker {
|
|
6
|
+
@extend .mdi-account-hard-hat;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.mdi-artist {
|
|
10
|
+
@extend .mdi-account-music;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.mdi-artist-outline {
|
|
14
|
+
@extend .mdi-account-music-outline;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.mdi-voice {
|
|
18
|
+
@extend .mdi-account-voice;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.mdi-airplay {
|
|
22
|
+
@extend .mdi-apple-airplay;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.mdi-account-badge {
|
|
26
|
+
@extend .mdi-badge-account;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.mdi-account-badge-alert {
|
|
30
|
+
@extend .mdi-badge-account-alert;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.mdi-account-badge-alert-outline {
|
|
34
|
+
@extend .mdi-badge-account-alert-outline;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.mdi-account-badge-horizontal {
|
|
38
|
+
@extend .mdi-badge-account-horizontal;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.mdi-account-badge-horizontal-outline {
|
|
42
|
+
@extend .mdi-badge-account-horizontal-outline;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.mdi-account-badge-outline {
|
|
46
|
+
@extend .mdi-badge-account-outline;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.mdi-hotel {
|
|
50
|
+
@extend .mdi-bed;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.mdi-dictionary {
|
|
54
|
+
@extend .mdi-book-alphabet;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.mdi-bible {
|
|
58
|
+
@extend .mdi-book-cross;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.mdi-audiobook {
|
|
62
|
+
@extend .mdi-book-music;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.mdi-square-inc {
|
|
66
|
+
@extend .mdi-book-remove-multiple-outline;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.mdi-calendar-repeat {
|
|
70
|
+
@extend .mdi-calendar-sync;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.mdi-calendar-repeat-outline {
|
|
74
|
+
@extend .mdi-calendar-sync-outline;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.mdi-account-card-details {
|
|
78
|
+
@extend .mdi-card-account-details;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.mdi-account-card-details-outline {
|
|
82
|
+
@extend .mdi-card-account-details-outline;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.mdi-github-box {
|
|
86
|
+
@extend .mdi-card-account-details-star;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.mdi-github-face {
|
|
90
|
+
@extend .mdi-card-account-details-star-outline;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.mdi-contact-mail {
|
|
94
|
+
@extend .mdi-card-account-mail;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.mdi-contact-mail-outline {
|
|
98
|
+
@extend .mdi-card-account-mail-outline;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.mdi-contact-phone {
|
|
102
|
+
@extend .mdi-card-account-phone;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.mdi-contact-phone-outline {
|
|
106
|
+
@extend .mdi-card-account-phone-outline;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.mdi-cellphone-settings-variant {
|
|
110
|
+
@extend .mdi-cellphone-cog;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.mdi-coins {
|
|
114
|
+
@extend .mdi-circle-multiple-outline;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.mdi-tor {
|
|
118
|
+
@extend .mdi-cloud-refresh;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.mdi-json {
|
|
122
|
+
@extend .mdi-code-json;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.mdi-settings {
|
|
126
|
+
@extend .mdi-cog;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.mdi-settings-box {
|
|
130
|
+
@extend .mdi-cog-box;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.mdi-settings-outline {
|
|
134
|
+
@extend .mdi-cog-outline;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.mdi-settings-transfer {
|
|
138
|
+
@extend .mdi-cog-transfer;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.mdi-settings-transfer-outline {
|
|
142
|
+
@extend .mdi-cog-transfer-outline;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.mdi-coin-outline {
|
|
146
|
+
@extend .mdi-currency-usd-circle-outline;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.mdi-file-settings-variant {
|
|
150
|
+
@extend .mdi-file-cog;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.mdi-file-settings-variant-outline {
|
|
154
|
+
@extend .mdi-file-cog-outline;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.mdi-library-books {
|
|
158
|
+
@extend .mdi-text-box-multiple;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.mdi-library-movie {
|
|
162
|
+
@extend .mdi-filmstrip-box-multiple;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.mdi-folder-settings-variant {
|
|
166
|
+
@extend .mdi-folder-cog;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.mdi-folder-settings-variant-outline {
|
|
170
|
+
@extend .mdi-folder-cog-outline;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.mdi-tumblr-reblog {
|
|
174
|
+
@extend .mdi-folder-refresh-outline;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.mdi-textarea {
|
|
178
|
+
@extend .mdi-form-textarea;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.mdi-textbox {
|
|
182
|
+
@extend .mdi-form-textbox;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.mdi-textbox-password {
|
|
186
|
+
@extend .mdi-form-textbox-password;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.mdi-github-circle {
|
|
190
|
+
@extend .mdi-github;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.mdi-nfc-off {
|
|
194
|
+
@extend .mdi-ice-cream-off;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.mdi-image-filter {
|
|
198
|
+
@extend .mdi-image-multiple-outline;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.mdi-markdown {
|
|
202
|
+
@extend .mdi-language-markdown;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.mdi-markdown-outline {
|
|
206
|
+
@extend .mdi-language-markdown-outline;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.mdi-ruby {
|
|
210
|
+
@extend .mdi-language-ruby;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.mdi-xaml {
|
|
214
|
+
@extend .mdi-language-xaml;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.mdi-message-settings-variant {
|
|
218
|
+
@extend .mdi-message-cog;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.mdi-azure {
|
|
222
|
+
@extend .mdi-microsoft-azure;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.mdi-azure-devops {
|
|
226
|
+
@extend .mdi-microsoft-azure-devops;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.mdi-bing {
|
|
230
|
+
@extend .mdi-microsoft-bing;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.mdi-microsoft-dynamics {
|
|
234
|
+
@extend .mdi-microsoft-dynamics-365;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.mdi-edge {
|
|
238
|
+
@extend .mdi-microsoft-edge;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.mdi-internet-explorer {
|
|
242
|
+
@extend .mdi-microsoft-internet-explorer;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.mdi-office {
|
|
246
|
+
@extend .mdi-microsoft-office;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.mdi-onedrive {
|
|
250
|
+
@extend .mdi-microsoft-onedrive;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.mdi-onenote {
|
|
254
|
+
@extend .mdi-microsoft-onenote;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.mdi-outlook {
|
|
258
|
+
@extend .mdi-microsoft-outlook;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.mdi-visual-studio {
|
|
262
|
+
@extend .mdi-microsoft-visual-studio;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.mdi-visual-studio-code {
|
|
266
|
+
@extend .mdi-microsoft-visual-studio-code;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.mdi-windows {
|
|
270
|
+
@extend .mdi-microsoft-windows;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.mdi-windows-classic {
|
|
274
|
+
@extend .mdi-microsoft-windows-classic;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.mdi-xbox {
|
|
278
|
+
@extend .mdi-microsoft-xbox;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.mdi-xbox-controller {
|
|
282
|
+
@extend .mdi-microsoft-xbox-controller;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.mdi-xbox-controller-battery-alert {
|
|
286
|
+
@extend .mdi-microsoft-xbox-controller-battery-alert;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.mdi-xbox-controller-battery-charging {
|
|
290
|
+
@extend .mdi-microsoft-xbox-controller-battery-charging;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.mdi-xbox-controller-battery-empty {
|
|
294
|
+
@extend .mdi-microsoft-xbox-controller-battery-empty;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.mdi-xbox-controller-battery-full {
|
|
298
|
+
@extend .mdi-microsoft-xbox-controller-battery-full;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.mdi-xbox-controller-battery-low {
|
|
302
|
+
@extend .mdi-microsoft-xbox-controller-battery-low;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.mdi-xbox-controller-battery-medium {
|
|
306
|
+
@extend .mdi-microsoft-xbox-controller-battery-medium;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.mdi-xbox-controller-battery-unknown {
|
|
310
|
+
@extend .mdi-microsoft-xbox-controller-battery-unknown;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.mdi-xbox-controller-menu {
|
|
314
|
+
@extend .mdi-microsoft-xbox-controller-menu;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.mdi-xbox-controller-off {
|
|
318
|
+
@extend .mdi-microsoft-xbox-controller-off;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.mdi-xbox-controller-view {
|
|
322
|
+
@extend .mdi-microsoft-xbox-controller-view;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.mdi-yammer {
|
|
326
|
+
@extend .mdi-microsoft-yammer;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.mdi-periodic-table-co2 {
|
|
330
|
+
@extend .mdi-molecule-co2;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.mdi-library-music {
|
|
334
|
+
@extend .mdi-music-box-multiple;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.mdi-library-music-outline {
|
|
338
|
+
@extend .mdi-music-box-multiple-outline;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.mdi-wii {
|
|
342
|
+
@extend .mdi-nintendo-wii;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.mdi-wiiu {
|
|
346
|
+
@extend .mdi-nintendo-wiiu;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
.mdi-facebook-box {
|
|
350
|
+
@extend .mdi-facebook;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
.mdi-google-plus-box {
|
|
354
|
+
@extend .mdi-google-plus;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.mdi-npm-variant,
|
|
358
|
+
.mdi-npm-variant-outline {
|
|
359
|
+
@extend .mdi-npm;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.mdi-twitter-box,
|
|
363
|
+
.mdi-twitter-circle {
|
|
364
|
+
@extend .mdi-twitter;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.mdi-library-video {
|
|
368
|
+
@extend .mdi-play-box-multiple;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.mdi-cisco-webex {
|
|
372
|
+
@extend .mdi-roller-skate-off;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.mdi-network-router {
|
|
376
|
+
@extend .mdi-router-network;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.mdi-sailing {
|
|
380
|
+
@extend .mdi-sail-boat;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.mdi-playstation {
|
|
384
|
+
@extend .mdi-sony-playstation;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.mdi-sort-alphabetical {
|
|
388
|
+
@extend .mdi-sort-alphabetical-variant;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.mdi-sort-numeric {
|
|
392
|
+
@extend .mdi-sort-numeric-variant;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.mdi-linkedin-box {
|
|
396
|
+
@extend .mdi-linkedin;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.mdi-file-document-box {
|
|
400
|
+
@extend .mdi-text-box;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.mdi-file-document-box-check {
|
|
404
|
+
@extend .mdi-text-box-check;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.mdi-file-document-box-check-outline {
|
|
408
|
+
@extend .mdi-text-box-check-outline;
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
.mdi-file-document-box-minus {
|
|
412
|
+
@extend .mdi-text-box-minus;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.mdi-file-document-box-minus-outline {
|
|
416
|
+
@extend .mdi-text-box-minus-outline;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.mdi-file-document-box-multiple {
|
|
420
|
+
@extend .mdi-text-box-multiple;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
.mdi-file-document-box-multiple-outline {
|
|
424
|
+
@extend .mdi-text-box-multiple-outline;
|
|
425
|
+
}
|
|
426
|
+
|
|
427
|
+
.mdi-file-document-box-outline {
|
|
428
|
+
@extend .mdi-text-box-outline;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
.mdi-file-document-box-plus {
|
|
432
|
+
@extend .mdi-text-box-plus;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
.mdi-file-document-box-plus-outline {
|
|
436
|
+
@extend .mdi-text-box-plus-outline;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
.mdi-file-document-box-remove {
|
|
440
|
+
@extend .mdi-text-box-remove;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.mdi-file-document-box-remove-outline {
|
|
444
|
+
@extend .mdi-text-box-remove-outline;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.mdi-file-document-box-search {
|
|
448
|
+
@extend .mdi-text-box-search;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.mdi-file-document-box-search-outline {
|
|
452
|
+
@extend .mdi-text-box-search-outline;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.mdi-towing {
|
|
456
|
+
@extend .mdi-tow-truck;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.mdi-camcorder-box {
|
|
460
|
+
@extend .mdi-video-box;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.mdi-camcorder-box-off {
|
|
464
|
+
@extend .mdi-video-box-off;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.mdi-wall-sconce-variant {
|
|
468
|
+
@extend .mdi-wall-sconce-round-variant;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
.mdi-hackernews {
|
|
472
|
+
@extend .mdi-y-combinator;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.mdi-youtube-creator-studio {
|
|
476
|
+
@extend .mdi-youtube-studio;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.mdi-instapaper {
|
|
480
|
+
@extend .mdi-format-title;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.mdi-mail-ru {
|
|
484
|
+
@extend .mdi-at;
|
|
485
|
+
}
|