@arco-iconbox/vue-update-line-icon 0.0.13 → 0.0.14
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 +1173 -1123
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +109 -105
- package/dist/icon.min.js.map +1 -1
- package/esm/IconTips/index.js +52 -0
- package/esm/index.js +1 -0
- package/lib/IconTips/index.js +53 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconTips/index.vue +19 -0
- package/src/index.js +2 -1
|
@@ -0,0 +1,52 @@
|
|
|
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: "IconTips",
|
|
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 = ["fill"];
|
|
17
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", {
|
|
18
|
+
d: "M8.00033 13.3332C9.47307 13.3332 10.8064 12.7362 11.7716 11.7711C12.7367 10.8059 13.3337 9.47258 13.3337 7.99984C13.3337 6.52709 12.7367 5.19376 11.7716 4.2286C10.8064 3.26346 9.47307 2.6665 8.00033 2.6665C6.52758 2.6665 5.19425 3.26346 4.22909 4.2286C3.26395 5.19376 2.66699 6.52709 2.66699 7.99984C2.66699 9.47258 3.26395 10.8059 4.22909 11.7711C5.19425 12.7362 6.52758 13.3332 8.00033 13.3332Z",
|
|
19
|
+
stroke: "#DCE5F5",
|
|
20
|
+
"stroke-width": "1.5",
|
|
21
|
+
"stroke-linecap": "round",
|
|
22
|
+
"stroke-linejoin": "round"
|
|
23
|
+
}, null, -1);
|
|
24
|
+
const _hoisted_3 = ["fill"];
|
|
25
|
+
const _hoisted_4 = /* @__PURE__ */ createElementVNode("path", {
|
|
26
|
+
d: "M8.13392 10.6667V6.93335H7.86725 7.60059M7.2002 10.6665H9.06686",
|
|
27
|
+
stroke: "#DCE5F5",
|
|
28
|
+
"stroke-width": "1.5",
|
|
29
|
+
"stroke-linecap": "round",
|
|
30
|
+
"stroke-linejoin": "round"
|
|
31
|
+
}, null, -1);
|
|
32
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
33
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
34
|
+
viewBox: "0 0 16 16",
|
|
35
|
+
fill: $props.useCurrentColor ? "currentColor" : "none",
|
|
36
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-tips`],
|
|
38
|
+
width: "1em",
|
|
39
|
+
height: "1em"
|
|
40
|
+
}, _ctx.$attrs), [
|
|
41
|
+
_hoisted_2,
|
|
42
|
+
createElementVNode("path", {
|
|
43
|
+
"fill-rule": "evenodd",
|
|
44
|
+
"clip-rule": "evenodd",
|
|
45
|
+
d: "M8.00016 4.5332C8.36835 4.5332 8.66683 4.83168 8.66683 5.19987C8.66683 5.56806 8.36835 5.86654 8.00016 5.86654C7.63198 5.86654 7.3335 5.56806 7.3335 5.19987C7.3335 4.83168 7.63198 4.5332 8.00016 4.5332Z",
|
|
46
|
+
fill: $props.useCurrentColor ? "currentColor" : "#DCE5F5"
|
|
47
|
+
}, null, 8, _hoisted_3),
|
|
48
|
+
_hoisted_4
|
|
49
|
+
], 16, _hoisted_1);
|
|
50
|
+
}
|
|
51
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
52
|
+
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -108,3 +108,4 @@ export { default as IconUp } from "./IconUp/index.js";
|
|
|
108
108
|
export { default as IconDowm } from "./IconDowm/index.js";
|
|
109
109
|
export { default as IconNigth } from "./IconNigth/index.js";
|
|
110
110
|
export { default as IconDay } from "./IconDay/index.js";
|
|
111
|
+
export { default as IconTips } from "./IconTips/index.js";
|
|
@@ -0,0 +1,53 @@
|
|
|
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: "IconTips",
|
|
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 = ["fill"];
|
|
18
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
19
|
+
d: "M8.00033 13.3332C9.47307 13.3332 10.8064 12.7362 11.7716 11.7711C12.7367 10.8059 13.3337 9.47258 13.3337 7.99984C13.3337 6.52709 12.7367 5.19376 11.7716 4.2286C10.8064 3.26346 9.47307 2.6665 8.00033 2.6665C6.52758 2.6665 5.19425 3.26346 4.22909 4.2286C3.26395 5.19376 2.66699 6.52709 2.66699 7.99984C2.66699 9.47258 3.26395 10.8059 4.22909 11.7711C5.19425 12.7362 6.52758 13.3332 8.00033 13.3332Z",
|
|
20
|
+
stroke: "#DCE5F5",
|
|
21
|
+
"stroke-width": "1.5",
|
|
22
|
+
"stroke-linecap": "round",
|
|
23
|
+
"stroke-linejoin": "round"
|
|
24
|
+
}, null, -1);
|
|
25
|
+
const _hoisted_3 = ["fill"];
|
|
26
|
+
const _hoisted_4 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
27
|
+
d: "M8.13392 10.6667V6.93335H7.86725 7.60059M7.2002 10.6665H9.06686",
|
|
28
|
+
stroke: "#DCE5F5",
|
|
29
|
+
"stroke-width": "1.5",
|
|
30
|
+
"stroke-linecap": "round",
|
|
31
|
+
"stroke-linejoin": "round"
|
|
32
|
+
}, null, -1);
|
|
33
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
34
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
35
|
+
viewBox: "0 0 16 16",
|
|
36
|
+
fill: $props.useCurrentColor ? "currentColor" : "none",
|
|
37
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
38
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-tips`],
|
|
39
|
+
width: "1em",
|
|
40
|
+
height: "1em"
|
|
41
|
+
}, _ctx.$attrs), [
|
|
42
|
+
_hoisted_2,
|
|
43
|
+
vue.createElementVNode("path", {
|
|
44
|
+
"fill-rule": "evenodd",
|
|
45
|
+
"clip-rule": "evenodd",
|
|
46
|
+
d: "M8.00016 4.5332C8.36835 4.5332 8.66683 4.83168 8.66683 5.19987C8.66683 5.56806 8.36835 5.86654 8.00016 5.86654C7.63198 5.86654 7.3335 5.56806 7.3335 5.19987C7.3335 4.83168 7.63198 4.5332 8.00016 4.5332Z",
|
|
47
|
+
fill: $props.useCurrentColor ? "currentColor" : "#DCE5F5"
|
|
48
|
+
}, null, 8, _hoisted_3),
|
|
49
|
+
_hoisted_4
|
|
50
|
+
], 16, _hoisted_1);
|
|
51
|
+
}
|
|
52
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
53
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -110,6 +110,7 @@ var index$1G = require("./IconUp/index.js");
|
|
|
110
110
|
var index$1H = require("./IconDowm/index.js");
|
|
111
111
|
var index$1I = require("./IconNigth/index.js");
|
|
112
112
|
var index$1J = require("./IconDay/index.js");
|
|
113
|
+
var index$1K = require("./IconTips/index.js");
|
|
113
114
|
exports.Icon3d = index;
|
|
114
115
|
exports.IconAnalysisdetails = index$1;
|
|
115
116
|
exports.IconBusinessprocess = index$2;
|
|
@@ -220,3 +221,4 @@ exports.IconUp = index$1G;
|
|
|
220
221
|
exports.IconDowm = index$1H;
|
|
221
222
|
exports.IconNigth = index$1I;
|
|
222
223
|
exports.IconDay = index$1J;
|
|
224
|
+
exports.IconTips = index$1K;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : 'none'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-tips`]" width="1em" height="1em" v-bind="$attrs"><path d="M8.00033 13.3332C9.47307 13.3332 10.8064 12.7362 11.7716 11.7711C12.7367 10.8059 13.3337 9.47258 13.3337 7.99984C13.3337 6.52709 12.7367 5.19376 11.7716 4.2286C10.8064 3.26346 9.47307 2.6665 8.00033 2.6665C6.52758 2.6665 5.19425 3.26346 4.22909 4.2286C3.26395 5.19376 2.66699 6.52709 2.66699 7.99984C2.66699 9.47258 3.26395 10.8059 4.22909 11.7711C5.19425 12.7362 6.52758 13.3332 8.00033 13.3332Z" stroke="#DCE5F5" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/><path fill-rule="evenodd" clip-rule="evenodd" d="M8.00016 4.5332C8.36835 4.5332 8.66683 4.83168 8.66683 5.19987C8.66683 5.56806 8.36835 5.86654 8.00016 5.86654C7.63198 5.86654 7.3335 5.56806 7.3335 5.19987C7.3335 4.83168 7.63198 4.5332 8.00016 4.5332Z" :fill="useCurrentColor ? 'currentColor' : '#DCE5F5'"/><path d="M8.13392 10.6667V6.93335H7.86725 7.60059M7.2002 10.6665H9.06686" stroke="#DCE5F5" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconTips',
|
|
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
|
@@ -107,4 +107,5 @@ export { default as IconMinus } from './IconMinus/index.vue';
|
|
|
107
107
|
export { default as IconUp } from './IconUp/index.vue';
|
|
108
108
|
export { default as IconDowm } from './IconDowm/index.vue';
|
|
109
109
|
export { default as IconNigth } from './IconNigth/index.vue';
|
|
110
|
-
export { default as IconDay } from './IconDay/index.vue';
|
|
110
|
+
export { default as IconDay } from './IconDay/index.vue';
|
|
111
|
+
export { default as IconTips } from './IconTips/index.vue';
|