@tabler/icons-webfont 2.46.0 → 3.0.0-alpha.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 -7
- package/tabler-icons.css +15 -3
- package/tabler-icons.css.map +1 -1
- package/tabler-icons.html +2 -2
- package/tabler-icons.min.css +2 -2
- package/tabler-icons.min.css.map +1 -1
- package/tabler-icons.scss +11 -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": "
|
|
3
|
+
"version": "3.0.0-alpha.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,15 +16,12 @@
|
|
|
16
16
|
"directory": "packages/icons-webfont"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "pnpm run
|
|
20
|
-
"build:prepare": "mkdir -p icons-outlined fonts && rm -fd
|
|
19
|
+
"build": "pnpm run copy && pnpm run build:prepare && pnpm run build:outline && pnpm run build:webfont && pnpm run build:css",
|
|
20
|
+
"build:prepare": "mkdir -p icons-outlined fonts && rm -fd fonts/*",
|
|
21
21
|
"build:outline": "node .build/build-outline.mjs",
|
|
22
|
-
"build:optimize": "svgo icons-outlined/*",
|
|
23
|
-
"build:fix-outline": "fontforge -lang=py -script .build/fix-outline.py",
|
|
24
22
|
"build:webfont": "rm -fd fonts/* && node .build/build-webfont.mjs",
|
|
25
23
|
"build:css": "sass tabler-icons.scss tabler-icons.css --style expanded && sass tabler-icons.scss tabler-icons.min.css --style compressed",
|
|
26
24
|
"build:clean": "rm -rf ./icons-outlined",
|
|
27
|
-
"clean": "rm -rf ./iconfont",
|
|
28
25
|
"copy": "pnpm run copy:license",
|
|
29
26
|
"copy:license": "cp ../../LICENSE ./LICENSE"
|
|
30
27
|
},
|
|
@@ -35,7 +32,7 @@
|
|
|
35
32
|
"sass": "./tabler-icons.scss",
|
|
36
33
|
"style": "./tabler-icons.min.css",
|
|
37
34
|
"dependencies": {
|
|
38
|
-
"@tabler/icons": "
|
|
35
|
+
"@tabler/icons": "3.0.0-alpha.0"
|
|
39
36
|
},
|
|
40
37
|
"keywords": [
|
|
41
38
|
"icons",
|
package/tabler-icons.css
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Tabler Icons
|
|
2
|
+
* Tabler Icons 3.0.0-alpha.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?
|
|
10
|
-
src: url("./fonts/tabler-icons.eot?#iefix-
|
|
9
|
+
src: url("./fonts/tabler-icons.eot?v3.0.0-alpha.0");
|
|
10
|
+
src: url("./fonts/tabler-icons.eot?#iefix-v3.0.0-alpha.0") format("embedded-opentype"), url("./fonts/tabler-icons.woff2?v3.0.0-alpha.0") format("woff2"), url("./fonts/tabler-icons.woff?") format("woff"), url("./fonts/tabler-icons.ttf?v3.0.0-alpha.0") format("truetype");
|
|
11
11
|
}
|
|
12
12
|
.ti {
|
|
13
13
|
font-family: "tabler-icons" !important;
|
|
@@ -19798,4 +19798,16 @@
|
|
|
19798
19798
|
content: "\f440";
|
|
19799
19799
|
}
|
|
19800
19800
|
|
|
19801
|
+
.ti-aaa:before {
|
|
19802
|
+
content: "\ea6b";
|
|
19803
|
+
}
|
|
19804
|
+
|
|
19805
|
+
.ti-bbb:before {
|
|
19806
|
+
content: "\eb2c";
|
|
19807
|
+
}
|
|
19808
|
+
|
|
19809
|
+
.ti-ccc:before {
|
|
19810
|
+
content: "\eb2c";
|
|
19811
|
+
}
|
|
19812
|
+
|
|
19801
19813
|
/*# sourceMappingURL=tabler-icons.css.map */
|