@arco-iconbox/vue-smartcode 0.1.76 → 0.1.77
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 +2736 -2690
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +106 -102
- package/dist/icon.min.js.map +1 -1
- package/esm/IconColorSelect/index.js +48 -0
- package/esm/index.js +1 -0
- package/lib/IconColorSelect/index.js +49 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconColorSelect/index.vue +19 -0
- package/src/index.js +2 -1
|
@@ -0,0 +1,48 @@
|
|
|
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: "IconColorSelect",
|
|
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 = /* @__PURE__ */ createElementVNode("rect", {
|
|
17
|
+
x: "3",
|
|
18
|
+
y: "3",
|
|
19
|
+
width: "18",
|
|
20
|
+
height: "18",
|
|
21
|
+
rx: "4",
|
|
22
|
+
stroke: "#165DFF",
|
|
23
|
+
"stroke-width": "1.66",
|
|
24
|
+
"stroke-linejoin": "round"
|
|
25
|
+
}, null, -1);
|
|
26
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", {
|
|
27
|
+
d: "M7.68359 10.3261L10.8687 13.5112C11.2647 13.9072 11.4627 14.1052 11.691 14.1794C11.8919 14.2446 12.1082 14.2446 12.309 14.1794C12.5374 14.1052 12.7354 13.9072 13.1314 13.5112L16.3165 10.3261",
|
|
28
|
+
stroke: "#00BBD8",
|
|
29
|
+
"stroke-width": "1.66",
|
|
30
|
+
"stroke-linecap": "round",
|
|
31
|
+
"stroke-linejoin": "round"
|
|
32
|
+
}, null, -1);
|
|
33
|
+
const _hoisted_3 = [
|
|
34
|
+
_hoisted_1,
|
|
35
|
+
_hoisted_2
|
|
36
|
+
];
|
|
37
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
38
|
+
return openBlock(), createElementBlock("svg", mergeProps({
|
|
39
|
+
viewBox: "0 0 24 24",
|
|
40
|
+
fill: "none",
|
|
41
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
42
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-select`],
|
|
43
|
+
width: "1em",
|
|
44
|
+
height: "1em"
|
|
45
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
46
|
+
}
|
|
47
|
+
var index = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
48
|
+
export { index as default };
|
package/esm/index.js
CHANGED
|
@@ -360,3 +360,4 @@ export { default as IconColorOrganization } from "./IconColorOrganization/index.
|
|
|
360
360
|
export { default as IconColorCard } from "./IconColorCard/index.js";
|
|
361
361
|
export { default as IconColorLine } from "./IconColorLine/index.js";
|
|
362
362
|
export { default as IconColorUpload2 } from "./IconColorUpload2/index.js";
|
|
363
|
+
export { default as IconColorSelect } from "./IconColorSelect/index.js";
|
|
@@ -0,0 +1,49 @@
|
|
|
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: "IconColorSelect",
|
|
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 = /* @__PURE__ */ vue.createElementVNode("rect", {
|
|
18
|
+
x: "3",
|
|
19
|
+
y: "3",
|
|
20
|
+
width: "18",
|
|
21
|
+
height: "18",
|
|
22
|
+
rx: "4",
|
|
23
|
+
stroke: "#165DFF",
|
|
24
|
+
"stroke-width": "1.66",
|
|
25
|
+
"stroke-linejoin": "round"
|
|
26
|
+
}, null, -1);
|
|
27
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
28
|
+
d: "M7.68359 10.3261L10.8687 13.5112C11.2647 13.9072 11.4627 14.1052 11.691 14.1794C11.8919 14.2446 12.1082 14.2446 12.309 14.1794C12.5374 14.1052 12.7354 13.9072 13.1314 13.5112L16.3165 10.3261",
|
|
29
|
+
stroke: "#00BBD8",
|
|
30
|
+
"stroke-width": "1.66",
|
|
31
|
+
"stroke-linecap": "round",
|
|
32
|
+
"stroke-linejoin": "round"
|
|
33
|
+
}, null, -1);
|
|
34
|
+
const _hoisted_3 = [
|
|
35
|
+
_hoisted_1,
|
|
36
|
+
_hoisted_2
|
|
37
|
+
];
|
|
38
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
39
|
+
return vue.openBlock(), vue.createElementBlock("svg", vue.mergeProps({
|
|
40
|
+
viewBox: "0 0 24 24",
|
|
41
|
+
fill: "none",
|
|
42
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
43
|
+
class: [`${$props.prefix}-icon`, `${$props.prefix}-icon-color-select`],
|
|
44
|
+
width: "1em",
|
|
45
|
+
height: "1em"
|
|
46
|
+
}, _ctx.$attrs), _hoisted_3, 16);
|
|
47
|
+
}
|
|
48
|
+
var index = /* @__PURE__ */ pluginVue_exportHelper(_sfc_main, [["render", _sfc_render]]);
|
|
49
|
+
module.exports = index;
|
package/lib/index.js
CHANGED
|
@@ -362,6 +362,7 @@ var index$5C = require("./IconColorOrganization/index.js");
|
|
|
362
362
|
var index$5D = require("./IconColorCard/index.js");
|
|
363
363
|
var index$5E = require("./IconColorLine/index.js");
|
|
364
364
|
var index$5F = require("./IconColorUpload2/index.js");
|
|
365
|
+
var index$5G = require("./IconColorSelect/index.js");
|
|
365
366
|
exports.IconFillHeart = index;
|
|
366
367
|
exports.IconFillMute = index$1;
|
|
367
368
|
exports.IconFillSound = index$2;
|
|
@@ -724,3 +725,4 @@ exports.IconColorOrganization = index$5C;
|
|
|
724
725
|
exports.IconColorCard = index$5D;
|
|
725
726
|
exports.IconColorLine = index$5E;
|
|
726
727
|
exports.IconColorUpload2 = index$5F;
|
|
728
|
+
exports.IconColorSelect = index$5G;
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :class="[`${prefix}-icon`, `${prefix}-icon-color-select`]" width="1em" height="1em" v-bind="$attrs"><rect x="3" y="3" width="18" height="18" rx="4" stroke="#165DFF" stroke-width="1.66" stroke-linejoin="round"/><path d="M7.68359 10.3261L10.8687 13.5112C11.2647 13.9072 11.4627 14.1052 11.691 14.1794C11.8919 14.2446 12.1082 14.2446 12.309 14.1794C12.5374 14.1052 12.7354 13.9072 13.1314 13.5112L16.3165 10.3261" stroke="#00BBD8" stroke-width="1.66" stroke-linecap="round" stroke-linejoin="round"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconColorSelect',
|
|
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
|
@@ -359,4 +359,5 @@ export { default as IconColorDictionary } from './IconColorDictionary/index.vue'
|
|
|
359
359
|
export { default as IconColorOrganization } from './IconColorOrganization/index.vue';
|
|
360
360
|
export { default as IconColorCard } from './IconColorCard/index.vue';
|
|
361
361
|
export { default as IconColorLine } from './IconColorLine/index.vue';
|
|
362
|
-
export { default as IconColorUpload2 } from './IconColorUpload2/index.vue';
|
|
362
|
+
export { default as IconColorUpload2 } from './IconColorUpload2/index.vue';
|
|
363
|
+
export { default as IconColorSelect } from './IconColorSelect/index.vue';
|