@arco-iconbox/vue-smartcode 0.0.18 → 0.0.19

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.
@@ -0,0 +1,36 @@
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: "IconFillPoint",
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("circle", {
18
+ cx: "8",
19
+ cy: "8",
20
+ r: "3"
21
+ }, null, -1);
22
+ const _hoisted_3 = [
23
+ _hoisted_2
24
+ ];
25
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
26
+ return openBlock(), createElementBlock("svg", mergeProps({
27
+ viewBox: "0 0 16 16",
28
+ fill: $props.useCurrentColor ? "currentColor" : "#000",
29
+ xmlns: "http://www.w3.org/2000/svg",
30
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-fill-point`],
31
+ width: "1em",
32
+ height: "1em"
33
+ }, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
34
+ }
35
+ var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
36
+ export { index as default };
package/esm/index.js CHANGED
@@ -80,3 +80,4 @@ export { default as IconLineTree } from "./IconLineTree/index.js";
80
80
  export { default as IconFillApi } from "./IconFillApi/index.js";
81
81
  export { default as IconFillDictCode } from "./IconFillDictCode/index.js";
82
82
  export { default as IconLineMore } from "./IconLineMore/index.js";
83
+ export { default as IconFillPoint } from "./IconFillPoint/index.js";
@@ -0,0 +1,37 @@
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: "IconFillPoint",
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("circle", {
19
+ cx: "8",
20
+ cy: "8",
21
+ r: "3"
22
+ }, null, -1);
23
+ const _hoisted_3 = [
24
+ _hoisted_2
25
+ ];
26
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
27
+ return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
28
+ viewBox: "0 0 16 16",
29
+ fill: $props.useCurrentColor ? "currentColor" : "#000",
30
+ xmlns: "http://www.w3.org/2000/svg",
31
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-fill-point`],
32
+ width: "1em",
33
+ height: "1em"
34
+ }, _ctx.$attrs), _hoisted_3, 16, _hoisted_1);
35
+ }
36
+ var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
37
+ module.exports = index;
package/lib/index.js CHANGED
@@ -82,6 +82,7 @@ var index$1e = require("./IconLineTree/index.js");
82
82
  var index$1f = require("./IconFillApi/index.js");
83
83
  var index$1g = require("./IconFillDictCode/index.js");
84
84
  var index$1h = require("./IconLineMore/index.js");
85
+ var index$1i = require("./IconFillPoint/index.js");
85
86
  exports.IconFillHeart = index;
86
87
  exports.IconFillMute = index$1;
87
88
  exports.IconFillSound = index$2;
@@ -164,3 +165,4 @@ exports.IconLineTree = index$1e;
164
165
  exports.IconFillApi = index$1f;
165
166
  exports.IconFillDictCode = index$1g;
166
167
  exports.IconLineMore = index$1h;
168
+ exports.IconFillPoint = index$1i;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arco-iconbox/vue-smartcode",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "main": "lib/index.js",
5
5
  "module": "esm/index.js",
6
6
  "license": "ISC",
@@ -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-point`]" width="1em" height="1em" v-bind="$attrs"><circle cx="8" cy="8" r="3"/></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconFillPoint',
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
@@ -79,4 +79,5 @@ export { default as IconLineFlatten } from './IconLineFlatten/index.vue';
79
79
  export { default as IconLineTree } from './IconLineTree/index.vue';
80
80
  export { default as IconFillApi } from './IconFillApi/index.vue';
81
81
  export { default as IconFillDictCode } from './IconFillDictCode/index.vue';
82
- export { default as IconLineMore } from './IconLineMore/index.vue';
82
+ export { default as IconLineMore } from './IconLineMore/index.vue';
83
+ export { default as IconFillPoint } from './IconFillPoint/index.vue';