vira 25.5.0 → 25.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.
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { defineIcon } from '../icon-svg.js';
|
|
3
|
+
/**
|
|
4
|
+
* A status icon that indicates a warning.
|
|
5
|
+
*
|
|
6
|
+
* @category Icon
|
|
7
|
+
* @category SVG
|
|
8
|
+
* @see https://electrovir.github.io/element-vir/vira/book/icons/statuswarning24icon
|
|
9
|
+
*/
|
|
10
|
+
export const StatusWarning24Icon = defineIcon({
|
|
11
|
+
name: 'StatusWarning24Icon',
|
|
12
|
+
svgTemplate: html `
|
|
13
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
14
|
+
<circle cx="12" cy="12" r="9" style="fill:none;stroke:#000;stroke-width:1px" />
|
|
15
|
+
<path
|
|
16
|
+
d="m12 14 .2-7h-.4l.2 7Z"
|
|
17
|
+
style="stroke:#000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2"
|
|
18
|
+
/>
|
|
19
|
+
<circle cx="12" cy="16" r="1" />
|
|
20
|
+
</svg>
|
|
21
|
+
`,
|
|
22
|
+
});
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export * from './icon-svgs/star-24.icon.js';
|
|
|
23
23
|
export * from './icon-svgs/status-failure-24.icon.js';
|
|
24
24
|
export * from './icon-svgs/status-in-progress-24.icon.js';
|
|
25
25
|
export * from './icon-svgs/status-success-24.icon.js';
|
|
26
|
+
export * from './icon-svgs/status-warning-24.icon.js';
|
|
26
27
|
/**
|
|
27
28
|
* All Vira icons in an object mapped by their icon name.
|
|
28
29
|
*
|
|
@@ -52,4 +53,5 @@ export declare const allIconsByName: {
|
|
|
52
53
|
readonly StatusFailure24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
53
54
|
readonly StatusInProgress24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
54
55
|
readonly StatusSuccess24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
56
|
+
readonly StatusWarning24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
55
57
|
};
|
package/dist/icons/index.js
CHANGED
|
@@ -21,6 +21,7 @@ import { Star24Icon } from './icon-svgs/star-24.icon.js';
|
|
|
21
21
|
import { StatusFailure24Icon } from './icon-svgs/status-failure-24.icon.js';
|
|
22
22
|
import { StatusInProgress24Icon } from './icon-svgs/status-in-progress-24.icon.js';
|
|
23
23
|
import { StatusSuccess24Icon } from './icon-svgs/status-success-24.icon.js';
|
|
24
|
+
import { StatusWarning24Icon } from './icon-svgs/status-warning-24.icon.js';
|
|
24
25
|
export * from './icon-css-vars.js';
|
|
25
26
|
export * from './icon-svg.js';
|
|
26
27
|
export * from './icon-svgs/chat-24.icon.js';
|
|
@@ -46,6 +47,7 @@ export * from './icon-svgs/star-24.icon.js';
|
|
|
46
47
|
export * from './icon-svgs/status-failure-24.icon.js';
|
|
47
48
|
export * from './icon-svgs/status-in-progress-24.icon.js';
|
|
48
49
|
export * from './icon-svgs/status-success-24.icon.js';
|
|
50
|
+
export * from './icon-svgs/status-warning-24.icon.js';
|
|
49
51
|
/**
|
|
50
52
|
* All Vira icons in an object mapped by their icon name.
|
|
51
53
|
*
|
|
@@ -75,4 +77,5 @@ export const allIconsByName = {
|
|
|
75
77
|
StatusFailure24Icon,
|
|
76
78
|
StatusInProgress24Icon,
|
|
77
79
|
StatusSuccess24Icon,
|
|
80
|
+
StatusWarning24Icon,
|
|
78
81
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vira",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.7.0",
|
|
4
4
|
"description": "A simple and highly versatile design system using element-vir.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"vite-tsconfig-paths": "^5.1.4"
|
|
67
67
|
},
|
|
68
68
|
"peerDependencies": {
|
|
69
|
-
"element-vir": "^25.
|
|
69
|
+
"element-vir": "^25.7.0"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
72
|
"node": ">=22"
|