@arco-iconbox/vue-smartcode 0.1.70 → 0.1.71
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 +2517 -2487
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +5 -1
- package/dist/icon.min.js.map +1 -1
- package/esm/IconColorOrg/index.js +32 -0
- package/esm/index.js +1 -0
- package/lib/IconColorOrg/index.js +33 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconColorOrg/index.vue +19 -0
- package/src/index.js +2 -1
|
@@ -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: "IconColorOrg",
|
|
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
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", { d: "M2.25 11.3838C3.07849 11.3838 3.75 12.0554 3.75 12.8838C3.74993 13.7122 3.07845 14.3838 2.25 14.3838C1.42155 14.3838 0.750066 13.7122 0.75 12.8838C0.75 12.0554 1.42151 11.3838 2.25 11.3838ZM8 11.3838C8.8285 11.3838 9.5 12.0554 9.5 12.8838C9.4999 13.7121 8.82843 14.3838 8 14.3838C7.17157 14.3838 6.5001 13.7121 6.5 12.8838C6.5 12.0554 7.17151 11.3838 8 11.3838ZM13.75 11.3838C14.5785 11.3838 15.25 12.0554 15.25 12.8838C15.2499 13.7122 14.5785 14.3838 13.75 14.3838C12.9215 14.3838 12.2501 13.7122 12.25 12.8838C12.25 12.0554 12.9215 11.3838 13.75 11.3838ZM8.66504 6.5332H14.415V9.57812H13.085V7.86328H8.66504V9.57812H7.33496V7.86328H2.91504V9.57812H1.58496V6.5332H7.33496V4.625H8.66504V6.5332ZM8 0.400391C8.90267 0.400417 9.63477 1.13255 9.63477 2.03516C9.63457 2.93759 8.90255 3.66892 8 3.66895C7.09743 3.66895 6.36543 2.93761 6.36523 2.03516C6.36523 1.13254 7.09731 0.400391 8 0.400391Z" }, 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" : "#165dff",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-org`],
|
|
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 };
|
package/esm/index.js
CHANGED
|
@@ -339,3 +339,4 @@ export { default as IconLineQuotation } from "./IconLineQuotation/index.js";
|
|
|
339
339
|
export { default as IconLineCloseBold } from "./IconLineCloseBold/index.js";
|
|
340
340
|
export { default as IconLineOkBold } from "./IconLineOkBold/index.js";
|
|
341
341
|
export { default as IconColorDataFlow } from "./IconColorDataFlow/index.js";
|
|
342
|
+
export { default as IconColorOrg } from "./IconColorOrg/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: "IconColorOrg",
|
|
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
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", { d: "M2.25 11.3838C3.07849 11.3838 3.75 12.0554 3.75 12.8838C3.74993 13.7122 3.07845 14.3838 2.25 14.3838C1.42155 14.3838 0.750066 13.7122 0.75 12.8838C0.75 12.0554 1.42151 11.3838 2.25 11.3838ZM8 11.3838C8.8285 11.3838 9.5 12.0554 9.5 12.8838C9.4999 13.7121 8.82843 14.3838 8 14.3838C7.17157 14.3838 6.5001 13.7121 6.5 12.8838C6.5 12.0554 7.17151 11.3838 8 11.3838ZM13.75 11.3838C14.5785 11.3838 15.25 12.0554 15.25 12.8838C15.2499 13.7122 14.5785 14.3838 13.75 14.3838C12.9215 14.3838 12.2501 13.7122 12.25 12.8838C12.25 12.0554 12.9215 11.3838 13.75 11.3838ZM8.66504 6.5332H14.415V9.57812H13.085V7.86328H8.66504V9.57812H7.33496V7.86328H2.91504V9.57812H1.58496V6.5332H7.33496V4.625H8.66504V6.5332ZM8 0.400391C8.90267 0.400417 9.63477 1.13255 9.63477 2.03516C9.63457 2.93759 8.90255 3.66892 8 3.66895C7.09743 3.66895 6.36543 2.93761 6.36523 2.03516C6.36523 1.13254 7.09731 0.400391 8 0.400391Z" }, 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" : "#165dff",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
27
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-org`],
|
|
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;
|
package/lib/index.js
CHANGED
|
@@ -341,6 +341,7 @@ var index$5h = require("./IconLineQuotation/index.js");
|
|
|
341
341
|
var index$5i = require("./IconLineCloseBold/index.js");
|
|
342
342
|
var index$5j = require("./IconLineOkBold/index.js");
|
|
343
343
|
var index$5k = require("./IconColorDataFlow/index.js");
|
|
344
|
+
var index$5l = require("./IconColorOrg/index.js");
|
|
344
345
|
exports.IconFillHeart = index;
|
|
345
346
|
exports.IconFillMute = index$1;
|
|
346
347
|
exports.IconFillSound = index$2;
|
|
@@ -682,3 +683,4 @@ exports.IconLineQuotation = index$5h;
|
|
|
682
683
|
exports.IconLineCloseBold = index$5i;
|
|
683
684
|
exports.IconLineOkBold = index$5j;
|
|
684
685
|
exports.IconColorDataFlow = index$5k;
|
|
686
|
+
exports.IconColorOrg = index$5l;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 16 16" :fill="useCurrentColor ? 'currentColor' : '#165dff'" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-org`]" width="1em" height="1em" v-bind="$attrs"><path d="M2.25 11.3838C3.07849 11.3838 3.75 12.0554 3.75 12.8838C3.74993 13.7122 3.07845 14.3838 2.25 14.3838C1.42155 14.3838 0.750066 13.7122 0.75 12.8838C0.75 12.0554 1.42151 11.3838 2.25 11.3838ZM8 11.3838C8.8285 11.3838 9.5 12.0554 9.5 12.8838C9.4999 13.7121 8.82843 14.3838 8 14.3838C7.17157 14.3838 6.5001 13.7121 6.5 12.8838C6.5 12.0554 7.17151 11.3838 8 11.3838ZM13.75 11.3838C14.5785 11.3838 15.25 12.0554 15.25 12.8838C15.2499 13.7122 14.5785 14.3838 13.75 14.3838C12.9215 14.3838 12.2501 13.7122 12.25 12.8838C12.25 12.0554 12.9215 11.3838 13.75 11.3838ZM8.66504 6.5332H14.415V9.57812H13.085V7.86328H8.66504V9.57812H7.33496V7.86328H2.91504V9.57812H1.58496V6.5332H7.33496V4.625H8.66504V6.5332ZM8 0.400391C8.90267 0.400417 9.63477 1.13255 9.63477 2.03516C9.63457 2.93759 8.90255 3.66892 8 3.66895C7.09743 3.66895 6.36543 2.93761 6.36523 2.03516C6.36523 1.13254 7.09731 0.400391 8 0.400391Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorOrg',
|
|
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
|
@@ -338,4 +338,5 @@ export { default as IconLineToolbarImport } from './IconLineToolbarImport/index.
|
|
|
338
338
|
export { default as IconLineQuotation } from './IconLineQuotation/index.vue';
|
|
339
339
|
export { default as IconLineCloseBold } from './IconLineCloseBold/index.vue';
|
|
340
340
|
export { default as IconLineOkBold } from './IconLineOkBold/index.vue';
|
|
341
|
-
export { default as IconColorDataFlow } from './IconColorDataFlow/index.vue';
|
|
341
|
+
export { default as IconColorDataFlow } from './IconColorDataFlow/index.vue';
|
|
342
|
+
export { default as IconColorOrg } from './IconColorOrg/index.vue';
|