@arco-iconbox/vue-smartcode 0.1.27 → 0.1.29
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 +2111 -2043
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +68 -60
- package/dist/icon.min.js.map +1 -1
- package/esm/IconColorKey/index.js +32 -0
- package/esm/IconLinePass/index.js +40 -0
- package/esm/index.js +2 -0
- package/lib/IconColorKey/index.js +33 -0
- package/lib/IconLinePass/index.js +41 -0
- package/lib/index.js +4 -0
- package/package.json +1 -1
- package/src/IconColorKey/index.vue +19 -0
- package/src/IconLinePass/index.vue +19 -0
- package/src/index.js +3 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, mergeProps, createElementVNode } from "vue";
|
|
2
|
+
import _export_sfc from "../_virtual/plugin-vue_export-helper.js";
|
|
3
|
+
const _sfc_main = {
|
|
4
|
+
name: "IconColorKey",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: false
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = ["fill"];
|
|
17
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
18
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
19
|
+
viewBox: "0 0 1024 1024",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
21
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-key`],
|
|
22
|
+
width: "1em",
|
|
23
|
+
height: "1em"
|
|
24
|
+
}, _ctx.$attrs), [
|
|
25
|
+
createElementVNode("path", {
|
|
26
|
+
d: "M330.924671 486.843986L4.974452 814.32998v204.770163h204.770162v-116.938389h116.938389v-117.011522h117.011522l93.097291-92.146573a358.347784 358.347784 0 1 0-205.867145-206.232806zM665.577622 477.921857a119.424884 119.424884 0 1 1 0-238.849768 119.424884 119.424884 0 0 1 0 238.849768z",
|
|
27
|
+
fill: $props.useCurrentColor ? "currentColor" : "#FFA000"
|
|
28
|
+
}, null, 8, _hoisted_1)
|
|
29
|
+
], 16);
|
|
30
|
+
}
|
|
31
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
32
|
+
export { index as default };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { openBlock, createElementBlock, mergeProps, createElementVNode } from "vue";
|
|
2
|
+
import _export_sfc from "../_virtual/plugin-vue_export-helper.js";
|
|
3
|
+
const _sfc_main = {
|
|
4
|
+
name: "IconLinePass",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "sc"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = ["fill"];
|
|
17
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("g", { "clip-path": "url(#svg_b9cc392844__clip0_5692_15855)" }, [
|
|
18
|
+
/* @__PURE__ */ createElementVNode("path", { d: "M7.99951 0.835938C11.9566 0.835938 15.1646 4.04386 15.1646 8.00098C15.1645 11.9581 11.9566 15.166 7.99951 15.166C4.04263 15.1658 0.834522 11.9579 0.834473 8.00098C0.834473 4.04401 4.0426 0.836185 7.99951 0.835938ZM7.99951 2.16602C4.77714 2.16626 2.16455 4.77855 2.16455 8.00098C2.1646 11.2234 4.77717 13.8357 7.99951 13.8359C11.2221 13.8359 13.8344 11.2235 13.8345 8.00098C13.8345 4.7784 11.2221 2.16602 7.99951 2.16602ZM10.4634 5.58789C10.7231 5.32867 11.1443 5.32932 11.4038 5.58887C11.6628 5.84863 11.6623 6.26985 11.4028 6.5293L7.51807 10.4141C7.25849 10.6735 6.83732 10.6733 6.57764 10.4141L4.59619 8.43359C4.33667 8.17408 4.33704 7.75291 4.59619 7.49316C4.85589 7.23347 5.27692 7.23347 5.53662 7.49316L7.04834 9.00293L10.4634 5.58789Z" })
|
|
19
|
+
], -1);
|
|
20
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("defs", null, [
|
|
21
|
+
/* @__PURE__ */ createElementVNode("clipPath", { id: "svg_b9cc392844__clip0_5692_15855" }, [
|
|
22
|
+
/* @__PURE__ */ createElementVNode("path", { d: "M0 0H16V16H0z" })
|
|
23
|
+
])
|
|
24
|
+
], -1);
|
|
25
|
+
const _hoisted_4 = [
|
|
26
|
+
_hoisted_2,
|
|
27
|
+
_hoisted_3
|
|
28
|
+
];
|
|
29
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
30
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
31
|
+
viewBox: "0 0 16 16",
|
|
32
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
33
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
34
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-pass`],
|
|
35
|
+
width: "1em",
|
|
36
|
+
height: "1em"
|
|
37
|
+
}, _ctx.$attrs), _hoisted_4, 16, _hoisted_1);
|
|
38
|
+
}
|
|
39
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
40
|
+
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -218,3 +218,5 @@ export { default as IconFillDataFilter } from "./IconFillDataFilter/index.js";
|
|
|
218
218
|
export { default as IconFillLink } from "./IconFillLink/index.js";
|
|
219
219
|
export { default as IconFillRow2col } from "./IconFillRow2col/index.js";
|
|
220
220
|
export { default as IconColorDataFilter } from "./IconColorDataFilter/index.js";
|
|
221
|
+
export { default as IconColorKey } from "./IconColorKey/index.js";
|
|
222
|
+
export { default as IconLinePass } from "./IconLinePass/index.js";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var vue = require("vue");
|
|
3
|
+
var pluginVue_exportHelper = require("../_virtual/plugin-vue_export-helper.js");
|
|
4
|
+
const _sfc_main = {
|
|
5
|
+
name: "IconColorKey",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: false
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = ["fill"];
|
|
18
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
19
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
20
|
+
viewBox: "0 0 1024 1024",
|
|
21
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
22
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-key`],
|
|
23
|
+
width: "1em",
|
|
24
|
+
height: "1em"
|
|
25
|
+
}, _ctx.$attrs), [
|
|
26
|
+
vue.createElementVNode("path", {
|
|
27
|
+
d: "M330.924671 486.843986L4.974452 814.32998v204.770163h204.770162v-116.938389h116.938389v-117.011522h117.011522l93.097291-92.146573a358.347784 358.347784 0 1 0-205.867145-206.232806zM665.577622 477.921857a119.424884 119.424884 0 1 1 0-238.849768 119.424884 119.424884 0 0 1 0 238.849768z",
|
|
28
|
+
fill: $props.useCurrentColor ? "currentColor" : "#FFA000"
|
|
29
|
+
}, null, 8, _hoisted_1)
|
|
30
|
+
], 16);
|
|
31
|
+
}
|
|
32
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
33
|
+
module.exports = index;
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var vue = require("vue");
|
|
3
|
+
var pluginVue_exportHelper = require("../_virtual/plugin-vue_export-helper.js");
|
|
4
|
+
const _sfc_main = {
|
|
5
|
+
name: "IconLinePass",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "sc"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: true
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = ["fill"];
|
|
18
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("g", { "clip-path": "url(#svg_b9cc392844__clip0_5692_15855)" }, [
|
|
19
|
+
/* @__PURE__ */ vue.createElementVNode("path", { d: "M7.99951 0.835938C11.9566 0.835938 15.1646 4.04386 15.1646 8.00098C15.1645 11.9581 11.9566 15.166 7.99951 15.166C4.04263 15.1658 0.834522 11.9579 0.834473 8.00098C0.834473 4.04401 4.0426 0.836185 7.99951 0.835938ZM7.99951 2.16602C4.77714 2.16626 2.16455 4.77855 2.16455 8.00098C2.1646 11.2234 4.77717 13.8357 7.99951 13.8359C11.2221 13.8359 13.8344 11.2235 13.8345 8.00098C13.8345 4.7784 11.2221 2.16602 7.99951 2.16602ZM10.4634 5.58789C10.7231 5.32867 11.1443 5.32932 11.4038 5.58887C11.6628 5.84863 11.6623 6.26985 11.4028 6.5293L7.51807 10.4141C7.25849 10.6735 6.83732 10.6733 6.57764 10.4141L4.59619 8.43359C4.33667 8.17408 4.33704 7.75291 4.59619 7.49316C4.85589 7.23347 5.27692 7.23347 5.53662 7.49316L7.04834 9.00293L10.4634 5.58789Z" })
|
|
20
|
+
], -1);
|
|
21
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("defs", null, [
|
|
22
|
+
/* @__PURE__ */ vue.createElementVNode("clipPath", { id: "svg_b9cc392844__clip0_5692_15855" }, [
|
|
23
|
+
/* @__PURE__ */ vue.createElementVNode("path", { d: "M0 0H16V16H0z" })
|
|
24
|
+
])
|
|
25
|
+
], -1);
|
|
26
|
+
const _hoisted_4 = [
|
|
27
|
+
_hoisted_2,
|
|
28
|
+
_hoisted_3
|
|
29
|
+
];
|
|
30
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
31
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
32
|
+
viewBox: "0 0 16 16",
|
|
33
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
34
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-pass`],
|
|
36
|
+
width: "1em",
|
|
37
|
+
height: "1em"
|
|
38
|
+
}, _ctx.$attrs), _hoisted_4, 16, _hoisted_1);
|
|
39
|
+
}
|
|
40
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
41
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -220,6 +220,8 @@ var index$3o = require("./IconFillDataFilter/index.js");
|
|
|
220
220
|
var index$3p = require("./IconFillLink/index.js");
|
|
221
221
|
var index$3q = require("./IconFillRow2col/index.js");
|
|
222
222
|
var index$3r = require("./IconColorDataFilter/index.js");
|
|
223
|
+
var index$3s = require("./IconColorKey/index.js");
|
|
224
|
+
var index$3t = require("./IconLinePass/index.js");
|
|
223
225
|
exports.IconFillHeart = index;
|
|
224
226
|
exports.IconFillMute = index$1;
|
|
225
227
|
exports.IconFillSound = index$2;
|
|
@@ -440,3 +442,5 @@ exports.IconFillDataFilter = index$3o;
|
|
|
440
442
|
exports.IconFillLink = index$3p;
|
|
441
443
|
exports.IconFillRow2col = index$3q;
|
|
442
444
|
exports.IconColorDataFilter = index$3r;
|
|
445
|
+
exports.IconColorKey = index$3s;
|
|
446
|
+
exports.IconLinePass = index$3t;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-key`]" width="1em" height="1em" v-bind="$attrs"><path d="M330.924671 486.843986L4.974452 814.32998v204.770163h204.770162v-116.938389h116.938389v-117.011522h117.011522l93.097291-92.146573a358.347784 358.347784 0 1 0-205.867145-206.232806zM665.577622 477.921857a119.424884 119.424884 0 1 1 0-238.849768 119.424884 119.424884 0 0 1 0 238.849768z" :fill="useCurrentColor ? 'currentColor' : '#FFA000'"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorKey',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: false,
|
|
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-pass`]" width="1em" height="1em" v-bind="$attrs"><g clip-path="url(#svg_b9cc392844__clip0_5692_15855)"><path d="M7.99951 0.835938C11.9566 0.835938 15.1646 4.04386 15.1646 8.00098C15.1645 11.9581 11.9566 15.166 7.99951 15.166C4.04263 15.1658 0.834522 11.9579 0.834473 8.00098C0.834473 4.04401 4.0426 0.836185 7.99951 0.835938ZM7.99951 2.16602C4.77714 2.16626 2.16455 4.77855 2.16455 8.00098C2.1646 11.2234 4.77717 13.8357 7.99951 13.8359C11.2221 13.8359 13.8344 11.2235 13.8345 8.00098C13.8345 4.7784 11.2221 2.16602 7.99951 2.16602ZM10.4634 5.58789C10.7231 5.32867 11.1443 5.32932 11.4038 5.58887C11.6628 5.84863 11.6623 6.26985 11.4028 6.5293L7.51807 10.4141C7.25849 10.6735 6.83732 10.6733 6.57764 10.4141L4.59619 8.43359C4.33667 8.17408 4.33704 7.75291 4.59619 7.49316C4.85589 7.23347 5.27692 7.23347 5.53662 7.49316L7.04834 9.00293L10.4634 5.58789Z"/></g><defs><clipPath id="svg_b9cc392844__clip0_5692_15855"><path d="M0 0H16V16H0z"/></clipPath></defs></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLinePass',
|
|
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
|
@@ -217,4 +217,6 @@ export { default as IconFillFiled } from './IconFillFiled/index.vue';
|
|
|
217
217
|
export { default as IconFillDataFilter } from './IconFillDataFilter/index.vue';
|
|
218
218
|
export { default as IconFillLink } from './IconFillLink/index.vue';
|
|
219
219
|
export { default as IconFillRow2col } from './IconFillRow2col/index.vue';
|
|
220
|
-
export { default as IconColorDataFilter } from './IconColorDataFilter/index.vue';
|
|
220
|
+
export { default as IconColorDataFilter } from './IconColorDataFilter/index.vue';
|
|
221
|
+
export { default as IconColorKey } from './IconColorKey/index.vue';
|
|
222
|
+
export { default as IconLinePass } from './IconLinePass/index.vue';
|