@arco-iconbox/vue-smartcode 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 +441 -399
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +43 -39
- package/dist/icon.min.js.map +1 -1
- package/esm/IconFillInfo/index.js +44 -0
- package/esm/index.js +1 -0
- package/lib/IconFillInfo/index.js +45 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconFillInfo/index.vue +19 -0
- package/src/index.js +2 -1
|
@@ -0,0 +1,44 @@
|
|
|
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: "IconFillInfo",
|
|
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("g", { "clip-path": "url(#svg_540e2f516b__clip0_1381_75563)" }, [
|
|
18
|
+
/* @__PURE__ */ createElementVNode("path", {
|
|
19
|
+
"fill-rule": "evenodd",
|
|
20
|
+
"clip-rule": "evenodd",
|
|
21
|
+
d: "M1.33334 7.99992C1.33334 4.31802 4.31811 1.33325 8.00001 1.33325C11.6819 1.33325 14.6667 4.31802 14.6667 7.99992C14.6667 11.6818 11.6819 14.6666 8.00001 14.6666C4.31811 14.6666 1.33334 11.6818 1.33334 7.99992ZM8.66668 5.99992V4.66659H7.33334V5.99992H8.66668ZM7.33334 6.66659V11.3333H8.66668V6.66659H7.33334Z"
|
|
22
|
+
})
|
|
23
|
+
], -1);
|
|
24
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("defs", null, [
|
|
25
|
+
/* @__PURE__ */ createElementVNode("clipPath", { id: "svg_540e2f516b__clip0_1381_75563" }, [
|
|
26
|
+
/* @__PURE__ */ createElementVNode("path", { d: "M0 0H16V16H0z" })
|
|
27
|
+
])
|
|
28
|
+
], -1);
|
|
29
|
+
const _hoisted_4 = [
|
|
30
|
+
_hoisted_2,
|
|
31
|
+
_hoisted_3
|
|
32
|
+
];
|
|
33
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
34
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
35
|
+
viewBox: "0 0 16 16",
|
|
36
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
37
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
38
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-fill-info`],
|
|
39
|
+
width: "1em",
|
|
40
|
+
height: "1em"
|
|
41
|
+
}, _ctx.$attrs), _hoisted_4, 16, _hoisted_1);
|
|
42
|
+
}
|
|
43
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
44
|
+
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -63,3 +63,4 @@ export { default as IconFillStar } from "./IconFillStar/index.js";
|
|
|
63
63
|
export { default as IconLineExpand } from "./IconLineExpand/index.js";
|
|
64
64
|
export { default as IconLineStar } from "./IconLineStar/index.js";
|
|
65
65
|
export { default as IconLineLanguage } from "./IconLineLanguage/index.js";
|
|
66
|
+
export { default as IconFillInfo } from "./IconFillInfo/index.js";
|
|
@@ -0,0 +1,45 @@
|
|
|
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: "IconFillInfo",
|
|
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("g", { "clip-path": "url(#svg_540e2f516b__clip0_1381_75563)" }, [
|
|
19
|
+
/* @__PURE__ */ vue.createElementVNode("path", {
|
|
20
|
+
"fill-rule": "evenodd",
|
|
21
|
+
"clip-rule": "evenodd",
|
|
22
|
+
d: "M1.33334 7.99992C1.33334 4.31802 4.31811 1.33325 8.00001 1.33325C11.6819 1.33325 14.6667 4.31802 14.6667 7.99992C14.6667 11.6818 11.6819 14.6666 8.00001 14.6666C4.31811 14.6666 1.33334 11.6818 1.33334 7.99992ZM8.66668 5.99992V4.66659H7.33334V5.99992H8.66668ZM7.33334 6.66659V11.3333H8.66668V6.66659H7.33334Z"
|
|
23
|
+
})
|
|
24
|
+
], -1);
|
|
25
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("defs", null, [
|
|
26
|
+
/* @__PURE__ */ vue.createElementVNode("clipPath", { id: "svg_540e2f516b__clip0_1381_75563" }, [
|
|
27
|
+
/* @__PURE__ */ vue.createElementVNode("path", { d: "M0 0H16V16H0z" })
|
|
28
|
+
])
|
|
29
|
+
], -1);
|
|
30
|
+
const _hoisted_4 = [
|
|
31
|
+
_hoisted_2,
|
|
32
|
+
_hoisted_3
|
|
33
|
+
];
|
|
34
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
35
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
36
|
+
viewBox: "0 0 16 16",
|
|
37
|
+
fill: $props.useCurrentColor ? "currentColor" : "#000",
|
|
38
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
39
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-fill-info`],
|
|
40
|
+
width: "1em",
|
|
41
|
+
height: "1em"
|
|
42
|
+
}, _ctx.$attrs), _hoisted_4, 16, _hoisted_1);
|
|
43
|
+
}
|
|
44
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
45
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -65,6 +65,7 @@ var index$Z = require("./IconFillStar/index.js");
|
|
|
65
65
|
var index$_ = require("./IconLineExpand/index.js");
|
|
66
66
|
var index$$ = require("./IconLineStar/index.js");
|
|
67
67
|
var index$10 = require("./IconLineLanguage/index.js");
|
|
68
|
+
var index$11 = require("./IconFillInfo/index.js");
|
|
68
69
|
exports.IconFillHeart = index;
|
|
69
70
|
exports.IconFillMute = index$1;
|
|
70
71
|
exports.IconFillSound = index$2;
|
|
@@ -130,3 +131,4 @@ exports.IconFillStar = index$Z;
|
|
|
130
131
|
exports.IconLineExpand = index$_;
|
|
131
132
|
exports.IconLineStar = index$$;
|
|
132
133
|
exports.IconLineLanguage = index$10;
|
|
134
|
+
exports.IconFillInfo = index$11;
|
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-fill-info`]" width="1em" height="1em" v-bind="$attrs"><g clip-path="url(#svg_540e2f516b__clip0_1381_75563)"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.33334 7.99992C1.33334 4.31802 4.31811 1.33325 8.00001 1.33325C11.6819 1.33325 14.6667 4.31802 14.6667 7.99992C14.6667 11.6818 11.6819 14.6666 8.00001 14.6666C4.31811 14.6666 1.33334 11.6818 1.33334 7.99992ZM8.66668 5.99992V4.66659H7.33334V5.99992H8.66668ZM7.33334 6.66659V11.3333H8.66668V6.66659H7.33334Z"/></g><defs><clipPath id="svg_540e2f516b__clip0_1381_75563"><path d="M0 0H16V16H0z"/></clipPath></defs></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconFillInfo',
|
|
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
|
@@ -62,4 +62,5 @@ export { default as IconLineAdd } from './IconLineAdd/index.vue';
|
|
|
62
62
|
export { default as IconFillStar } from './IconFillStar/index.vue';
|
|
63
63
|
export { default as IconLineExpand } from './IconLineExpand/index.vue';
|
|
64
64
|
export { default as IconLineStar } from './IconLineStar/index.vue';
|
|
65
|
-
export { default as IconLineLanguage } from './IconLineLanguage/index.vue';
|
|
65
|
+
export { default as IconLineLanguage } from './IconLineLanguage/index.vue';
|
|
66
|
+
export { default as IconFillInfo } from './IconFillInfo/index.vue';
|