@thesvg/vue 3.0.0 → 3.0.1
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/google-chat.cjs +17 -10
- package/dist/google-chat.js +17 -10
- package/dist/index.cjs +2 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/vrs.cjs +26 -0
- package/dist/vrs.d.ts +7 -0
- package/dist/vrs.js +23 -0
- package/package.json +2 -2
package/dist/google-chat.cjs
CHANGED
|
@@ -10,21 +10,28 @@ const GoogleChat = vue_1.defineComponent({
|
|
|
10
10
|
name: 'GoogleChat',
|
|
11
11
|
setup(_, { attrs }) {
|
|
12
12
|
return () => vue_1.h('svg', {
|
|
13
|
-
viewBox: '0 0
|
|
13
|
+
viewBox: '0 0 311 320',
|
|
14
14
|
fill: 'none',
|
|
15
15
|
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
16
|
...attrs
|
|
17
17
|
}, [
|
|
18
|
-
vue_1.h('
|
|
19
|
-
|
|
20
|
-
vue_1.h('path', {"d":"
|
|
21
|
-
vue_1.h('path', {"d":"
|
|
18
|
+
vue_1.h('title', {}),
|
|
19
|
+
vue_1.h('g', {"stroke-width":"2","fill":"none","stroke-linecap":"butt"}, [
|
|
20
|
+
vue_1.h('path', {"stroke":"#7e916f","vector-effect":"non-scaling-stroke","d":"M76.37.51l.01 76.47"}),
|
|
21
|
+
vue_1.h('path', {"stroke":"#1375eb","vector-effect":"non-scaling-stroke","d":"M76.38 76.98 0 76.96"}),
|
|
22
|
+
vue_1.h('path', {"stroke":"#f3801d","vector-effect":"non-scaling-stroke","d":"M235.08 1.09q-.16.06-.27.13-.17.09-.17.28l-.02 75.51"}),
|
|
23
|
+
vue_1.h('path', {"stroke":"#7eb426","vector-effect":"non-scaling-stroke","d":"M234.62 77.01h-.05"}),
|
|
24
|
+
vue_1.h('path', {"stroke":"#91a080","vector-effect":"non-scaling-stroke","d":"m76.41 77.01-.03-.03"}),
|
|
25
|
+
vue_1.h('path', {"stroke":"#75783e","vector-effect":"non-scaling-stroke","d":"m310.53 76.77-75.91.24"}),
|
|
26
|
+
vue_1.h('path', {"stroke":"#138495","vector-effect":"non-scaling-stroke","d":"M76.43 182.69 0 182.67"}),
|
|
27
|
+
vue_1.h('path', {"stroke":"#00983a","vector-effect":"non-scaling-stroke","d":"m76.44 259.13-.01-38.28"})
|
|
22
28
|
]),
|
|
23
|
-
vue_1.h('
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
29
|
+
vue_1.h('path', {"fill":"#0066da","d":"m76.37.51.01 76.47L0 76.96V20.77q.85-5.96 3.53-10.01Q10.14.74 22.75.67 49.41.53 76.37.51Z"}),
|
|
30
|
+
vue_1.h('path', {"fill":"#fbbc04","d":"m76.37.51 157.42.02a1.61 1.57-26.7 0 1 .92.29l.37.27q-.16.06-.27.13-.17.09-.17.28l-.02 75.51h-.05l-158.16.01-.03-.03Z"}),
|
|
31
|
+
vue_1.h('path', {"fill":"#ea4335","d":"m235.08 1.09 75.45 75.68-75.91.24.02-75.51q0-.19.17-.28.11-.07.27-.13Z"}),
|
|
32
|
+
vue_1.h('path', {"fill":"#2684fc","d":"m0 76.96 76.38.02.03.03.02 105.68L0 182.67Z"}),
|
|
33
|
+
vue_1.h('path', {"fill":"#00ac47","d":"m310.53 76.77.47.34v161.9q-2.66 14.53-15.06 18.77-4.42 1.52-13.03 1.5-55.89-.09-112.92-.17-8.28-.01-16.8.12-.47.01-.8.34-27.9 27.77-56 56.02c-2.87 2.89-6.12 4.5-10.24 3.89q-5.76-.85-8.49-5.94-1.15-2.16-1.17-7.88-.07-23.19-.05-46.53l-.01-38.28 37.78-37.78a1.79 1.77 22.3 0 1 1.26-.52l118.3.04a.83.83 0 0 0 .83-.83l-.03-104.75h.05Z"}),
|
|
34
|
+
vue_1.h('path', {"fill":"#00832d","d":"m76.43 182.69v38.16l.01 38.28q-23.97.14-47.53.09-9.82-.02-14.15-1.54Q2.62 253.44 0 238.88v-56.21Z"})
|
|
28
35
|
]);
|
|
29
36
|
}
|
|
30
37
|
});
|
package/dist/google-chat.js
CHANGED
|
@@ -7,21 +7,28 @@ const GoogleChat = defineComponent({
|
|
|
7
7
|
name: 'GoogleChat',
|
|
8
8
|
setup(_, { attrs }) {
|
|
9
9
|
return () => h('svg', {
|
|
10
|
-
viewBox: '0 0
|
|
10
|
+
viewBox: '0 0 311 320',
|
|
11
11
|
fill: 'none',
|
|
12
12
|
xmlns: 'http://www.w3.org/2000/svg',
|
|
13
13
|
...attrs
|
|
14
14
|
}, [
|
|
15
|
-
h('
|
|
16
|
-
|
|
17
|
-
h('path', {"d":"
|
|
18
|
-
h('path', {"d":"
|
|
15
|
+
h('title', {}),
|
|
16
|
+
h('g', {"stroke-width":"2","fill":"none","stroke-linecap":"butt"}, [
|
|
17
|
+
h('path', {"stroke":"#7e916f","vector-effect":"non-scaling-stroke","d":"M76.37.51l.01 76.47"}),
|
|
18
|
+
h('path', {"stroke":"#1375eb","vector-effect":"non-scaling-stroke","d":"M76.38 76.98 0 76.96"}),
|
|
19
|
+
h('path', {"stroke":"#f3801d","vector-effect":"non-scaling-stroke","d":"M235.08 1.09q-.16.06-.27.13-.17.09-.17.28l-.02 75.51"}),
|
|
20
|
+
h('path', {"stroke":"#7eb426","vector-effect":"non-scaling-stroke","d":"M234.62 77.01h-.05"}),
|
|
21
|
+
h('path', {"stroke":"#91a080","vector-effect":"non-scaling-stroke","d":"m76.41 77.01-.03-.03"}),
|
|
22
|
+
h('path', {"stroke":"#75783e","vector-effect":"non-scaling-stroke","d":"m310.53 76.77-75.91.24"}),
|
|
23
|
+
h('path', {"stroke":"#138495","vector-effect":"non-scaling-stroke","d":"M76.43 182.69 0 182.67"}),
|
|
24
|
+
h('path', {"stroke":"#00983a","vector-effect":"non-scaling-stroke","d":"m76.44 259.13-.01-38.28"})
|
|
19
25
|
]),
|
|
20
|
-
h('
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
h('path', {"fill":"#0066da","d":"m76.37.51.01 76.47L0 76.96V20.77q.85-5.96 3.53-10.01Q10.14.74 22.75.67 49.41.53 76.37.51Z"}),
|
|
27
|
+
h('path', {"fill":"#fbbc04","d":"m76.37.51 157.42.02a1.61 1.57-26.7 0 1 .92.29l.37.27q-.16.06-.27.13-.17.09-.17.28l-.02 75.51h-.05l-158.16.01-.03-.03Z"}),
|
|
28
|
+
h('path', {"fill":"#ea4335","d":"m235.08 1.09 75.45 75.68-75.91.24.02-75.51q0-.19.17-.28.11-.07.27-.13Z"}),
|
|
29
|
+
h('path', {"fill":"#2684fc","d":"m0 76.96 76.38.02.03.03.02 105.68L0 182.67Z"}),
|
|
30
|
+
h('path', {"fill":"#00ac47","d":"m310.53 76.77.47.34v161.9q-2.66 14.53-15.06 18.77-4.42 1.52-13.03 1.5-55.89-.09-112.92-.17-8.28-.01-16.8.12-.47.01-.8.34-27.9 27.77-56 56.02c-2.87 2.89-6.12 4.5-10.24 3.89q-5.76-.85-8.49-5.94-1.15-2.16-1.17-7.88-.07-23.19-.05-46.53l-.01-38.28 37.78-37.78a1.79 1.77 22.3 0 1 1.26-.52l118.3.04a.83.83 0 0 0 .83-.83l-.03-104.75h.05Z"}),
|
|
31
|
+
h('path', {"fill":"#00832d","d":"m76.43 182.69v38.16l.01 38.28q-23.97.14-47.53.09-9.82-.02-14.15-1.54Q2.62 253.44 0 238.88v-56.21Z"})
|
|
25
32
|
]);
|
|
26
33
|
}
|
|
27
34
|
});
|
package/dist/index.cjs
CHANGED
|
@@ -11110,6 +11110,8 @@ const _voyage = require('./voyage.cjs');
|
|
|
11110
11110
|
exports.Voyage = _voyage.default;
|
|
11111
11111
|
const _vrchat = require('./vrchat.cjs');
|
|
11112
11112
|
exports.Vrchat = _vrchat.default;
|
|
11113
|
+
const _vrs = require('./vrs.cjs');
|
|
11114
|
+
exports.Vrs = _vrs.default;
|
|
11113
11115
|
const _vsco = require('./vsco.cjs');
|
|
11114
11116
|
exports.Vsco = _vsco.default;
|
|
11115
11117
|
const _vscodium = require('./vscodium.cjs');
|
package/dist/index.d.ts
CHANGED
|
@@ -5554,6 +5554,7 @@ export { default as VowpalWabbit } from './vowpal-wabbit.js';
|
|
|
5554
5554
|
export { default as Vox } from './vox.js';
|
|
5555
5555
|
export { default as Voyage } from './voyage.js';
|
|
5556
5556
|
export { default as Vrchat } from './vrchat.js';
|
|
5557
|
+
export { default as Vrs } from './vrs.js';
|
|
5557
5558
|
export { default as Vsco } from './vsco.js';
|
|
5558
5559
|
export { default as Vscodium } from './vscodium.js';
|
|
5559
5560
|
export { default as Vtex } from './vtex.js';
|
package/dist/index.js
CHANGED
|
@@ -5554,6 +5554,7 @@ export { default as VowpalWabbit } from './vowpal-wabbit.js';
|
|
|
5554
5554
|
export { default as Vox } from './vox.js';
|
|
5555
5555
|
export { default as Voyage } from './voyage.js';
|
|
5556
5556
|
export { default as Vrchat } from './vrchat.js';
|
|
5557
|
+
export { default as Vrs } from './vrs.js';
|
|
5557
5558
|
export { default as Vsco } from './vsco.js';
|
|
5558
5559
|
export { default as Vscodium } from './vscodium.js';
|
|
5559
5560
|
export { default as Vtex } from './vtex.js';
|
package/dist/vrs.cjs
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @thesvg/vue - VRS
|
|
3
|
+
// Auto-generated. Do not edit.
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
|
|
7
|
+
const vue_1 = require("vue");
|
|
8
|
+
|
|
9
|
+
const Vrs = vue_1.defineComponent({
|
|
10
|
+
name: 'Vrs',
|
|
11
|
+
setup(_, { attrs }) {
|
|
12
|
+
return () => vue_1.h('svg', {
|
|
13
|
+
viewBox: '0 0 121 121',
|
|
14
|
+
fill: 'none',
|
|
15
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
16
|
+
...attrs
|
|
17
|
+
}, [
|
|
18
|
+
vue_1.h('title', {}),
|
|
19
|
+
vue_1.h('circle', {"cx":"60.5","cy":"60.5","r":"60.5","fill":"#f2f2f2"}),
|
|
20
|
+
vue_1.h('path', {"d":"M20.5 28.1C30 16.5 44.5 9 60.8 9c28.6 0 51.8 23.1 51.8 51.7s-23.2 51.7-51.8 51.7c-26.7 0-48.6-20.1-51.5-45.9h67.9a19.2 19.2 0 0 0 0-38.4H20.5z","fill":"#007d64"}),
|
|
21
|
+
vue_1.h('path', {"d":"m15.7 53.4 10.7-20.8h9.5l-16.6 30H8.9L5 32.6h8.8l1.9 20.8zM43.7 44.7h2c3.4 0 5.5-.9 5.5-3.1 0-1.7-.9-2.5-3.1-2.5h-3.3l-1.1 5.6zm9 3.5c.5.4.9 1 1.2 1.6.6 1.1.9 2.4 1.1 3.3l2.2 9.5h-8.8l-1.6-7.8c-.7-3.6-.8-3.7-4-3.7h-.4L40 62.6h-8.8l6.3-30h9.7c5.4 0 12.7.1 12.7 7.9.1 4.9-3.3 6.9-7.2 7.7M83.6 40.4l-.5-.2c-1.4-.7-3.4-1.3-6.2-1.3-1.5 0-2.9.1-3.8.5-.9.3-1.3.9-1.3 1.8 0 .7.5 1.3 1.5 1.8 1 .6 2.4 1 3.9 1.6 2.9 1.3 5.9 3.2 5.9 7.9 0 8.5-8 10.6-14.7 10.6-3.1 0-6.6-.7-9.1-1.5l-.5-.1 2.2-7 .6.4c1.4.9 4.4 1.6 6.9 1.6 1.2 0 2.7-.1 3.8-.6 1.1-.4 1.9-1.2 1.9-2.4 0-.9-.5-1.5-1.5-2.1-.5-.3-1.1-.6-1.8-.8-.7-.3-1.4-.5-2.1-.8-2.9-1.2-5.9-2.9-5.9-7.3 0-8 7-10.2 13.5-10.2 3.6 0 7 .4 9.1 1.3l.4.2-2.3 6.6z","fill":"#231f20"})
|
|
22
|
+
]);
|
|
23
|
+
}
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
exports.default = Vrs;
|
package/dist/vrs.d.ts
ADDED
package/dist/vrs.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// @thesvg/vue - VRS
|
|
2
|
+
// Auto-generated. Do not edit.
|
|
3
|
+
|
|
4
|
+
import { defineComponent, h } from 'vue';
|
|
5
|
+
|
|
6
|
+
const Vrs = defineComponent({
|
|
7
|
+
name: 'Vrs',
|
|
8
|
+
setup(_, { attrs }) {
|
|
9
|
+
return () => h('svg', {
|
|
10
|
+
viewBox: '0 0 121 121',
|
|
11
|
+
fill: 'none',
|
|
12
|
+
xmlns: 'http://www.w3.org/2000/svg',
|
|
13
|
+
...attrs
|
|
14
|
+
}, [
|
|
15
|
+
h('title', {}),
|
|
16
|
+
h('circle', {"cx":"60.5","cy":"60.5","r":"60.5","fill":"#f2f2f2"}),
|
|
17
|
+
h('path', {"d":"M20.5 28.1C30 16.5 44.5 9 60.8 9c28.6 0 51.8 23.1 51.8 51.7s-23.2 51.7-51.8 51.7c-26.7 0-48.6-20.1-51.5-45.9h67.9a19.2 19.2 0 0 0 0-38.4H20.5z","fill":"#007d64"}),
|
|
18
|
+
h('path', {"d":"m15.7 53.4 10.7-20.8h9.5l-16.6 30H8.9L5 32.6h8.8l1.9 20.8zM43.7 44.7h2c3.4 0 5.5-.9 5.5-3.1 0-1.7-.9-2.5-3.1-2.5h-3.3l-1.1 5.6zm9 3.5c.5.4.9 1 1.2 1.6.6 1.1.9 2.4 1.1 3.3l2.2 9.5h-8.8l-1.6-7.8c-.7-3.6-.8-3.7-4-3.7h-.4L40 62.6h-8.8l6.3-30h9.7c5.4 0 12.7.1 12.7 7.9.1 4.9-3.3 6.9-7.2 7.7M83.6 40.4l-.5-.2c-1.4-.7-3.4-1.3-6.2-1.3-1.5 0-2.9.1-3.8.5-.9.3-1.3.9-1.3 1.8 0 .7.5 1.3 1.5 1.8 1 .6 2.4 1 3.9 1.6 2.9 1.3 5.9 3.2 5.9 7.9 0 8.5-8 10.6-14.7 10.6-3.1 0-6.6-.7-9.1-1.5l-.5-.1 2.2-7 .6.4c1.4.9 4.4 1.6 6.9 1.6 1.2 0 2.7-.1 3.8-.6 1.1-.4 1.9-1.2 1.9-2.4 0-.9-.5-1.5-1.5-2.1-.5-.3-1.1-.6-1.8-.8-.7-.3-1.4-.5-2.1-.8-2.9-1.2-5.9-2.9-5.9-7.3 0-8 7-10.2 13.5-10.2 3.6 0 7 .4 9.1 1.3l.4.2-2.3 6.6z","fill":"#231f20"})
|
|
19
|
+
]);
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
export default Vrs;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thesvg/vue",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Typed Vue 3 SVG components for all 4000+ brand icons from thesvg.org",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"vue": ">=3.3"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"tsx": "^4.
|
|
54
|
+
"tsx": "^4.22.1",
|
|
55
55
|
"typescript": "^6.0.3"
|
|
56
56
|
},
|
|
57
57
|
"engines": {
|