@odx/icons 5.1.0 → 5.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/CHANGELOG.md +14 -2
- package/MIGRATION.md +7 -4
- package/README.md +3 -33
- package/dist/lib/all.scss +2 -0
- package/dist/lib/core/draeger.d.ts +9 -0
- package/dist/lib/core/draeger.js +2 -0
- package/dist/lib/core/draeger.svg +1 -0
- package/dist/lib/core.d.ts +1 -0
- package/dist/lib/core.js +1 -0
- package/dist/lib/metadata.json +1218 -19
- package/dist/main.d.ts +2 -2
- package/dist/main.js +1 -1
- package/main.scss +2 -2
- package/package.json +2 -3
- package/dist/lib/index.json +0 -1228
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 5.2.0
|
|
2
|
+
|
|
3
|
+
### Minor Changes
|
|
4
|
+
|
|
5
|
+
- Add 1 new icon to `core` set
|
|
6
|
+
- `draeger`
|
|
7
|
+
- Update `@odx/assets-utils` peer dependency to `^7.2.0`
|
|
8
|
+
- Use block direction instead of inline direction for determining size
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Add assets to `metadata.json` regardless of whether they actually have metadata or not
|
|
13
|
+
|
|
1
14
|
## 5.1.0
|
|
2
15
|
|
|
3
16
|
### Minor Changes
|
|
@@ -45,7 +58,6 @@
|
|
|
45
58
|
- `par-warning-mono`
|
|
46
59
|
- `telemetry-rejected`
|
|
47
60
|
- `telemetry-rejected-mono`
|
|
48
|
-
- Add `index.json` to package exports for easier programmatic access
|
|
49
61
|
- Publish processed SVGs to `dist/lib/<set>` and export them as `@odx/icons/<set>/<name>.svg`
|
|
50
62
|
|
|
51
63
|
### Patch Changes
|
|
@@ -265,4 +277,4 @@
|
|
|
265
277
|
- Add `single-use` and `multi-use` icons to `medical` set
|
|
266
278
|
- Observe and replace icons based on `.odx-icon` classnames dynamically added to the DOM when using the compatibility script
|
|
267
279
|
- Add ability to change default set by exposing it as a static property on the `OdxIconElement` class
|
|
268
|
-
- Deprecate `set` property on `<odx-icon>` and `data-icon-set` attribute in favor of automatic set detection based on name property
|
|
280
|
+
- Deprecate `set` property on `<odx-icon>` and `data-icon-set` attribute in favor of automatic set detection based on name property `set::name`
|
package/MIGRATION.md
CHANGED
|
@@ -34,10 +34,6 @@ In order to reduce the size of the core set several icons have been moved from t
|
|
|
34
34
|
|
|
35
35
|
Update your icon set imports to include the new sets/icons you want to use
|
|
36
36
|
|
|
37
|
-
```js
|
|
38
|
-
import '@odx/icons/<set>';
|
|
39
|
-
```
|
|
40
|
-
|
|
41
37
|
#### Move AI related icons to `ai` set
|
|
42
38
|
|
|
43
39
|
- [ ] `core::ai-search` → `ai::search`
|
|
@@ -156,4 +152,11 @@ you will need to switch to the new custom element or import our compatibility sc
|
|
|
156
152
|
import '@odx/icons/compat';
|
|
157
153
|
```
|
|
158
154
|
|
|
155
|
+
```js
|
|
156
|
+
import disconnectObservers from '@odx/icons/compat';
|
|
157
|
+
|
|
158
|
+
// Call this function to disconnect the observers when they are no longer needed
|
|
159
|
+
disconnectObservers();
|
|
160
|
+
```
|
|
161
|
+
|
|
159
162
|
> The script replaces elements that look like `<odx-icon data-icon-name="...">` and `<i class="odx-icon" data-icon-name="...">` with the new custom element.
|
package/README.md
CHANGED
|
@@ -55,12 +55,12 @@ import '@odx/icons/core/user';
|
|
|
55
55
|
|
|
56
56
|
### Properties
|
|
57
57
|
|
|
58
|
-
- **name**: string -
|
|
59
|
-
- **size**: string -
|
|
58
|
+
- **name**: string - Name in the format `set::name`
|
|
59
|
+
- **size**: string - One of `xs` | `sm` | `md` | `lg` | `xl` | `xxl`
|
|
60
60
|
|
|
61
61
|
#### Deprecated
|
|
62
62
|
|
|
63
|
-
- **set**: string -
|
|
63
|
+
- **set**: string - Use name property with format `set::name` instead
|
|
64
64
|
|
|
65
65
|
### Size Attribute
|
|
66
66
|
|
|
@@ -127,38 +127,8 @@ document.body.appendChild(icon);
|
|
|
127
127
|
|
|
128
128
|
```js
|
|
129
129
|
import user from '@odx/icons/core/user.svg';
|
|
130
|
-
|
|
131
|
-
console.log(user);
|
|
132
|
-
```
|
|
133
|
-
|
|
134
|
-
#### Migration from Version < 4.x.x
|
|
135
|
-
|
|
136
|
-
In order to migrate from versions prior to 4.x.x, you need to update your imports and usage as follows:
|
|
137
|
-
|
|
138
|
-
- Remove icon font imports, as they are no longer supported.
|
|
139
|
-
- Update your icon imports to use the new module structure.
|
|
140
|
-
|
|
141
|
-
If you are using the CSS variant of the icons
|
|
142
|
-
|
|
143
|
-
```HTML
|
|
144
|
-
<i class="odx-icon" data-icon-name="user": data-icon-set="core"></i>
|
|
145
|
-
```
|
|
146
|
-
|
|
147
|
-
you will need to switch to the new custom element or import our compatibility script
|
|
148
|
-
|
|
149
|
-
```js
|
|
150
|
-
import '@odx/icons/compat';
|
|
151
|
-
```
|
|
152
|
-
|
|
153
|
-
```js
|
|
154
|
-
import disconnectObservers from '@odx/icons/compat';
|
|
155
|
-
|
|
156
|
-
// Call this function to disconnect the observers when they are no longer needed
|
|
157
|
-
disconnectObservers();
|
|
158
130
|
```
|
|
159
131
|
|
|
160
|
-
> The script replaces elements that look like `<odx-icon data-icon-name="...">` and `<i class="odx-icon" data-icon-name="...">` with the new custom element.
|
|
161
|
-
|
|
162
132
|
### Browser Support
|
|
163
133
|
|
|
164
134
|
This library leverages modern web technologies such as Shadow DOM for encapsulation and CSSStyleSheet.replaceSync() for efficient stylesheet updates. It targets the ES2022 specification, taking advantage of the latest JavaScript features. These technologies are widely supported in most modern browsers.
|
package/dist/lib/all.scss
CHANGED
|
@@ -151,6 +151,7 @@ $assets: ("ai::chat-agent": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/
|
|
|
151
151
|
"core::document-settings": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M8 11h8v.18c-.7.17-1.36.44-1.95.82H8zm0-1h8V9H8zm3.5 10H6V4h9v3h3v4.03c.7.05 1.38.22 2 .48V6.42c0-.53-.21-1.04-.59-1.41L17 2.6c-.38-.38-.88-.59-1.41-.59H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h6.82c-.55-.58-1-1.25-1.32-2ZM8 7v1h4V7zm0 7h4.03c.23-.36.49-.69.79-1H8zm0 4h3.03c-.01-.16-.03-.33-.03-.5s.01-.34.03-.5H8zm0-2h3.18c.08-.34.19-.68.32-1H8zm15.04 2.74a5.7 5.7 0 0 1-1.68 2.92l-1.16-.51c-.28.21-.59.4-.91.54l-.11 1.23c-.53.17-1.09.28-1.67.28s-1.14-.11-1.67-.28l-.1-1.22c-.34-.14-.65-.34-.94-.56l-1.14.53a5.7 5.7 0 0 1-1.68-2.89l1.04-.73c-.02-.18-.05-.35-.05-.54s.03-.37.06-.55l-1.04-.73c.26-1.13.86-2.13 1.68-2.89l1.14.53c.28-.21.57-.39.9-.53l.13-1.24c.54-.17 1.09-.28 1.68-.28s1.15.12 1.68.28l.13 1.24q.465.21.87.51l1.16-.52a5.6 5.6 0 0 1 1.69 2.91l-1.04.76c.02.17.05.33.05.5s-.03.32-.05.48l1.04.76Zm-3.38-1.24c0-1.2-.97-2.17-2.17-2.17s-2.17.97-2.17 2.17.97 2.17 2.17 2.17 2.17-.97 2.17-2.17'/%3E%3C/svg%3E",
|
|
152
152
|
"core::document-stats": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M8 17h3v1H8zm0-8h8v1H8zm0 6h3v1H8z'/%3E%3Cpath fill='currentColor' d='M6 4h9v3h3v4h2V6.4c0-.5-.2-1-.6-1.4L17 2.6c-.4-.4-.9-.6-1.4-.6H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h5v-2H6z'/%3E%3Cpath fill='currentColor' d='M8 7h4v1H8zm4 8h3v8h-3zm8-1h3v9h-3zm-4-2h3v11h-3zm-8 1h7v1H8zm0-2v1h7c0-.55.45-1 1-1z'/%3E%3C/svg%3E",
|
|
153
153
|
"core::download": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M20 17v2c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-2h2v2h12v-2zm-.81-7.19L17.78 8.4 13 13.18V3h-2v10.17L6.22 8.39 4.81 9.8 12 16.99l7.19-7.19Z'/%3E%3C/svg%3E",
|
|
154
|
+
"core::draeger": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 91.6 35.43'%3E%3Cpath fill='currentColor' d='M81.18 29.07h5.63V14.64c0-1.06 0-1.38.21-1.7.32-.74 1.17-1.17 2.23-1.17.96 0 1.59.21 2.34.74V8.27c-6.27.11-8.29.53-10.41 2.23v18.56ZM69.07 18.14V13.9c0-1.59.74-2.44 2.34-2.44 1.49 0 2.34.85 2.34 2.33v4.35zm10.31 3.29v-8.06c0-3.4-1.81-4.99-5.63-4.99h-4.68c-2.02 0-2.87.21-3.93 1.06-1.06.96-1.7 2.33-1.7 3.93v10.71c0 1.48.43 2.55 1.38 3.61 1.06 1.06 2.02 1.38 4.25 1.38h10.2v-4.24c-2.87.85-4.57 1.06-6.69 1.06-2.44 0-3.51-.53-3.51-1.91v-2.55zM51.75 27.8c0-1.59.74-2.44 2.34-2.44s2.44.85 2.44 2.44v2.33c0 1.38-.85 2.23-2.34 2.23-1.59 0-2.44-.85-2.44-2.23zm10.41-.53c0-1.59-.32-2.65-1.17-3.61-1.06-1.17-2.23-1.49-4.46-1.49h-4.68c-2.12 0-2.97.21-4.04 1.06-1.06.95-1.7 2.44-1.7 4.03v3.08c0 1.49.53 2.76 1.38 3.61 1.06 1.17 2.02 1.48 4.36 1.48h4.68c2.02 0 2.98-.21 4.04-1.06 1.06-.95 1.59-2.12 1.59-4.03v-3.08ZM51.75 13.69c0-1.38.85-2.23 2.44-2.23s2.44.85 2.44 2.23v2.44c0 1.38-.96 2.23-2.44 2.23-1.59 0-2.44-.85-2.44-2.23zm9.99-5.3h-9.99c-1.91 0-2.66.21-3.72 1.06-1.06.96-1.59 2.33-1.59 3.93v3.08c0 1.27.43 2.55 1.28 3.5 1.06 1.17 1.91 1.49 4.04 1.49h4.57c2.02 0 2.87-.32 3.83-1.06 1.06-.95 1.59-2.23 1.59-3.93V8.4Zm-22.63 17.4h-2.44c-.96 0-1.7-.32-2.13-1.06-.21-.32-.21-.42-.21-1.38v-1.91c0-1.59.74-2.33 2.34-2.33h2.44zm0-9.97h-4.89c-1.91 0-2.76.21-3.72 1.17-1.06.85-1.59 2.12-1.59 3.82v3.29c0 1.48.32 2.55 1.17 3.5 1.06 1.17 2.02 1.48 4.25 1.48h10.52V13.27c0-1.38-.43-2.55-1.38-3.5-1.17-1.17-2.13-1.49-4.25-1.49h-8.5v4.24c2.13-.85 3.51-1.17 5.42-1.17 2.02 0 2.97.64 2.97 2.02v2.44ZM41.45.01c-1.81 0-3.19 1.38-3.19 3.08 0 1.8 1.38 3.18 3.19 3.18 1.7 0 3.08-1.38 3.08-3.18 0-1.7-1.38-3.08-3.08-3.08m-7.55 0c-1.81 0-3.19 1.38-3.19 3.08 0 1.8 1.38 3.18 3.19 3.18 1.7 0 3.08-1.38 3.08-3.18 0-1.7-1.38-3.08-3.08-3.08M19.13 29.08h5.63V14.65c0-1.06 0-1.38.21-1.7.32-.74 1.17-1.17 2.23-1.17.96 0 1.59.21 2.34.74V8.28c-6.27.11-8.29.53-10.41 2.23v18.56ZM0 .72v2.97h9.14c1.06 0 1.59.21 2.13.74.43.53.43.74.43 2.65v15.29c0 2.87-.53 3.4-3.08 3.4H6.07V6.67H0v22.4h11.26c2.66 0 3.4-.21 4.68-1.49 1.17-1.17 1.38-2.02 1.38-5.31V6.24c0-2.02-.21-2.76-1.06-3.82C15.2 1.25 13.82.72 11.9.72z'/%3E%3C/svg%3E",
|
|
154
155
|
"core::drop": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 20c-2.76 0-5-2.24-5-5 0-.88.24-1.75.68-2.5L12 5.23l4.32 7.26c.45.77.68 1.64.68 2.51 0 2.76-2.24 5-5 5m0 2c3.87 0 7-3.13 7-7 0-1.29-.35-2.49-.96-3.52L12 1.32 5.96 11.48A6.93 6.93 0 0 0 5 15c0 3.87 3.13 7 7 7m-3-7H8c0 2.21 1.79 4 4 4v-1c-1.65 0-3-1.35-3-3'/%3E%3C/svg%3E",
|
|
155
156
|
"core::edit": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M21.5 4.09 19.91 2.5c-.78-.78-2.06-.77-2.85.02L3.13 16.46 2.3 21.7l5.24-.83L21.48 6.93c.79-.79.8-2.07.02-2.85ZM6.59 19l-1.88.3.3-1.88L16.22 6.21l1.59 1.59L6.6 19.01ZM20.07 5.52 18.8 6.79 17.21 5.2l1.29-1.29 1.58 1.57s0 .02-.02.03Z'/%3E%3C/svg%3E",
|
|
156
157
|
"core::education": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M7.06 2c-1.65 0-3 1.35-3 3v14c0 1.65 1.35 3 3 3h13V2zm-1 3c0-.55.45-1 1-1v12c-.35 0-.69.06-1 .18zm12 15h-11c-.55 0-1-.45-1-1s.45-1 1-1h11zm-10-4V4h10v12zm8-6h-6V6h6zm-5-1h4V7h-4zm-1 2h6v1h-6zm0 2h6v1h-6z'/%3E%3C/svg%3E",
|
|
@@ -1357,6 +1358,7 @@ $masks: ("ai::chat-agent": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2
|
|
|
1357
1358
|
"core::document-settings": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M8 11h8v.18c-.7.17-1.36.44-1.95.82H8zm0-1h8V9H8zm3.5 10H6V4h9v3h3v4.03c.7.05 1.38.22 2 .48V6.42c0-.53-.21-1.04-.59-1.41L17 2.6c-.38-.38-.88-.59-1.41-.59H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h6.82c-.55-.58-1-1.25-1.32-2ZM8 7v1h4V7zm0 7h4.03c.23-.36.49-.69.79-1H8zm0 4h3.03c-.01-.16-.03-.33-.03-.5s.01-.34.03-.5H8zm0-2h3.18c.08-.34.19-.68.32-1H8zm15.04 2.74a5.7 5.7 0 0 1-1.68 2.92l-1.16-.51c-.28.21-.59.4-.91.54l-.11 1.23c-.53.17-1.09.28-1.67.28s-1.14-.11-1.67-.28l-.1-1.22c-.34-.14-.65-.34-.94-.56l-1.14.53a5.7 5.7 0 0 1-1.68-2.89l1.04-.73c-.02-.18-.05-.35-.05-.54s.03-.37.06-.55l-1.04-.73c.26-1.13.86-2.13 1.68-2.89l1.14.53c.28-.21.57-.39.9-.53l.13-1.24c.54-.17 1.09-.28 1.68-.28s1.15.12 1.68.28l.13 1.24q.465.21.87.51l1.16-.52a5.6 5.6 0 0 1 1.69 2.91l-1.04.76c.02.17.05.33.05.5s-.03.32-.05.48l1.04.76Zm-3.38-1.24c0-1.2-.97-2.17-2.17-2.17s-2.17.97-2.17 2.17.97 2.17 2.17 2.17 2.17-.97 2.17-2.17'/%3E%3C/svg%3E",
|
|
1358
1359
|
"core::document-stats": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M8 17h3v1H8zm0-8h8v1H8zm0 6h3v1H8z'/%3E%3Cpath fill='currentColor' d='M6 4h9v3h3v4h2V6.4c0-.5-.2-1-.6-1.4L17 2.6c-.4-.4-.9-.6-1.4-.6H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h5v-2H6z'/%3E%3Cpath fill='currentColor' d='M8 7h4v1H8zm4 8h3v8h-3zm8-1h3v9h-3zm-4-2h3v11h-3zm-8 1h7v1H8zm0-2v1h7c0-.55.45-1 1-1z'/%3E%3C/svg%3E",
|
|
1359
1360
|
"core::download": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M20 17v2c0 1.1-.9 2-2 2H6c-1.1 0-2-.9-2-2v-2h2v2h12v-2zm-.81-7.19L17.78 8.4 13 13.18V3h-2v10.17L6.22 8.39 4.81 9.8 12 16.99l7.19-7.19Z'/%3E%3C/svg%3E",
|
|
1361
|
+
"core::draeger": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 91.6 35.43'%3E%3Cpath fill='currentColor' d='M81.18 29.07h5.63V14.64c0-1.06 0-1.38.21-1.7.32-.74 1.17-1.17 2.23-1.17.96 0 1.59.21 2.34.74V8.27c-6.27.11-8.29.53-10.41 2.23v18.56ZM69.07 18.14V13.9c0-1.59.74-2.44 2.34-2.44 1.49 0 2.34.85 2.34 2.33v4.35zm10.31 3.29v-8.06c0-3.4-1.81-4.99-5.63-4.99h-4.68c-2.02 0-2.87.21-3.93 1.06-1.06.96-1.7 2.33-1.7 3.93v10.71c0 1.48.43 2.55 1.38 3.61 1.06 1.06 2.02 1.38 4.25 1.38h10.2v-4.24c-2.87.85-4.57 1.06-6.69 1.06-2.44 0-3.51-.53-3.51-1.91v-2.55zM51.75 27.8c0-1.59.74-2.44 2.34-2.44s2.44.85 2.44 2.44v2.33c0 1.38-.85 2.23-2.34 2.23-1.59 0-2.44-.85-2.44-2.23zm10.41-.53c0-1.59-.32-2.65-1.17-3.61-1.06-1.17-2.23-1.49-4.46-1.49h-4.68c-2.12 0-2.97.21-4.04 1.06-1.06.95-1.7 2.44-1.7 4.03v3.08c0 1.49.53 2.76 1.38 3.61 1.06 1.17 2.02 1.48 4.36 1.48h4.68c2.02 0 2.98-.21 4.04-1.06 1.06-.95 1.59-2.12 1.59-4.03v-3.08ZM51.75 13.69c0-1.38.85-2.23 2.44-2.23s2.44.85 2.44 2.23v2.44c0 1.38-.96 2.23-2.44 2.23-1.59 0-2.44-.85-2.44-2.23zm9.99-5.3h-9.99c-1.91 0-2.66.21-3.72 1.06-1.06.96-1.59 2.33-1.59 3.93v3.08c0 1.27.43 2.55 1.28 3.5 1.06 1.17 1.91 1.49 4.04 1.49h4.57c2.02 0 2.87-.32 3.83-1.06 1.06-.95 1.59-2.23 1.59-3.93V8.4Zm-22.63 17.4h-2.44c-.96 0-1.7-.32-2.13-1.06-.21-.32-.21-.42-.21-1.38v-1.91c0-1.59.74-2.33 2.34-2.33h2.44zm0-9.97h-4.89c-1.91 0-2.76.21-3.72 1.17-1.06.85-1.59 2.12-1.59 3.82v3.29c0 1.48.32 2.55 1.17 3.5 1.06 1.17 2.02 1.48 4.25 1.48h10.52V13.27c0-1.38-.43-2.55-1.38-3.5-1.17-1.17-2.13-1.49-4.25-1.49h-8.5v4.24c2.13-.85 3.51-1.17 5.42-1.17 2.02 0 2.97.64 2.97 2.02v2.44ZM41.45.01c-1.81 0-3.19 1.38-3.19 3.08 0 1.8 1.38 3.18 3.19 3.18 1.7 0 3.08-1.38 3.08-3.18 0-1.7-1.38-3.08-3.08-3.08m-7.55 0c-1.81 0-3.19 1.38-3.19 3.08 0 1.8 1.38 3.18 3.19 3.18 1.7 0 3.08-1.38 3.08-3.18 0-1.7-1.38-3.08-3.08-3.08M19.13 29.08h5.63V14.65c0-1.06 0-1.38.21-1.7.32-.74 1.17-1.17 2.23-1.17.96 0 1.59.21 2.34.74V8.28c-6.27.11-8.29.53-10.41 2.23v18.56ZM0 .72v2.97h9.14c1.06 0 1.59.21 2.13.74.43.53.43.74.43 2.65v15.29c0 2.87-.53 3.4-3.08 3.4H6.07V6.67H0v22.4h11.26c2.66 0 3.4-.21 4.68-1.49 1.17-1.17 1.38-2.02 1.38-5.31V6.24c0-2.02-.21-2.76-1.06-3.82C15.2 1.25 13.82.72 11.9.72z'/%3E%3C/svg%3E",
|
|
1360
1362
|
"core::drop": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M12 20c-2.76 0-5-2.24-5-5 0-.88.24-1.75.68-2.5L12 5.23l4.32 7.26c.45.77.68 1.64.68 2.51 0 2.76-2.24 5-5 5m0 2c3.87 0 7-3.13 7-7 0-1.29-.35-2.49-.96-3.52L12 1.32 5.96 11.48A6.93 6.93 0 0 0 5 15c0 3.87 3.13 7 7 7m-3-7H8c0 2.21 1.79 4 4 4v-1c-1.65 0-3-1.35-3-3'/%3E%3C/svg%3E",
|
|
1361
1363
|
"core::edit": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M21.5 4.09 19.91 2.5c-.78-.78-2.06-.77-2.85.02L3.13 16.46 2.3 21.7l5.24-.83L21.48 6.93c.79-.79.8-2.07.02-2.85ZM6.59 19l-1.88.3.3-1.88L16.22 6.21l1.59 1.59L6.6 19.01ZM20.07 5.52 18.8 6.79 17.21 5.2l1.29-1.29 1.58 1.57s0 .02-.02.03Z'/%3E%3C/svg%3E",
|
|
1362
1364
|
"core::education": "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='currentColor' d='M7.06 2c-1.65 0-3 1.35-3 3v14c0 1.65 1.35 3 3 3h13V2zm-1 3c0-.55.45-1 1-1v12c-.35 0-.69.06-1 .18zm12 15h-11c-.55 0-1-.45-1-1s.45-1 1-1h11zm-10-4V4h10v12zm8-6h-6V6h6zm-5-1h4V7h-4zm-1 2h6v1h-6zm0 2h6v1h-6z'/%3E%3C/svg%3E",
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { registerAsset as r } from '@odx/assets-utils';
|
|
2
|
+
export default r('odx-icon::core::draeger', '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 91.6 35.43"><path fill="currentColor" d="M81.18 29.07h5.63V14.64c0-1.06 0-1.38.21-1.7.32-.74 1.17-1.17 2.23-1.17.96 0 1.59.21 2.34.74V8.27c-6.27.11-8.29.53-10.41 2.23v18.56ZM69.07 18.14V13.9c0-1.59.74-2.44 2.34-2.44 1.49 0 2.34.85 2.34 2.33v4.35zm10.31 3.29v-8.06c0-3.4-1.81-4.99-5.63-4.99h-4.68c-2.02 0-2.87.21-3.93 1.06-1.06.96-1.7 2.33-1.7 3.93v10.71c0 1.48.43 2.55 1.38 3.61 1.06 1.06 2.02 1.38 4.25 1.38h10.2v-4.24c-2.87.85-4.57 1.06-6.69 1.06-2.44 0-3.51-.53-3.51-1.91v-2.55zM51.75 27.8c0-1.59.74-2.44 2.34-2.44s2.44.85 2.44 2.44v2.33c0 1.38-.85 2.23-2.34 2.23-1.59 0-2.44-.85-2.44-2.23zm10.41-.53c0-1.59-.32-2.65-1.17-3.61-1.06-1.17-2.23-1.49-4.46-1.49h-4.68c-2.12 0-2.97.21-4.04 1.06-1.06.95-1.7 2.44-1.7 4.03v3.08c0 1.49.53 2.76 1.38 3.61 1.06 1.17 2.02 1.48 4.36 1.48h4.68c2.02 0 2.98-.21 4.04-1.06 1.06-.95 1.59-2.12 1.59-4.03v-3.08ZM51.75 13.69c0-1.38.85-2.23 2.44-2.23s2.44.85 2.44 2.23v2.44c0 1.38-.96 2.23-2.44 2.23-1.59 0-2.44-.85-2.44-2.23zm9.99-5.3h-9.99c-1.91 0-2.66.21-3.72 1.06-1.06.96-1.59 2.33-1.59 3.93v3.08c0 1.27.43 2.55 1.28 3.5 1.06 1.17 1.91 1.49 4.04 1.49h4.57c2.02 0 2.87-.32 3.83-1.06 1.06-.95 1.59-2.23 1.59-3.93V8.4Zm-22.63 17.4h-2.44c-.96 0-1.7-.32-2.13-1.06-.21-.32-.21-.42-.21-1.38v-1.91c0-1.59.74-2.33 2.34-2.33h2.44zm0-9.97h-4.89c-1.91 0-2.76.21-3.72 1.17-1.06.85-1.59 2.12-1.59 3.82v3.29c0 1.48.32 2.55 1.17 3.5 1.06 1.17 2.02 1.48 4.25 1.48h10.52V13.27c0-1.38-.43-2.55-1.38-3.5-1.17-1.17-2.13-1.49-4.25-1.49h-8.5v4.24c2.13-.85 3.51-1.17 5.42-1.17 2.02 0 2.97.64 2.97 2.02v2.44ZM41.45.01c-1.81 0-3.19 1.38-3.19 3.08 0 1.8 1.38 3.18 3.19 3.18 1.7 0 3.08-1.38 3.08-3.18 0-1.7-1.38-3.08-3.08-3.08m-7.55 0c-1.81 0-3.19 1.38-3.19 3.08 0 1.8 1.38 3.18 3.19 3.18 1.7 0 3.08-1.38 3.08-3.18 0-1.7-1.38-3.08-3.08-3.08M19.13 29.08h5.63V14.65c0-1.06 0-1.38.21-1.7.32-.74 1.17-1.17 2.23-1.17.96 0 1.59.21 2.34.74V8.28c-6.27.11-8.29.53-10.41 2.23v18.56ZM0 .72v2.97h9.14c1.06 0 1.59.21 2.13.74.43.53.43.74.43 2.65v15.29c0 2.87-.53 3.4-3.08 3.4H6.07V6.67H0v22.4h11.26c2.66 0 3.4-.21 4.68-1.49 1.17-1.17 1.38-2.02 1.38-5.31V6.24c0-2.02-.21-2.76-1.06-3.82C15.2 1.25 13.82.72 11.9.72z"/></svg>');
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 91.6 35.43"><path fill="currentColor" d="M81.18 29.07h5.63V14.64c0-1.06 0-1.38.21-1.7.32-.74 1.17-1.17 2.23-1.17.96 0 1.59.21 2.34.74V8.27c-6.27.11-8.29.53-10.41 2.23v18.56ZM69.07 18.14V13.9c0-1.59.74-2.44 2.34-2.44 1.49 0 2.34.85 2.34 2.33v4.35zm10.31 3.29v-8.06c0-3.4-1.81-4.99-5.63-4.99h-4.68c-2.02 0-2.87.21-3.93 1.06-1.06.96-1.7 2.33-1.7 3.93v10.71c0 1.48.43 2.55 1.38 3.61 1.06 1.06 2.02 1.38 4.25 1.38h10.2v-4.24c-2.87.85-4.57 1.06-6.69 1.06-2.44 0-3.51-.53-3.51-1.91v-2.55zM51.75 27.8c0-1.59.74-2.44 2.34-2.44s2.44.85 2.44 2.44v2.33c0 1.38-.85 2.23-2.34 2.23-1.59 0-2.44-.85-2.44-2.23zm10.41-.53c0-1.59-.32-2.65-1.17-3.61-1.06-1.17-2.23-1.49-4.46-1.49h-4.68c-2.12 0-2.97.21-4.04 1.06-1.06.95-1.7 2.44-1.7 4.03v3.08c0 1.49.53 2.76 1.38 3.61 1.06 1.17 2.02 1.48 4.36 1.48h4.68c2.02 0 2.98-.21 4.04-1.06 1.06-.95 1.59-2.12 1.59-4.03v-3.08ZM51.75 13.69c0-1.38.85-2.23 2.44-2.23s2.44.85 2.44 2.23v2.44c0 1.38-.96 2.23-2.44 2.23-1.59 0-2.44-.85-2.44-2.23zm9.99-5.3h-9.99c-1.91 0-2.66.21-3.72 1.06-1.06.96-1.59 2.33-1.59 3.93v3.08c0 1.27.43 2.55 1.28 3.5 1.06 1.17 1.91 1.49 4.04 1.49h4.57c2.02 0 2.87-.32 3.83-1.06 1.06-.95 1.59-2.23 1.59-3.93V8.4Zm-22.63 17.4h-2.44c-.96 0-1.7-.32-2.13-1.06-.21-.32-.21-.42-.21-1.38v-1.91c0-1.59.74-2.33 2.34-2.33h2.44zm0-9.97h-4.89c-1.91 0-2.76.21-3.72 1.17-1.06.85-1.59 2.12-1.59 3.82v3.29c0 1.48.32 2.55 1.17 3.5 1.06 1.17 2.02 1.48 4.25 1.48h10.52V13.27c0-1.38-.43-2.55-1.38-3.5-1.17-1.17-2.13-1.49-4.25-1.49h-8.5v4.24c2.13-.85 3.51-1.17 5.42-1.17 2.02 0 2.97.64 2.97 2.02v2.44ZM41.45.01c-1.81 0-3.19 1.38-3.19 3.08 0 1.8 1.38 3.18 3.19 3.18 1.7 0 3.08-1.38 3.08-3.18 0-1.7-1.38-3.08-3.08-3.08m-7.55 0c-1.81 0-3.19 1.38-3.19 3.08 0 1.8 1.38 3.18 3.19 3.18 1.7 0 3.08-1.38 3.08-3.18 0-1.7-1.38-3.08-3.08-3.08M19.13 29.08h5.63V14.65c0-1.06 0-1.38.21-1.7.32-.74 1.17-1.17 2.23-1.17.96 0 1.59.21 2.34.74V8.28c-6.27.11-8.29.53-10.41 2.23v18.56ZM0 .72v2.97h9.14c1.06 0 1.59.21 2.13.74.43.53.43.74.43 2.65v15.29c0 2.87-.53 3.4-3.08 3.4H6.07V6.67H0v22.4h11.26c2.66 0 3.4-.21 4.68-1.49 1.17-1.17 1.38-2.02 1.38-5.31V6.24c0-2.02-.21-2.76-1.06-3.82C15.2 1.25 13.82.72 11.9.72z"/></svg>
|
package/dist/lib/core.d.ts
CHANGED
|
@@ -138,6 +138,7 @@ export { default as DocumentQaIcon } from './core/document-qa.js';
|
|
|
138
138
|
export { default as DocumentSettingsIcon } from './core/document-settings.js';
|
|
139
139
|
export { default as DocumentStatsIcon } from './core/document-stats.js';
|
|
140
140
|
export { default as DownloadIcon } from './core/download.js';
|
|
141
|
+
export { default as DraegerIcon } from './core/draeger.js';
|
|
141
142
|
export { default as DropIcon } from './core/drop.js';
|
|
142
143
|
export { default as EditIcon } from './core/edit.js';
|
|
143
144
|
export { default as EducationIcon } from './core/education.js';
|
package/dist/lib/core.js
CHANGED
|
@@ -138,6 +138,7 @@ export { default as DocumentQaIcon } from './core/document-qa.js';
|
|
|
138
138
|
export { default as DocumentSettingsIcon } from './core/document-settings.js';
|
|
139
139
|
export { default as DocumentStatsIcon } from './core/document-stats.js';
|
|
140
140
|
export { default as DownloadIcon } from './core/download.js';
|
|
141
|
+
export { default as DraegerIcon } from './core/draeger.js';
|
|
141
142
|
export { default as DropIcon } from './core/drop.js';
|
|
142
143
|
export { default as EditIcon } from './core/edit.js';
|
|
143
144
|
export { default as EducationIcon } from './core/education.js';
|