@odx/icons 2.5.0 → 2.6.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 CHANGED
@@ -1,3 +1,10 @@
1
+ # [2.6.0](https://dev.azure.com/draeger/ODXP/_git/odx-icons/compare/v2.5.0...v2.6.0) (2023-08-28)
2
+
3
+
4
+ ### Features
5
+
6
+ * **icons:** addition of safety eq-change ([8c37a53](https://dev.azure.com/draeger/ODXP/_git/odx-icons/commit/8c37a53e4fb67ff506f6061d81a7be1df24f99c9))
7
+
1
8
  # [2.5.0](https://dev.azure.com/draeger/ODXP/_git/odx-icons/compare/v2.4.1...v2.5.0) (2023-08-28)
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.0</title>
5
+ <title>@odx/icons 2.6.0</title>
6
6
  <link rel="stylesheet" type="text/css" href="core-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.5.0
129
+ @odx/icons 2.6.0
130
130
  </h1>
131
131
  <input class="page-search" placeholder="Search icons ..." />
132
132
  <div class="icon-count">
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8">
5
- <title>@odx/icons 2.5.0</title>
5
+ <title>@odx/icons 2.6.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.5.0
129
+ @odx/icons 2.6.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@odx/icons",
3
- "version": "2.5.0",
3
+ "version": "2.6.0",
4
4
  "author": "Drägerwerk AG & Co. KGaA",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "publishConfig": {
@@ -2,7 +2,7 @@
2
2
  <html>
3
3
  <head>
4
4
  <meta charset="utf-8">
5
- <title>@odx/icons 2.5.0</title>
5
+ <title>@odx/icons 2.6.0</title>
6
6
  <link rel="stylesheet" type="text/css" href="safety-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.5.0
129
+ @odx/icons 2.6.0
130
130
  </h1>
131
131
  <input class="page-search" placeholder="Search icons ..." />
132
132
  <div class="icon-count">
133
- Iconset: <strong>safety</strong> (831 icons)
133
+ Iconset: <strong>safety</strong> (832 icons)
134
134
  </div>
135
135
  </header>
136
136
  <main class="icons" id="icons">
@@ -1282,6 +1282,13 @@
1282
1282
  <span class="icon-name">drugcheck</span>
1283
1283
  <span class="icon-alias">
1284
1284
  </div>
1285
+ <div class="icons__item">
1286
+ <i class="odx-icon" data-icon-set="safety" data-icon-name="equipment-change">
1287
+ <span></span>
1288
+ </i>
1289
+ <span class="icon-name">equipment-change</span>
1290
+ <span class="icon-alias">
1291
+ </div>
1285
1292
  <div class="icons__item">
1286
1293
  <i class="odx-icon" data-icon-set="safety" data-icon-name="equipment-fire">
1287
1294
  <span></span>
@@ -211,6 +211,7 @@ $glyphs: (
211
211
  docking-station-4: "\eb11",
212
212
  docking-station-8: "\eb12",
213
213
  drugcheck: "\f1a6",
214
+ equipment-change: "\f1a5",
214
215
  equipment-fire: "\f10d",
215
216
  erase: "\eb1c",
216
217
  error-extra-information: "\f1a9",
@@ -764,6 +764,9 @@
764
764
  [data-icon-set=safety][data-icon-name=drugcheck]::before {
765
765
  content: "\f1a6";
766
766
  }
767
+ [data-icon-set=safety][data-icon-name=equipment-change]::before {
768
+ content: "\f1a5";
769
+ }
767
770
  [data-icon-set=safety][data-icon-name=equipment-fire]::before {
768
771
  content: "\f10d";
769
772
  }
Binary file
@@ -772,6 +772,9 @@
772
772
  &[data-icon-name="drugcheck"]::before {
773
773
  content: utils.get-icon-glyph("drugcheck");
774
774
  }
775
+ &[data-icon-name="equipment-change"]::before {
776
+ content: utils.get-icon-glyph("equipment-change");
777
+ }
775
778
  &[data-icon-name="equipment-fire"]::before {
776
779
  content: utils.get-icon-glyph("equipment-fire");
777
780
  }
Binary file
Binary file
Binary file
@@ -655,6 +655,10 @@
655
655
  "name": "drugcheck",
656
656
  "set": "safety"
657
657
  },
658
+ {
659
+ "name": "equipment-change",
660
+ "set": "safety"
661
+ },
658
662
  {
659
663
  "name": "equipment-fire",
660
664
  "set": "safety"
@@ -0,0 +1 @@
1
+ <?xml version="1.0" encoding="UTF-8"?><svg id="uuid-84be51f3-dcca-4e2c-a47d-2763fa111893" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="m29.95,22.66c-.37-2.9-2.7-5.24-5.6-5.6-4.25-.54-7.83,3.04-7.29,7.29.37,2.9,2.7,5.24,5.6,5.6,4.25.54,7.83-3.04,7.29-7.29h0Zm-6.45,5.35c-1.25,0-2.35-.52-3.16-1.34l-1.34,1.34v-4h4l-1.4,1.4c.49.49,1.16.8,1.9.8,1.32,0,2.41-.95,2.65-2.2h1.8c-.25,2.25-2.14,4-4.45,4h0Zm4.5-5h-4l1.4-1.4c-.49-.49-1.16-.8-1.9-.8-1.32,0-2.41.95-2.65,2.2h-1.8c.25-2.25,2.14-4,4.45-4,1.25,0,2.35.52,3.16,1.34l1.34-1.34v4h0Zm-11.61-14.91c-1-.44-2.12-.75-3.31-.93-.09-.49-.51-.86-1.03-.86h-2.1c-.52,0-.94.37-1.03.86-1.19.17-2.3.49-3.31.93-.99.44-1.61,1.44-1.61,2.52v6.73c0,1.28.7,2.49,1.85,3.07.56.28,1.16.52,1.78.71-.08-.29-.13-.59-.13-.91,0-.65.19-1.25.5-1.77-.67-.17-1.31-.38-1.86-.65-.46-.22-.74-.67-.74-1.15v-5.54h0c0-.13.02-.25.06-.37.04-.12.09-.23.16-.33.14-.21.35-.37.6-.48.33-.13.68-.25,1.05-.36,1.11-.31,2.38-.49,3.74-.49s2.63.18,3.74.49c.37.1.72.22,1.05.36.25.1.46.27.6.48.07.1.13.22.16.33s.06.24.06.37h0v5.54c0,.48-.28.92-.74,1.15-.33.16-.69.3-1.06.43-.25.09-.53.15-.8.22.31.52.5,1.12.5,1.77,0,.32-.06.61-.13.91.63-.19,1.22-.43,1.78-.71,1.15-.58,1.85-1.79,1.85-3.07v-6.73c0-1.08-.62-2.08-1.61-2.52h0Zm-7.07,6.89c.17-.61.72-1.02,1.35-1.02h.66c.63,0,1.18.42,1.35,1.02l.76,2.77.14.08c.71-.16,1.39-.37,1.98-.66.21-.1.34-.3.34-.52v-5.54c0-.23-.15-.44-.38-.54-1.27-.51-2.88-.8-4.52-.8s-3.25.28-4.52.8c-.23.09-.38.3-.38.54v5.54c0,.22.13.42.34.52.59.29,1.27.5,1.98.66l.14-.08.76-2.77h0Zm1.68,2.45c-1.55,0-2.8,1.25-2.8,2.78s1.25,2.78,2.8,2.78,2.8-1.25,2.8-2.78-1.25-2.78-2.8-2.78Zm0,4.41c-.64,0-1.17-.52-1.17-1.16s.52-1.16,1.17-1.16,1.17.52,1.17,1.16-.52,1.16-1.17,1.16Zm18.22-9.73h-.22v-3.28c0-1.56-1.34-2.83-3-2.83h-2v.94h2c1.1,0,2,.84,2,1.88v3.28h-.22l-.78,3.6v1.3h3v-1.3l-.78-3.6h0Zm-3.22,4.1v-6.45c0-1.02-.8-1.84-1.78-1.84h-.89v-3.68h-5.33v.92l3.56.29v.8l-3.56.29v.46h3.56v.92h-.89c-.98,0-1.78.82-1.78,1.84v7.41h0c1.23-.94,2.75-1.5,4.39-1.5.96,0,1.88.19,2.72.53h0Z" style="fill:#f0f;"/></svg>