@arco-iconbox/vue-update-line-icon 0.0.22 → 0.0.23
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 +1274 -1216
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +49 -41
- package/dist/icon.min.js.map +1 -1
- package/esm/IconAddQs/index.js +32 -0
- package/esm/IconMinusQs/index.js +30 -0
- package/esm/index.js +2 -0
- package/lib/IconAddQs/index.js +33 -0
- package/lib/IconMinusQs/index.js +31 -0
- package/lib/index.js +4 -0
- package/package.json +1 -1
- package/src/IconAddQs/index.vue +19 -0
- package/src/IconMinusQs/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: "IconAddQs",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "update-line-icon"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("path", { d: "M7.25 12.1664V3.83337C7.25 3.41916 7.58579 3.08337 8 3.08337C8.41421 3.08337 8.75 3.41916 8.75 3.83337V12.1664C8.75 12.5806 8.41421 12.9164 8 12.9164C7.58579 12.9164 7.25 12.5806 7.25 12.1664Z" }, null, -1);
|
|
17
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", { d: "M12.1664 7.25C12.5806 7.25 12.9164 7.58579 12.9164 8C12.9164 8.41421 12.5806 8.75 12.1664 8.75H3.83337C3.41916 8.75 3.08337 8.41421 3.08337 8C3.08337 7.58579 3.41916 7.25 3.83337 7.25H12.1664Z" }, null, -1);
|
|
18
|
+
const _hoisted_3 = [
|
|
19
|
+
_hoisted_1,
|
|
20
|
+
_hoisted_2
|
|
21
|
+
];
|
|
22
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
23
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
24
|
+
viewBox: "0 0 16 16",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-add_qs`],
|
|
27
|
+
width: "1em",
|
|
28
|
+
height: "1em"
|
|
29
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
30
|
+
}
|
|
31
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
32
|
+
export { index as default };
|
|
@@ -0,0 +1,30 @@
|
|
|
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: "IconMinusQs",
|
|
5
|
+
props: {
|
|
6
|
+
prefix: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: "update-line-icon"
|
|
9
|
+
},
|
|
10
|
+
useCurrentColor: {
|
|
11
|
+
type: Boolean,
|
|
12
|
+
default: true
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
};
|
|
16
|
+
const _hoisted_1 = /* @__PURE__ */ createElementVNode("path", { d: "M12.1664 7.25C12.5806 7.25 12.9164 7.58579 12.9164 8C12.9164 8.41421 12.5806 8.75 12.1664 8.75H3.83337C3.41916 8.75 3.08337 8.41421 3.08337 8C3.08337 7.58579 3.41916 7.25 3.83337 7.25H12.1664Z" }, null, -1);
|
|
17
|
+
const _hoisted_2 = [
|
|
18
|
+
_hoisted_1
|
|
19
|
+
];
|
|
20
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
21
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
22
|
+
viewBox: "0 0 16 16",
|
|
23
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
24
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-minus_qs`],
|
|
25
|
+
width: "1em",
|
|
26
|
+
height: "1em"
|
|
27
|
+
}, _ctx.$attrs), _hoisted_2, 16);
|
|
28
|
+
}
|
|
29
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
30
|
+
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -128,3 +128,5 @@ export { default as IconSequence } from "./IconSequence/index.js";
|
|
|
128
128
|
export { default as IconEvent } from "./IconEvent/index.js";
|
|
129
129
|
export { default as IconObject } from "./IconObject/index.js";
|
|
130
130
|
export { default as IconTableQs } from "./IconTableQs/index.js";
|
|
131
|
+
export { default as IconAddQs } from "./IconAddQs/index.js";
|
|
132
|
+
export { default as IconMinusQs } from "./IconMinusQs/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: "IconAddQs",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "update-line-icon"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: true
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("path", { d: "M7.25 12.1664V3.83337C7.25 3.41916 7.58579 3.08337 8 3.08337C8.41421 3.08337 8.75 3.41916 8.75 3.83337V12.1664C8.75 12.5806 8.41421 12.9164 8 12.9164C7.58579 12.9164 7.25 12.5806 7.25 12.1664Z" }, null, -1);
|
|
18
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", { d: "M12.1664 7.25C12.5806 7.25 12.9164 7.58579 12.9164 8C12.9164 8.41421 12.5806 8.75 12.1664 8.75H3.83337C3.41916 8.75 3.08337 8.41421 3.08337 8C3.08337 7.58579 3.41916 7.25 3.83337 7.25H12.1664Z" }, null, -1);
|
|
19
|
+
const _hoisted_3 = [
|
|
20
|
+
_hoisted_1,
|
|
21
|
+
_hoisted_2
|
|
22
|
+
];
|
|
23
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
24
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
25
|
+
viewBox: "0 0 16 16",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-add_qs`],
|
|
28
|
+
width: "1em",
|
|
29
|
+
height: "1em"
|
|
30
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
31
|
+
}
|
|
32
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
33
|
+
module.exports = index;
|
|
@@ -0,0 +1,31 @@
|
|
|
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: "IconMinusQs",
|
|
6
|
+
props: {
|
|
7
|
+
prefix: {
|
|
8
|
+
type: String,
|
|
9
|
+
default: "update-line-icon"
|
|
10
|
+
},
|
|
11
|
+
useCurrentColor: {
|
|
12
|
+
type: Boolean,
|
|
13
|
+
default: true
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
};
|
|
17
|
+
const _hoisted_1 = /* @__PURE__ */ vue.createElementVNode("path", { d: "M12.1664 7.25C12.5806 7.25 12.9164 7.58579 12.9164 8C12.9164 8.41421 12.5806 8.75 12.1664 8.75H3.83337C3.41916 8.75 3.08337 8.41421 3.08337 8C3.08337 7.58579 3.41916 7.25 3.83337 7.25H12.1664Z" }, null, -1);
|
|
18
|
+
const _hoisted_2 = [
|
|
19
|
+
_hoisted_1
|
|
20
|
+
];
|
|
21
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
23
|
+
viewBox: "0 0 16 16",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
25
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-minus_qs`],
|
|
26
|
+
width: "1em",
|
|
27
|
+
height: "1em"
|
|
28
|
+
}, _ctx.$attrs), _hoisted_2, 16);
|
|
29
|
+
}
|
|
30
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
31
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -130,6 +130,8 @@ var index$1_ = require("./IconSequence/index.js");
|
|
|
130
130
|
var index$1$ = require("./IconEvent/index.js");
|
|
131
131
|
var index$20 = require("./IconObject/index.js");
|
|
132
132
|
var index$21 = require("./IconTableQs/index.js");
|
|
133
|
+
var index$22 = require("./IconAddQs/index.js");
|
|
134
|
+
var index$23 = require("./IconMinusQs/index.js");
|
|
133
135
|
exports.Icon3d = index;
|
|
134
136
|
exports.IconAnalysisdetails = index$1;
|
|
135
137
|
exports.IconBusinessprocess = index$2;
|
|
@@ -260,3 +262,5 @@ exports.IconSequence = index$1_;
|
|
|
260
262
|
exports.IconEvent = index$1$;
|
|
261
263
|
exports.IconObject = index$20;
|
|
262
264
|
exports.IconTableQs = index$21;
|
|
265
|
+
exports.IconAddQs = index$22;
|
|
266
|
+
exports.IconMinusQs = index$23;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-add_qs`]" width="1em" height="1em" v-bind="$attrs"><path d="M7.25 12.1664V3.83337C7.25 3.41916 7.58579 3.08337 8 3.08337C8.41421 3.08337 8.75 3.41916 8.75 3.83337V12.1664C8.75 12.5806 8.41421 12.9164 8 12.9164C7.58579 12.9164 7.25 12.5806 7.25 12.1664Z"/><path d="M12.1664 7.25C12.5806 7.25 12.9164 7.58579 12.9164 8C12.9164 8.41421 12.5806 8.75 12.1664 8.75H3.83337C3.41916 8.75 3.08337 8.41421 3.08337 8C3.08337 7.58579 3.41916 7.25 3.83337 7.25H12.1664Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconAddQs',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'update-line-icon',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-minus_qs`]" width="1em" height="1em" v-bind="$attrs"><path d="M12.1664 7.25C12.5806 7.25 12.9164 7.58579 12.9164 8C12.9164 8.41421 12.5806 8.75 12.1664 8.75H3.83337C3.41916 8.75 3.08337 8.41421 3.08337 8C3.08337 7.58579 3.41916 7.25 3.83337 7.25H12.1664Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconMinusQs',
|
|
8
|
+
props: {
|
|
9
|
+
prefix: {
|
|
10
|
+
type: String,
|
|
11
|
+
default: 'update-line-icon',
|
|
12
|
+
},
|
|
13
|
+
useCurrentColor: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
default: true,
|
|
16
|
+
},
|
|
17
|
+
},
|
|
18
|
+
};
|
|
19
|
+
</script>
|
package/src/index.js
CHANGED
|
@@ -127,4 +127,6 @@ export { default as IconView } from './IconView/index.vue';
|
|
|
127
127
|
export { default as IconSequence } from './IconSequence/index.vue';
|
|
128
128
|
export { default as IconEvent } from './IconEvent/index.vue';
|
|
129
129
|
export { default as IconObject } from './IconObject/index.vue';
|
|
130
|
-
export { default as IconTableQs } from './IconTableQs/index.vue';
|
|
130
|
+
export { default as IconTableQs } from './IconTableQs/index.vue';
|
|
131
|
+
export { default as IconAddQs } from './IconAddQs/index.vue';
|
|
132
|
+
export { default as IconMinusQs } from './IconMinusQs/index.vue';
|