@iconify-vue/vscode-icons 1.0.29 → 1.0.31
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-context7.vue +27 -0
- package/components/f/file-type-light-warp.vue +27 -0
- package/components/f/file-type-light-wesl.vue +53 -0
- package/components/f/file-type-warp.vue +27 -0
- package/components/f/file-type-wesl.vue +47 -0
- package/components/f/file-type-zizmor.vue +41 -0
- package/iconify.json +2 -2
- package/package.json +25 -1
|
@@ -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 transform="translate(2 2)" class="ft5dv1b6b"><rect class="b3c4xhbqj"/><path class="l_9c-0bth"/></g>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-context7" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.b3c4xhbqj {
|
|
12
|
+
width: 28px;
|
|
13
|
+
height: 28px;
|
|
14
|
+
fill: var(--svg-color--059669, #059669);
|
|
15
|
+
rx: 4px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ft5dv1b6b {
|
|
19
|
+
fill: none;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.l_9c-0bth {
|
|
23
|
+
fill: var(--svg-color--fff, #fff);
|
|
24
|
+
d: path("M10.572 15.257c0 2.246-.91 4.12-2.394 5.848h3.454v1.674H6.335v-1.59c1.62-1.832 2.246-3.326 2.246-5.932zm6.856 0c0 2.246.91 4.12 2.394 5.848h-3.454v1.674h5.297v-1.59c-1.62-1.832-2.246-3.326-2.246-5.932zm-6.856-2.513c0-2.247-.91-4.122-2.394-5.849h3.454V5.221H6.335v1.59c1.62 1.832 2.246 3.326 2.246 5.933zm6.856 0c0-2.247.91-4.122 2.394-5.849h-3.454V5.221h5.297v1.59c-1.62 1.832-2.246 3.326-2.246 5.933z");
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
</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,53 @@
|
|
|
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 = `<path class="thsnkjepw"/><path class="bd1owmevb"/><path class="ghyyy9b9n"/><path class="tlc-ozbdh"/><path fill="url(#SVGdcGTUvqN)" transform="translate(2 7.37)scale(.07165)" class="w26n2ccye"/><path class="yyrcqqb8l"/><path class="jxjco71kn"/><defs><linearGradient id="SVGdcGTUvqN" x1="206.5" x2="144.9" y1=".4" y2="223.5" gradientUnits="userSpaceOnUse"><stop class="xcqmbbc7c"/><stop offset="1" class="we8wth65g"/></linearGradient></defs>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-light-wesl" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bd1owmevb {
|
|
12
|
+
fill: var(--svg-color--0391e3, #0391e3);
|
|
13
|
+
d: path("M21.63 17.15a.5.5 0 0 1 .43-.28h1.53q.32 0 .44.28q.25.74.05 1.11c-.13.3-.5.56-1.26.56s-1.12-.26-1.26-.56c-.11-.24-.13-.62.06-1.1");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.ghyyy9b9n {
|
|
17
|
+
fill: var(--svg-color--08bff2, #08bff2);
|
|
18
|
+
d: path("M20.1 12.55a.5.5 0 0 0 .02.52c.33.41.66.58.93.61c.32.03.73-.15 1.11-.8s.34-1.1.15-1.37c-.16-.23-.48-.43-1-.5a.5.5 0 0 0-.47.23z");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.jxjco71kn {
|
|
22
|
+
fill: var(--svg-color--0391e3, #0391e3);
|
|
23
|
+
d: path("M27.16 11.3a.5.5 0 0 1-.43-.75l1.16-2.02a.5.5 0 0 1 .87 0l1.17 2.02a.5.5 0 0 1-.44.75zm1.57 3.59a.5.5 0 0 1-.86 0l-1.15-2.02a.5.5 0 0 1 .44-.75h2.33a.5.5 0 0 1 .43.76z");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.thsnkjepw {
|
|
27
|
+
fill: var(--svg-color--0391e3, #0391e3);
|
|
28
|
+
d: path("M18.95 16.87a.5.5 0 0 0-.44.75l3.9 6.75c.19.34.68.34.86 0l3.87-6.75a.5.5 0 0 0-.44-.75h-1.2c-.34 0-.58.35-.54.7q.07.56-.14 1.04c-.32.7-1.07 1.03-2 1.03s-1.68-.34-2.01-1.03q-.22-.48-.15-1.04c.05-.35-.19-.7-.54-.7z");
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.tlc-ozbdh {
|
|
32
|
+
fill: var(--svg-color--08bff2, #08bff2);
|
|
33
|
+
d: path("M23.28 8.54a.5.5 0 0 0-.87 0l-.58 1.02c-.18.3.01.7.33.83q.53.22.83.64c.45.63.36 1.44-.1 2.25s-1.14 1.3-1.9 1.22a2 2 0 0 1-.98-.4c-.28-.2-.7-.17-.88.13l-.62 1.07a.5.5 0 0 0 .44.75h2.56a.4.4 0 0 1 .36.6c-.42.75-.45 1.29-.3 1.61c.14.3.5.56 1.26.56s1.13-.26 1.27-.56c.15-.32.12-.86-.3-1.6a.4.4 0 0 1 .36-.61h2.57a.5.5 0 0 0 .43-.75z");
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.w26n2ccye {
|
|
37
|
+
d: path("M144 237.3a6.95 6.95 0 0 1-12.1 0L.9 10.5C-1.7 5.8 1.6 0 7 0h262c5.4 0 8.7 5.8 6.1 10.5l-17.9 31a5.7 5.7 0 0 0 4.9 8.5c11.8.1 18.6 3.6 21.5 7.6c2.6 3.7 3.3 9.9-2 19.1s-11 11.7-15.5 11.3c-5-.4-11.4-4.5-17.3-14.7a5.7 5.7 0 0 0-9.9 0z");
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.we8wth65g {
|
|
41
|
+
stop-color: var(--svg-color--fcb000, #fcb000);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.xcqmbbc7c {
|
|
45
|
+
stop-color: var(--svg-color--ff5343, #ff5343);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.yyrcqqb8l {
|
|
49
|
+
fill: var(--svg-color--f70, #f70);
|
|
50
|
+
d: path("m2.06 8.12l9.4 16.25a.5.5 0 0 0 .86 0l.83-1.43l-9-15.57H2.5a.5.5 0 0 0-.44.75");
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
</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>
|
|
@@ -0,0 +1,47 @@
|
|
|
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 = `<path class="g2971jsuw"/><path class="dz07mubwp"/><g fill="url(#SVGfhNGEedP)" transform="translate(2 7.37)scale(.07165)"><path class="h4k4tkrzc"/><path class="xq891lbcn"/></g><path class="yyrcqqb8l"/><path class="mh571uh9x"/><defs><linearGradient id="SVGfhNGEedP" x1="206.5" x2="144.9" y1=".4" y2="223.5" gradientUnits="userSpaceOnUse"><stop class="f9rjrqbny"/><stop offset="1" class="d6v7tgb1x"/></linearGradient></defs>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-wesl" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.d6v7tgb1x {
|
|
12
|
+
stop-color: var(--svg-color--fd0, #fd0);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.dz07mubwp {
|
|
16
|
+
fill: var(--svg-color--05e3fc, #05e3fc);
|
|
17
|
+
d: path("M20.1 12.55a.5.5 0 0 0 .02.52c.33.41.66.58.93.61c.32.03.73-.15 1.11-.8s.34-1.1.15-1.37c-.16-.23-.48-.43-1-.5a.5.5 0 0 0-.47.23zm3.18-4.01a.5.5 0 0 0-.87 0l-.58 1.02c-.18.3.01.7.33.83q.53.22.83.64c.45.63.36 1.44-.1 2.25s-1.14 1.3-1.9 1.22a2 2 0 0 1-.98-.4c-.28-.2-.7-.17-.88.13l-.62 1.07a.5.5 0 0 0 .44.75h2.56a.4.4 0 0 1 .36.6c-.42.75-.45 1.29-.3 1.61c.14.3.5.56 1.26.56s1.13-.26 1.27-.56c.15-.32.12-.86-.3-1.6a.4.4 0 0 1 .36-.61h2.57a.5.5 0 0 0 .43-.75z");
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.f9rjrqbny {
|
|
21
|
+
stop-color: var(--svg-color--ff5242, #ff5242);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.g2971jsuw {
|
|
25
|
+
fill: var(--svg-color--0095ff, #0095ff);
|
|
26
|
+
d: path("M18.95 16.87a.5.5 0 0 0-.44.75l3.9 6.75c.19.34.68.34.86 0l3.87-6.75a.5.5 0 0 0-.44-.75h-1.2c-.34 0-.58.35-.54.7q.07.56-.14 1.04c-.32.7-1.07 1.03-2 1.03s-1.68-.34-2.01-1.03q-.22-.48-.15-1.04c.05-.35-.19-.7-.54-.7zm2.68.28a.5.5 0 0 1 .43-.28h1.53q.32 0 .44.28q.25.74.05 1.11c-.13.3-.5.56-1.26.56s-1.12-.26-1.26-.56c-.11-.24-.13-.62.06-1.1");
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.h4k4tkrzc {
|
|
30
|
+
d: path("M144 237a7 7 0 0 1-12 0L1 11C-2 6 2 0 7 0h262c5 0 9 6 6 11l-18 31a5.7 5.7 0 0 0 4.9 8.5c11.8.1 18.6 3.6 21.5 7.6c2.6 3.7 3.3 9.9-2 19.1s-11 11.7-15.5 11.3c-5-.4-11.4-4.5-17.3-14.7a5.7 5.7 0 0 0-9.9 0z");
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.mh571uh9x {
|
|
34
|
+
fill: var(--svg-color--04a3ff, #04a3ff);
|
|
35
|
+
d: path("M27.16 11.3a.5.5 0 0 1-.43-.75l1.16-2.02a.5.5 0 0 1 .87 0l1.17 2.02a.5.5 0 0 1-.44.75zm1.57 3.59a.5.5 0 0 1-.86 0l-1.15-2.02a.5.5 0 0 1 .44-.75h2.33a.5.5 0 0 1 .43.76z");
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.xq891lbcn {
|
|
39
|
+
d: path("m1 11l131 226.8c2.7 4.7 9.4 4.7 12.1 0l94.7-164a5.7 5.7 0 0 1 9.9 0c6 10.2 12.4 14.3 17.3 14.8c4.5.4 10.2-2.1 15.5-11.3s4.7-15.4 2-19.1c-2.8-4.1-9.6-7.5-21.4-7.6a5.7 5.7 0 0 1-4.9-8.6l17.9-31A7 7 0 0 0 269 0h-92.2c-4.9 0-8.2 4.9-7.6 9.8c.6 5.2 0 10.1-2 14.5c-4.5 9.7-14.9 14.4-28 14.4c-13 0-23.4-4.7-28-14.4c-2-4.4-2.6-9.3-2-14.5c.6-4.9-2.7-9.8-7.6-9.8H7C1.6 0-1.7 5.8 1 11");
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.yyrcqqb8l {
|
|
43
|
+
fill: var(--svg-color--f70, #f70);
|
|
44
|
+
d: path("m2.06 8.12l9.4 16.25a.5.5 0 0 0 .86 0l.83-1.43l-9-15.57H2.5a.5.5 0 0 0-.44.75");
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
</style>
|
|
@@ -0,0 +1,41 @@
|
|
|
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 = `<path class="bghx64fni"/><path class="q1f5o_hjf"/><path class="wfez5buey"/><path class="dm_5cd1rl"/><path class="dsfkxbb_x"/><path class="d3tw-1bvg"/>`;
|
|
8
|
+
</script>
|
|
9
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="vscode-icons:file-type-zizmor" /></template>
|
|
10
|
+
<style>
|
|
11
|
+
.bghx64fni {
|
|
12
|
+
fill: var(--svg-color--8767ac, #8767ac);
|
|
13
|
+
d: path("M30 2.78C14.54 2.78 2.78 14.54 2.78 30h13.25c0-7.71 6.26-13.97 13.97-13.97z");
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.d3tw-1bvg {
|
|
17
|
+
fill: var(--svg-color--226798, #226798);
|
|
18
|
+
d: path("M11.4 30h2.33c0-9 7.28-16.28 16.27-16.3v-2.33A18.63 18.63 0 0 0 11.4 30");
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.dm_5cd1rl {
|
|
22
|
+
fill: var(--svg-color--ffcb4c, #ffcb4c);
|
|
23
|
+
d: path("M6.73 30h2.33A20.97 20.97 0 0 1 30 9.03V6.7A23.3 23.3 0 0 0 6.73 30");
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.dsfkxbb_x {
|
|
27
|
+
fill: var(--svg-color--5c903f, #5c903f);
|
|
28
|
+
d: path("M9.06 30h2.34A18.63 18.63 0 0 1 30 11.37V9.03A20.97 20.97 0 0 0 9.06 30");
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.q1f5o_hjf {
|
|
32
|
+
fill: var(--svg-color--eb2027, #eb2027);
|
|
33
|
+
d: path("M2 30h2.37a25.63 25.63 0 0 1 25.6-25.63V2A28 28 0 0 0 2 30");
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.wfez5buey {
|
|
37
|
+
fill: var(--svg-color--f19020, #f19020);
|
|
38
|
+
d: path("M4.4 30h2.33A23.3 23.3 0 0 1 30 6.7V4.37A25.63 25.63 0 0 0 4.4 30");
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
</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": 1513,
|
|
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": 1781585081
|
|
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.31",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/vscode-icons/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "MIT",
|
|
@@ -606,6 +606,10 @@
|
|
|
606
606
|
"types": "./types/dd0bq22g.d.ts",
|
|
607
607
|
"default": "./components/f/file-type-confluence.vue"
|
|
608
608
|
},
|
|
609
|
+
"./file-type-context7": {
|
|
610
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
611
|
+
"default": "./components/f/file-type-context7.vue"
|
|
612
|
+
},
|
|
609
613
|
"./file-type-copilot": {
|
|
610
614
|
"types": "./types/dd0bq22g.d.ts",
|
|
611
615
|
"default": "./components/f/file-type-copilot.vue"
|
|
@@ -2302,6 +2306,14 @@
|
|
|
2302
2306
|
"types": "./types/dd0bq22g.d.ts",
|
|
2303
2307
|
"default": "./components/f/file-type-light-vsixmanifest.vue"
|
|
2304
2308
|
},
|
|
2309
|
+
"./file-type-light-warp": {
|
|
2310
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2311
|
+
"default": "./components/f/file-type-light-warp.vue"
|
|
2312
|
+
},
|
|
2313
|
+
"./file-type-light-wesl": {
|
|
2314
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2315
|
+
"default": "./components/f/file-type-light-wesl.vue"
|
|
2316
|
+
},
|
|
2305
2317
|
"./file-type-light-xfl": {
|
|
2306
2318
|
"types": "./types/dd0bq22g.d.ts",
|
|
2307
2319
|
"default": "./components/f/file-type-light-xfl.vue"
|
|
@@ -4358,6 +4370,10 @@
|
|
|
4358
4370
|
"types": "./types/dd0bq22g.d.ts",
|
|
4359
4371
|
"default": "./components/f/file-type-wally.vue"
|
|
4360
4372
|
},
|
|
4373
|
+
"./file-type-warp": {
|
|
4374
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4375
|
+
"default": "./components/f/file-type-warp.vue"
|
|
4376
|
+
},
|
|
4361
4377
|
"./file-type-wasm": {
|
|
4362
4378
|
"types": "./types/dd0bq22g.d.ts",
|
|
4363
4379
|
"default": "./components/f/file-type-wasm.vue"
|
|
@@ -4390,6 +4406,10 @@
|
|
|
4390
4406
|
"types": "./types/dd0bq22g.d.ts",
|
|
4391
4407
|
"default": "./components/f/file-type-wercker.vue"
|
|
4392
4408
|
},
|
|
4409
|
+
"./file-type-wesl": {
|
|
4410
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4411
|
+
"default": "./components/f/file-type-wesl.vue"
|
|
4412
|
+
},
|
|
4393
4413
|
"./file-type-wgsl": {
|
|
4394
4414
|
"types": "./types/dd0bq22g.d.ts",
|
|
4395
4415
|
"default": "./components/f/file-type-wgsl.vue"
|
|
@@ -4526,6 +4546,10 @@
|
|
|
4526
4546
|
"types": "./types/dd0bq22g.d.ts",
|
|
4527
4547
|
"default": "./components/f/file-type-zip2.vue"
|
|
4528
4548
|
},
|
|
4549
|
+
"./file-type-zizmor": {
|
|
4550
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
4551
|
+
"default": "./components/f/file-type-zizmor.vue"
|
|
4552
|
+
},
|
|
4529
4553
|
"./folder-type-android": {
|
|
4530
4554
|
"types": "./types/dd0bq22g.d.ts",
|
|
4531
4555
|
"default": "./components/f/folder-type-android.vue"
|