@tabler/icons-webfont 2.4.0 → 2.5.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/fonts/tabler-icons.eot +0 -0
- package/fonts/tabler-icons.ttf +0 -0
- package/fonts/tabler-icons.woff +0 -0
- package/fonts/tabler-icons.woff2 +0 -0
- package/package.json +4 -4
- package/tabler-icons.css +75 -3
- package/tabler-icons.css.map +1 -7
- package/tabler-icons.html +164 -2
- package/tabler-icons.min.css +2 -3
- package/tabler-icons.min.css.map +1 -7
- package/tabler-icons.scss +41 -5
package/fonts/tabler-icons.eot
CHANGED
|
Binary file
|
package/fonts/tabler-icons.ttf
CHANGED
|
Binary file
|
package/fonts/tabler-icons.woff
CHANGED
|
Binary file
|
package/fonts/tabler-icons.woff2
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tabler/icons-webfont",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"description": "A set of free MIT-licensed high-quality SVG icons for you to use in your web projects.",
|
|
5
5
|
"homepage": "https://tabler-icons.io",
|
|
6
6
|
"bugs": {
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
"directory": "packages/icons-webfont"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "pnpm run clean && pnpm run copy && pnpm run build:prepare && pnpm run build:outline &&
|
|
19
|
+
"build": "pnpm run clean && pnpm run copy && pnpm run build:prepare && pnpm run build:outline && pnpm run build:optimize && pnpm run build:fix-outline && pnpm run build:webfont && pnpm run build:css && pnpm run build:clean",
|
|
20
20
|
"build:prepare": "mkdir -p icons-outlined fonts && rm -fd icons-outlined/* fonts/*",
|
|
21
21
|
"build:outline": "node .build/build-outline.mjs",
|
|
22
22
|
"build:optimize": "svgo icons-outlined/*",
|
|
23
23
|
"build:fix-outline": "fontforge -lang=py -script .build/fix-outline.py",
|
|
24
24
|
"build:webfont": "rm -fd fonts/* && node .build/build-webfont.mjs",
|
|
25
|
-
"build:css": "
|
|
25
|
+
"build:css": "sass tabler-icons.scss tabler-icons.css --style expanded && sass tabler-icons.scss tabler-icons.min.css --style compressed",
|
|
26
26
|
"build:clean": "rm -rf ./icons-outlined",
|
|
27
27
|
"clean": "rm -rf ./iconfont",
|
|
28
28
|
"copy": "pnpm run copy:license",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
]
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@tabler/icons": "2.
|
|
41
|
+
"@tabler/icons": "2.5.0"
|
|
42
42
|
},
|
|
43
43
|
"keywords": [
|
|
44
44
|
"icons",
|
package/tabler-icons.css
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Tabler Icons 2.
|
|
2
|
+
* Tabler Icons 2.5.0 by tabler - https://tabler.io
|
|
3
3
|
* License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
|
|
4
4
|
*/
|
|
5
5
|
@font-face {
|
|
6
6
|
font-family: "tabler-icons";
|
|
7
7
|
font-style: normal;
|
|
8
8
|
font-weight: 400;
|
|
9
|
-
src: url("./fonts/tabler-icons.eot?v2.
|
|
10
|
-
src: url("./fonts/tabler-icons.eot?#iefix-v2.
|
|
9
|
+
src: url("./fonts/tabler-icons.eot?v2.5.0");
|
|
10
|
+
src: url("./fonts/tabler-icons.eot?#iefix-v2.5.0") format("embedded-opentype"), url("./fonts/tabler-icons.woff2?v2.5.0") format("woff2"), url("./fonts/tabler-icons.woff?") format("woff"), url("./fonts/tabler-icons.ttf?v2.5.0") format("truetype");
|
|
11
11
|
}
|
|
12
12
|
.ti {
|
|
13
13
|
font-family: "tabler-icons" !important;
|
|
@@ -2326,6 +2326,10 @@
|
|
|
2326
2326
|
content: "\ef57";
|
|
2327
2327
|
}
|
|
2328
2328
|
|
|
2329
|
+
.ti-brand-deezer:before {
|
|
2330
|
+
content: "\f78b";
|
|
2331
|
+
}
|
|
2332
|
+
|
|
2329
2333
|
.ti-brand-deliveroo:before {
|
|
2330
2334
|
content: "\f4d3";
|
|
2331
2335
|
}
|
|
@@ -2462,6 +2466,10 @@
|
|
|
2462
2466
|
content: "\ec1b";
|
|
2463
2467
|
}
|
|
2464
2468
|
|
|
2469
|
+
.ti-brand-framer-motion:before {
|
|
2470
|
+
content: "\f78c";
|
|
2471
|
+
}
|
|
2472
|
+
|
|
2465
2473
|
.ti-brand-funimation:before {
|
|
2466
2474
|
content: "\f655";
|
|
2467
2475
|
}
|
|
@@ -2490,6 +2498,10 @@
|
|
|
2490
2498
|
content: "\efa2";
|
|
2491
2499
|
}
|
|
2492
2500
|
|
|
2501
|
+
.ti-brand-golang:before {
|
|
2502
|
+
content: "\f78d";
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2493
2505
|
.ti-brand-google:before {
|
|
2494
2506
|
content: "\ec1f";
|
|
2495
2507
|
}
|
|
@@ -2754,6 +2766,10 @@
|
|
|
2754
2766
|
content: "\edd0";
|
|
2755
2767
|
}
|
|
2756
2768
|
|
|
2769
|
+
.ti-brand-openai:before {
|
|
2770
|
+
content: "\f78e";
|
|
2771
|
+
}
|
|
2772
|
+
|
|
2757
2773
|
.ti-brand-openvpn:before {
|
|
2758
2774
|
content: "\f39a";
|
|
2759
2775
|
}
|
|
@@ -2798,6 +2814,10 @@
|
|
|
2798
2814
|
content: "\ec8d";
|
|
2799
2815
|
}
|
|
2800
2816
|
|
|
2817
|
+
.ti-brand-planetscale:before {
|
|
2818
|
+
content: "\f78f";
|
|
2819
|
+
}
|
|
2820
|
+
|
|
2801
2821
|
.ti-brand-pocket:before {
|
|
2802
2822
|
content: "\ed00";
|
|
2803
2823
|
}
|
|
@@ -2834,6 +2854,10 @@
|
|
|
2834
2854
|
content: "\f606";
|
|
2835
2855
|
}
|
|
2836
2856
|
|
|
2857
|
+
.ti-brand-radix-ui:before {
|
|
2858
|
+
content: "\f790";
|
|
2859
|
+
}
|
|
2860
|
+
|
|
2837
2861
|
.ti-brand-react:before {
|
|
2838
2862
|
content: "\f34c";
|
|
2839
2863
|
}
|
|
@@ -5186,6 +5210,10 @@
|
|
|
5186
5210
|
content: "\f57b";
|
|
5187
5211
|
}
|
|
5188
5212
|
|
|
5213
|
+
.ti-csv:before {
|
|
5214
|
+
content: "\f791";
|
|
5215
|
+
}
|
|
5216
|
+
|
|
5189
5217
|
.ti-cube-send:before {
|
|
5190
5218
|
content: "\f61b";
|
|
5191
5219
|
}
|
|
@@ -5654,6 +5682,10 @@
|
|
|
5654
5682
|
content: "\f111";
|
|
5655
5683
|
}
|
|
5656
5684
|
|
|
5685
|
+
.ti-device-remote:before {
|
|
5686
|
+
content: "\f792";
|
|
5687
|
+
}
|
|
5688
|
+
|
|
5657
5689
|
.ti-device-sd-card:before {
|
|
5658
5690
|
content: "\f384";
|
|
5659
5691
|
}
|
|
@@ -6558,6 +6590,10 @@
|
|
|
6558
6590
|
content: "\ed2c";
|
|
6559
6591
|
}
|
|
6560
6592
|
|
|
6593
|
+
.ti-filters:before {
|
|
6594
|
+
content: "\f793";
|
|
6595
|
+
}
|
|
6596
|
+
|
|
6561
6597
|
.ti-fingerprint:before {
|
|
6562
6598
|
content: "\ebd1";
|
|
6563
6599
|
}
|
|
@@ -8354,6 +8390,10 @@
|
|
|
8354
8390
|
content: "\f154";
|
|
8355
8391
|
}
|
|
8356
8392
|
|
|
8393
|
+
.ti-lighter:before {
|
|
8394
|
+
content: "\f794";
|
|
8395
|
+
}
|
|
8396
|
+
|
|
8357
8397
|
.ti-line:before {
|
|
8358
8398
|
content: "\ec40";
|
|
8359
8399
|
}
|
|
@@ -8618,6 +8658,10 @@
|
|
|
8618
8658
|
content: "\ecf3";
|
|
8619
8659
|
}
|
|
8620
8660
|
|
|
8661
|
+
.ti-map-pin-share:before {
|
|
8662
|
+
content: "\f795";
|
|
8663
|
+
}
|
|
8664
|
+
|
|
8621
8665
|
.ti-map-pins:before {
|
|
8622
8666
|
content: "\ed5e";
|
|
8623
8667
|
}
|
|
@@ -9754,6 +9798,18 @@
|
|
|
9754
9798
|
content: "\f364";
|
|
9755
9799
|
}
|
|
9756
9800
|
|
|
9801
|
+
.ti-photo-sensor:before {
|
|
9802
|
+
content: "\f798";
|
|
9803
|
+
}
|
|
9804
|
+
|
|
9805
|
+
.ti-photo-sensor-2:before {
|
|
9806
|
+
content: "\f796";
|
|
9807
|
+
}
|
|
9808
|
+
|
|
9809
|
+
.ti-photo-sensor-3:before {
|
|
9810
|
+
content: "\f797";
|
|
9811
|
+
}
|
|
9812
|
+
|
|
9757
9813
|
.ti-photo-shield:before {
|
|
9758
9814
|
content: "\f365";
|
|
9759
9815
|
}
|
|
@@ -10922,6 +10978,10 @@
|
|
|
10922
10978
|
content: "\eb21";
|
|
10923
10979
|
}
|
|
10924
10980
|
|
|
10981
|
+
.ti-share-2:before {
|
|
10982
|
+
content: "\f799";
|
|
10983
|
+
}
|
|
10984
|
+
|
|
10925
10985
|
.ti-share-off:before {
|
|
10926
10986
|
content: "\f1a1";
|
|
10927
10987
|
}
|
|
@@ -11058,6 +11118,10 @@
|
|
|
11058
11118
|
content: "\f6a2";
|
|
11059
11119
|
}
|
|
11060
11120
|
|
|
11121
|
+
.ti-signal-2g:before {
|
|
11122
|
+
content: "\f79a";
|
|
11123
|
+
}
|
|
11124
|
+
|
|
11061
11125
|
.ti-signal-3g:before {
|
|
11062
11126
|
content: "\f1ee";
|
|
11063
11127
|
}
|
|
@@ -12474,6 +12538,10 @@
|
|
|
12474
12538
|
content: "\f51b";
|
|
12475
12539
|
}
|
|
12476
12540
|
|
|
12541
|
+
.ti-theater:before {
|
|
12542
|
+
content: "\f79b";
|
|
12543
|
+
}
|
|
12544
|
+
|
|
12477
12545
|
.ti-thermometer:before {
|
|
12478
12546
|
content: "\ef67";
|
|
12479
12547
|
}
|
|
@@ -13134,6 +13202,10 @@
|
|
|
13134
13202
|
content: "\f43b";
|
|
13135
13203
|
}
|
|
13136
13204
|
|
|
13205
|
+
.ti-volcano:before {
|
|
13206
|
+
content: "\f79c";
|
|
13207
|
+
}
|
|
13208
|
+
|
|
13137
13209
|
.ti-volume:before {
|
|
13138
13210
|
content: "\eb51";
|
|
13139
13211
|
}
|