@arco-iconbox/vue-smartcode 0.1.79 → 0.1.81

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,33 @@
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: "IconColorStop",
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 12 12",
20
+ fill: "none",
21
+ xmlns: "http://www.w3.org/2000/svg",
22
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-stop`],
23
+ width: "1em",
24
+ height: "1em"
25
+ }, _ctx.$attrs), [
26
+ createElementVNode("path", {
27
+ d: "M6 0.75C8.8995 0.75 11.25 3.10051 11.25 6C11.25 8.8995 8.8995 11.25 6 11.25C3.10051 11.25 0.75 8.8995 0.75 6C0.75 3.10051 3.10051 0.75 6 0.75ZM3.61426 5.50098C3.33898 5.50104 3.11542 5.72475 3.11523 6C3.11523 6.27541 3.33886 6.49896 3.61426 6.49902H8.38574C8.6611 6.49891 8.88477 6.27538 8.88477 6C8.88458 5.72478 8.66098 5.50109 8.38574 5.50098H3.61426Z",
28
+ fill: $props.useCurrentColor ? "currentColor" : "#86909C"
29
+ }, null, 8, _hoisted_1)
30
+ ], 16);
31
+ }
32
+ var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
33
+ export { index as default };
@@ -0,0 +1,33 @@
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: "IconColorSuccess",
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 12 12",
20
+ fill: "none",
21
+ xmlns: "http://www.w3.org/2000/svg",
22
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-success`],
23
+ width: "1em",
24
+ height: "1em"
25
+ }, _ctx.$attrs), [
26
+ createElementVNode("path", {
27
+ d: "M6 0.75C8.8995 0.75 11.25 3.10051 11.25 6C11.25 8.8995 8.8995 11.25 6 11.25C3.10051 11.25 0.75 8.8995 0.75 6C0.75 3.10051 3.10051 0.75 6 0.75ZM8.58105 4.1709C8.3864 3.97643 8.07073 3.97658 7.87598 4.1709L5.27637 6.77051L4.12402 5.61816C3.92936 5.42369 3.61272 5.42383 3.41797 5.61816C3.22374 5.81286 3.22367 6.12859 3.41797 6.32324L4.92383 7.82812C5.11861 8.02278 5.43417 8.02285 5.62891 7.82812L8.58105 4.87598C8.77544 4.68118 8.77569 4.36555 8.58105 4.1709Z",
28
+ fill: $props.useCurrentColor ? "currentColor" : "#009A29"
29
+ }, null, 8, _hoisted_1)
30
+ ], 16);
31
+ }
32
+ var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
33
+ export { index as default };
package/esm/index.js CHANGED
@@ -363,3 +363,5 @@ export { default as IconColorUpload2 } from "./IconColorUpload2/index.js";
363
363
  export { default as IconColorSelect } from "./IconColorSelect/index.js";
364
364
  export { default as IconColorRichtext } from "./IconColorRichtext/index.js";
365
365
  export { default as IconLineStop } from "./IconLineStop/index.js";
366
+ export { default as IconColorStop } from "./IconColorStop/index.js";
367
+ export { default as IconColorSuccess } from "./IconColorSuccess/index.js";
@@ -0,0 +1,34 @@
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: "IconColorStop",
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 12 12",
21
+ fill: "none",
22
+ xmlns: "http://www.w3.org/2000/svg",
23
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-stop`],
24
+ width: "1em",
25
+ height: "1em"
26
+ }, _ctx.$attrs), [
27
+ vue.createElementVNode("path", {
28
+ d: "M6 0.75C8.8995 0.75 11.25 3.10051 11.25 6C11.25 8.8995 8.8995 11.25 6 11.25C3.10051 11.25 0.75 8.8995 0.75 6C0.75 3.10051 3.10051 0.75 6 0.75ZM3.61426 5.50098C3.33898 5.50104 3.11542 5.72475 3.11523 6C3.11523 6.27541 3.33886 6.49896 3.61426 6.49902H8.38574C8.6611 6.49891 8.88477 6.27538 8.88477 6C8.88458 5.72478 8.66098 5.50109 8.38574 5.50098H3.61426Z",
29
+ fill: $props.useCurrentColor ? "currentColor" : "#86909C"
30
+ }, null, 8, _hoisted_1)
31
+ ], 16);
32
+ }
33
+ var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
34
+ module.exports = index;
@@ -0,0 +1,34 @@
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: "IconColorSuccess",
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 12 12",
21
+ fill: "none",
22
+ xmlns: "http://www.w3.org/2000/svg",
23
+ class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-success`],
24
+ width: "1em",
25
+ height: "1em"
26
+ }, _ctx.$attrs), [
27
+ vue.createElementVNode("path", {
28
+ d: "M6 0.75C8.8995 0.75 11.25 3.10051 11.25 6C11.25 8.8995 8.8995 11.25 6 11.25C3.10051 11.25 0.75 8.8995 0.75 6C0.75 3.10051 3.10051 0.75 6 0.75ZM8.58105 4.1709C8.3864 3.97643 8.07073 3.97658 7.87598 4.1709L5.27637 6.77051L4.12402 5.61816C3.92936 5.42369 3.61272 5.42383 3.41797 5.61816C3.22374 5.81286 3.22367 6.12859 3.41797 6.32324L4.92383 7.82812C5.11861 8.02278 5.43417 8.02285 5.62891 7.82812L8.58105 4.87598C8.77544 4.68118 8.77569 4.36555 8.58105 4.1709Z",
29
+ fill: $props.useCurrentColor ? "currentColor" : "#009A29"
30
+ }, null, 8, _hoisted_1)
31
+ ], 16);
32
+ }
33
+ var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
34
+ module.exports = index;
package/lib/index.js CHANGED
@@ -365,6 +365,8 @@ var index$5F = require("./IconColorUpload2/index.js");
365
365
  var index$5G = require("./IconColorSelect/index.js");
