vira 26.5.7 → 26.5.8
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
2
3
|
import { defineIcon } from '../icon-svg.js';
|
|
3
4
|
/**
|
|
4
5
|
* A status icon that indicates a warning.
|
|
@@ -11,12 +12,28 @@ export const StatusWarning24Icon = defineIcon({
|
|
|
11
12
|
name: 'StatusWarning24Icon',
|
|
12
13
|
svgTemplate: html `
|
|
13
14
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
14
|
-
<circle
|
|
15
|
+
<circle
|
|
16
|
+
cx="12"
|
|
17
|
+
cy="12"
|
|
18
|
+
r="9"
|
|
19
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
20
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
21
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
22
|
+
/>
|
|
15
23
|
<path
|
|
16
24
|
d="m12 14 .2-7h-.4l.2 7Z"
|
|
17
|
-
|
|
25
|
+
fill="none"
|
|
26
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
27
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
28
|
+
/>
|
|
29
|
+
<circle
|
|
30
|
+
cx="12"
|
|
31
|
+
cy="16"
|
|
32
|
+
r="1"
|
|
33
|
+
fill=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
34
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
35
|
+
stroke-width="calc(${viraIconCssVars['vira-icon-stroke-width'].value} - 1px)"
|
|
18
36
|
/>
|
|
19
|
-
<circle cx="12" cy="16" r="1" />
|
|
20
37
|
</svg>
|
|
21
38
|
`,
|
|
22
39
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vira",
|
|
3
|
-
"version": "26.5.
|
|
3
|
+
"version": "26.5.8",
|
|
4
4
|
"description": "A simple and highly versatile design system using element-vir.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"vite-tsconfig-paths": "^5.1.4"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
|
-
"element-vir": "^26.5.
|
|
70
|
+
"element-vir": "^26.5.8"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
73
|
"node": ">=22"
|