purgetss 3.0.5 → 3.1.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/README.md +2 -2
- package/assets/fonts/tabler-icons.ttf +0 -0
- package/assets/images/shadow.png +0 -0
- package/bin/purgetss +6 -5
- package/dist/tablericons.js +41 -1
- package/dist/tablericons.tss +40 -0
- package/dist/tailwind.tss +756 -604
- package/docs/whats-new/v3.0.5.md +37 -498
- package/docs/whats-new/v3.1.0.md +604 -0
- package/index.js +58 -40
- package/lib/build-tailwind.js +3 -0
- package/lib/helpers.js +265 -158
- package/lib/templates/tablericons/template.js +1 -1
- package/lib/templates/tailwind/template.tss +1 -1
- package/package.json +3 -3
- package/assets/images/drop-shadow.png +0 -0
package/README.md
CHANGED
|
@@ -273,7 +273,7 @@ If you want to create a new Alloy Project with `purgetss` ready to go, use the `
|
|
|
273
273
|
> purgetss create 'Name of the Project' [--vendor="fontawesome, materialdesign, lineicons, boxicons, framework7, tablericons"]
|
|
274
274
|
|
|
275
275
|
# alias:
|
|
276
|
-
> purgetss c 'Name of the Project' [-v=fa,md,li,bx,f7]
|
|
276
|
+
> purgetss c 'Name of the Project' [-v=fa,md,li,bx,f7,ti]
|
|
277
277
|
```
|
|
278
278
|
|
|
279
279
|
You need to have `app.idprefix` and `app.idprefix` already configured in `ti config`.
|
|
@@ -300,7 +300,7 @@ When you run `purgetss create 'Name of the Project'` it will execute the followi
|
|
|
300
300
|
- **`alloy new`** To convert it to an Alloy Project.
|
|
301
301
|
- **`purgetss w`** To autorun `purgetss` every time you compile your project.
|
|
302
302
|
- **`purgetss b`** To build a new `./purgetss/tailwind.tss` and `./purgetss/config.js` files.
|
|
303
|
-
- **`[-v=fa,md,li,bx,f7]`** Set the `--vendor` argument to copy the selected fonts into your project. Including the CommonJS module into `./app/lib/` folder.
|
|
303
|
+
- **`[-v=fa,md,li,bx,f7,ti]`** Set the `--vendor` argument to copy the selected fonts into your project. Including the CommonJS module into `./app/lib/` folder.
|
|
304
304
|
- **`code .`**, **`subl .`** or **`open .`** It will use either one of these commands to open `VS Code`, `Sublime Text` or the project’s folder in that order.
|
|
305
305
|
|
|
306
306
|
## fonts
|
|
Binary file
|
|
Binary file
|
package/bin/purgetss
CHANGED
|
@@ -24,7 +24,7 @@ program
|
|
|
24
24
|
program
|
|
25
25
|
.command('init')
|
|
26
26
|
.alias('i')
|
|
27
|
-
.description('Create a `config.js` file for your project')
|
|
27
|
+
.description('Create a `config.js` file for your project.')
|
|
28
28
|
.help('Creates a minimal `./purgetss/config.js` file at the root of your project.')
|
|
29
29
|
.action((args, options, logger) => {
|
|
30
30
|
purgetss.init();
|
|
@@ -35,6 +35,7 @@ program
|
|
|
35
35
|
.alias('c')
|
|
36
36
|
.description('Creates a new Alloy Project with `purgetss` already configured.')
|
|
37
37
|
.help('Creates a new Alloy Project with `purgetss` already configured.')
|
|
38
|
+
.option('-t, --tailwind', 'To install Tailwind CSS in your project to work with `Tailwind CSS Intellisense`.')
|
|
38
39
|
.option('-v, --vendor <arguments>', 'Use any of the following arguments to copy specific vendors:\n fa = Font Awesome Icons\n md = Material Design Icons\n li = LineIcons\n bx = Boxicons\n f7 = Framework7 Icons\n ti = Tabler Icons')
|
|
39
40
|
.argument('<name>', 'The name of the project')
|
|
40
41
|
.action((args, options, logger) => {
|
|
@@ -44,7 +45,7 @@ program
|
|
|
44
45
|
program
|
|
45
46
|
.command('build')
|
|
46
47
|
.alias('b')
|
|
47
|
-
.description('Build a custom `tailwind.tss` file')
|
|
48
|
+
.description('Build a custom `tailwind.tss` file.')
|
|
48
49
|
.help('It will generate a new custom `tailwind.tss` file based on the attributes defined in `./purgetss/config.js`.')
|
|
49
50
|
.action((args, options, logger) => {
|
|
50
51
|
purgetss.buildCustom();
|
|
@@ -53,7 +54,7 @@ program
|
|
|
53
54
|
program
|
|
54
55
|
.command('watch')
|
|
55
56
|
.alias('w')
|
|
56
|
-
.description('Autorun `purgetss` every time you compile your project')
|
|
57
|
+
.description('Autorun `purgetss` every time you compile your project.')
|
|
57
58
|
.help('Use this command if you want `purgetss` to autorun every time you compile your project. This is very useful in combination with `LiveView` because it will purge all your files every time you make a change, for example when adding or deleting styles in your Views.')
|
|
58
59
|
.option('-o, --off', 'To turn off watch mode.')
|
|
59
60
|
.action((args, options, logger) => {
|
|
@@ -63,7 +64,7 @@ program
|
|
|
63
64
|
program
|
|
64
65
|
.command('fonts')
|
|
65
66
|
.alias('f')
|
|
66
|
-
.description('Copy Font Awesome icons, Material Design Icons, LineIcons, Boxicons and Framework7-Icons Font files into your project')
|
|
67
|
+
.description('Copy Font Awesome icons, Material Design Icons, LineIcons, Boxicons and Framework7-Icons Font files into your project.')
|
|
67
68
|
.help('Command to copy the Free versions of:\n\n • Font Awesome Icons ( Brands, Regular, Solid )\n • Material Design Icons\n • LineIcons\n • Boxicons\n • Framework7 Icons\n • Tabler Icons\n\nInto your projects’s app/assets/fonts/ folder.\n\nWith their names fixed to work with your app whether it is for iOS or for Android.')
|
|
68
69
|
.option('-v, --vendor <arguments>', 'Use any of the following arguments to copy specific vendors:\n fa = Font Awesome Icons\n md = Material Design Icons\n li = LineIcons\n bx = Boxicons\n f7 = Framework7 Icons\n ti = Tabler Icons')
|
|
69
70
|
.option('-m, --modules', 'Use the `--modules` option to also copy the corresponding CommonJS module into `./app/lib/` folder.')
|
|
@@ -83,7 +84,7 @@ program
|
|
|
83
84
|
program
|
|
84
85
|
.command('update')
|
|
85
86
|
.alias('u')
|
|
86
|
-
.description('Update PurgeTSS to the latest version')
|
|
87
|
+
.description('Update PurgeTSS to the latest version.')
|
|
87
88
|
.help('Run auto-update regularly!\n\nWe constantly update PurgeTSS to add new features, to include the latest versions of Tailwind and for bug fixes.')
|
|
88
89
|
.action((args, options, logger) => {
|
|
89
90
|
logger.info(`${purgetss.colores.purgeLabel} Updating PurgeTSS to the latest version...`);
|
package/dist/tablericons.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Boxicons v 1.
|
|
2
|
+
* Boxicons v 1.53.0 - https://tabler-icons.io
|
|
3
3
|
* License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -59,10 +59,14 @@ const icons = {
|
|
|
59
59
|
'antennaBars4': '\uecca',
|
|
60
60
|
'antennaBars5': '\ueccb',
|
|
61
61
|
'aperture': '\ueb58',
|
|
62
|
+
'api': '\ueffd',
|
|
63
|
+
'apiApp': '\ueffc',
|
|
64
|
+
'appWindow': '\uefe6',
|
|
62
65
|
'apple': '\uef21',
|
|
63
66
|
'apps': '\uebb6',
|
|
64
67
|
'archive': '\uea0b',
|
|
65
68
|
'armchair': '\uef9e',
|
|
69
|
+
'armchair2': '\uefe7',
|
|
66
70
|
'arrowAutofitContent': '\uef31',
|
|
67
71
|
'arrowAutofitDown': '\uef32',
|
|
68
72
|
'arrowAutofitHeight': '\uef33',
|
|
@@ -81,9 +85,17 @@ const icons = {
|
|
|
81
85
|
'arrowBarToUp': '\uec8b',
|
|
82
86
|
'arrowBarUp': '\uea10',
|
|
83
87
|
'arrowBigDown': '\uedda',
|
|
88
|
+
'arrowBigDownLine': '\uefe8',
|
|
89
|
+
'arrowBigDownLines': '\uefe9',
|
|
84
90
|
'arrowBigLeft': '\ueddb',
|
|
91
|
+
'arrowBigLeftLine': '\uefea',
|
|
92
|
+
'arrowBigLeftLines': '\uefeb',
|
|
85
93
|
'arrowBigRight': '\ueddc',
|
|
94
|
+
'arrowBigRightLine': '\uefec',
|
|
95
|
+
'arrowBigRightLines': '\uefed',
|
|
86
96
|
'arrowBigTop': '\ueddd',
|
|
97
|
+
'arrowBigUpLine': '\uefee',
|
|
98
|
+
'arrowBigUpLines': '\uefef',
|
|
87
99
|
'arrowBottomBar': '\ued98',
|
|
88
100
|
'arrowBottomCircle': '\ued99',
|
|
89
101
|
'arrowBottomSquare': '\ued9a',
|
|
@@ -128,6 +140,7 @@ const icons = {
|
|
|
128
140
|
'arrowWaveLeftUp': '\ueda9',
|
|
129
141
|
'arrowWaveRightDown': '\uedaa',
|
|
130
142
|
'arrowWaveRightUp': '\uedab',
|
|
143
|
+
'arrowsCross': '\ueffe',
|
|
131
144
|
'arrowsDiagonal': '\uea27',
|
|
132
145
|
'arrowsDiagonal2': '\uea26',
|
|
133
146
|
'arrowsDiagonalMinimize': '\uef39',
|
|
@@ -149,6 +162,8 @@ const icons = {
|
|
|
149
162
|
'arrowsRight': '\uedb3',
|
|
150
163
|
'arrowsRightDown': '\uee01',
|
|
151
164
|
'arrowsRightLeft': '\uedb2',
|
|
165
|
+
'arrowsShuffle': '\uf000',
|
|
166
|
+
'arrowsShuffle2': '\uefff',
|
|
152
167
|
'arrowsSort': '\ueb5a',
|
|
153
168
|
'arrowsSplit': '\uedb5',
|
|
154
169
|
'arrowsSplit2': '\uedb4',
|
|
@@ -184,6 +199,7 @@ const icons = {
|
|
|
184
199
|
'ballon': '\uef3a',
|
|
185
200
|
'ban': '\uea2e',
|
|
186
201
|
'bandage': '\ueb7a',
|
|
202
|
+
'barbell': '\ueff0',
|
|
187
203
|
'barcode': '\uebc6',
|
|
188
204
|
'basket': '\uebe1',
|
|
189
205
|
'bath': '\uef48',
|
|
@@ -207,6 +223,7 @@ const icons = {
|
|
|
207
223
|
'bellRinging': '\ued07',
|
|
208
224
|
'bellRinging2': '\uede4',
|
|
209
225
|
'bellX': '\uede5',
|
|
226
|
+
'bellZ': '\ueff1',
|
|
210
227
|
'bible': '\uefc4',
|
|
211
228
|
'bike': '\uea36',
|
|
212
229
|
'binary': '\uee08',
|
|
@@ -225,6 +242,7 @@ const icons = {
|
|
|
225
242
|
'bookmark': '\uea3a',
|
|
226
243
|
'bookmarkOff': '\ueced',
|
|
227
244
|
'bookmarks': '\ued08',
|
|
245
|
+
'books': '\ueff2',
|
|
228
246
|
'borderAll': '\uea3b',
|
|
229
247
|
'borderBottom': '\uea3c',
|
|
230
248
|
'borderHorizontal': '\uea3d',
|
|
@@ -305,6 +323,7 @@ const icons = {
|
|
|
305
323
|
'brandJavascript': '\uef0c',
|
|
306
324
|
'brandKickstarter': '\uedce',
|
|
307
325
|
'brandKotlin': '\ued6d',
|
|
326
|
+
'brandLastfm': '\uf001',
|
|
308
327
|
'brandLinkedin': '\uec8c',
|
|
309
328
|
'brandLoom': '\uef70',
|
|
310
329
|
'brandMastercard': '\uef49',
|
|
@@ -347,6 +366,7 @@ const icons = {
|
|
|
347
366
|
'brandTidal': '\ued70',
|
|
348
367
|
'brandTiktok': '\uec73',
|
|
349
368
|
'brandTinder': '\ued71',
|
|
369
|
+
'brandTripadvisor': '\uf002',
|
|
350
370
|
'brandTumblr': '\ued04',
|
|
351
371
|
'brandTwitch': '\ued05',
|
|
352
372
|
'brandTwitter': '\uec27',
|
|
@@ -401,6 +421,7 @@ const icons = {
|
|
|
401
421
|
'bus': '\uebe4',
|
|
402
422
|
'businessplan': '\uee1e',
|
|
403
423
|
'butterfly': '\uefd9',
|
|
424
|
+
'cSharp': '\uf003',
|
|
404
425
|
'calculator': '\ueb80',
|
|
405
426
|
'calendar': '\uea53',
|
|
406
427
|
'calendarEvent': '\uea52',
|
|
@@ -494,6 +515,7 @@ const icons = {
|
|
|
494
515
|
'circleDot': '\uefb1',
|
|
495
516
|
'circleDotted': '\ued28',
|
|
496
517
|
'circleHalf': '\uee3f',
|
|
518
|
+
'circleHalf2': '\ueff3',
|
|
497
519
|
'circleHalfVertical': '\uee3e',
|
|
498
520
|
'circleMinus': '\uea68',
|
|
499
521
|
'circleOff': '\uee40',
|
|
@@ -520,6 +542,7 @@ const icons = {
|
|
|
520
542
|
'cloudSnow': '\uea73',
|
|
521
543
|
'cloudStorm': '\uea74',
|
|
522
544
|
'cloudUpload': '\uea75',
|
|
545
|
+
'clubs': '\ueff4',
|
|
523
546
|
'code': '\uea77',
|
|
524
547
|
'codeMinus': '\uee42',
|
|
525
548
|
'codePlus': '\uee43',
|
|
@@ -644,6 +667,7 @@ const icons = {
|
|
|
644
667
|
'devices2': '\ued29',
|
|
645
668
|
'devicesPc': '\uee7a',
|
|
646
669
|
'diamond': '\ueb65',
|
|
670
|
+
'diamonds': '\ueff5',
|
|
647
671
|
'dice': '\ueb66',
|
|
648
672
|
'dimensions': '\uee7b',
|
|
649
673
|
'direction': '\uebfb',
|
|
@@ -759,6 +783,7 @@ const icons = {
|
|
|
759
783
|
'floatLeft': '\uebb2',
|
|
760
784
|
'floatNone': '\ued13',
|
|
761
785
|
'floatRight': '\uebb3',
|
|
786
|
+
'flower': '\ueff6',
|
|
762
787
|
'focus': '\ueb8d',
|
|
763
788
|
'focus2': '\uebd3',
|
|
764
789
|
'fold': '\ued56',
|
|
@@ -851,6 +876,7 @@ const icons = {
|
|
|
851
876
|
'iceCream2': '\uee9f',
|
|
852
877
|
'iceSkating': '\uefcb',
|
|
853
878
|
'id': '\ueac3',
|
|
879
|
+
'idBadge': '\ueff7',
|
|
854
880
|
'inbox': '\ueac4',
|
|
855
881
|
'indentDecrease': '\ueb91',
|
|
856
882
|
'indentIncrease': '\ueb92',
|
|
@@ -874,6 +900,7 @@ const icons = {
|
|
|
874
900
|
'lasso': '\uefac',
|
|
875
901
|
'layersDifference': '\ueac8',
|
|
876
902
|
'layersIntersect': '\ueac9',
|
|
903
|
+
'layersIntersect2': '\ueff8',
|
|
877
904
|
'layersLinked': '\ueea1',
|
|
878
905
|
'layersSubtract': '\ueaca',
|
|
879
906
|
'layersUnion': '\ueacb',
|
|
@@ -899,7 +926,11 @@ const icons = {
|
|
|
899
926
|
'layoutNavbar': '\uead7',
|
|
900
927
|
'layoutRows': '\uead8',
|
|
901
928
|
'layoutSidebar': '\ueada',
|
|
929
|
+
'layoutSidebarLeftCollapse': '\uf004',
|
|
930
|
+
'layoutSidebarLeftExpand': '\uf005',
|
|
902
931
|
'layoutSidebarRight': '\uead9',
|
|
932
|
+
'layoutSidebarRightCollapse': '\uf006',
|
|
933
|
+
'layoutSidebarRightExpand': '\uf007',
|
|
903
934
|
'leaf': '\ued4f',
|
|
904
935
|
'lego': '\ueadc',
|
|
905
936
|
'lemon': '\uef10',
|
|
@@ -1085,6 +1116,7 @@ const icons = {
|
|
|
1085
1116
|
'parachute': '\ued7c',
|
|
1086
1117
|
'parentheses': '\uebd8',
|
|
1087
1118
|
'parking': '\ueb03',
|
|
1119
|
+
'paw': '\ueff9',
|
|
1088
1120
|
'peace': '\uecbe',
|
|
1089
1121
|
'pencil': '\ueb04',
|
|
1090
1122
|
'pennant': '\ued7d',
|
|
@@ -1134,7 +1166,10 @@ const icons = {
|
|
|
1134
1166
|
'playerTrackNext': '\ued4b',
|
|
1135
1167
|
'playerTrackPrev': '\ued4c',
|
|
1136
1168
|
'playlist': '\ueec0',
|
|
1169
|
+
'playlistAdd': '\uf008',
|
|
1170
|
+
'playlistX': '\uf009',
|
|
1137
1171
|
'plug': '\uebd9',
|
|
1172
|
+
'plugConnected': '\uf00a',
|
|
1138
1173
|
'plus': '\ueb0b',
|
|
1139
1174
|
'point': '\ueb0c',
|
|
1140
1175
|
'pokeball': '\ueec1',
|
|
@@ -1192,6 +1227,7 @@ const icons = {
|
|
|
1192
1227
|
'resize': '\ueecf',
|
|
1193
1228
|
'ripple': '\ued82',
|
|
1194
1229
|
'roadSign': '\uecdd',
|
|
1230
|
+
'robot': '\uf00b',
|
|
1195
1231
|
'rocket': '\uec45',
|
|
1196
1232
|
'rollerSkating': '\uefd1',
|
|
1197
1233
|
'rotate': '\ueb16',
|
|
@@ -1284,6 +1320,7 @@ const icons = {
|
|
|
1284
1320
|
'space': '\uec0c',
|
|
1285
1321
|
'spacingHorizontal': '\uef54',
|
|
1286
1322
|
'spacingVertical': '\uef55',
|
|
1323
|
+
'spade': '\ueffa',
|
|
1287
1324
|
'speakerphone': '\ued61',
|
|
1288
1325
|
'speedboat': '\ued93',
|
|
1289
1326
|
'sportBillard': '\ueee4',
|
|
@@ -1302,6 +1339,7 @@ const icons = {
|
|
|
1302
1339
|
'squareDot': '\ued59',
|
|
1303
1340
|
'squareForbid': '\ued5b',
|
|
1304
1341
|
'squareForbid2': '\ued5a',
|
|
1342
|
+
'squareHalf': '\ueffb',
|
|
1305
1343
|
'squareMinus': '\ueb29',
|
|
1306
1344
|
'squareOff': '\ueeef',
|
|
1307
1345
|
'squarePlus': '\ueb2a',
|
|
@@ -1424,6 +1462,7 @@ const icons = {
|
|
|
1424
1462
|
'unlink': '\ueb46',
|
|
1425
1463
|
'upload': '\ueb47',
|
|
1426
1464
|
'urgent': '\ueb48',
|
|
1465
|
+
'usb': '\uf00c',
|
|
1427
1466
|
'user': '\ueb4d',
|
|
1428
1467
|
'userCheck': '\ueb49',
|
|
1429
1468
|
'userCircle': '\uef68',
|
|
@@ -1451,6 +1490,7 @@ const icons = {
|
|
|
1451
1490
|
'viewfinder': '\ueb4e',
|
|
1452
1491
|
'viewportNarrow': '\uebf3',
|
|
1453
1492
|
'viewportWide': '\uebf4',
|
|
1493
|
+
'vinyl': '\uf00d',
|
|
1454
1494
|
'virus': '\ueb74',
|
|
1455
1495
|
'virusOff': '\ued66',
|
|
1456
1496
|
'virusSearch': '\ued67',
|
package/dist/tablericons.tss
CHANGED
|
@@ -40,10 +40,14 @@
|
|
|
40
40
|
'.ti-antenna-bars-4': { text: '\uecca', title: '\uecca' }
|
|
41
41
|
'.ti-antenna-bars-5': { text: '\ueccb', title: '\ueccb' }
|
|
42
42
|
'.ti-aperture': { text: '\ueb58', title: '\ueb58' }
|
|
43
|
+
'.ti-api': { text: '\ueffd', title: '\ueffd' }
|
|
44
|
+
'.ti-api-app': { text: '\ueffc', title: '\ueffc' }
|
|
45
|
+
'.ti-app-window': { text: '\uefe6', title: '\uefe6' }
|
|
43
46
|
'.ti-apple': { text: '\uef21', title: '\uef21' }
|
|
44
47
|
'.ti-apps': { text: '\uebb6', title: '\uebb6' }
|
|
45
48
|
'.ti-archive': { text: '\uea0b', title: '\uea0b' }
|
|
46
49
|
'.ti-armchair': { text: '\uef9e', title: '\uef9e' }
|
|
50
|
+
'.ti-armchair-2': { text: '\uefe7', title: '\uefe7' }
|
|
47
51
|
'.ti-arrow-autofit-content': { text: '\uef31', title: '\uef31' }
|
|
48
52
|
'.ti-arrow-autofit-down': { text: '\uef32', title: '\uef32' }
|
|
49
53
|
'.ti-arrow-autofit-height': { text: '\uef33', title: '\uef33' }
|
|
@@ -62,9 +66,17 @@
|
|
|
62
66
|
'.ti-arrow-bar-to-up': { text: '\uec8b', title: '\uec8b' }
|
|
63
67
|
'.ti-arrow-bar-up': { text: '\uea10', title: '\uea10' }
|
|
64
68
|
'.ti-arrow-big-down': { text: '\uedda', title: '\uedda' }
|
|
69
|
+
'.ti-arrow-big-down-line': { text: '\uefe8', title: '\uefe8' }
|
|
70
|
+
'.ti-arrow-big-down-lines': { text: '\uefe9', title: '\uefe9' }
|
|
65
71
|
'.ti-arrow-big-left': { text: '\ueddb', title: '\ueddb' }
|
|
72
|
+
'.ti-arrow-big-left-line': { text: '\uefea', title: '\uefea' }
|
|
73
|
+
'.ti-arrow-big-left-lines': { text: '\uefeb', title: '\uefeb' }
|
|
66
74
|
'.ti-arrow-big-right': { text: '\ueddc', title: '\ueddc' }
|
|
75
|
+
'.ti-arrow-big-right-line': { text: '\uefec', title: '\uefec' }
|
|
76
|
+
'.ti-arrow-big-right-lines': { text: '\uefed', title: '\uefed' }
|
|
67
77
|
'.ti-arrow-big-top': { text: '\ueddd', title: '\ueddd' }
|
|
78
|
+
'.ti-arrow-big-up-line': { text: '\uefee', title: '\uefee' }
|
|
79
|
+
'.ti-arrow-big-up-lines': { text: '\uefef', title: '\uefef' }
|
|
68
80
|
'.ti-arrow-bottom-bar': { text: '\ued98', title: '\ued98' }
|
|
69
81
|
'.ti-arrow-bottom-circle': { text: '\ued99', title: '\ued99' }
|
|
70
82
|
'.ti-arrow-bottom-square': { text: '\ued9a', title: '\ued9a' }
|
|
@@ -109,6 +121,7 @@
|
|
|
109
121
|
'.ti-arrow-wave-left-up': { text: '\ueda9', title: '\ueda9' }
|
|
110
122
|
'.ti-arrow-wave-right-down': { text: '\uedaa', title: '\uedaa' }
|
|
111
123
|
'.ti-arrow-wave-right-up': { text: '\uedab', title: '\uedab' }
|
|
124
|
+
'.ti-arrows-cross': { text: '\ueffe', title: '\ueffe' }
|
|
112
125
|
'.ti-arrows-diagonal': { text: '\uea27', title: '\uea27' }
|
|
113
126
|
'.ti-arrows-diagonal-2': { text: '\uea26', title: '\uea26' }
|
|
114
127
|
'.ti-arrows-diagonal-minimize': { text: '\uef39', title: '\uef39' }
|
|
@@ -130,6 +143,8 @@
|
|
|
130
143
|
'.ti-arrows-right': { text: '\uedb3', title: '\uedb3' }
|
|
131
144
|
'.ti-arrows-right-down': { text: '\uee01', title: '\uee01' }
|
|
132
145
|
'.ti-arrows-right-left': { text: '\uedb2', title: '\uedb2' }
|
|
146
|
+
'.ti-arrows-shuffle': { text: '\uf000', title: '\uf000' }
|
|
147
|
+
'.ti-arrows-shuffle-2': { text: '\uefff', title: '\uefff' }
|
|
133
148
|
'.ti-arrows-sort': { text: '\ueb5a', title: '\ueb5a' }
|
|
134
149
|
'.ti-arrows-split': { text: '\uedb5', title: '\uedb5' }
|
|
135
150
|
'.ti-arrows-split-2': { text: '\uedb4', title: '\uedb4' }
|
|
@@ -165,6 +180,7 @@
|
|
|
165
180
|
'.ti-ballon': { text: '\uef3a', title: '\uef3a' }
|
|
166
181
|
'.ti-ban': { text: '\uea2e', title: '\uea2e' }
|
|
167
182
|
'.ti-bandage': { text: '\ueb7a', title: '\ueb7a' }
|
|
183
|
+
'.ti-barbell': { text: '\ueff0', title: '\ueff0' }
|
|
168
184
|
'.ti-barcode': { text: '\uebc6', title: '\uebc6' }
|
|
169
185
|
'.ti-basket': { text: '\uebe1', title: '\uebe1' }
|
|
170
186
|
'.ti-bath': { text: '\uef48', title: '\uef48' }
|
|
@@ -188,6 +204,7 @@
|
|
|
188
204
|
'.ti-bell-ringing': { text: '\ued07', title: '\ued07' }
|
|
189
205
|
'.ti-bell-ringing-2': { text: '\uede4', title: '\uede4' }
|
|
190
206
|
'.ti-bell-x': { text: '\uede5', title: '\uede5' }
|
|
207
|
+
'.ti-bell-z': { text: '\ueff1', title: '\ueff1' }
|
|
191
208
|
'.ti-bible': { text: '\uefc4', title: '\uefc4' }
|
|
192
209
|
'.ti-bike': { text: '\uea36', title: '\uea36' }
|
|
193
210
|
'.ti-binary': { text: '\uee08', title: '\uee08' }
|
|
@@ -206,6 +223,7 @@
|
|
|
206
223
|
'.ti-bookmark': { text: '\uea3a', title: '\uea3a' }
|
|
207
224
|
'.ti-bookmark-off': { text: '\ueced', title: '\ueced' }
|
|
208
225
|
'.ti-bookmarks': { text: '\ued08', title: '\ued08' }
|
|
226
|
+
'.ti-books': { text: '\ueff2', title: '\ueff2' }
|
|
209
227
|
'.ti-border-all': { text: '\uea3b', title: '\uea3b' }
|
|
210
228
|
'.ti-border-bottom': { text: '\uea3c', title: '\uea3c' }
|
|
211
229
|
'.ti-border-horizontal': { text: '\uea3d', title: '\uea3d' }
|
|
@@ -286,6 +304,7 @@
|
|
|
286
304
|
'.ti-brand-javascript': { text: '\uef0c', title: '\uef0c' }
|
|
287
305
|
'.ti-brand-kickstarter': { text: '\uedce', title: '\uedce' }
|
|
288
306
|
'.ti-brand-kotlin': { text: '\ued6d', title: '\ued6d' }
|
|
307
|
+
'.ti-brand-lastfm': { text: '\uf001', title: '\uf001' }
|
|
289
308
|
'.ti-brand-linkedin': { text: '\uec8c', title: '\uec8c' }
|
|
290
309
|
'.ti-brand-loom': { text: '\uef70', title: '\uef70' }
|
|
291
310
|
'.ti-brand-mastercard': { text: '\uef49', title: '\uef49' }
|
|
@@ -328,6 +347,7 @@
|
|
|
328
347
|
'.ti-brand-tidal': { text: '\ued70', title: '\ued70' }
|
|
329
348
|
'.ti-brand-tiktok': { text: '\uec73', title: '\uec73' }
|
|
330
349
|
'.ti-brand-tinder': { text: '\ued71', title: '\ued71' }
|
|
350
|
+
'.ti-brand-tripadvisor': { text: '\uf002', title: '\uf002' }
|
|
331
351
|
'.ti-brand-tumblr': { text: '\ued04', title: '\ued04' }
|
|
332
352
|
'.ti-brand-twitch': { text: '\ued05', title: '\ued05' }
|
|
333
353
|
'.ti-brand-twitter': { text: '\uec27', title: '\uec27' }
|
|
@@ -382,6 +402,7 @@
|
|
|
382
402
|
'.ti-bus': { text: '\uebe4', title: '\uebe4' }
|
|
383
403
|
'.ti-businessplan': { text: '\uee1e', title: '\uee1e' }
|
|
384
404
|
'.ti-butterfly': { text: '\uefd9', title: '\uefd9' }
|
|
405
|
+
'.ti-c-sharp': { text: '\uf003', title: '\uf003' }
|
|
385
406
|
'.ti-calculator': { text: '\ueb80', title: '\ueb80' }
|
|
386
407
|
'.ti-calendar': { text: '\uea53', title: '\uea53' }
|
|
387
408
|
'.ti-calendar-event': { text: '\uea52', title: '\uea52' }
|
|
@@ -475,6 +496,7 @@
|
|
|
475
496
|
'.ti-circle-dot': { text: '\uefb1', title: '\uefb1' }
|
|
476
497
|
'.ti-circle-dotted': { text: '\ued28', title: '\ued28' }
|
|
477
498
|
'.ti-circle-half': { text: '\uee3f', title: '\uee3f' }
|
|
499
|
+
'.ti-circle-half-2': { text: '\ueff3', title: '\ueff3' }
|
|
478
500
|
'.ti-circle-half-vertical': { text: '\uee3e', title: '\uee3e' }
|
|
479
501
|
'.ti-circle-minus': { text: '\uea68', title: '\uea68' }
|
|
480
502
|
'.ti-circle-off': { text: '\uee40', title: '\uee40' }
|
|
@@ -501,6 +523,7 @@
|
|
|
501
523
|
'.ti-cloud-snow': { text: '\uea73', title: '\uea73' }
|
|
502
524
|
'.ti-cloud-storm': { text: '\uea74', title: '\uea74' }
|
|
503
525
|
'.ti-cloud-upload': { text: '\uea75', title: '\uea75' }
|
|
526
|
+
'.ti-clubs': { text: '\ueff4', title: '\ueff4' }
|
|
504
527
|
'.ti-code': { text: '\uea77', title: '\uea77' }
|
|
505
528
|
'.ti-code-minus': { text: '\uee42', title: '\uee42' }
|
|
506
529
|
'.ti-code-plus': { text: '\uee43', title: '\uee43' }
|
|
@@ -625,6 +648,7 @@
|
|
|
625
648
|
'.ti-devices-2': { text: '\ued29', title: '\ued29' }
|
|
626
649
|
'.ti-devices-pc': { text: '\uee7a', title: '\uee7a' }
|
|
627
650
|
'.ti-diamond': { text: '\ueb65', title: '\ueb65' }
|
|
651
|
+
'.ti-diamonds': { text: '\ueff5', title: '\ueff5' }
|
|
628
652
|
'.ti-dice': { text: '\ueb66', title: '\ueb66' }
|
|
629
653
|
'.ti-dimensions': { text: '\uee7b', title: '\uee7b' }
|
|
630
654
|
'.ti-direction': { text: '\uebfb', title: '\uebfb' }
|
|
@@ -740,6 +764,7 @@
|
|
|
740
764
|
'.ti-float-left': { text: '\uebb2', title: '\uebb2' }
|
|
741
765
|
'.ti-float-none': { text: '\ued13', title: '\ued13' }
|
|
742
766
|
'.ti-float-right': { text: '\uebb3', title: '\uebb3' }
|
|
767
|
+
'.ti-flower': { text: '\ueff6', title: '\ueff6' }
|
|
743
768
|
'.ti-focus': { text: '\ueb8d', title: '\ueb8d' }
|
|
744
769
|
'.ti-focus-2': { text: '\uebd3', title: '\uebd3' }
|
|
745
770
|
'.ti-fold': { text: '\ued56', title: '\ued56' }
|
|
@@ -832,6 +857,7 @@
|
|
|
832
857
|
'.ti-ice-cream-2': { text: '\uee9f', title: '\uee9f' }
|
|
833
858
|
'.ti-ice-skating': { text: '\uefcb', title: '\uefcb' }
|
|
834
859
|
'.ti-id': { text: '\ueac3', title: '\ueac3' }
|
|
860
|
+
'.ti-id-badge': { text: '\ueff7', title: '\ueff7' }
|
|
835
861
|
'.ti-inbox': { text: '\ueac4', title: '\ueac4' }
|
|
836
862
|
'.ti-indent-decrease': { text: '\ueb91', title: '\ueb91' }
|
|
837
863
|
'.ti-indent-increase': { text: '\ueb92', title: '\ueb92' }
|
|
@@ -855,6 +881,7 @@
|
|
|
855
881
|
'.ti-lasso': { text: '\uefac', title: '\uefac' }
|
|
856
882
|
'.ti-layers-difference': { text: '\ueac8', title: '\ueac8' }
|
|
857
883
|
'.ti-layers-intersect': { text: '\ueac9', title: '\ueac9' }
|
|
884
|
+
'.ti-layers-intersect-2': { text: '\ueff8', title: '\ueff8' }
|
|
858
885
|
'.ti-layers-linked': { text: '\ueea1', title: '\ueea1' }
|
|
859
886
|
'.ti-layers-subtract': { text: '\ueaca', title: '\ueaca' }
|
|
860
887
|
'.ti-layers-union': { text: '\ueacb', title: '\ueacb' }
|
|
@@ -880,7 +907,11 @@
|
|
|
880
907
|
'.ti-layout-navbar': { text: '\uead7', title: '\uead7' }
|
|
881
908
|
'.ti-layout-rows': { text: '\uead8', title: '\uead8' }
|
|
882
909
|
'.ti-layout-sidebar': { text: '\ueada', title: '\ueada' }
|
|
910
|
+
'.ti-layout-sidebar-left-collapse': { text: '\uf004', title: '\uf004' }
|
|
911
|
+
'.ti-layout-sidebar-left-expand': { text: '\uf005', title: '\uf005' }
|
|
883
912
|
'.ti-layout-sidebar-right': { text: '\uead9', title: '\uead9' }
|
|
913
|
+
'.ti-layout-sidebar-right-collapse': { text: '\uf006', title: '\uf006' }
|
|
914
|
+
'.ti-layout-sidebar-right-expand': { text: '\uf007', title: '\uf007' }
|
|
884
915
|
'.ti-leaf': { text: '\ued4f', title: '\ued4f' }
|
|
885
916
|
'.ti-lego': { text: '\ueadc', title: '\ueadc' }
|
|
886
917
|
'.ti-lemon': { text: '\uef10', title: '\uef10' }
|
|
@@ -1066,6 +1097,7 @@
|
|
|
1066
1097
|
'.ti-parachute': { text: '\ued7c', title: '\ued7c' }
|
|
1067
1098
|
'.ti-parentheses': { text: '\uebd8', title: '\uebd8' }
|
|
1068
1099
|
'.ti-parking': { text: '\ueb03', title: '\ueb03' }
|
|
1100
|
+
'.ti-paw': { text: '\ueff9', title: '\ueff9' }
|
|
1069
1101
|
'.ti-peace': { text: '\uecbe', title: '\uecbe' }
|
|
1070
1102
|
'.ti-pencil': { text: '\ueb04', title: '\ueb04' }
|
|
1071
1103
|
'.ti-pennant': { text: '\ued7d', title: '\ued7d' }
|
|
@@ -1115,7 +1147,10 @@
|
|
|
1115
1147
|
'.ti-player-track-next': { text: '\ued4b', title: '\ued4b' }
|
|
1116
1148
|
'.ti-player-track-prev': { text: '\ued4c', title: '\ued4c' }
|
|
1117
1149
|
'.ti-playlist': { text: '\ueec0', title: '\ueec0' }
|
|
1150
|
+
'.ti-playlist-add': { text: '\uf008', title: '\uf008' }
|
|
1151
|
+
'.ti-playlist-x': { text: '\uf009', title: '\uf009' }
|
|
1118
1152
|
'.ti-plug': { text: '\uebd9', title: '\uebd9' }
|
|
1153
|
+
'.ti-plug-connected': { text: '\uf00a', title: '\uf00a' }
|
|
1119
1154
|
'.ti-plus': { text: '\ueb0b', title: '\ueb0b' }
|
|
1120
1155
|
'.ti-point': { text: '\ueb0c', title: '\ueb0c' }
|
|
1121
1156
|
'.ti-pokeball': { text: '\ueec1', title: '\ueec1' }
|
|
@@ -1173,6 +1208,7 @@
|
|
|
1173
1208
|
'.ti-resize': { text: '\ueecf', title: '\ueecf' }
|
|
1174
1209
|
'.ti-ripple': { text: '\ued82', title: '\ued82' }
|
|
1175
1210
|
'.ti-road-sign': { text: '\uecdd', title: '\uecdd' }
|
|
1211
|
+
'.ti-robot': { text: '\uf00b', title: '\uf00b' }
|
|
1176
1212
|
'.ti-rocket': { text: '\uec45', title: '\uec45' }
|
|
1177
1213
|
'.ti-roller-skating': { text: '\uefd1', title: '\uefd1' }
|
|
1178
1214
|
'.ti-rotate': { text: '\ueb16', title: '\ueb16' }
|
|
@@ -1265,6 +1301,7 @@
|
|
|
1265
1301
|
'.ti-space': { text: '\uec0c', title: '\uec0c' }
|
|
1266
1302
|
'.ti-spacing-horizontal': { text: '\uef54', title: '\uef54' }
|
|
1267
1303
|
'.ti-spacing-vertical': { text: '\uef55', title: '\uef55' }
|
|
1304
|
+
'.ti-spade': { text: '\ueffa', title: '\ueffa' }
|
|
1268
1305
|
'.ti-speakerphone': { text: '\ued61', title: '\ued61' }
|
|
1269
1306
|
'.ti-speedboat': { text: '\ued93', title: '\ued93' }
|
|
1270
1307
|
'.ti-sport-billard': { text: '\ueee4', title: '\ueee4' }
|
|
@@ -1283,6 +1320,7 @@
|
|
|
1283
1320
|
'.ti-square-dot': { text: '\ued59', title: '\ued59' }
|
|
1284
1321
|
'.ti-square-forbid': { text: '\ued5b', title: '\ued5b' }
|
|
1285
1322
|
'.ti-square-forbid-2': { text: '\ued5a', title: '\ued5a' }
|
|
1323
|
+
'.ti-square-half': { text: '\ueffb', title: '\ueffb' }
|
|
1286
1324
|
'.ti-square-minus': { text: '\ueb29', title: '\ueb29' }
|
|
1287
1325
|
'.ti-square-off': { text: '\ueeef', title: '\ueeef' }
|
|
1288
1326
|
'.ti-square-plus': { text: '\ueb2a', title: '\ueb2a' }
|
|
@@ -1405,6 +1443,7 @@
|
|
|
1405
1443
|
'.ti-unlink': { text: '\ueb46', title: '\ueb46' }
|
|
1406
1444
|
'.ti-upload': { text: '\ueb47', title: '\ueb47' }
|
|
1407
1445
|
'.ti-urgent': { text: '\ueb48', title: '\ueb48' }
|
|
1446
|
+
'.ti-usb': { text: '\uf00c', title: '\uf00c' }
|
|
1408
1447
|
'.ti-user': { text: '\ueb4d', title: '\ueb4d' }
|
|
1409
1448
|
'.ti-user-check': { text: '\ueb49', title: '\ueb49' }
|
|
1410
1449
|
'.ti-user-circle': { text: '\uef68', title: '\uef68' }
|
|
@@ -1432,6 +1471,7 @@
|
|
|
1432
1471
|
'.ti-viewfinder': { text: '\ueb4e', title: '\ueb4e' }
|
|
1433
1472
|
'.ti-viewport-narrow': { text: '\uebf3', title: '\uebf3' }
|
|
1434
1473
|
'.ti-viewport-wide': { text: '\uebf4', title: '\uebf4' }
|
|
1474
|
+
'.ti-vinyl': { text: '\uf00d', title: '\uf00d' }
|
|
1435
1475
|
'.ti-virus': { text: '\ueb74', title: '\ueb74' }
|
|
1436
1476
|
'.ti-virus-off': { text: '\ued66', title: '\ued66' }
|
|
1437
1477
|
'.ti-virus-search': { text: '\ued67', title: '\ued67' }
|