@iconify-vue/vscode-icons 1.0.30 → 1.0.32
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/components/f/file-type-dbt.vue +25 -0
- package/components/f/file-type-light-opencode.vue +35 -0
- package/components/f/file-type-light-warp.vue +27 -0
- package/components/f/file-type-opencode.vue +35 -0
- package/components/f/file-type-warp.vue +27 -0
- package/iconify.json +2 -2
- package/package.json +21 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<mask id="SVGaqCXichY" width="139" height="32" x="0" y="0" maskUnits="userSpaceOnUse"><path class="qpwv56bpu"/></mask><g mask="url(#SVGaqCXichY)" class="ft5dv1b6b"><path class="ce9wo19hx"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-dbt" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ce9wo19hx {
|
|
12
|
+
fill: var(--svg-color--fe6703, #fe6703);
|
|
13
|
+
d: path("M28.805 3.167a3.9 3.9 0 0 1 1.19 2.38c0 .378-.101.634-.332 1.11c-.23.48-3.035 5.336-3.874 6.68a5.1 5.1 0 0 0-.732 2.631c0 .91.256 1.846.732 2.632c.833 1.344 3.644 6.222 3.874 6.711c.23.48.332.71.332 1.089c-.101.912-.502 1.745-1.168 2.354c-.634.656-1.467 1.088-2.353 1.167c-.379 0-.634-.1-1.089-.331c-.454-.23-13.716-7.898-13.716-7.898c.154 1.265.71 2.48 1.621 3.367c.177.177.357.331.555.48c-.154.075-6.7 3.9-7.186 4.13c-.48.23-.71.331-1.11.331c-.913-.101-1.745-.502-2.354-1.167a3.9 3.9 0 0 1-1.19-2.38c.023-.378.133-.757.332-1.088c.23-.48 3.035-5.367 3.874-6.711a5.06 5.06 0 0 0 .732-2.632a5.1 5.1 0 0 0-.732-2.631c-.833-1.389-3.666-6.28-3.874-6.756a2.5 2.5 0 0 1-.332-1.088a3.84 3.84 0 0 1 1.168-2.38A3.9 3.9 0 0 1 5.55 2c.379.022.758.133 1.11.331c.402.177 13.636 7.983 13.636 7.983a5.46 5.46 0 0 0-2.12-3.818c.094-.05 6.666-3.947 7.155-4.155c.331-.202.71-.3 1.11-.332a3.83 3.83 0 0 1 2.354 1.168l.016-.006zM16.47 18.363l1.893-1.9a.653.653 0 0 0 0-.933l-1.893-1.9c-.262-.265-.656-.265-.93 0l-1.893 1.9a.653.653 0 0 0 0 .934l1.892 1.9c.234.233.657.233.931 0");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.ft5dv1b6b {
|
|
17
|
+
fill: none;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.qpwv56bpu {
|
|
21
|
+
fill: var(--svg-color--fff, #fff);
|
|
22
|
+
d: path("M139 0H0v32h139z");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
</style>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<g class="ft5dv1b6b"><g clip-path="url(#SVGeP5Myl1x)" transform="translate(4.8 2)scale(.09333)"><mask id="SVG6J7nseBa" width="240" height="300" x="0" y="0" maskUnits="userSpaceOnUse"><path class="yceg7byfa"/></mask><g mask="url(#SVG6J7nseBa)"><path class="pd8k52-vn"/><path class="l414w26_n"/></g></g><defs><clipPath id="SVGeP5Myl1x"><path class="kh3fznufa"/></clipPath></defs></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-light-opencode" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ft5dv1b6b {
|
|
12
|
+
fill: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.kh3fznufa {
|
|
16
|
+
fill: var(--svg-color--fff, #fff);
|
|
17
|
+
d: path("M0 0h240v300H0z");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.l414w26_n {
|
|
21
|
+
fill: var(--svg-color--211e1e, #211e1e);
|
|
22
|
+
d: path("M180 60H60v180h120zm60 240H0V0h240z");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.pd8k52-vn {
|
|
26
|
+
fill: var(--svg-color--cfcecd, #cfcecd);
|
|
27
|
+
d: path("M180 240H60V120h120z");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.yceg7byfa {
|
|
31
|
+
fill: var(--svg-color--fff, #fff);
|
|
32
|
+
d: path("M240 0H0v300h240z");
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
</style>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<g class="ft5dv1b6b"><g filter="url(#SVGSQhNybkz)" transform="translate(-.594 2.515)scale(.13111)" class="obg7u3o0l"><path class="e5ta_gb9t"/><path class="sh1fbfcly"/></g><defs><filter id="SVGSQhNybkz" width="213.57" height="178.91" x="19.784" y="13.398" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="3.043"/><feGaussianBlur stdDeviation="7.608"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_8_35"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_8_35" result="shape"/></filter></defs></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-light-warp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.e5ta_gb9t {
|
|
12
|
+
d: path("M127.72 25.57h68.386c11.07 0 20.044 9.273 20.044 20.712v80.413c0 11.439-8.974 20.712-20.044 20.712H98.244z");
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.ft5dv1b6b {
|
|
16
|
+
fill: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.obg7u3o0l {
|
|
20
|
+
fill: var(--svg-color--121212, #121212);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.sh1fbfcly {
|
|
24
|
+
d: path("M109.96 48.652H54.87c-10.976 0-19.873 9.273-19.873 20.712v80.413c0 11.439 8.898 20.712 19.873 20.712h67.803l2.719-11.335H83.453z");
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
</style>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<g class="ft5dv1b6b"><g clip-path="url(#SVGeP5Myl1x)" transform="translate(4.8 2)scale(.09333)"><mask id="SVG5HOavdEo" width="240" height="300" x="0" y="0" maskUnits="userSpaceOnUse"><path class="n8t9ivbfj"/></mask><g mask="url(#SVG5HOavdEo)"><path class="zyupppbkl"/><path class="j81bmwodf"/></g></g><defs><clipPath id="SVGeP5Myl1x"><path class="kh3fznufa"/></clipPath></defs></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-opencode" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ft5dv1b6b {
|
|
12
|
+
fill: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.j81bmwodf {
|
|
16
|
+
fill: var(--svg-color--f1ecec, #f1ecec);
|
|
17
|
+
d: path("M180 60H60v180h120zm60 240H0V0h240z");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.kh3fznufa {
|
|
21
|
+
fill: var(--svg-color--fff, #fff);
|
|
22
|
+
d: path("M0 0h240v300H0z");
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.n8t9ivbfj {
|
|
26
|
+
fill: var(--svg-color--d2d2d2, #d2d2d2);
|
|
27
|
+
d: path("M240 0H0v300h240z");
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.zyupppbkl {
|
|
31
|
+
fill: var(--svg-color--4b4646, #4b4646);
|
|
32
|
+
d: path("M180 240H60V120h120z");
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
</style>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
|
|
4
|
+
const props = defineProps(["width","height"]);
|
|
5
|
+
|
|
6
|
+
const viewBox = {"width":32,"height":32};
|
|
7
|
+
const content = `<g class="ft5dv1b6b"><g filter="url(#SVGSQhNybkz)" transform="translate(-.594 2.515)scale(.13111)" class="v86vdub_f"><path class="w7saqraly"/><path class="nsmlhdb5u"/></g><defs><filter id="SVGSQhNybkz" width="213.57" height="178.91" x="19.784" y="13.398" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="3.043"/><feGaussianBlur stdDeviation="7.608"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.3 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_8_35"/><feBlend in="SourceGraphic" in2="effect1_dropShadow_8_35" result="shape"/></filter></defs></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-warp" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.ft5dv1b6b {
|
|
12
|
+
fill: none;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.nsmlhdb5u {
|
|
16
|
+
d: path("M109.96 48.652H54.87c-10.976 0-19.873 9.273-19.873 20.712v80.413c0 11.439 8.898 20.712 19.873 20.712h67.803l2.719-11.335H83.453Z");
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.v86vdub_f {
|
|
20
|
+
fill: var(--svg-color--d2d2d2, #d2d2d2);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.w7saqraly {
|
|
24
|
+
d: path("M127.72 25.57h68.386c11.07 0 20.044 9.273 20.044 20.712v80.413c0 11.439-8.974 20.712-20.044 20.712H98.244Z");
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
</style>
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "vscode-icons",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "VSCode Icons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 1516,
|
|
6
6
|
"version": "12.18.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Roberto Huertas",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
],
|
|
30
30
|
"palette": true
|
|
31
31
|
},
|
|
32
|
-
"lastModified":
|
|
32
|
+
"lastModified": 1782103033
|
|
33
33
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/vscode-icons",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.32",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/vscode-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -750,6 +750,10 @@
|
|
|
750
750
|
"types": "./types/dd0bq22g.d.ts",
|
|
751
751
|
"default": "./components/f/file-type-db.vue"
|
|
752
752
|
},
|
|
753
|
+
"./file-type-dbt": {
|
|
754
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
755
|
+
"default": "./components/f/file-type-dbt.vue"
|
|
756
|
+
},
|
|
753
757
|
"./file-type-debian": {
|
|
754
758
|
"types": "./types/dd0bq22g.d.ts",
|
|
755
759
|
"default": "./components/f/file-type-debian.vue"
|
|
@@ -2094,6 +2098,10 @@
|
|
|
2094
2098
|
"types": "./types/dd0bq22g.d.ts",
|
|
2095
2099
|
"default": "./components/f/file-type-light-objidconfig.vue"
|
|
2096
2100
|
},
|
|
2101
|
+
"./file-type-light-opencode": {
|
|
2102
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2103
|
+
"default": "./components/f/file-type-light-opencode.vue"
|
|
2104
|
+
},
|
|
2097
2105
|
"./file-type-light-openhab": {
|
|
2098
2106
|
"types": "./types/dd0bq22g.d.ts",
|
|
2099
2107
|
"default": "./components/f/file-type-light-openhab.vue"
|
|
@@ -2306,6 +2314,10 @@
|
|
|
2306
2314
|
"types": "./types/dd0bq22g.d.ts",
|
|
2307
2315
|
"default": "./components/f/file-type-light-vsixmanifest.vue"
|
|
2308
2316
|
},
|
|
2317
|
+
"./file-type-light-warp": {
|
|
2318
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2319
|
+
"default": "./components/f/file-type-light-warp.vue"
|
|
2320
|
+
},
|
|
2309
2321
|
"./file-type-light-wesl": {
|
|
2310
2322
|
"types": "./types/dd0bq22g.d.ts",
|
|
2311
2323
|
"default": "./components/f/file-type-light-wesl.vue"
|
|
@@ -3038,6 +3050,10 @@
|
|
|
3038
3050
|
"types": "./types/dd0bq22g.d.ts",
|
|
3039
3051
|
"default": "./components/f/file-type-opencl.vue"
|
|
3040
3052
|
},
|
|
3053
|
+
"./file-type-opencode": {
|
|
3054
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
3055
|
+
"default": "./components/f/file-type-opencode.vue"
|
|
3056
|
+
},
|
|
3041
3057
|
"./file-type-openhab": {
|
|
3042
3058
|
"types": "./types/dd0bq22g.d.ts",
|
|
3043
3059
|
"default": "./components/f/file-type-openhab.vue"
|
|
@@ -4366,6 +4382,10 @@
|
|
|
4366
4382
|
"types": "./types/dd0bq22g.d.ts",
|
|
4367
4383
|
"default": "./components/f/file-type-wally.vue"
|
|
4368
4384
|
},
|
|
4385
|
+
"./file-type-warp": {
|
|
4386
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4387
|
+
"default": "./components/f/file-type-warp.vue"
|
|
4388
|
+
},
|
|
4369
4389
|
"./file-type-wasm": {
|
|
4370
4390
|
"types": "./types/dd0bq22g.d.ts",
|
|
4371
4391
|
"default": "./components/f/file-type-wasm.vue"
|