@arco-iconbox/vue-smartcode 0.1.3 → 0.1.4
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 +1166 -1136
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +5 -1
- package/dist/icon.min.js.map +1 -1
- package/esm/IconLineBatch/index.js +32 -0
- package/esm/index.js +1 -0
- package/lib/IconLineBatch/index.js +33 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconLineBatch/index.vue +19 -0
- package/src/index.js +2 -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: "IconLineBatch",
|
|
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("path", { d: "M3.59766 9.2168C4.88244 9.21696 5.92357 10.2592 5.92383 11.5439C5.92369 12.8288 4.88251 13.87 3.59766 13.8701C2.31286 13.8699 1.27064 12.8288 1.27051 11.5439C1.27076 10.2592 2.31294 9.21703 3.59766 9.2168ZM3.59766 10.5469C3.04751 10.5471 2.60084 10.9937 2.60059 11.5439C2.60072 12.0943 3.04744 12.5408 3.59766 12.541C4.14794 12.5409 4.59361 12.0943 4.59375 11.5439C4.59349 10.9937 4.14786 10.547 3.59766 10.5469ZM14.0645 10.8789C14.4315 10.8791 14.7294 11.1769 14.7295 11.5439C14.7295 11.9111 14.4316 12.2088 14.0645 12.209H7.60449C7.23739 12.2088 6.93945 11.9111 6.93945 11.5439C6.93958 11.1769 7.23747 10.8791 7.60449 10.8789H14.0645ZM3.59766 2.13281C4.8826 2.13297 5.92383 3.17499 5.92383 4.45996C5.92349 5.74465 4.88239 6.78597 3.59766 6.78613C2.31298 6.7859 1.27084 5.7446 1.27051 4.45996C1.27051 3.17504 2.31278 2.13305 3.59766 2.13281ZM3.59766 3.46289C3.04735 3.46313 2.60059 3.90954 2.60059 4.45996C2.60092 5.0101 3.04756 5.4568 3.59766 5.45703C4.14782 5.45687 4.59341 5.01014 4.59375 4.45996C4.59375 3.90949 4.14802 3.46305 3.59766 3.46289ZM14.0645 3.79395C14.4315 3.79411 14.7293 4.09198 14.7295 4.45898C14.7295 4.82616 14.4316 5.12386 14.0645 5.12402H7.60449C7.23739 5.12383 6.93945 4.82613 6.93945 4.45898C6.93965 4.092 7.23751 3.79414 7.60449 3.79395H14.0645Z" }, null, -1);
|
|
18
|
+
const _hoisted_3 = [
|
|
19
|
+
_hoisted_2
|
|
20
|
+
];
|
|
21
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-batch`],
|
|
27
|
+
width: "1em",
|
|
28
|
+
height: "1em"
|
|
29
|
+
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
|
30
|
+
}
|
|
31
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
32
|
+
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -150,3 +150,4 @@ export { default as IconLineStr } from "./IconLineStr/index.js";
|
|
|
150
150
|
export { default as IconLineEdit } from "./IconLineEdit/index.js";
|
|
151
151
|
export { default as IconFillStart } from "./IconFillStart/index.js";
|
|
152
152
|
export { default as IconLineCode } from "./IconLineCode/index.js";
|
|
153
|
+
export { default as IconLineBatch } from "./IconLineBatch/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: "IconLineBatch",
|
|
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("path", { d: "M3.59766 9.2168C4.88244 9.21696 5.92357 10.2592 5.92383 11.5439C5.92369 12.8288 4.88251 13.87 3.59766 13.8701C2.31286 13.8699 1.27064 12.8288 1.27051 11.5439C1.27076 10.2592 2.31294 9.21703 3.59766 9.2168ZM3.59766 10.5469C3.04751 10.5471 2.60084 10.9937 2.60059 11.5439C2.60072 12.0943 3.04744 12.5408 3.59766 12.541C4.14794 12.5409 4.59361 12.0943 4.59375 11.5439C4.59349 10.9937 4.14786 10.547 3.59766 10.5469ZM14.0645 10.8789C14.4315 10.8791 14.7294 11.1769 14.7295 11.5439C14.7295 11.9111 14.4316 12.2088 14.0645 12.209H7.60449C7.23739 12.2088 6.93945 11.9111 6.93945 11.5439C6.93958 11.1769 7.23747 10.8791 7.60449 10.8789H14.0645ZM3.59766 2.13281C4.8826 2.13297 5.92383 3.17499 5.92383 4.45996C5.92349 5.74465 4.88239 6.78597 3.59766 6.78613C2.31298 6.7859 1.27084 5.7446 1.27051 4.45996C1.27051 3.17504 2.31278 2.13305 3.59766 2.13281ZM3.59766 3.46289C3.04735 3.46313 2.60059 3.90954 2.60059 4.45996C2.60092 5.0101 3.04756 5.4568 3.59766 5.45703C4.14782 5.45687 4.59341 5.01014 4.59375 4.45996C4.59375 3.90949 4.14802 3.46305 3.59766 3.46289ZM14.0645 3.79395C14.4315 3.79411 14.7293 4.09198 14.7295 4.45898C14.7295 4.82616 14.4316 5.12386 14.0645 5.12402H7.60449C7.23739 5.12383 6.93945 4.82613 6.93945 4.45898C6.93965 4.092 7.23751 3.79414 7.60449 3.79395H14.0645Z" }, null, -1);
|
|
19
|
+
const _hoisted_3 = [
|
|
20
|
+
_hoisted_2
|
|
21
|
+
];
|
|
22
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
24
|
+
viewBox: "0 0 16 16",
|
|
25
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-batch`],
|
|
28
|
+
width: "1em",
|
|
29
|
+
height: "1em"
|
|
30
|
+
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
|
31
|
+
}
|
|
32
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
33
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -152,6 +152,7 @@ var index$2k = require("./IconLineStr/index.js");
|
|
|
152
152
|
var index$2l = require("./IconLineEdit/index.js");
|
|
153
153
|
var index$2m = require("./IconFillStart/index.js");
|
|
154
154
|
var index$2n = require("./IconLineCode/index.js");
|
|
155
|
+
var index$2o = require("./IconLineBatch/index.js");
|
|
155
156
|
exports.IconFillHeart = index;
|
|
156
157
|
exports.IconFillMute = index$1;
|
|
157
158
|
exports.IconFillSound = index$2;
|
|
@@ -304,3 +305,4 @@ exports.IconLineStr = index$2k;
|
|
|
304
305
|
exports.IconLineEdit = index$2l;
|
|
305
306
|
exports.IconFillStart = index$2m;
|
|
306
307
|
exports.IconLineCode = index$2n;
|
|
308
|
+
exports.IconLineBatch = index$2o;
|
package/package.json
CHANGED
|
@@ -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-batch`]" width="1em" height="1em" v-bind="$attrs"><path d="M3.59766 9.2168C4.88244 9.21696 5.92357 10.2592 5.92383 11.5439C5.92369 12.8288 4.88251 13.87 3.59766 13.8701C2.31286 13.8699 1.27064 12.8288 1.27051 11.5439C1.27076 10.2592 2.31294 9.21703 3.59766 9.2168ZM3.59766 10.5469C3.04751 10.5471 2.60084 10.9937 2.60059 11.5439C2.60072 12.0943 3.04744 12.5408 3.59766 12.541C4.14794 12.5409 4.59361 12.0943 4.59375 11.5439C4.59349 10.9937 4.14786 10.547 3.59766 10.5469ZM14.0645 10.8789C14.4315 10.8791 14.7294 11.1769 14.7295 11.5439C14.7295 11.9111 14.4316 12.2088 14.0645 12.209H7.60449C7.23739 12.2088 6.93945 11.9111 6.93945 11.5439C6.93958 11.1769 7.23747 10.8791 7.60449 10.8789H14.0645ZM3.59766 2.13281C4.8826 2.13297 5.92383 3.17499 5.92383 4.45996C5.92349 5.74465 4.88239 6.78597 3.59766 6.78613C2.31298 6.7859 1.27084 5.7446 1.27051 4.45996C1.27051 3.17504 2.31278 2.13305 3.59766 2.13281ZM3.59766 3.46289C3.04735 3.46313 2.60059 3.90954 2.60059 4.45996C2.60092 5.0101 3.04756 5.4568 3.59766 5.45703C4.14782 5.45687 4.59341 5.01014 4.59375 4.45996C4.59375 3.90949 4.14802 3.46305 3.59766 3.46289ZM14.0645 3.79395C14.4315 3.79411 14.7293 4.09198 14.7295 4.45898C14.7295 4.82616 14.4316 5.12386 14.0645 5.12402H7.60449C7.23739 5.12383 6.93945 4.82613 6.93945 4.45898C6.93965 4.092 7.23751 3.79414 7.60449 3.79395H14.0645Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineBatch',
|
|
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
|
@@ -149,4 +149,5 @@ export { default as IconLineStrArray } from './IconLineStrArray/index.vue';
|
|
|
149
149
|
export { default as IconLineStr } from './IconLineStr/index.vue';
|
|
150
150
|
export { default as IconLineEdit } from './IconLineEdit/index.vue';
|
|
151
151
|
export { default as IconFillStart } from './IconFillStart/index.vue';
|
|
152
|
-
export { default as IconLineCode } from './IconLineCode/index.vue';
|
|
152
|
+
export { default as IconLineCode } from './IconLineCode/index.vue';
|
|
153
|
+
export { default as IconLineBatch } from './IconLineBatch/index.vue';
|