@arco-iconbox/vue-smartcode 0.1.11 → 0.1.13

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,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: "IconLineGo",
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: "M8.43311 11.9697C8.69276 12.2291 9.11487 12.2292 9.37451 11.9697L12.8745 8.46973C13.1341 8.2101 13.134 7.78804 12.8745 7.52832L9.37451 4.02832C9.11481 3.76862 8.6928 3.76862 8.43311 4.02832C8.17359 4.28803 8.17347 4.71009 8.43311 4.96973L10.7974 7.33398L3.59521 7.33398C3.22795 7.33398 2.93018 7.63175 2.93018 7.99902C2.93039 8.36611 3.22808 8.66406 3.59521 8.66406H10.7974L8.43311 11.0283C8.17359 11.288 8.17347 11.7101 8.43311 11.9697Z" }, 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-go`],
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 };
@@ -0,0 +1,35 @@
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: "IconRequired",
5
+ props: {
6
+ prefix: {
7
+ type: String,
8
+ default: "sc"
9
+ },
10
+ useCurrentColor: {
11
+ type: Boolean,
12
+ default: false
13
+ }
14
+ }
15
+ };
16
+ const _hoisted_1 = ["fill"];
17
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
18
+ return openBlock(), createElementBlock("svg", mergeProps({
19
+ viewBox: "0 0 8 8",
20
+ fill: "none",
21
+ xmlns: "http://www.w3.org/2000/svg",
22
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-required`],
23
+ width: "1em",
24
+ height: "1em"
25
+ }, _ctx.$attrs), [
26
+ createElementVNode("path", {
27
+ "fill-rule": "evenodd",
28
+ "clip-rule": "evenodd",
29
+ d: "M4.41817 1.10156C4.52862 1.10156 4.61812 1.19118 4.61812 1.30164L4.61726 3.34656L6.45369 2.75024C6.55874 2.71611 6.6715 2.77349 6.70564 2.87854L6.95296 3.6394C6.98709 3.74445 6.92959 3.85735 6.82454 3.89148L4.9742 4.49158L6.19942 6.17822C6.26434 6.26758 6.24459 6.3926 6.15523 6.45752L5.50801 6.92773C5.41865 6.99265 5.29351 6.97291 5.22859 6.88354L3.96223 5.13953L2.68904 6.8927C2.62412 6.98206 2.49898 7.00194 2.40962 6.93701L1.7624 6.4668C1.67304 6.40188 1.65329 6.27674 1.71821 6.18738L2.97322 4.45764L1.16853 3.87158C1.06348 3.83745 1.00598 3.72468 1.04011 3.61963L1.28731 2.85876C1.32144 2.75371 1.43421 2.69622 1.53926 2.73035L3.41719 3.3396L3.41817 1.30164C3.41817 1.19118 3.50766 1.10156 3.61812 1.10156H4.41817Z",
30
+ fill: $props.useCurrentColor ? "currentColor" : "#F53F3F"
31
+ }, null, 8, _hoisted_1)
32
+ ], 16);
33
+ }
34
+ var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
35
+ export { index as default };
package/esm/index.js CHANGED
@@ -163,3 +163,5 @@ export { default as IconFillBranch } from "./IconFillBranch/index.js";
163
163
  export { default as IconLineEye } from "./IconLineEye/index.js";
164
164
  export { default as IconLineSubtract } from "./IconLineSubtract/index.js";
165
165
  export { default as IconLineAdd } from "./IconLineAdd/index.js";
166
+ export { default as IconLineGo } from "./IconLineGo/index.js";
167
+ export { default as IconRequired } from "./IconRequired/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: "IconLineGo",
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: "M8.43311 11.9697C8.69276 12.2291 9.11487 12.2292 9.37451 11.9697L12.8745 8.46973C13.1341 8.2101 13.134 7.78804 12.8745 7.52832L9.37451 4.02832C9.11481 3.76862 8.6928 3.76862 8.43311 4.02832C8.17359 4.28803 8.17347 4.71009 8.43311 4.96973L10.7974 7.33398L3.59521 7.33398C3.22795 7.33398 2.93018 7.63175 2.93018 7.99902C2.93039 8.36611 3.22808 8.66406 3.59521 8.66406H10.7974L8.43311 11.0283C8.17359 11.288 8.17347 11.7101 8.43311 11.9697Z" }, 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-go`],
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;
@@ -0,0 +1,36 @@
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: "IconRequired",
6
+ props: {
7
+ prefix: {
8
+ type: String,
9
+ default: "sc"
10
+ },
11
+ useCurrentColor: {
12
+ type: Boolean,
13
+ default: false
14
+ }
15
+ }
16
+ };
17
+ const _hoisted_1 = ["fill"];
18
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
19
+ return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
20
+ viewBox: "0 0 8 8",
21
+ fill: "none",
22
+ xmlns: "http://www.w3.org/2000/svg",
23
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-required`],
24
+ width: "1em",
25
+ height: "1em"
26
+ }, _ctx.$attrs), [
27
+ vue.createElementVNode("path", {
28
+ "fill-rule": "evenodd",
29
+ "clip-rule": "evenodd",
30
+ d: "M4.41817 1.10156C4.52862 1.10156 4.61812 1.19118 4.61812 1.30164L4.61726 3.34656L6.45369 2.75024C6.55874 2.71611 6.6715 2.77349 6.70564 2.87854L6.95296 3.6394C6.98709 3.74445 6.92959 3.85735 6.82454 3.89148L4.9742 4.49158L6.19942 6.17822C6.26434 6.26758 6.24459 6.3926 6.15523 6.45752L5.50801 6.92773C5.41865 6.99265 5.29351 6.97291 5.22859 6.88354L3.96223 5.13953L2.68904 6.8927C2.62412 6.98206 2.49898 7.00194 2.40962 6.93701L1.7624 6.4668C1.67304 6.40188 1.65329 6.27674 1.71821 6.18738L2.97322 4.45764L1.16853 3.87158C1.06348 3.83745 1.00598 3.72468 1.04011 3.61963L1.28731 2.85876C1.32144 2.75371 1.43421 2.69622 1.53926 2.73035L3.41719 3.3396L3.41817 1.30164C3.41817 1.19118 3.50766 1.10156 3.61812 1.10156H4.41817Z",
31
+ fill: $props.useCurrentColor ? "currentColor" : "#F53F3F"
32
+ }, null, 8, _hoisted_1)
33
+ ], 16);
34
+ }
35
+ var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
36
+ module.exports = index;
package/lib/index.js CHANGED
@@ -165,6 +165,8 @@ var index$2x = require("./IconFillBranch/index.js");
165
165
  var index$2y = require("./IconLineEye/index.js");
