vira 28.0.0 → 28.1.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/dist/icons/icon-svgs/status-failure-24.icon.js +8 -1
- package/dist/icons/icon-svgs/status-unknown-24.icon.d.ts +8 -0
- package/dist/icons/icon-svgs/status-unknown-24.icon.js +47 -0
- package/dist/icons/icon-svgs/status-warning-24.icon.js +15 -9
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.js +3 -0
- package/package.json +7 -7
|
@@ -11,7 +11,13 @@ import { defineIcon } from '../icon-svg.js';
|
|
|
11
11
|
export const StatusFailure24Icon = defineIcon({
|
|
12
12
|
name: 'StatusFailure24Icon',
|
|
13
13
|
svgTemplate: html `
|
|
14
|
-
<svg
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width="24"
|
|
17
|
+
height="24"
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5"
|
|
20
|
+
>
|
|
15
21
|
<circle
|
|
16
22
|
cx="12"
|
|
17
23
|
cy="12"
|
|
@@ -26,6 +32,7 @@ export const StatusFailure24Icon = defineIcon({
|
|
|
26
32
|
fill="none"
|
|
27
33
|
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
28
34
|
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
35
|
+
style="stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2"
|
|
29
36
|
/>
|
|
30
37
|
</svg>
|
|
31
38
|
`,
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A status icon with a ? that indicates the status is unknown.
|
|
3
|
+
*
|
|
4
|
+
* @category Icon
|
|
5
|
+
* @category SVG
|
|
6
|
+
* @see https://electrovir.github.io/vira/book/icons/statusunknown24icon
|
|
7
|
+
*/
|
|
8
|
+
export declare const StatusUnknown24Icon: import("../icon-svg.js").ViraIconSvg;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { html } from 'element-vir';
|
|
2
|
+
import { viraIconCssVars } from '../icon-css-vars.js';
|
|
3
|
+
import { defineIcon } from '../icon-svg.js';
|
|
4
|
+
/**
|
|
5
|
+
* A status icon with a ? that indicates the status is unknown.
|
|
6
|
+
*
|
|
7
|
+
* @category Icon
|
|
8
|
+
* @category SVG
|
|
9
|
+
* @see https://electrovir.github.io/vira/book/icons/statusunknown24icon
|
|
10
|
+
*/
|
|
11
|
+
export const StatusUnknown24Icon = defineIcon({
|
|
12
|
+
name: 'StatusUnknown24Icon',
|
|
13
|
+
svgTemplate: html `
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5"
|
|
18
|
+
viewBox="0 0 24 24"
|
|
19
|
+
width="24"
|
|
20
|
+
height="24"
|
|
21
|
+
>
|
|
22
|
+
<circle
|
|
23
|
+
cx="12"
|
|
24
|
+
cy="12"
|
|
25
|
+
r="9"
|
|
26
|
+
fill=${viraIconCssVars['vira-icon-fill-color'].value}
|
|
27
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
28
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
29
|
+
/>
|
|
30
|
+
<circle
|
|
31
|
+
cx="12"
|
|
32
|
+
cy="16"
|
|
33
|
+
r="1"
|
|
34
|
+
fill=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
35
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
36
|
+
stroke-width="calc(${viraIconCssVars['vira-icon-stroke-width'].value} - 1px)"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
d="M12 14c0-.5.09-.87.14-1q.13-.38.37-.7c.19-.24 1.3-1.46 1.46-1.65a3 3 0 0 0 .44-.73q.17-.42.17-.94 0-1.07-.7-1.65a2.7 2.7 0 0 0-1.8-.56q-1.12 0-1.83.7c-.3.29-.66.86-.66 1.53"
|
|
40
|
+
fill="none"
|
|
41
|
+
style="stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2"
|
|
42
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
43
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
44
|
+
/>
|
|
45
|
+
</svg>
|
|
46
|
+
`,
|
|
47
|
+
});
|
|
@@ -11,7 +11,14 @@ import { defineIcon } from '../icon-svg.js';
|
|
|
11
11
|
export const StatusWarning24Icon = defineIcon({
|
|
12
12
|
name: 'StatusWarning24Icon',
|
|
13
13
|
svgTemplate: html `
|
|
14
|
-
<svg
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:1.5"
|
|
18
|
+
width="24"
|
|
19
|
+
height="24"
|
|
20
|
+
viewBox="0 0 24 24"
|
|
21
|
+
>
|
|
15
22
|
<circle
|
|
16
23
|
cx="12"
|
|
17
24
|
cy="12"
|
|
@@ -20,14 +27,6 @@ export const StatusWarning24Icon = defineIcon({
|
|
|
20
27
|
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
21
28
|
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
22
29
|
/>
|
|
23
|
-
|
|
24
|
-
<path
|
|
25
|
-
d="m12 14 .2-7h-.4l.2 7Z"
|
|
26
|
-
fill="none"
|
|
27
|
-
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
28
|
-
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
29
|
-
/>
|
|
30
|
-
|
|
31
30
|
<circle
|
|
32
31
|
cx="12"
|
|
33
32
|
cy="16"
|
|
@@ -36,6 +35,13 @@ export const StatusWarning24Icon = defineIcon({
|
|
|
36
35
|
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
37
36
|
stroke-width="calc(${viraIconCssVars['vira-icon-stroke-width'].value} - 1px)"
|
|
38
37
|
/>
|
|
38
|
+
<path
|
|
39
|
+
d="m12 14 .2-7h-.4l.2 7Z"
|
|
40
|
+
fill="none"
|
|
41
|
+
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
42
|
+
stroke-width=${viraIconCssVars['vira-icon-stroke-width'].value}
|
|
43
|
+
style="stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2"
|
|
44
|
+
/>
|
|
39
45
|
</svg>
|
|
40
46
|
`,
|
|
41
47
|
});
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -28,6 +28,7 @@ export * from './icon-svgs/star-24.icon.js';
|
|
|
28
28
|
export * from './icon-svgs/status-failure-24.icon.js';
|
|
29
29
|
export * from './icon-svgs/status-in-progress-24.icon.js';
|
|
30
30
|
export * from './icon-svgs/status-success-24.icon.js';
|
|
31
|
+
export * from './icon-svgs/status-unknown-24.icon.js';
|
|
31
32
|
export * from './icon-svgs/status-warning-24.icon.js';
|
|
32
33
|
export * from './icon-svgs/upload-24.icon.js';
|
|
33
34
|
/**
|
|
@@ -63,6 +64,7 @@ export declare const allIconsByName: {
|
|
|
63
64
|
readonly StatusFailure24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
64
65
|
readonly StatusInProgress24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
65
66
|
readonly StatusSuccess24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
67
|
+
readonly StatusUnknown24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
66
68
|
readonly StatusWarning24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
67
69
|
readonly Upload24Icon: import("./icon-svg.js").ViraIconSvg;
|
|
68
70
|
};
|
package/dist/icons/index.js
CHANGED
|
@@ -26,6 +26,7 @@ import { Star24Icon } from './icon-svgs/star-24.icon.js';
|
|
|
26
26
|
import { StatusFailure24Icon } from './icon-svgs/status-failure-24.icon.js';
|
|
27
27
|
import { StatusInProgress24Icon } from './icon-svgs/status-in-progress-24.icon.js';
|
|
28
28
|
import { StatusSuccess24Icon } from './icon-svgs/status-success-24.icon.js';
|
|
29
|
+
import { StatusUnknown24Icon } from './icon-svgs/status-unknown-24.icon.js';
|
|
29
30
|
import { StatusWarning24Icon } from './icon-svgs/status-warning-24.icon.js';
|
|
30
31
|
import { Upload24Icon } from './icon-svgs/upload-24.icon.js';
|
|
31
32
|
export * from './icon-css-vars.js';
|
|
@@ -57,6 +58,7 @@ export * from './icon-svgs/star-24.icon.js';
|
|
|
57
58
|
export * from './icon-svgs/status-failure-24.icon.js';
|
|
58
59
|
export * from './icon-svgs/status-in-progress-24.icon.js';
|
|
59
60
|
export * from './icon-svgs/status-success-24.icon.js';
|
|
61
|
+
export * from './icon-svgs/status-unknown-24.icon.js';
|
|
60
62
|
export * from './icon-svgs/status-warning-24.icon.js';
|
|
61
63
|
export * from './icon-svgs/upload-24.icon.js';
|
|
62
64
|
/**
|
|
@@ -92,6 +94,7 @@ export const allIconsByName = {
|
|
|
92
94
|
StatusFailure24Icon,
|
|
93
95
|
StatusInProgress24Icon,
|
|
94
96
|
StatusSuccess24Icon,
|
|
97
|
+
StatusUnknown24Icon,
|
|
95
98
|
StatusWarning24Icon,
|
|
96
99
|
Upload24Icon,
|
|
97
100
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vira",
|
|
3
|
-
"version": "28.
|
|
3
|
+
"version": "28.1.0",
|
|
4
4
|
"description": "A simple and highly versatile design system using element-vir.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"design",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"test:docs": "virmator docs check"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@augment-vir/assert": "^31.
|
|
42
|
-
"@augment-vir/common": "^31.
|
|
43
|
-
"@augment-vir/web": "^31.
|
|
41
|
+
"@augment-vir/assert": "^31.45.0",
|
|
42
|
+
"@augment-vir/common": "^31.45.0",
|
|
43
|
+
"@augment-vir/web": "^31.45.0",
|
|
44
44
|
"colorjs.io": "^0.5.2",
|
|
45
45
|
"date-vir": "^8.0.0",
|
|
46
46
|
"device-navigation": "^4.5.5",
|
|
@@ -52,18 +52,18 @@
|
|
|
52
52
|
"typed-event-target": "^4.1.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@augment-vir/test": "^31.
|
|
55
|
+
"@augment-vir/test": "^31.45.0",
|
|
56
56
|
"@web/dev-server-esbuild": "^1.0.4",
|
|
57
57
|
"@web/test-runner": "^0.20.2",
|
|
58
58
|
"@web/test-runner-commands": "^0.9.0",
|
|
59
59
|
"@web/test-runner-playwright": "^0.11.1",
|
|
60
60
|
"@web/test-runner-visual-regression": "^0.10.0",
|
|
61
|
-
"esbuild": "^0.25.
|
|
61
|
+
"esbuild": "^0.25.11",
|
|
62
62
|
"istanbul-smart-text-reporter": "^1.1.5",
|
|
63
63
|
"markdown-code-example-inserter": "^3.0.3",
|
|
64
64
|
"typedoc": "^0.28.14",
|
|
65
65
|
"typescript": "5.9.3",
|
|
66
|
-
"vite": "^7.1.
|
|
66
|
+
"vite": "^7.1.12",
|
|
67
67
|
"vite-tsconfig-paths": "^5.1.4"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|