@arco-iconbox/vue-smartcode 0.1.42 → 0.1.44
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 +2046 -2016
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +150 -146
- package/dist/icon.min.js.map +1 -1
- package/esm/IconLineDotDrag/index.js +32 -0
- package/esm/{IconIconLessThan → IconLineLessThan}/index.js +2 -2
- package/esm/index.js +2 -1
- package/lib/IconLineDotDrag/index.js +33 -0
- package/lib/{IconIconLessThan → IconLineLessThan}/index.js +2 -2
- package/lib/index.js +4 -2
- package/package.json +1 -1
- package/src/IconLineDotDrag/index.vue +19 -0
- package/src/{IconIconLessThan → IconLineLessThan}/index.vue +2 -2
- package/src/index.js +3 -2
|
@@ -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: "IconLineDotDrag",
|
|
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: "M5.25 12.25C5.94036 12.25 6.5 12.8096 6.5 13.5C6.5 14.1904 5.94036 14.75 5.25 14.75C4.55964 14.75 4 14.1904 4 13.5C4 12.8096 4.55964 12.25 5.25 12.25ZM10.75 12.25C11.4404 12.25 12 12.8096 12 13.5C12 14.1904 11.4404 14.75 10.75 14.75C10.0596 14.75 9.5 14.1904 9.5 13.5C9.5 12.8096 10.0596 12.25 10.75 12.25ZM5.25 6.75C5.94036 6.75 6.5 7.30964 6.5 8C6.5 8.69036 5.94036 9.25 5.25 9.25C4.55964 9.25 4 8.69036 4 8C4 7.30964 4.55964 6.75 5.25 6.75ZM10.75 6.75C11.4404 6.75 12 7.30964 12 8C12 8.69036 11.4404 9.25 10.75 9.25C10.0596 9.25 9.5 8.69036 9.5 8C9.5 7.30964 10.0596 6.75 10.75 6.75ZM5.25 1.25C5.94036 1.25 6.5 1.80964 6.5 2.5C6.5 3.19036 5.94036 3.75 5.25 3.75C4.55964 3.75 4 3.19036 4 2.5C4 1.80964 4.55964 1.25 5.25 1.25ZM10.75 1.25C11.4404 1.25 12 1.80964 12 2.5C12 3.19036 11.4404 3.75 10.75 3.75C10.0596 3.75 9.5 3.19036 9.5 2.5C9.5 1.80964 10.0596 1.25 10.75 1.25Z" }, 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-dot-drag`],
|
|
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 };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { openBlock, createElementBlock, mergeProps, createElementVNode } from "vue";
|
|
2
2
|
import _export_sfc from "../_virtual/plugin-vue_export-helper.js";
|
|
3
3
|
const _sfc_main = {
|
|
4
|
-
name: "
|
|
4
|
+
name: "IconLineLessThan",
|
|
5
5
|
props: {
|
|
6
6
|
prefix: {
|
|
7
7
|
type: String,
|
|
@@ -27,7 +27,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
27
27
|
viewBox: "0 0 16 16",
|
|
28
28
|
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
29
29
|
xmlns: "http://www.w3.org/2000/svg",
|
|
30
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
30
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-lessThan`],
|
|
31
31
|
width: "1em",
|
|
32
32
|
height: "1em"
|
|
33
33
|
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
package/esm/index.js
CHANGED
|
@@ -270,5 +270,6 @@ export { default as IconLineGreaterEqual } from "./IconLineGreaterEqual/index.js
|
|
|
270
270
|
export { default as IconLineListContain } from "./IconLineListContain/index.js";
|
|
271
271
|
export { default as IconLineContain } from "./IconLineContain/index.js";
|
|
272
272
|
export { default as IconLineNotContain } from "./IconLineNotContain/index.js";
|
|
273
|
-
export { default as
|
|
273
|
+
export { default as IconLineLessThan } from "./IconLineLessThan/index.js";
|
|
274
274
|
export { default as IconLineNotListContain } from "./IconLineNotListContain/index.js";
|
|
275
|
+
export { default as IconLineDotDrag } from "./IconLineDotDrag/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: "IconLineDotDrag",
|
|
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: "M5.25 12.25C5.94036 12.25 6.5 12.8096 6.5 13.5C6.5 14.1904 5.94036 14.75 5.25 14.75C4.55964 14.75 4 14.1904 4 13.5C4 12.8096 4.55964 12.25 5.25 12.25ZM10.75 12.25C11.4404 12.25 12 12.8096 12 13.5C12 14.1904 11.4404 14.75 10.75 14.75C10.0596 14.75 9.5 14.1904 9.5 13.5C9.5 12.8096 10.0596 12.25 10.75 12.25ZM5.25 6.75C5.94036 6.75 6.5 7.30964 6.5 8C6.5 8.69036 5.94036 9.25 5.25 9.25C4.55964 9.25 4 8.69036 4 8C4 7.30964 4.55964 6.75 5.25 6.75ZM10.75 6.75C11.4404 6.75 12 7.30964 12 8C12 8.69036 11.4404 9.25 10.75 9.25C10.0596 9.25 9.5 8.69036 9.5 8C9.5 7.30964 10.0596 6.75 10.75 6.75ZM5.25 1.25C5.94036 1.25 6.5 1.80964 6.5 2.5C6.5 3.19036 5.94036 3.75 5.25 3.75C4.55964 3.75 4 3.19036 4 2.5C4 1.80964 4.55964 1.25 5.25 1.25ZM10.75 1.25C11.4404 1.25 12 1.80964 12 2.5C12 3.19036 11.4404 3.75 10.75 3.75C10.0596 3.75 9.5 3.19036 9.5 2.5C9.5 1.80964 10.0596 1.25 10.75 1.25Z" }, 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-dot-drag`],
|
|
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;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
var vue = require("vue");
|
|
3
3
|
var pluginVue_exportHelper = require("../_virtual/plugin-vue_export-helper.js");
|
|
4
4
|
const _sfc_main = {
|
|
5
|
-
name: "
|
|
5
|
+
name: "IconLineLessThan",
|
|
6
6
|
props: {
|
|
7
7
|
prefix: {
|
|
8
8
|
type: String,
|
|
@@ -28,7 +28,7 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
28
28
|
viewBox: "0 0 16 16",
|
|
29
29
|
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
30
30
|
xmlns: "http://www.w3.org/2000/svg",
|
|
31
|
-
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-
|
|
31
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-line-lessThan`],
|
|
32
32
|
width: "1em",
|
|
33
33
|
height: "1em"
|
|
34
34
|
}, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
|
package/lib/index.js
CHANGED
|
@@ -272,8 +272,9 @@ var index$4c = require("./IconLineGreaterEqual/index.js");
|
|
|
272
272
|
var index$4d = require("./IconLineListContain/index.js");
|
|
273
273
|
var index$4e = require("./IconLineContain/index.js");
|
|
274
274
|
var index$4f = require("./IconLineNotContain/index.js");
|
|
275
|
-
var index$4g = require("./
|
|
275
|
+
var index$4g = require("./IconLineLessThan/index.js");
|
|
276
276
|
var index$4h = require("./IconLineNotListContain/index.js");
|
|
277
|
+
var index$4i = require("./IconLineDotDrag/index.js");
|
|
277
278
|
exports.IconFillHeart = index;
|
|
278
279
|
exports.IconFillMute = index$1;
|
|
279
280
|
exports.IconFillSound = index$2;
|
|
@@ -546,5 +547,6 @@ exports.IconLineGreaterEqual = index$4c;
|
|
|
546
547
|
exports.IconLineListContain = index$4d;
|
|
547
548
|
exports.IconLineContain = index$4e;
|
|
548
549
|
exports.IconLineNotContain = index$4f;
|
|
549
|
-
exports.
|
|
550
|
+
exports.IconLineLessThan = index$4g;
|
|
550
551
|
exports.IconLineNotListContain = index$4h;
|
|
552
|
+
exports.IconLineDotDrag = index$4i;
|
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-dot-drag`]" width="1em" height="1em" v-bind="$attrs"><path d="M5.25 12.25C5.94036 12.25 6.5 12.8096 6.5 13.5C6.5 14.1904 5.94036 14.75 5.25 14.75C4.55964 14.75 4 14.1904 4 13.5C4 12.8096 4.55964 12.25 5.25 12.25ZM10.75 12.25C11.4404 12.25 12 12.8096 12 13.5C12 14.1904 11.4404 14.75 10.75 14.75C10.0596 14.75 9.5 14.1904 9.5 13.5C9.5 12.8096 10.0596 12.25 10.75 12.25ZM5.25 6.75C5.94036 6.75 6.5 7.30964 6.5 8C6.5 8.69036 5.94036 9.25 5.25 9.25C4.55964 9.25 4 8.69036 4 8C4 7.30964 4.55964 6.75 5.25 6.75ZM10.75 6.75C11.4404 6.75 12 7.30964 12 8C12 8.69036 11.4404 9.25 10.75 9.25C10.0596 9.25 9.5 8.69036 9.5 8C9.5 7.30964 10.0596 6.75 10.75 6.75ZM5.25 1.25C5.94036 1.25 6.5 1.80964 6.5 2.5C6.5 3.19036 5.94036 3.75 5.25 3.75C4.55964 3.75 4 3.19036 4 2.5C4 1.80964 4.55964 1.25 5.25 1.25ZM10.75 1.25C11.4404 1.25 12 1.80964 12 2.5C12 3.19036 11.4404 3.75 10.75 3.75C10.0596 3.75 9.5 3.19036 9.5 2.5C9.5 1.80964 10.0596 1.25 10.75 1.25Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconLineDotDrag',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'sc',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
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-
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#000'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-line-lessThan`]" width="1em" height="1em" v-bind="$attrs"><path fill-rule="evenodd" clip-rule="evenodd" d="M11.6738 2.90621C11.9936 2.72595 12.3995 2.83858 12.5801 3.15816C12.7602 3.47778 12.6475 3.8838 12.3281 4.06441L5.35352 8.00094L12.3281 11.9384C12.6475 12.1191 12.7604 12.525 12.5801 12.8447C12.3996 13.1644 11.9936 13.2768 11.6738 13.0966L3.67285 8.58102C3.46413 8.46317 3.33417 8.24158 3.33398 8.00191C3.33398 7.76215 3.46415 7.54078 3.67285 7.42281L11.6738 2.90621Z"/></svg>
|
|
3
3
|
</template>
|
|
4
4
|
<script>
|
|
5
5
|
|
|
6
6
|
export default {
|
|
7
|
-
name: '
|
|
7
|
+
name: 'IconLineLessThan',
|
|
8
8
|
props: {
|
|
9
9
|
prefix: {
|
|
10
10
|
type: String,
|
package/src/index.js
CHANGED
|
@@ -270,5 +270,6 @@ export { default as IconLineGreaterEqual } from './IconLineGreaterEqual/index.vu
|
|
|
270
270
|
export { default as IconLineListContain } from './IconLineListContain/index.vue';
|
|
271
271
|
export { default as IconLineContain } from './IconLineContain/index.vue';
|
|
272
272
|
export { default as IconLineNotContain } from './IconLineNotContain/index.vue';
|
|
273
|
-
export { default as
|
|
274
|
-
export { default as IconLineNotListContain } from './IconLineNotListContain/index.vue';
|
|
273
|
+
export { default as IconLineLessThan } from './IconLineLessThan/index.vue';
|
|
274
|
+
export { default as IconLineNotListContain } from './IconLineNotListContain/index.vue';
|
|
275
|
+
export { default as IconLineDotDrag } from './IconLineDotDrag/index.vue';
|