166
166
  var index$2z = require("./IconLineSubtract/index.js");
167
167
  var index$2A = require("./IconLineAdd/index.js");
168
+ var index$2B = require("./IconLineGo/index.js");
169
+ var index$2C = require("./IconRequired/index.js");
168
170
  exports.IconFillHeart = index;
169
171
  exports.IconFillMute = index$1;
170
172
  exports.IconFillSound = index$2;
@@ -330,3 +332,5 @@ exports.IconFillBranch = index$2x;
330
332
  exports.IconLineEye = index$2y;
331
333
  exports.IconLineSubtract = index$2z;
332
334
  exports.IconLineAdd = index$2A;
335
+ exports.IconLineGo = index$2B;
336
+ exports.IconRequired = index$2C;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arco-iconbox/vue-smartcode",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
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-line-go`]" width="1em" height="1em" v-bind="$attrs"><path d="M8.43311 11.9697C8.69276 12.2291 9.11487 12.2292 9.37451 11.9697L12.8745 8.46973C13.1341 8.2101 13.134 7.78804 12.8745 7.52832L9.37451 4.02832C9.11481 3.76862 8.6928 3.76862 8.43311 4.02832C8.17359 4.28803 8.17347 4.71009 8.43311 4.96973L10.7974 7.33398L3.59521 7.33398C3.22795 7.33398 2.93018 7.63175 2.93018 7.99902C2.93039 8.36611 3.22808 8.66406 3.59521 8.66406H10.7974L8.43311 11.0283C8.17359 11.288 8.17347 11.7101 8.43311 11.9697Z"/></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconLineGo',
8
+ props: {
9
+ prefix: {
10
+ type: String,
11
+ default: 'sc',
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 8 8" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-required`]" width="1em" height="1em" v-bind="$attrs"><path fill-rule="evenodd" clip-rule="evenodd" d="M4.41817 1.10156C4.52862 1.10156 4.61812 1.19118 4.61812 1.30164L4.61726 3.34656L6.45369 2.75024C6.55874 2.71611 6.6715 2.77349 6.70564 2.87854L6.95296 3.6394C6.98709 3.74445 6.92959 3.85735 6.82454 3.89148L4.9742 4.49158L6.19942 6.17822C6.26434 6.26758 6.24459 6.3926 6.15523 6.45752L5.50801 6.92773C5.41865 6.99265 5.29351 6.97291 5.22859 6.88354L3.96223 5.13953L2.68904 6.8927C2.62412 6.98206 2.49898 7.00194 2.40962 6.93701L1.7624 6.4668C1.67304 6.40188 1.65329 6.27674 1.71821 6.18738L2.97322 4.45764L1.16853 3.87158C1.06348 3.83745 1.00598 3.72468 1.04011 3.61963L1.28731 2.85876C1.32144 2.75371 1.43421 2.69622 1.53926 2.73035L3.41719 3.3396L3.41817 1.30164C3.41817 1.19118 3.50766 1.10156 3.61812 1.10156H4.41817Z" :fill="useCurrentColor ? 'currentColor' : '#F53F3F'"/></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconRequired',
8
+ props: {
9
+ prefix: {
10
+ type: String,
11
+ default: 'sc',
12
+ },
13
+ useCurrentColor: {
14
+ type: Boolean,
15
+ default: false,
16
+ },
17
+ },
18
+ };
19
+ </script>
package/src/index.js CHANGED
@@ -162,4 +162,6 @@ export { default as IconFillStop } from './IconFillStop/index.vue';
162
162
  export { default as IconFillBranch } from './IconFillBranch/index.vue';
163
163
  export { default as IconLineEye } from './IconLineEye/index.vue';
164
164
  export { default as IconLineSubtract } from './IconLineSubtract/index.vue';
165
- export { default as IconLineAdd } from './IconLineAdd/index.vue';
165
+ export { default as IconLineAdd } from './IconLineAdd/index.vue';
166
+ export { default as IconLineGo } from './IconLineGo/index.vue';
167
+ export { default as IconRequired } from './IconRequired/index.vue';