366
366
  var index$5H = require("./IconColorRichtext/index.js");
367
367
  var index$5I = require("./IconLineStop/index.js");
368
+ var index$5J = require("./IconColorStop/index.js");
369
+ var index$5K = require("./IconColorSuccess/index.js");
368
370
  exports.IconFillHeart = index;
369
371
  exports.IconFillMute = index$1;
370
372
  exports.IconFillSound = index$2;
@@ -730,3 +732,5 @@ exports.IconColorUpload2 = index$5F;
730
732
  exports.IconColorSelect = index$5G;
731
733
  exports.IconColorRichtext = index$5H;
732
734
  exports.IconLineStop = index$5I;
735
+ exports.IconColorStop = index$5J;
736
+ exports.IconColorSuccess = index$5K;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arco-iconbox/vue-smartcode",
3
- "version": "0.1.79",
3
+ "version": "0.1.81",
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 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-stop`]" width="1em" height="1em" v-bind="$attrs"><path d="M6 0.75C8.8995 0.75 11.25 3.10051 11.25 6C11.25 8.8995 8.8995 11.25 6 11.25C3.10051 11.25 0.75 8.8995 0.75 6C0.75 3.10051 3.10051 0.75 6 0.75ZM3.61426 5.50098C3.33898 5.50104 3.11542 5.72475 3.11523 6C3.11523 6.27541 3.33886 6.49896 3.61426 6.49902H8.38574C8.6611 6.49891 8.88477 6.27538 8.88477 6C8.88458 5.72478 8.66098 5.50109 8.38574 5.50098H3.61426Z" :fill="useCurrentColor ? 'currentColor' : '#86909C'"/></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconColorStop',
8
+ props: {
9
+ prefix: {
10
+ type: String,
11
+ default: 'sc',
12
+ },
13
+ useCurrentColor: {
14
+ type: Boolean,
15
+ default: false,
16
+ },
17
+ },
18
+ };
19
+ </script>
@@ -0,0 +1,19 @@
1
+ <template>
2
+ <svg viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-success`]" width="1em" height="1em" v-bind="$attrs"><path d="M6 0.75C8.8995 0.75 11.25 3.10051 11.25 6C11.25 8.8995 8.8995 11.25 6 11.25C3.10051 11.25 0.75 8.8995 0.75 6C0.75 3.10051 3.10051 0.75 6 0.75ZM8.58105 4.1709C8.3864 3.97643 8.07073 3.97658 7.87598 4.1709L5.27637 6.77051L4.12402 5.61816C3.92936 5.42369 3.61272 5.42383 3.41797 5.61816C3.22374 5.81286 3.22367 6.12859 3.41797 6.32324L4.92383 7.82812C5.11861 8.02278 5.43417 8.02285 5.62891 7.82812L8.58105 4.87598C8.77544 4.68118 8.77569 4.36555 8.58105 4.1709Z" :fill="useCurrentColor ? 'currentColor' : '#009A29'"/></svg>
3
+ </template>
4
+ <script>
5
+
6
+ export default {
7
+ name: 'IconColorSuccess',
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
@@ -362,4 +362,6 @@ export { default as IconColorLine } from './IconColorLine/index.vue';
362
362
  export { default as IconColorUpload2 } from './IconColorUpload2/index.vue';
363
363
  export { default as IconColorSelect } from './IconColorSelect/index.vue';
364
364
  export { default as IconColorRichtext } from './IconColorRichtext/index.vue';
365
- export { default as IconLineStop } from './IconLineStop/index.vue';
365
+ export { default as IconLineStop } from './IconLineStop/index.vue';
366
+ export { default as IconColorStop } from './IconColorStop/index.vue';
367
+ export { default as IconColorSuccess } from './IconColorSuccess/index.vue';