@iconify-vue/codicon 1.0.24 → 1.0.25
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/a/add-small.vue +3 -3
- package/components/a/agent.vue +2 -2
- package/components/c/circle-slash-compact.vue +10 -0
- package/components/c/copilot-compact.vue +12 -0
- package/components/e/error-compact.vue +10 -0
- package/components/f/folder-compact.vue +10 -0
- package/components/f/folder-opened-compact.vue +10 -0
- package/components/g/gear-compact.vue +10 -0
- package/components/g/git-branch-compact.vue +10 -0
- package/components/l/library-compact.vue +10 -0
- package/components/l/lightbulb-autofix.vue +2 -2
- package/components/l/lightbulb-empty.vue +2 -2
- package/components/l/lightbulb.vue +2 -2
- package/components/p/preview.vue +2 -2
- package/components/r/record-keys-compact.vue +10 -0
- package/components/r/remote-compact.vue +10 -0
- package/components/r/repo-compact.vue +10 -0
- package/components/r/repo-forked-compact.vue +10 -0
- package/components/s/shield-compact.vue +10 -0
- package/components/s/sparkle-compact.vue +10 -0
- package/components/s/symbol-color-compact.vue +10 -0
- package/components/w/window-compact.vue +10 -0
- package/css/a/a4hs8gbkj.css +4 -0
- package/css/c/ci5wxgb0r.css +4 -0
- package/css/d/d9fyp-bah.css +3 -0
- package/css/e/euq09ab2w.css +4 -0
- package/css/f/fg7ralbba.css +4 -0
- package/css/h/h8t72pbdn.css +4 -0
- package/css/i/i6xiyt8wv.css +4 -0
- package/css/k/kf57mkbcm.css +4 -0
- package/css/k/kuw8d-xuc.css +4 -0
- package/css/n/n4y5kochc.css +4 -0
- package/css/o/o3jerqblc.css +4 -0
- package/css/p/p-6urxbue.css +4 -0
- package/css/q/qep29e6oo.css +4 -0
- package/css/q/qkdog0g-k.css +4 -0
- package/css/q/quwyzac4q.css +4 -0
- package/css/s/s498vrbil.css +4 -0
- package/css/u/ue4_-o_py.css +4 -0
- package/css/v/vnubl6byi.css +4 -0
- package/css/v/vumcn1b2q.css +4 -0
- package/css/w/w3_41eo6y.css +4 -0
- package/css/w/we144-bsm.css +4 -0
- package/css/z/zs7_t6bwx.css +4 -0
- package/iconify.json +2 -2
- package/package.json +65 -1
- package/css/b/bbiuddbrr.css +0 -4
- package/css/c/ciwkabc3a.css +0 -4
- package/css/h/huinkdacm.css +0 -5
- package/css/p/pikaej5uh.css +0 -4
- package/css/t/t_1q4xboh.css +0 -4
- package/css/w/wmy19urtf.css +0 -4
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/v/vnubl6byi.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
|
-
const viewBox = {"width":
|
|
8
|
-
const content = `<path class="
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="vnubl6byi"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:add-small" /></template>
|
package/components/a/agent.vue
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/w/
|
|
3
|
+
import '../../css/w/we144-bsm.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":16,"height":16};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="we144-bsm"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:agent" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/h/h8t72pbdn.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":13};
|
|
8
|
+
const content = `<path class="h8t72pbdn"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:circle-slash-compact" /></template>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/c/cuyn6tgcc.css';
|
|
4
|
+
import '../../css/d/d9fyp-bah.css';
|
|
5
|
+
import '../../css/e/euq09ab2w.css';
|
|
6
|
+
|
|
7
|
+
const props = defineProps(["width","height"]);
|
|
8
|
+
|
|
9
|
+
const viewBox = {"width":12,"height":12};
|
|
10
|
+
const content = `<g class="cuyn6tgcc"><path class="d9fyp-bah"/><path clip-rule="evenodd" class="euq09ab2w"/></g>`;
|
|
11
|
+
</script>
|
|
12
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:copilot-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/q/qkdog0g-k.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="qkdog0g-k"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:error-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/a/a4hs8gbkj.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="a4hs8gbkj"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:folder-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/k/kf57mkbcm.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="kf57mkbcm"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:folder-opened-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/f/fg7ralbba.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="fg7ralbba"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:gear-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/k/kuw8d-xuc.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="kuw8d-xuc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:git-branch-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/q/quwyzac4q.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="quwyzac4q"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:library-compact" /></template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/v/vumcn1b2q.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":16,"height":16};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="vumcn1b2q"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:lightbulb-autofix" /></template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/s/s498vrbil.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":16,"height":16};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="s498vrbil"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:lightbulb-empty" /></template>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/s/s498vrbil.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":16,"height":16};
|
|
8
|
-
const content = `<path
|
|
8
|
+
const content = `<path class="s498vrbil"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:lightbulb" /></template>
|
package/components/p/preview.vue
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { Icon } from '@iconify/css-vue';
|
|
3
|
-
import '../../css/
|
|
3
|
+
import '../../css/u/ue4_-o_py.css';
|
|
4
4
|
|
|
5
5
|
const props = defineProps(["width","height"]);
|
|
6
6
|
|
|
7
7
|
const viewBox = {"width":16,"height":16};
|
|
8
|
-
const content = `<path class="
|
|
8
|
+
const content = `<path class="ue4_-o_py"/>`;
|
|
9
9
|
</script>
|
|
10
10
|
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:preview" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/w/w3_41eo6y.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="w3_41eo6y"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:record-keys-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/i/i6xiyt8wv.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="i6xiyt8wv"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:remote-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/q/qep29e6oo.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="qep29e6oo"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:repo-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/c/ci5wxgb0r.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="ci5wxgb0r"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:repo-forked-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/z/zs7_t6bwx.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="zs7_t6bwx"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:shield-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/n/n4y5kochc.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="n4y5kochc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:sparkle-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/p/p-6urxbue.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="p-6urxbue"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:symbol-color-compact" /></template>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { Icon } from '@iconify/css-vue';
|
|
3
|
+
import '../../css/o/o3jerqblc.css';
|
|
4
|
+
|
|
5
|
+
const props = defineProps(["width","height"]);
|
|
6
|
+
|
|
7
|
+
const viewBox = {"width":12,"height":12};
|
|
8
|
+
const content = `<path class="o3jerqblc"/>`;
|
|
9
|
+
</script>
|
|
10
|
+
<template><Icon :width="width" :height="height" :viewBox="viewBox" :content="content" fallback="codicon:window-compact" /></template>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.a4hs8gbkj {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M9.5 2H5.707l-.414-.414A2 2 0 0 0 3.879 1H2.5A2.503 2.503 0 0 0 0 3.5v5C0 9.878 1.122 11 2.5 11h7c1.378 0 2.5-1.122 2.5-2.5v-4C12 3.122 10.878 2 9.5 2m-7 0h1.379c.263 0 .521.107.707.293L5.293 3l-.707.707A1 1 0 0 1 3.879 4H1v-.5C1 2.673 1.673 2 2.5 2M11 8.5c0 .827-.673 1.5-1.5 1.5h-7C1.673 10 1 9.327 1 8.5V5h2.879a2 2 0 0 0 1.414-.586L6.707 3H9.5c.827 0 1.5.673 1.5 1.5z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.ci5wxgb0r {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M9 0a2 2 0 0 0-1 3.731V5c0 .551-.449 1-1 1H5c-.551 0-1-.449-1-1V3.731A2 2 0 1 0 3 4v1c0 1.103.897 2 2 2h.5v1.063A2 2 0 0 0 4 10c0 1.103.897 2 2 2s2-.897 2-2c0-.93-.638-1.714-1.5-1.937V7H7c1.103 0 2-.897 2-2V4c1.103 0 2-.897 2-2s-.897-2-2-2M2 2c0-.551.449-1 1-1s1 .449 1 1s-.449 1-1 1s-1-.449-1-1m5 8c0 .551-.449 1-1 1s-1-.449-1-1s.449-1 1-1s1 .449 1 1m2-7c-.551 0-1-.449-1-1s.449-1 1-1s1 .449 1 1s-.449 1-1 1");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.euq09ab2w {
|
|
2
|
+
fill-rule: evenodd;
|
|
3
|
+
d: path("M6.105 1.341C6.616.794 7.41.667 8.313.768c.922.103 1.609.396 2.043.946c.424.536.52 1.212.52 1.864c0 .428-.04.86-.19 1.24c.049.172.074.322.095.46l.028.164c.693.289 1.14 1.103 1.193 1.571H12v1.405c0 .575-2.513 2.845-6.001 2.845C2.579 11.263.095 9.08 0 8.452V6.99c.064-.471.508-1.265 1.191-1.55q.014-.078.027-.163c.022-.137.046-.288.095-.46c-.15-.38-.19-.812-.19-1.24c0-.653.096-1.328.52-1.864c.434-.55 1.12-.843 2.043-.946c.903-.1 1.697.026 2.208.573q.056.06.104.124a2 2 0 0 1 .107-.124M6 4.715a2.4 2.4 0 0 1-.408.557c-.487.498-1.172.743-2.032.743c-.49 0-.927-.06-1.296-.218l-.017.087v3.192c.315.242 2.043 1.073 3.751 1.073c1.71 0 3.438-.831 3.751-1.073l.001-3.192l-.018-.087c-.368.157-.806.218-1.295.218c-.86 0-1.544-.245-2.032-.743A2.4 2.4 0 0 1 6 4.715m2.187-2.828c-.783-.087-1.116.068-1.26.223c-.153.164-.269.51-.182 1.21c.068.545.227.924.464 1.166c.224.229.588.405 1.228.405c.69 0 .96-.148 1.082-.284c.134-.15.231-.434.231-1.027v-.002c0-.574-.092-.931-.278-1.165c-.175-.222-.52-.44-1.285-.526m-3.115.22c-.145-.153-.479-.309-1.261-.222c-.764.085-1.109.304-1.285.526c-.185.234-.277.592-.277 1.165v.002c0 .594.097.877.231 1.027c.121.136.39.284 1.082.284c.64 0 1.004-.176 1.228-.405c.236-.242.395-.62.463-1.165c.088-.7-.028-1.046-.18-1.211");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.fg7ralbba {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6 3.999c-1.103 0-2 .897-2 2s.897 2 2 2s2-.897 2-2s-.897-2-2-2m0 3a1.001 1.001 0 0 1 0-2a1.001 1.001 0 0 1 0 2m5.625.471l-1.102-.932a.704.704 0 0 1 0-1.076l1.102-.932a.35.35 0 0 0 .108-.378a6 6 0 0 0-1.262-2.173a.36.36 0 0 0-.382-.096l-1.36.484a.7.7 0 0 1-.24.042a.71.71 0 0 1-.696-.579L7.533.414a.36.36 0 0 0-.275-.282a6.1 6.1 0 0 0-2.52 0a.35.35 0 0 0-.274.282l-.26 1.416a.71.71 0 0 1-.936.539l-1.36-.484a.36.36 0 0 0-.381.096A6 6 0 0 0 .265 4.154a.35.35 0 0 0 .108.378l1.102.932a.704.704 0 0 1 0 1.076l-1.102.932a.35.35 0 0 0-.108.378a6 6 0 0 0 1.262 2.173a.36.36 0 0 0 .382.096l1.36-.484a.7.7 0 0 1 .239-.041c.336 0 .634.238.697.579l.259 1.416a.36.36 0 0 0 .275.282a6.1 6.1 0 0 0 2.519 0a.35.35 0 0 0 .275-.282l.26-1.416a.71.71 0 0 1 .936-.539l1.359.484a.36.36 0 0 0 .382-.096a6 6 0 0 0 1.262-2.173a.35.35 0 0 0-.108-.378zm-1.623 1.554l-.943-.336A1.713 1.713 0 0 0 6.81 9.99l-.178.97a5 5 0 0 1-1.265 0l-.177-.97a1.707 1.707 0 0 0-2.254-1.3L2 9.024a5 5 0 0 1-.632-1.084l.756-.639a1.7 1.7 0 0 0 .598-1.164a1.69 1.69 0 0 0-.6-1.439l-.754-.638a5 5 0 0 1 .63-1.084l.945.336q.277.097.567.097a1.71 1.71 0 0 0 1.68-1.4l.178-.969a5.2 5.2 0 0 1 1.265 0l.178.97a1.707 1.707 0 0 0 2.254 1.299l.937-.334q.386.505.63 1.084l-.755.639a1.7 1.7 0 0 0-.598 1.164a1.69 1.69 0 0 0 .599 1.439l.277.234l-.002.002l.479.404a5 5 0 0 1-.63 1.083");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.h8t72pbdn {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6 0C2.691 0 0 2.691 0 6s2.691 6 6 6s6-2.691 6-6s-2.691-6-6-6M1 6c0-2.757 2.243-5 5-5c1.199 0 2.3.424 3.163 1.13L2.131 9.162a4.98 4.98 0 0 1-1.13-3.163zm5 5c-1.199 0-2.3-.424-3.163-1.13l7.032-7.032a4.98 4.98 0 0 1 1.13 3.163c0 2.757-2.243 5-5 5z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.i6xiyt8wv {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6.354 7.646a.5.5 0 0 1 0 .707l-3.5 3.5a.5.5 0 0 1-.708 0a.5.5 0 0 1 0-.707L5.292 8L2.146 4.854a.5.5 0 0 1 .707-.707l3.5 3.5zM6.707 4L9.853.854a.5.5 0 0 0-.707-.707l-3.5 3.5a.5.5 0 0 0 0 .707l3.5 3.5a.5.5 0 0 0 .708 0a.5.5 0 0 0 0-.707L6.708 4.001z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.kf57mkbcm {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M11 4.5A2.5 2.5 0 0 0 8.5 2H5.21l-.42-.41C4.42 1.21 3.91 1 3.38 1H2.5A2.5 2.5 0 0 0 0 3.5v5A2.5 2.5 0 0 0 2.5 11H8c.79 0 1.54-.38 2-1l.99-1.32l.51-.68c.33-.45.5-.96.5-1.5c0-.82-.39-1.54-1-2m-10-1C1 2.67 1.67 2 2.5 2h.88c.26 0 .52.11.71.29l.7.71H8.5c.67 0 1.23.44 1.42 1.04C9.78 4.01 9.64 4 9.5 4H4c-.79 0-1.54.38-2 1L1 6.33zm9.7 3.9l-.7.93l-.8 1.07c-.28.38-.72.6-1.2.6H2.5a1.498 1.498 0 0 1-1.2-2.4l1.5-2c.28-.38.72-.6 1.2-.6h5.5c.18 0 .34.03.5.09a1.495 1.495 0 0 1 .7 2.31");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.kuw8d-xuc {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M9 2a2 2 0 0 0-1 3.731V6.5a.5.5 0 0 1-.5.5h-3q-.264.002-.5.086V3.731A2 2 0 1 0 3 4v4c-1.103 0-2 .897-2 2s.897 2 2 2s2-.897 2-2a2 2 0 0 0-.956-1.705A.5.5 0 0 1 4.5 8h3C8.327 8 9 7.327 9 6.5V6c1.103 0 2-.897 2-2s-.897-2-2-2M2 2a1.001 1.001 0 0 1 2 0a1.001 1.001 0 0 1-2 0m1 9a1.001 1.001 0 0 1 0-2a1.001 1.001 0 0 1 0 2m6-6a1.001 1.001 0 0 1 0-2a1.001 1.001 0 0 1 0 2");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.n4y5kochc {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M3.468 7.83a.92.92 0 0 0 1.07 0a1 1 0 0 0 .341-.46l.347-1.066c.084-.252.226-.48.413-.668c.187-.187.414-.328.665-.411l1.086-.353a.93.93 0 0 0 .613-.868a.9.9 0 0 0-.169-.531a.95.95 0 0 0-.481-.35l-1.069-.346a1.7 1.7 0 0 1-1.08-1.078L4.851.615A.92.92 0 0 0 4.515.17a.94.94 0 0 0-1.068 0a.9.9 0 0 0-.342.458l-.355 1.09a1.72 1.72 0 0 1-1.049 1.058l-1.084.35A.923.923 0 0 0 .63 4.873l1.067.347a1.72 1.72 0 0 1 1.081 1.083l.352 1.08a.92.92 0 0 0 .338.448M2.01 4.265L1.155 4l.864-.281a2.7 2.7 0 0 0 1.045-.66c.291-.298.511-.66.644-1.055l.265-.86l.28.863a2.71 2.71 0 0 0 1.718 1.715l.88.269l-.861.28a2.71 2.71 0 0 0-1.717 1.717l-.265.857l-.279-.86a2.7 2.7 0 0 0-1.719-1.72m6.527 7.587a.8.8 0 0 0 .924-.002a.8.8 0 0 0 .3-.4l.248-.762a1.08 1.08 0 0 1 .68-.68l.772-.252a.804.804 0 0 0 .299-1.33a.8.8 0 0 0-.321-.192l-.764-.25a1.08 1.08 0 0 1-.68-.677l-.252-.774a.8.8 0 0 0-1.518.011l-.247.762a1.08 1.08 0 0 1-.664.679l-.776.253a.81.81 0 0 0-.5.514a.8.8 0 0 0 .111.708c.098.14.238.245.4.3l.763.247a1.05 1.05 0 0 1 .68.683l.253.774a.8.8 0 0 0 .292.388m-.914-2.793l-.178-.06l.184-.063a2.1 2.1 0 0 0 1.3-1.317l.058-.178l.059.18a2.08 2.08 0 0 0 1.317 1.317l.195.063l-.18.059a2.07 2.07 0 0 0-1.317 1.32l-.059.182l-.058-.181a2.07 2.07 0 0 0-1.321-1.322");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.o3jerqblc {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M9.5 0h-7A2.503 2.503 0 0 0 0 2.5v7C0 10.878 1.121 12 2.5 12h7c1.379 0 2.5-1.122 2.5-2.5v-7C12 1.122 10.879 0 9.5 0m-7 1h7c.827 0 1.5.673 1.5 1.5V3H1v-.5C1 1.673 1.673 1 2.5 1m7 10h-7C1.673 11 1 10.327 1 9.5V4h10v5.5c0 .827-.673 1.5-1.5 1.5");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.p-6urxbue {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6 0C2.686 0 0 2.4 0 5.715a2 2 0 0 0 2 2c1.215 0 1.046-.857 2.142-.857c.552 0 .857.519.857 1.071V9a3 3 0 0 0 3 3c3 0 3.999-3.244 3.999-6c0-3.314-2.685-6-5.999-6zm2 11c-1.103 0-2-.897-2-2V7.929c0-1.181-.798-2.071-1.857-2.071c-.908 0-1.381.412-1.664.658c-.199.173-.229.2-.478.2c-.551 0-1-.448-1-1c0-2.688 2.149-4.714 5-4.715a5.005 5.005 0 0 1 4.999 5c0 .835-.145 5-2.999 5zM4.25 3.5a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m2.5-1a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m1 1a.75.75 0 1 1 1.5 0a.75.75 0 0 1-1.5 0m2.5 2.5a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0m-1 2.5a.75.75 0 1 1-1.5 0a.75.75 0 0 1 1.5 0");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.qep29e6oo {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M9.6 10H7a.5.5 0 0 0-.5-.5h-2a.5.5 0 0 0-.5.5h-.5a.5.5 0 0 1-.5-.5V9h6.5a.5.5 0 0 0 .5-.5v-7C10 .673 9.327 0 8.5 0h-5C2.673 0 2 .673 2 1.5v8c0 .827.673 1.5 1.5 1.5H4v.5a.5.5 0 0 0 .723.447l.776-.388l.776.388a.502.502 0 0 0 .724-.447V11h2.6a.5.5 0 0 0 0-1zM3 1.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5V8H3z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.qkdog0g-k {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6 0C2.691 0 0 2.691 0 6s2.691 6 6 6s6-2.691 6-6s-2.691-6-6-6m0 11c-2.757 0-5-2.243-5-5s2.243-5 5-5s5 2.243 5 5s-2.243 5-5 5m2.354-6.646L6.708 6l1.646 1.646a.5.5 0 0 1-.708.707L6 6.707L4.354 8.353a.5.5 0 0 1-.708 0a.5.5 0 0 1 0-.707L5.292 6L3.646 4.354a.5.5 0 0 1 .707-.707l1.646 1.646l1.646-1.646a.5.5 0 0 1 .707.707z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.quwyzac4q {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M1.749 0h-.5C.559 0 0 .559 0 1.249v9.496c0 .69.559 1.249 1.249 1.249h.5c.69 0 1.249-.559 1.249-1.249V1.249C2.998.559 2.439 0 1.749 0m.249 10.745a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25V1.249a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25zM5.745 0h-.5c-.69 0-1.249.559-1.249 1.249v9.496c0 .69.559 1.249 1.249 1.249h.5c.69 0 1.249-.559 1.249-1.249V1.249C6.994.559 6.435 0 5.745 0m.25 10.745a.25.25 0 0 1-.25.25h-.5a.25.25 0 0 1-.25-.25V1.249a.25.25 0 0 1 .25-.25h.5a.25.25 0 0 1 .25.25zm5.963-.446l-1.93-7.247a1.24 1.24 0 0 0-.582-.76a1.24 1.24 0 0 0-.949-.126l-.482.128a1.24 1.24 0 0 0-.76.582a1.24 1.24 0 0 0-.126.948l1.93 7.247c.086.323.292.593.582.76a1.24 1.24 0 0 0 .949.126l.483-.129c.323-.085.592-.292.76-.581c.167-.289.212-.625.126-.949zm-.992.448a.25.25 0 0 1-.152.116l-.483.129a.24.24 0 0 1-.19-.025a.25.25 0 0 1-.116-.152l-1.93-7.247a.25.25 0 0 1 .025-.19a.25.25 0 0 1 .152-.116l.482-.128a.25.25 0 0 1 .306.177l1.93 7.247a.25.25 0 0 1-.025.19z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.s498vrbil {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M8 1C5.419 1 2.75 2.964 2.75 6.25c0 1.917.887 2.934 1.474 3.606c.184.211.374.429.404.542l.94 3.491c.176.654.772 1.11 1.449 1.11h1.967a1.5 1.5 0 0 0 1.448-1.11l.94-3.492c.03-.112.221-.33.404-.541c.587-.673 1.474-1.689 1.474-3.606A5.256 5.256 0 0 0 8 1m1.467 12.63a.5.5 0 0 1-.483.37H7.017a.5.5 0 0 1-.483-.37L6.095 12h3.811zm1.555-4.431c-.281.323-.525.603-.615.938l-.232.862H5.826l-.232-.861c-.091-.337-.334-.616-.617-.939C4.43 8.572 3.75 7.792 3.75 6.25C3.75 3.59 5.911 2 8 2a4.255 4.255 0 0 1 4.25 4.25c0 1.542-.681 2.322-1.228 2.949");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.ue4_-o_py {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M12.5 1h-9A2.503 2.503 0 0 0 1 3.5v9C1 13.878 2.122 15 3.5 15h9c1.378 0 2.5-1.122 2.5-2.5v-9C15 2.122 13.878 1 12.5 1M14 12.5c0 .827-.673 1.5-1.5 1.5h-9c-.827 0-1.5-.673-1.5-1.5v-9C2 2.673 2.673 2 3.5 2h9c.827 0 1.5.673 1.5 1.5zM12 3H4a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1m0 3H4V4h8zm0 2H9a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1V9a1 1 0 0 0-1-1m0 4H9V9h3zM7 8.5a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 .5.5m0 2a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 .5.5m0 2a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1h3a.5.5 0 0 1 .5.5");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.vumcn1b2q {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M6.607 14c.183.357.4.693.654 1H6.017a1.5 1.5 0 0 1-1.449-1.11l-.94-3.491c-.03-.113-.221-.331-.404-.542c-.587-.673-1.474-1.689-1.474-3.606C1.75 2.964 4.419 1 7 1c2.828 0 5.125 2.252 5.23 5.054A5.5 5.5 0 0 0 11.5 6c-.092 0-.183.009-.274.014C11.101 3.782 9.263 2 7 2C4.911 2 2.75 3.59 2.75 6.25c0 1.542.68 2.322 1.227 2.949c.282.323.526.603.617.939l.232.861h1.2a6 6 0 0 0-.025.5q.001.253.025.5h-.93l.439 1.63a.5.5 0 0 0 .483.37h.591zM16 11.5a4.5 4.5 0 1 1-9 0a4.5 4.5 0 0 1 9 0m-2.003-1.108h-1.545l-.477-1.532a.494.494 0 0 0-.952 0l-.477 1.532H9.001c-.485 0-.686.647-.294.944l1.25.947l-.477 1.532c-.15.48.378.88.77.583l1.25-.947l1.25.947c.392.297.92-.102.77-.583l-.477-1.532l1.25-.947h-.002c.393-.297.191-.944-.294-.944");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.w3_41eo6y {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M10.5 1h-9C.673 1 0 1.673 0 2.5v6C0 9.327.673 10 1.5 10h9c.827 0 1.5-.673 1.5-1.5v-6c0-.827-.673-1.5-1.5-1.5m.5 7.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5v-6a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 .5.5zm-1-1a.5.5 0 0 1-.5.5h-7a.5.5 0 0 1 0-1h7a.5.5 0 0 1 .5.5M4.3 3.4a.6.6 0 1 1 1.201.001A.6.6 0 0 1 4.3 3.4m-2 0a.6.6 0 1 1 1.201.001A.6.6 0 0 1 2.3 3.4m4 0a.6.6 0 1 1 1.201.001A.6.6 0 0 1 6.3 3.4m2 0a.6.6 0 1 1 1.201.001A.6.6 0 0 1 8.3 3.4M3.9 4.8a.6.6 0 1 1-.001 1.201A.6.6 0 0 1 3.9 4.8m2 0a.6.6 0 1 1-.001 1.201A.6.6 0 0 1 5.9 4.8m2 0a.6.6 0 1 1-.001 1.201A.6.6 0 0 1 7.9 4.8");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.we144-bsm {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M5.102 3a.5.5 0 0 0-.433.25l-2.598 4.5a.5.5 0 0 0 0 .5l2.504 4.337a.827.827 0 0 0 1.504-.165l2.89-9.146a1.826 1.826 0 0 1 3.322-.363l2.504 4.337a1.5 1.5 0 0 1 0 1.5l-2.598 4.5a1.5 1.5 0 0 1-1.299.75H8.502a.5.5 0 0 1 0-1h2.396a.5.5 0 0 0 .433-.25l2.598-4.5a.5.5 0 0 0 0-.5l-2.504-4.337a.826.826 0 0 0-1.503.164l-2.89 9.146a1.827 1.827 0 0 1-3.323.364L1.205 8.75a1.5 1.5 0 0 1 0-1.5l2.598-4.5A1.5 1.5 0 0 1 5.102 2h2.4a.5.5 0 0 1 0 1z");
|
|
4
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
.zs7_t6bwx {
|
|
2
|
+
fill: currentColor;
|
|
3
|
+
d: path("M10.5 1.833c-1.531 0-2.906-.278-4.146-1.52a.5.5 0 0 0-.706 0C4.405 1.555 3.029 1.833 1.5 1.833a.5.5 0 0 0-.5.5v3.002c0 3.218 1.642 5.405 4.841 6.473a.5.5 0 0 0 .318 0C9.36 10.741 11 8.553 11 5.335V2.333a.5.5 0 0 0-.5-.5M10 5.335c0 2.731-1.308 4.521-4 5.47c-2.691-.948-4-2.739-4-5.47V2.823c1.222-.051 2.669-.328 4-1.474c1.329 1.147 2.778 1.424 4 1.474zM6 4.5a1 1 0 0 1 .5 1.866V7a.5.5 0 0 1-1 0v-.634A1 1 0 0 1 6 4.5");
|
|
4
|
+
}
|
package/iconify.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"prefix": "codicon",
|
|
3
3
|
"info": {
|
|
4
4
|
"name": "Codicons",
|
|
5
|
-
"total":
|
|
5
|
+
"total": 560,
|
|
6
6
|
"version": "0.0.0",
|
|
7
7
|
"author": {
|
|
8
8
|
"name": "Microsoft Corporation",
|
|
@@ -28,5 +28,5 @@
|
|
|
28
28
|
],
|
|
29
29
|
"palette": false
|
|
30
30
|
},
|
|
31
|
-
"lastModified":
|
|
31
|
+
"lastModified": 1778562891
|
|
32
32
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@iconify-vue/codicon",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.25",
|
|
5
5
|
"homepage": "https://icon-sets.iconify.design/codicon/",
|
|
6
6
|
"bugs": "https://github.com/iconify/icon-sets/issues",
|
|
7
7
|
"license": "CC-BY-4.0",
|
|
@@ -274,6 +274,10 @@
|
|
|
274
274
|
"types": "./types/dd0bq22g.d.ts",
|
|
275
275
|
"default": "./components/c/circle-slash.vue"
|
|
276
276
|
},
|
|
277
|
+
"./circle-slash-compact": {
|
|
278
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
279
|
+
"default": "./components/c/circle-slash-compact.vue"
|
|
280
|
+
},
|
|
277
281
|
"./circle-small": {
|
|
278
282
|
"types": "./types/dd0bq22g.d.ts",
|
|
279
283
|
"default": "./components/c/circle-small.vue"
|
|
@@ -406,6 +410,10 @@
|
|
|
406
410
|
"types": "./types/dd0bq22g.d.ts",
|
|
407
411
|
"default": "./components/c/copilot-blocked.vue"
|
|
408
412
|
},
|
|
413
|
+
"./copilot-compact": {
|
|
414
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
415
|
+
"default": "./components/c/copilot-compact.vue"
|
|
416
|
+
},
|
|
409
417
|
"./copilot-error": {
|
|
410
418
|
"types": "./types/dd0bq22g.d.ts",
|
|
411
419
|
"default": "./components/c/copilot-error.vue"
|
|
@@ -694,6 +702,10 @@
|
|
|
694
702
|
"types": "./types/dd0bq22g.d.ts",
|
|
695
703
|
"default": "./components/e/error.vue"
|
|
696
704
|
},
|
|
705
|
+
"./error-compact": {
|
|
706
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
707
|
+
"default": "./components/e/error-compact.vue"
|
|
708
|
+
},
|
|
697
709
|
"./error-small": {
|
|
698
710
|
"types": "./types/dd0bq22g.d.ts",
|
|
699
711
|
"default": "./components/e/error-small.vue"
|
|
@@ -810,6 +822,10 @@
|
|
|
810
822
|
"types": "./types/dd0bq22g.d.ts",
|
|
811
823
|
"default": "./components/f/folder-active.vue"
|
|
812
824
|
},
|
|
825
|
+
"./folder-compact": {
|
|
826
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
827
|
+
"default": "./components/f/folder-compact.vue"
|
|
828
|
+
},
|
|
813
829
|
"./folder-library": {
|
|
814
830
|
"types": "./types/dd0bq22g.d.ts",
|
|
815
831
|
"default": "./components/f/folder-library.vue"
|
|
@@ -818,6 +834,10 @@
|
|
|
818
834
|
"types": "./types/dd0bq22g.d.ts",
|
|
819
835
|
"default": "./components/f/folder-opened.vue"
|
|
820
836
|
},
|
|
837
|
+
"./folder-opened-compact": {
|
|
838
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
839
|
+
"default": "./components/f/folder-opened-compact.vue"
|
|
840
|
+
},
|
|
821
841
|
"./forward": {
|
|
822
842
|
"types": "./types/dd0bq22g.d.ts",
|
|
823
843
|
"default": "./components/f/forward.vue"
|
|
@@ -830,6 +850,10 @@
|
|
|
830
850
|
"types": "./types/dd0bq22g.d.ts",
|
|
831
851
|
"default": "./components/g/gear.vue"
|
|
832
852
|
},
|
|
853
|
+
"./gear-compact": {
|
|
854
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
855
|
+
"default": "./components/g/gear-compact.vue"
|
|
856
|
+
},
|
|
833
857
|
"./gift": {
|
|
834
858
|
"types": "./types/dd0bq22g.d.ts",
|
|
835
859
|
"default": "./components/g/gift.vue"
|
|
@@ -850,6 +874,10 @@
|
|
|
850
874
|
"types": "./types/dd0bq22g.d.ts",
|
|
851
875
|
"default": "./components/g/git-branch-changes.vue"
|
|
852
876
|
},
|
|
877
|
+
"./git-branch-compact": {
|
|
878
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
879
|
+
"default": "./components/g/git-branch-compact.vue"
|
|
880
|
+
},
|
|
853
881
|
"./git-branch-conflicts": {
|
|
854
882
|
"types": "./types/dd0bq22g.d.ts",
|
|
855
883
|
"default": "./components/g/git-branch-conflicts.vue"
|
|
@@ -1174,6 +1202,10 @@
|
|
|
1174
1202
|
"types": "./types/dd0bq22g.d.ts",
|
|
1175
1203
|
"default": "./components/l/library.vue"
|
|
1176
1204
|
},
|
|
1205
|
+
"./library-compact": {
|
|
1206
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1207
|
+
"default": "./components/l/library-compact.vue"
|
|
1208
|
+
},
|
|
1177
1209
|
"./lightbulb": {
|
|
1178
1210
|
"types": "./types/dd0bq22g.d.ts",
|
|
1179
1211
|
"default": "./components/l/lightbulb.vue"
|
|
@@ -1514,6 +1546,10 @@
|
|
|
1514
1546
|
"types": "./types/dd0bq22g.d.ts",
|
|
1515
1547
|
"default": "./components/r/record-keys.vue"
|
|
1516
1548
|
},
|
|
1549
|
+
"./record-keys-compact": {
|
|
1550
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1551
|
+
"default": "./components/r/record-keys-compact.vue"
|
|
1552
|
+
},
|
|
1517
1553
|
"./record-small": {
|
|
1518
1554
|
"types": "./types/dd0bq22g.d.ts",
|
|
1519
1555
|
"default": "./components/r/record-small.vue"
|
|
@@ -1538,6 +1574,10 @@
|
|
|
1538
1574
|
"types": "./types/dd0bq22g.d.ts",
|
|
1539
1575
|
"default": "./components/r/remote.vue"
|
|
1540
1576
|
},
|
|
1577
|
+
"./remote-compact": {
|
|
1578
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1579
|
+
"default": "./components/r/remote-compact.vue"
|
|
1580
|
+
},
|
|
1541
1581
|
"./remote-explorer": {
|
|
1542
1582
|
"types": "./types/dd0bq22g.d.ts",
|
|
1543
1583
|
"default": "./components/r/remote-explorer.vue"
|
|
@@ -1574,6 +1614,10 @@
|
|
|
1574
1614
|
"types": "./types/dd0bq22g.d.ts",
|
|
1575
1615
|
"default": "./components/r/repo-clone.vue"
|
|
1576
1616
|
},
|
|
1617
|
+
"./repo-compact": {
|
|
1618
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1619
|
+
"default": "./components/r/repo-compact.vue"
|
|
1620
|
+
},
|
|
1577
1621
|
"./repo-fetch": {
|
|
1578
1622
|
"types": "./types/dd0bq22g.d.ts",
|
|
1579
1623
|
"default": "./components/r/repo-fetch.vue"
|
|
@@ -1586,6 +1630,10 @@
|
|
|
1586
1630
|
"types": "./types/dd0bq22g.d.ts",
|
|
1587
1631
|
"default": "./components/r/repo-forked.vue"
|
|
1588
1632
|
},
|
|
1633
|
+
"./repo-forked-compact": {
|
|
1634
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1635
|
+
"default": "./components/r/repo-forked-compact.vue"
|
|
1636
|
+
},
|
|
1589
1637
|
"./repo-pinned": {
|
|
1590
1638
|
"types": "./types/dd0bq22g.d.ts",
|
|
1591
1639
|
"default": "./components/r/repo-pinned.vue"
|
|
@@ -1750,6 +1798,10 @@
|
|
|
1750
1798
|
"types": "./types/dd0bq22g.d.ts",
|
|
1751
1799
|
"default": "./components/s/shield.vue"
|
|
1752
1800
|
},
|
|
1801
|
+
"./shield-compact": {
|
|
1802
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1803
|
+
"default": "./components/s/shield-compact.vue"
|
|
1804
|
+
},
|
|
1753
1805
|
"./sign-in": {
|
|
1754
1806
|
"types": "./types/dd0bq22g.d.ts",
|
|
1755
1807
|
"default": "./components/s/sign-in.vue"
|
|
@@ -1782,6 +1834,10 @@
|
|
|
1782
1834
|
"types": "./types/dd0bq22g.d.ts",
|
|
1783
1835
|
"default": "./components/s/sparkle.vue"
|
|
1784
1836
|
},
|
|
1837
|
+
"./sparkle-compact": {
|
|
1838
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1839
|
+
"default": "./components/s/sparkle-compact.vue"
|
|
1840
|
+
},
|
|
1785
1841
|
"./sparkle-filled": {
|
|
1786
1842
|
"types": "./types/dd0bq22g.d.ts",
|
|
1787
1843
|
"default": "./components/s/sparkle-filled.vue"
|
|
@@ -1838,6 +1894,10 @@
|
|
|
1838
1894
|
"types": "./types/dd0bq22g.d.ts",
|
|
1839
1895
|
"default": "./components/s/symbol-color.vue"
|
|
1840
1896
|
},
|
|
1897
|
+
"./symbol-color-compact": {
|
|
1898
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
1899
|
+
"default": "./components/s/symbol-color-compact.vue"
|
|
1900
|
+
},
|
|
1841
1901
|
"./symbol-constant": {
|
|
1842
1902
|
"types": "./types/dd0bq22g.d.ts",
|
|
1843
1903
|
"default": "./components/s/symbol-constant.vue"
|
|
@@ -2170,6 +2230,10 @@
|
|
|
2170
2230
|
"types": "./types/dd0bq22g.d.ts",
|
|
2171
2231
|
"default": "./components/w/window-active.vue"
|
|
2172
2232
|
},
|
|
2233
|
+
"./window-compact": {
|
|
2234
|
+
"types": "./types/dd0bq22g.d.ts",
|
|
2235
|
+
"default": "./components/w/window-compact.vue"
|
|
2236
|
+
},
|
|
2173
2237
|
"./word-wrap": {
|
|
2174
2238
|
"types": "./types/dd0bq22g.d.ts",
|
|
2175
2239
|
"default": "./components/w/word-wrap.vue"
|
package/css/b/bbiuddbrr.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.bbiuddbrr {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M4.5 6.5a3.5 3.5 0 1 1 5.954 2.495c-.193.19-.363.437-.445.736L9.664 11H6.336L5.99 9.731a1.65 1.65 0 0 0-.444-.736A3.5 3.5 0 0 1 4.5 6.5M6.61 12h2.78l-.171.632a.5.5 0 0 1-.483.368H7.264a.5.5 0 0 1-.483-.368zM8 2a4.5 4.5 0 0 0-3.155 7.708a.65.65 0 0 1 .18.287l.792 2.9A1.5 1.5 0 0 0 7.264 14h1.472a1.5 1.5 0 0 0 1.447-1.105l.791-2.9a.65.65 0 0 1 .181-.287A4.5 4.5 0 0 0 8 2");
|
|
4
|
-
}
|
package/css/c/ciwkabc3a.css
DELETED
package/css/h/huinkdacm.css
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
.huinkdacm {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
fill-rule: evenodd;
|
|
4
|
-
d: path("M12.156 4.702a4.3 4.3 0 0 0-.974-1.417A4.55 4.55 0 0 0 8 2a4.4 4.4 0 0 0-3.167 1.31A4.76 4.76 0 0 0 3.5 6.544v.038a5.32 5.32 0 0 0 1.737 3.455l.229.963l.471 1.978l.008.022c.098.289.285.54.534.717c.257.184.566.283.883.283h1.404c.309-.026.602-.146.84-.345c.239-.199.408-.47.481-.773L10.581 11l.306-1.168A4.73 4.73 0 0 0 12.5 6.387a4.3 4.3 0 0 0-.344-1.685m-3.038 7.926v.013A.5.5 0 0 1 8.7 13H7.361a.51.51 0 0 1-.461-.3l-.167-.7h2.549zm1.986-4.687A3.8 3.8 0 0 1 10.1 9.192l-.108.1L9.543 11H6.494l-.349-1.464l-.1-.1A4.47 4.47 0 0 1 4.5 6.556a3.76 3.76 0 0 1 1.043-2.543A3.4 3.4 0 0 1 8 3a3.55 3.55 0 0 1 2.486 1A3.3 3.3 0 0 1 11.5 6.387c-.02.54-.155 1.07-.396 1.554");
|
|
5
|
-
}
|
package/css/p/pikaej5uh.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.pikaej5uh {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M11.5 7a4.5 4.5 0 1 0 0 9a4.5 4.5 0 0 0 0-9m2.793 4.336l-1.25.947l.477 1.532c.15.481-.378.88-.77.583l-1.25-.947l-1.25.947c-.392.297-.92-.103-.77-.583l.477-1.532l-1.25-.947c-.392-.297-.191-.944.294-.944h1.545l.477-1.532a.494.494 0 0 1 .952 0l.477 1.532h1.545c.485 0 .687.647.294.944zM5.361 13a.51.51 0 0 1-.461-.3l-.167-.7h1.289A6 6 0 0 1 6 11.5c0-.169.012-.335.027-.5H4.494l-.349-1.464l-.1-.1A4.47 4.47 0 0 1 2.5 6.556a3.76 3.76 0 0 1 1.043-2.543A3.4 3.4 0 0 1 6 3a3.55 3.55 0 0 1 2.486 1A3.3 3.3 0 0 1 9.5 6.375q.476-.187.99-.282a4.32 4.32 0 0 0-1.308-2.808A4.55 4.55 0 0 0 6 2a4.4 4.4 0 0 0-3.167 1.31A4.76 4.76 0 0 0 1.5 6.544v.038a5.32 5.32 0 0 0 1.737 3.455l.7 2.941l.008.022c.098.289.285.54.534.717c.257.184.566.283.883.283H6.6a5.5 5.5 0 0 1-.393-1z");
|
|
4
|
-
}
|
package/css/t/t_1q4xboh.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.t_1q4xboh {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M3.5 2A2.5 2.5 0 0 0 1 4.5v7A2.5 2.5 0 0 0 3.5 14h9a2.5 2.5 0 0 0 2.5-2.5v-7A2.5 2.5 0 0 0 12.5 2zM2 4.5A1.5 1.5 0 0 1 3.5 3h9A1.5 1.5 0 0 1 14 4.5v7a1.5 1.5 0 0 1-1.5 1.5h-9A1.5 1.5 0 0 1 2 11.5zM3 5a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1zm9 0H4v1h8zM8 9a1 1 0 0 1 1-1h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1zm4 0H9v2h3zM3.5 8a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1zM3 10.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5");
|
|
4
|
-
}
|
package/css/w/wmy19urtf.css
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
.wmy19urtf {
|
|
2
|
-
fill: currentColor;
|
|
3
|
-
d: path("M10.887 15H8.5a.5.5 0 0 1 0-1h2.387a1 1 0 0 0 .865-.5l2.888-5a1 1 0 0 0 0-1l-2.935-5.084A.84.84 0 0 0 10.983 2a.83.83 0 0 0-.795.587l-3.422 11.12A1.82 1.82 0 0 1 5.016 15a1.84 1.84 0 0 1-1.587-.916L.495 9a2 2 0 0 1 0-2l2.887-5c.355-.617 1.019-1 1.731-1H7.5a.5.5 0 0 1 0 1H5.113a1 1 0 0 0-.865.5l-2.888 5a1 1 0 0 0 0 1l2.935 5.084a.84.84 0 0 0 .722.416a.83.83 0 0 0 .795-.588L9.234 2.293A1.82 1.82 0 0 1 10.984 1c.652 0 1.261.351 1.587.916L15.506 7a2 2 0 0 1 0 2.001L12.619 14c-.355.617-1.02 1-1.732 1");
|
|
4
|
-
}
|