@arco-iconbox/vue-smartcode 0.1.46 → 0.1.47
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 +2063 -2033
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +148 -144
- package/dist/icon.min.js.map +1 -1
- package/esm/IconLineOk/index.js +32 -0
- package/esm/index.js +1 -0
- package/lib/IconLineOk/index.js +33 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconLineOk/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: "IconLineOk",
|
|
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: "M12.4137 4.29498C12.6734 4.03577 13.0946 4.03641 13.3541 4.29596C13.6133 4.55571 13.6127 4.97686 13.3531 5.23639L6.8844 11.7051C6.62475 11.9644 6.20357 11.9645 5.94397 11.7051L2.64514 8.40631C2.3859 8.14669 2.38589 7.72549 2.64514 7.46588C2.90473 7.20643 3.32589 7.20658 3.58557 7.46588L6.41467 10.294L12.4137 4.29498Z" }, 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-ok`],
|
|
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
|
@@ -276,3 +276,4 @@ export { default as IconLineDotDrag } from "./IconLineDotDrag/index.js";
|
|
|
276
276
|
export { default as IconLineWorkFlow } from "./IconLineWorkFlow/index.js";
|
|
277
277
|
export { default as IconLineEr } from "./IconLineEr/index.js";
|
|
278
278
|
export { default as IconFillQuotation } from "./IconFillQuotation/index.js";
|
|
279
|
+
export { default as IconLineOk } from "./IconLineOk/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: "IconLineOk",
|
|
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: "M12.4137 4.29498C12.6734 4.03577 13.0946 4.03641 13.3541 4.29596C13.6133 4.55571 13.6127 4.97686 13.3531 5.23639L6.8844 11.7051C6.62475 11.9644 6.20357 11.9645 5.94397 11.7051L2.64514 8.40631C2.3859 8.14669 2.38589 7.72549 2.64514 7.46588C2.90473 7.20643 3.32589 7.20658 3.58557 7.46588L6.41467 10.294L12.4137 4.29498Z" }, 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-ok`],
|
|
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
|
@@ -278,6 +278,7 @@ var index$4i = require("./IconLineDotDrag/index.js");
|
|
|
278
278
|
var index$4j = require("./IconLineWorkFlow/index.js");
|
|
279
279
|
var index$4k = require("./IconLineEr/index.js");
|
|
280
280
|
var index$4l = require("./IconFillQuotation/index.js");
|
|
281
|
+
var index$4m = require("./IconLineOk/index.js");
|
|
281
282
|
exports.IconFillHeart = index;
|
|
282
283
|
exports.IconFillMute = index$1;
|
|
283
284
|
exports.IconFillSound = index$2;
|
|
@@ -556,3 +557,4 @@ exports.IconLineDotDrag = index$4i;
|
|
|
556
557
|
exports.IconLineWorkFlow = index$4j;
|
|
557
558
|
exports.IconLineEr = index$4k;
|
|
558
559
|
exports.IconFillQuotation = index$4l;
|
|
560
|
+
exports.IconLineOk = index$4m;
|
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-ok`]" width="1em" height="1em" v-bind="$attrs"><path d="M12.4137 4.29498C12.6734 4.03577 13.0946 4.03641 13.3541 4.29596C13.6133 4.55571 13.6127 4.97686 13.3531 5.23639L6.8844 11.7051C6.62475 11.9644 6.20357 11.9645 5.94397 11.7051L2.64514 8.40631C2.3859 8.14669 2.38589 7.72549 2.64514 7.46588C2.90473 7.20643 3.32589 7.20658 3.58557 7.46588L6.41467 10.294L12.4137 4.29498Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineOk',
|
|
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
|
@@ -275,4 +275,5 @@ export { default as IconLineNotListContain } from './IconLineNotListContain/inde
|
|
|
275
275
|
export { default as IconLineDotDrag } from './IconLineDotDrag/index.vue';
|
|
276
276
|
export { default as IconLineWorkFlow } from './IconLineWorkFlow/index.vue';
|
|
277
277
|
export { default as IconLineEr } from './IconLineEr/index.vue';
|
|
278
|
-
export { default as IconFillQuotation } from './IconFillQuotation/index.vue';
|
|
278
|
+
export { default as IconFillQuotation } from './IconFillQuotation/index.vue';
|
|
279
|
+
export { default as IconLineOk } from './IconLineOk/index.vue';
|