@odx/icons 2.6.3 → 2.7.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/CHANGELOG.md +7 -0
- package/core/core-demo-poster.html +17 -3
- package/core/core-iconmap.scss +2 -0
- package/core/core-icons.css +6 -0
- package/core/core-icons.eot +0 -0
- package/core/core-icons.scss +6 -0
- package/core/core-icons.ttf +0 -0
- package/core/core-icons.woff +0 -0
- package/core/core-icons.woff2 +0 -0
- package/core/core-metadata.json +8 -0
- package/core/svg/file-png.svg +1 -0
- package/core/svg/file-svg.svg +1 -0
- package/medical/medical-demo-poster.html +2 -2
- package/medical/medical-icons.eot +0 -0
- package/package.json +1 -1
- package/safety/safety-demo-poster.html +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [2.7.0](https://dev.azure.com/draeger/ODXP/_git/odx-icons/compare/v2.6.3...v2.7.0) (2023-09-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **icons:** filetypes png and svg ([ea92bb9](https://dev.azure.com/draeger/ODXP/_git/odx-icons/commit/ea92bb921c1afb5fd680e07189351bc69b2cb202))
|
|
7
|
+
|
|
1
8
|
## [2.6.3](https://dev.azure.com/draeger/ODXP/_git/odx-icons/compare/v2.6.2...v2.6.3) (2023-08-30)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
|
-
<title>@odx/icons 2.
|
|
5
|
+
<title>@odx/icons 2.7.0</title>
|
|
6
6
|
<link rel="stylesheet" type="text/css" href="core-icons.css" media="screen" />
|
|
7
7
|
<style>
|
|
8
8
|
* {
|
|
@@ -126,11 +126,11 @@
|
|
|
126
126
|
/>
|
|
127
127
|
</svg>
|
|
128
128
|
<h1 class="page-title">
|
|
129
|
-
@odx/icons 2.
|
|
129
|
+
@odx/icons 2.7.0
|
|
130
130
|
</h1>
|
|
131
131
|
<input class="page-search" placeholder="Search icons ..." />
|
|
132
132
|
<div class="icon-count">
|
|
133
|
-
Iconset: <strong>core</strong> (
|
|
133
|
+
Iconset: <strong>core</strong> (359 icons)
|
|
134
134
|
</div>
|
|
135
135
|
</header>
|
|
136
136
|
<main class="icons" id="icons">
|
|
@@ -1065,6 +1065,13 @@
|
|
|
1065
1065
|
<span class="icon-name">file-pdf</span>
|
|
1066
1066
|
<span class="icon-alias">
|
|
1067
1067
|
</div>
|
|
1068
|
+
<div class="icons__item">
|
|
1069
|
+
<i class="odx-icon" data-icon-set="core" data-icon-name="file-png">
|
|
1070
|
+
<span></span>
|
|
1071
|
+
</i>
|
|
1072
|
+
<span class="icon-name">file-png</span>
|
|
1073
|
+
<span class="icon-alias">
|
|
1074
|
+
</div>
|
|
1068
1075
|
<div class="icons__item">
|
|
1069
1076
|
<i class="odx-icon" data-icon-set="core" data-icon-name="file-ppt">
|
|
1070
1077
|
<span></span>
|
|
@@ -1072,6 +1079,13 @@
|
|
|
1072
1079
|
<span class="icon-name">file-ppt</span>
|
|
1073
1080
|
<span class="icon-alias">
|
|
1074
1081
|
</div>
|
|
1082
|
+
<div class="icons__item">
|
|
1083
|
+
<i class="odx-icon" data-icon-set="core" data-icon-name="file-svg">
|
|
1084
|
+
<span></span>
|
|
1085
|
+
</i>
|
|
1086
|
+
<span class="icon-name">file-svg</span>
|
|
1087
|
+
<span class="icon-alias">
|
|
1088
|
+
</div>
|
|
1075
1089
|
<div class="icons__item">
|
|
1076
1090
|
<i class="odx-icon" data-icon-set="core" data-icon-name="file-word">
|
|
1077
1091
|
<span></span>
|
package/core/core-iconmap.scss
CHANGED
package/core/core-icons.css
CHANGED
|
@@ -610,9 +610,15 @@
|
|
|
610
610
|
[data-icon-set=core][data-icon-name=file-pdf]::before {
|
|
611
611
|
content: "\f188";
|
|
612
612
|
}
|
|
613
|
+
[data-icon-set=core][data-icon-name=file-png]::before {
|
|
614
|
+
content: "\f24d";
|
|
615
|
+
}
|
|
613
616
|
[data-icon-set=core][data-icon-name=file-ppt]::before {
|
|
614
617
|
content: "\f189";
|
|
615
618
|
}
|
|
619
|
+
[data-icon-set=core][data-icon-name=file-svg]::before {
|
|
620
|
+
content: "\f24e";
|
|
621
|
+
}
|
|
616
622
|
[data-icon-set=core][data-icon-name=file-word]::before {
|
|
617
623
|
content: "\f18a";
|
|
618
624
|
}
|
package/core/core-icons.eot
CHANGED
|
Binary file
|
package/core/core-icons.scss
CHANGED
|
@@ -618,9 +618,15 @@
|
|
|
618
618
|
&[data-icon-name="file-pdf"]::before {
|
|
619
619
|
content: utils.get-icon-glyph("file-pdf");
|
|
620
620
|
}
|
|
621
|
+
&[data-icon-name="file-png"]::before {
|
|
622
|
+
content: utils.get-icon-glyph("file-png");
|
|
623
|
+
}
|
|
621
624
|
&[data-icon-name="file-ppt"]::before {
|
|
622
625
|
content: utils.get-icon-glyph("file-ppt");
|
|
623
626
|
}
|
|
627
|
+
&[data-icon-name="file-svg"]::before {
|
|
628
|
+
content: utils.get-icon-glyph("file-svg");
|
|
629
|
+
}
|
|
624
630
|
&[data-icon-name="file-word"]::before {
|
|
625
631
|
content: utils.get-icon-glyph("file-word");
|
|
626
632
|
}
|
package/core/core-icons.ttf
CHANGED
|
Binary file
|
package/core/core-icons.woff
CHANGED
|
Binary file
|
package/core/core-icons.woff2
CHANGED
|
Binary file
|
package/core/core-metadata.json
CHANGED
|
@@ -531,10 +531,18 @@
|
|
|
531
531
|
"name": "file-pdf",
|
|
532
532
|
"set": "core"
|
|
533
533
|
},
|
|
534
|
+
{
|
|
535
|
+
"name": "file-png",
|
|
536
|
+
"set": "core"
|
|
537
|
+
},
|
|
534
538
|
{
|
|
535
539
|
"name": "file-ppt",
|
|
536
540
|
"set": "core"
|
|
537
541
|
},
|
|
542
|
+
{
|
|
543
|
+
"name": "file-svg",
|
|
544
|
+
"set": "core"
|
|
545
|
+
},
|
|
538
546
|
{
|
|
539
547
|
"name": "file-word",
|
|
540
548
|
"set": "core"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-983742a3-c9e0-483a-aaf8-24caf3315ace" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m4.57,10.19h-.66v1.64h.66c.41,0,.66-.27.66-.82s-.25-.82-.66-.82Z" style="fill:#f0f;"/><path d="m19.41,5l-2.41-2.41c-.37-.37-.89-.59-1.41-.59H6c-1.1,0-2,.9-2,2v3h-2v10h2v3c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V6.41c0-.53-.21-1.04-.59-1.41Zm-14.78,7.97h-.73v2.03h-.91v-5.99h1.63c1,0,1.55.8,1.55,2s-.55,1.96-1.54,1.96Zm1.36,7.03v-3h10V7H6v-3h9.59l2.41,2.41v13.59s-12,0-12,0Zm3.54-7.97v-3.02h.91v5.99h-.85l-1.53-3.16c-.16-.32-.3-.64-.32-.75h-.02c.02.13.03.5.03.9v3.02h-.91v-5.99h.85l1.53,3.16c.16.32.3.64.32.75h.02c-.02-.13-.04-.5-.04-.9Zm3.68,1.86c.61,0,.93-.44,1-1.18h-1v-1.07h1.91c.02.19.02.36.02.53,0,1.91-.88,2.93-1.93,2.93-1.14,0-2.05-1.26-2.05-3.1s.87-3.1,2.07-3.1c.63,0,1.32.43,1.68,1.28l-.72.72c-.24-.55-.59-.79-.97-.79-.65,0-1.12.71-1.12,1.89s.5,1.89,1.1,1.89Z" style="fill:#f0f;"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?><svg id="uuid-5872fe0a-4cec-400c-9f94-0a0d9a59d780" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m19.41,5l-2.41-2.41c-.37-.37-.89-.59-1.41-.59H6c-1.1,0-2,.9-2,2v3h-2v10h2v3c0,1.1.9,2,2,2h12c1.1,0,2-.9,2-2V6.41c0-.53-.21-1.04-.59-1.41ZM4.64,15.09c-.75,0-1.44-.4-1.76-1.38l.78-.62c.17.51.51.85.99.85s.78-.24.78-.6-.26-.49-.78-.69l-.4-.15c-.84-.34-1.24-.9-1.24-1.84,0-1.03.67-1.75,1.65-1.75.74,0,1.37.43,1.64,1.24l-.77.55c-.15-.44-.47-.65-.86-.65-.43,0-.67.21-.67.54,0,.39.27.54.67.69l.41.14c.9.32,1.33.89,1.33,1.82,0,1.11-.66,1.84-1.74,1.84Zm1.36,4.91v-3h10V7H6v-3h9.59l2.41,2.41v13.59s-12,0-12,0Zm.54-10.98h1.03l.89,3.52c.09.34.16.68.16.8h.02c0-.12.07-.46.16-.8l.89-3.52h1.01l-1.61,5.96h-.94l-1.62-5.96Zm6.53,4.86c.65,0,.99-.44,1.07-1.17h-1.07v-1.06h2.03c.02.19.02.36.02.53,0,1.9-.94,2.92-2.05,2.92-1.21,0-2.18-1.25-2.18-3.09s.92-3.09,2.2-3.09c.67,0,1.4.43,1.79,1.28l-.76.72c-.25-.54-.62-.78-1.03-.78-.69,0-1.19.71-1.19,1.88s.54,1.88,1.17,1.88Z" style="fill:#f0f;"/></svg>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
|
-
<title>@odx/icons 2.
|
|
5
|
+
<title>@odx/icons 2.7.0</title>
|
|
6
6
|
<link rel="stylesheet" type="text/css" href="medical-icons.css" media="screen" />
|
|
7
7
|
<style>
|
|
8
8
|
* {
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
/>
|
|
127
127
|
</svg>
|
|
128
128
|
<h1 class="page-title">
|
|
129
|
-
@odx/icons 2.
|
|
129
|
+
@odx/icons 2.7.0
|
|
130
130
|
</h1>
|
|
131
131
|
<input class="page-search" placeholder="Search icons ..." />
|
|
132
132
|
<div class="icon-count">
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<html>
|
|
3
3
|
<head>
|
|
4
4
|
<meta charset="utf-8">
|
|
5
|
-
<title>@odx/icons 2.
|
|
5
|
+
<title>@odx/icons 2.7.0</title>
|
|
6
6
|
<link rel="stylesheet" type="text/css" href="safety-icons.css" media="screen" />
|
|
7
7
|
<style>
|
|
8
8
|
* {
|
|
@@ -126,7 +126,7 @@
|
|
|
126
126
|
/>
|
|
127
127
|
</svg>
|
|
128
128
|
<h1 class="page-title">
|
|
129
|
-
@odx/icons 2.
|
|
129
|
+
@odx/icons 2.7.0
|
|
130
130
|
</h1>
|
|
131
131
|
<input class="page-search" placeholder="Search icons ..." />
|
|
132
132
|
<div class="icon-count">
|