@arco-iconbox/vue-smartcode 0.1.43 → 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 +2052 -2022
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +148 -144
- package/dist/icon.min.js.map +1 -1
- package/esm/IconLineDotDrag/index.js +32 -0
- package/esm/index.js +1 -0
- package/lib/IconLineDotDrag/index.js +33 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconLineDotDrag/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: "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 };
|
package/esm/index.js
CHANGED
|
@@ -272,3 +272,4 @@ export { default as IconLineContain } from "./IconLineContain/index.js";
|
|
|
272
272
|
export { default as IconLineNotContain } from "./IconLineNotContain/index.js";
|
|
273
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;
|
package/lib/index.js
CHANGED
|
@@ -274,6 +274,7 @@ var index$4e = require("./IconLineContain/index.js");
|
|
|
274
274
|
var index$4f = require("./IconLineNotContain/index.js");
|
|
275
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;
|
|
@@ -548,3 +549,4 @@ exports.IconLineContain = index$4e;
|
|
|
548
549
|
exports.IconLineNotContain = index$4f;
|
|
549
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>
|
package/src/index.js
CHANGED
|
@@ -271,4 +271,5 @@ 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
273
|
export { default as IconLineLessThan } from './IconLineLessThan/index.vue';
|
|
274
|
-
export { default as IconLineNotListContain } from './IconLineNotListContain/index.vue';
|
|
274
|
+
export { default as IconLineNotListContain } from './IconLineNotListContain/index.vue';
|
|
275
|
+
export { default as IconLineDotDrag } from './IconLineDotDrag/index.vue';
|