@arco-iconbox/vue-smartcode 0.0.16 → 0.0.18
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/icon.js +811 -589
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +54 -26
- package/dist/icon.min.js.map +1 -1
- package/esm/IconFillApi/index.js +44 -0
- package/esm/IconFillDictCode/index.js +32 -0
- package/esm/IconLineFlatten/index.js +32 -0
- package/esm/IconLineLeft/index.js +32 -0
- package/esm/IconLineMore/index.js +32 -0
- package/esm/IconLineRight/index.js +32 -0
- package/esm/IconLineTree/index.js +32 -0
- package/esm/index.js +7 -0
- package/lib/IconFillApi/index.js +45 -0
- package/lib/IconFillDictCode/index.js +33 -0
- package/lib/IconLineFlatten/index.js +33 -0
- package/lib/IconLineLeft/index.js +33 -0
- package/lib/IconLineMore/index.js +33 -0
- package/lib/IconLineRight/index.js +33 -0
- package/lib/IconLineTree/index.js +33 -0
- package/lib/index.js +14 -0
- package/package.json +1 -1
- package/src/IconFillApi/index.vue +19 -0
- package/src/IconFillDictCode/index.vue +19 -0
- package/src/IconLineFlatten/index.vue +19 -0
- package/src/IconLineLeft/index.vue +19 -0
- package/src/IconLineMore/index.vue +19 -0
- package/src/IconLineRight/index.vue +19 -0
- package/src/IconLineTree/index.vue +19 -0
- package/src/index.js +8 -1
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-more`]" width="1em" height="1em" v-bind="$attrs"><path d="M4.08887 6.91016C4.68976 6.91041 5.17676 7.39808 5.17676 7.99902C5.1765 8.59976 4.6896 9.08666 4.08887 9.08691C3.48792 9.08691 3.00025 8.59991 3 7.99902C3 7.39792 3.48776 6.91016 4.08887 6.91016ZM8 6.91016C8.60096 6.91033 9.08789 7.39802 9.08789 7.99902C9.08764 8.59981 8.6008 9.08674 8 9.08691C7.39905 9.08691 6.91139 8.59991 6.91113 7.99902C6.91113 7.39792 7.39889 6.91016 8 6.91016ZM11.9111 6.91016C12.5122 6.91016 13 7.39792 13 7.99902C12.9997 8.59991 12.5121 9.08691 11.9111 9.08691C11.3102 9.08685 10.8235 8.59987 10.8232 7.99902C10.8232 7.39796 11.3101 6.91022 11.9111 6.91016Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineMore',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-right`]" width="1em" height="1em" v-bind="$attrs"><path d="M13.4521 3.33496C13.8194 3.33496 14.1171 3.63279 14.1172 4V12C14.1172 12.3673 13.8194 12.665 13.4521 12.665C13.0849 12.665 12.7871 12.3672 12.7871 12V4C12.7872 3.63282 13.085 3.33501 13.4521 3.33496ZM7.38574 4.0293C7.64543 3.76968 8.06746 3.76968 8.32715 4.0293L11.8271 7.5293C12.0868 7.78898 12.0868 8.211 11.8271 8.4707L8.32715 11.9707C8.06745 12.2304 7.64544 12.2304 7.38574 11.9707C7.1261 11.711 7.12606 11.289 7.38574 11.0293L9.75 8.66504H2.54785C2.18058 8.66504 1.88281 8.36727 1.88281 8C1.88288 7.63279 2.18062 7.33496 2.54785 7.33496H9.75L7.38574 4.9707C7.1261 4.711 7.12606 4.28898 7.38574 4.0293Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineRight',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-tree`]" width="1em" height="1em" v-bind="$attrs"><path d="M11.9141 11.0977C12.7156 11.0977 13.3662 11.7473 13.3662 12.5488C13.3662 13.3503 12.7156 14 11.9141 14C11.1128 13.9997 10.4629 13.3502 10.4629 12.5488C10.4629 11.7475 11.1128 11.0979 11.9141 11.0977ZM4.44727 4.86719C4.81454 4.86719 5.1123 5.16496 5.1123 5.53223V6.40332H8.66211C9.0293 6.40332 9.32702 6.7012 9.32715 7.06836C9.32693 7.43544 9.02924 7.7334 8.66211 7.7334H5.1123V9.34961C5.11231 9.92006 5.1132 10.3084 5.1377 10.6084C5.16159 10.9005 5.20457 11.0508 5.25781 11.1553C5.38572 11.4062 5.58994 11.6103 5.84082 11.7383C5.94532 11.7915 6.09556 11.8355 6.3877 11.8594C6.68779 11.8839 7.0766 11.8838 7.64746 11.8838H8.66211C9.02927 11.8838 9.32697 12.1817 9.32715 12.5488C9.32693 12.9159 9.02924 13.2139 8.66211 13.2139H7.64746C7.09852 13.2139 6.64609 13.2145 6.2793 13.1846C5.90486 13.1539 5.56044 13.0885 5.2373 12.9238C4.73596 12.6684 4.32776 12.2601 4.07227 11.7588C3.90775 11.4357 3.84213 11.0911 3.81152 10.7168C3.78158 10.3501 3.78223 9.89824 3.78223 9.34961V5.53223C3.78223 5.16506 4.08013 4.86735 4.44727 4.86719ZM11.9141 5.41309C12.7156 5.41309 13.3662 6.06278 13.3662 6.86426C13.3662 7.66578 12.7156 8.31543 11.9141 8.31543C11.1128 8.31518 10.4629 7.66563 10.4629 6.86426C10.4629 6.06294 11.1128 5.41334 11.9141 5.41309ZM4.45117 0.5C5.25263 0.5 5.90223 1.14974 5.90234 1.95117C5.90234 2.7527 5.2527 3.40234 4.45117 3.40234C3.64969 3.40229 3 2.75266 3 1.95117C3.00011 1.14978 3.64976 0.500052 4.45117 0.5Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineTree',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
package/src/index.js
CHANGED
|
@@ -72,4 +72,11 @@ export { default as IconLineExport } from './IconLineExport/index.vue';
|
|
|
72
72
|
export { default as IconLineMenuExpand } from './IconLineMenuExpand/index.vue';
|
|
73
73
|
export { default as IconLineMenuShrink } from './IconLineMenuShrink/index.vue';
|
|
74
74
|
export { default as IconLineTableSet } from './IconLineTableSet/index.vue';
|
|
75
|
-
export { default as IconLineTranslation } from './IconLineTranslation/index.vue';
|
|
75
|
+
export { default as IconLineTranslation } from './IconLineTranslation/index.vue';
|
|
76
|
+
export { default as IconLineLeft } from './IconLineLeft/index.vue';
|
|
77
|
+
export { default as IconLineRight } from './IconLineRight/index.vue';
|
|
78
|
+
export { default as IconLineFlatten } from './IconLineFlatten/index.vue';
|
|
79
|
+
export { default as IconLineTree } from './IconLineTree/index.vue';
|
|
80
|
+
export { default as IconFillApi } from './IconFillApi/index.vue';
|
|
81
|
+
export { default as IconFillDictCode } from './IconFillDictCode/index.vue';
|
|
82
|
+
export { default as IconLineMore } from './IconLineMore/index.vue';
|