@progress/kendo-font-icons 1.1.0 → 1.2.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/dist/index.css +4 -2
- package/dist/kendo-font-icons.ttf +0 -0
- package/package.json +2 -2
- package/scss/_font.scss +1 -1
- package/scss/_icon-list.scss +1008 -0
- package/scss/_icons.scss +1008 -1006
- package/scss/all.scss +3 -0
- package/scss/index.scss +137 -139
package/dist/index.css
CHANGED
|
@@ -140,11 +140,13 @@
|
|
|
140
140
|
transform: scaleY(-1);
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
.k-flip-h.k-flip-v
|
|
143
|
+
.k-flip-h.k-flip-v,
|
|
144
|
+
.k-flip-both {
|
|
144
145
|
transform: scale(-1, -1);
|
|
145
146
|
}
|
|
146
147
|
|
|
147
|
-
.k-flip-h.k-flip-v > svg
|
|
148
|
+
.k-flip-h.k-flip-v > svg,
|
|
149
|
+
.k-flip-both > svg {
|
|
148
150
|
transform: scale(-1, -1);
|
|
149
151
|
}
|
|
150
152
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-font-icons",
|
|
3
3
|
"description": "",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"repository": "telerik/kendo-icons",
|
|
7
7
|
"bugs": "https://github.com/telerik/kendo-icons/issues",
|
|
@@ -23,5 +23,5 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "d5a21ae1dc44ab41c6b648427eeb21ad00560c6e"
|
|
27
27
|
}
|