vira 23.1.2 → 23.1.3
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/chat-24.icon.js +1 -1
- package/dist/icons/icon-svgs/commit-24.icon.js +1 -0
- package/dist/icons/icon-svgs/document-24.icon.js +7 -1
- package/dist/icons/icon-svgs/pencil-24.icon.js +1 -1
- package/dist/icons/icon-svgs/shield-24.icon.js +7 -1
- package/dist/icons/icon-svgs/star-24.icon.js +7 -1
- package/package.json +2 -2
|
@@ -11,7 +11,7 @@ import { defineIcon } from '../icon-svg.js';
|
|
|
11
11
|
export const Chat24Icon = defineIcon({
|
|
12
12
|
name: 'Chat24Icon',
|
|
13
13
|
svgTemplate: html `
|
|
14
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
|
|
14
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
15
15
|
<path
|
|
16
16
|
d="M5 15.4c-1.6-1.2-2.6-2.7-2.6-4.4 0-3.5 4.3-6.3 9.6-6.3s9.6 2.8 9.6 6.3-4.3 6.4-9.6 6.4L9 17l-5 3.8 1-5.5Z"
|
|
17
17
|
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
@@ -11,7 +11,13 @@ import { defineIcon } from '../icon-svg.js';
|
|
|
11
11
|
export const Document24Icon = defineIcon({
|
|
12
12
|
name: 'Document24Icon',
|
|
13
13
|
svgTemplate: html `
|
|
14
|
-
<svg
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
width="24"
|
|
18
|
+
height="24"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
>
|
|
15
21
|
<path
|
|
16
22
|
d="m19 9-6-6H5v18h14V9Z"
|
|
17
23
|
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
@@ -11,7 +11,7 @@ import { defineIcon } from '../icon-svg.js';
|
|
|
11
11
|
export const Pencil24Icon = defineIcon({
|
|
12
12
|
name: 'Pencil24Icon',
|
|
13
13
|
svgTemplate: html `
|
|
14
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
|
|
14
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24">
|
|
15
15
|
<path
|
|
16
16
|
d="M20.041 4.966c.303-.418.097-1.085-.459-1.489l-1.771-1.285c-.557-.404-1.255-.393-1.558.025L5.12 17.561l-.167 4.215 3.955-1.467S19.965 5.071 20.041 4.966"
|
|
17
17
|
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
@@ -11,7 +11,13 @@ import { defineIcon } from '../icon-svg.js';
|
|
|
11
11
|
export const Shield24Icon = defineIcon({
|
|
12
12
|
name: 'Shield24Icon',
|
|
13
13
|
svgTemplate: html `
|
|
14
|
-
<svg
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xml:space="preserve"
|
|
17
|
+
width="24"
|
|
18
|
+
height="24"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
>
|
|
15
21
|
<path
|
|
16
22
|
d="M12 21s-8-3.5-8-10V6s4.8-.1 8-3c3.2 2.9 8 3 8 3v5c0 6.5-8 10-8 10Z"
|
|
17
23
|
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
|
@@ -11,7 +11,13 @@ import { defineIcon } from '../icon-svg.js';
|
|
|
11
11
|
export const Star24Icon = defineIcon({
|
|
12
12
|
name: 'Star24Icon',
|
|
13
13
|
svgTemplate: html `
|
|
14
|
-
<svg
|
|
14
|
+
<svg
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
width="24"
|
|
17
|
+
height="24"
|
|
18
|
+
stroke-miterlimit="2"
|
|
19
|
+
viewBox="0 0 24 24"
|
|
20
|
+
>
|
|
15
21
|
<path
|
|
16
22
|
d="m12 2 2.25 6.91h7.26l-5.88 4.27 2.25 6.91L12 15.82l-5.88 4.27 2.25-6.91-5.88-4.27h7.27L12 2Z"
|
|
17
23
|
stroke=${viraIconCssVars['vira-icon-stroke-color'].value}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vira",
|
|
3
|
-
"version": "23.1.
|
|
3
|
+
"version": "23.1.3",
|
|
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": "^23.1.
|
|
69
|
+
"element-vir": "^23.1.3"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
72
|
"node": ">=22"
|