@arco-iconbox/vue-smartcode 0.0.6 → 0.0.7
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 +2451 -2421
- package/dist/icon.js.map +1 -1
- package/dist/icon.min.js +5 -1
- package/dist/icon.min.js.map +1 -1
- package/esm/IconIconFillHome/index.js +32 -0
- package/esm/index.js +1 -0
- package/lib/IconIconFillHome/index.js +33 -0
- package/lib/index.js +2 -0
- package/package.json +1 -1
- package/src/IconIconFillHome/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: "IconIconFillHome",
|
|
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: "M7.33496 1.38135C7.77255 1.28191 8.22745 1.28191 8.66504 1.38135C9.15985 1.49383 9.62115 1.78312 10.5439 2.35986L12.5439 3.60986C13.3673 4.12449 13.7794 4.38146 14.0781 4.72998C14.3424 5.03836 14.5416 5.39715 14.6631 5.78467C14.8003 6.22269 14.7998 6.70906 14.7998 7.68018V9.56982C14.7998 11.2495 14.7995 12.0893 14.4727 12.731C14.1851 13.2954 13.7265 13.7549 13.1621 14.0425C12.5204 14.3695 11.6802 14.3696 10 14.3696H6C4.31984 14.3696 3.47963 14.3695 2.83789 14.0425C2.27345 13.7549 1.81495 13.2954 1.52734 12.731C1.2005 12.0893 1.2002 11.2495 1.2002 9.56982V7.68018C1.2002 6.70907 1.19966 6.22269 1.33691 5.78467C1.45839 5.39715 1.65761 5.03836 1.92188 4.72998C2.22055 4.38146 2.63266 4.12449 3.45605 3.60986L5.45605 2.35986C6.37885 1.78312 6.84015 1.49383 7.33496 1.38135ZM8.00391 8.20752C7.45187 8.2077 7.00405 8.65547 7.00391 9.20752V11.2378C7.00391 11.79 7.45178 12.2376 8.00391 12.2378C8.55619 12.2378 9.00391 11.7901 9.00391 11.2378V9.20752C9.00377 8.65535 8.5561 8.20752 8.00391 8.20752Z" }, 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-icon_fill_home`],
|
|
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
|
@@ -309,3 +309,4 @@ export { default as IconIconLineTime } from "./IconIconLineTime/index.js";
|
|
|
309
309
|
export { default as IconIconLineWarning } from "./IconIconLineWarning/index.js";
|
|
310
310
|
export { default as IconIconLineFile } from "./IconIconLineFile/index.js";
|
|
311
311
|
export { default as IconIconLineSpacing } from "./IconIconLineSpacing/index.js";
|
|
312
|
+
export { default as IconIconFillHome } from "./IconIconFillHome/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: "IconIconFillHome",
|
|
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: "M7.33496 1.38135C7.77255 1.28191 8.22745 1.28191 8.66504 1.38135C9.15985 1.49383 9.62115 1.78312 10.5439 2.35986L12.5439 3.60986C13.3673 4.12449 13.7794 4.38146 14.0781 4.72998C14.3424 5.03836 14.5416 5.39715 14.6631 5.78467C14.8003 6.22269 14.7998 6.70906 14.7998 7.68018V9.56982C14.7998 11.2495 14.7995 12.0893 14.4727 12.731C14.1851 13.2954 13.7265 13.7549 13.1621 14.0425C12.5204 14.3695 11.6802 14.3696 10 14.3696H6C4.31984 14.3696 3.47963 14.3695 2.83789 14.0425C2.27345 13.7549 1.81495 13.2954 1.52734 12.731C1.2005 12.0893 1.2002 11.2495 1.2002 9.56982V7.68018C1.2002 6.70907 1.19966 6.22269 1.33691 5.78467C1.45839 5.39715 1.65761 5.03836 1.92188 4.72998C2.22055 4.38146 2.63266 4.12449 3.45605 3.60986L5.45605 2.35986C6.37885 1.78312 6.84015 1.49383 7.33496 1.38135ZM8.00391 8.20752C7.45187 8.2077 7.00405 8.65547 7.00391 9.20752V11.2378C7.00391 11.79 7.45178 12.2376 8.00391 12.2378C8.55619 12.2378 9.00391 11.7901 9.00391 11.2378V9.20752C9.00377 8.65535 8.5561 8.20752 8.00391 8.20752Z" }, 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-icon_fill_home`],
|
|
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
|
@@ -311,6 +311,7 @@ var index$4P = require("./IconIconLineTime/index.js");
|
|
|
311
311
|
var index$4Q = require("./IconIconLineWarning/index.js");
|
|
312
312
|
var index$4R = require("./IconIconLineFile/index.js");
|
|
313
313
|
var index$4S = require("./IconIconLineSpacing/index.js");
|
|
314
|
+
var index$4T = require("./IconIconFillHome/index.js");
|
|
314
315
|
exports.IconH1 = index;
|
|
315
316
|
exports.IconBgColors = index$1;
|
|
316
317
|
exports.IconH5 = index$2;
|
|
@@ -622,3 +623,4 @@ exports.IconIconLineTime = index$4P;
|
|
|
622
623
|
exports.IconIconLineWarning = index$4Q;
|
|
623
624
|
exports.IconIconLineFile = index$4R;
|
|
624
625
|
exports.IconIconLineSpacing = index$4S;
|
|
626
|
+
exports.IconIconFillHome = index$4T;
|
package/package.json
CHANGED
|
@@ -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-icon_fill_home`]" width="1em" height="1em" v-bind="$attrs"><path d="M7.33496 1.38135C7.77255 1.28191 8.22745 1.28191 8.66504 1.38135C9.15985 1.49383 9.62115 1.78312 10.5439 2.35986L12.5439 3.60986C13.3673 4.12449 13.7794 4.38146 14.0781 4.72998C14.3424 5.03836 14.5416 5.39715 14.6631 5.78467C14.8003 6.22269 14.7998 6.70906 14.7998 7.68018V9.56982C14.7998 11.2495 14.7995 12.0893 14.4727 12.731C14.1851 13.2954 13.7265 13.7549 13.1621 14.0425C12.5204 14.3695 11.6802 14.3696 10 14.3696H6C4.31984 14.3696 3.47963 14.3695 2.83789 14.0425C2.27345 13.7549 1.81495 13.2954 1.52734 12.731C1.2005 12.0893 1.2002 11.2495 1.2002 9.56982V7.68018C1.2002 6.70907 1.19966 6.22269 1.33691 5.78467C1.45839 5.39715 1.65761 5.03836 1.92188 4.72998C2.22055 4.38146 2.63266 4.12449 3.45605 3.60986L5.45605 2.35986C6.37885 1.78312 6.84015 1.49383 7.33496 1.38135ZM8.00391 8.20752C7.45187 8.2077 7.00405 8.65547 7.00391 9.20752V11.2378C7.00391 11.79 7.45178 12.2376 8.00391 12.2378C8.55619 12.2378 9.00391 11.7901 9.00391 11.2378V9.20752C9.00377 8.65535 8.5561 8.20752 8.00391 8.20752Z"/></svg>
|
|
3
|
+
</template>
|
|
4
|
+
<script>
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
name: 'IconIconFillHome',
|
|
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
|
@@ -308,4 +308,5 @@ export { default as IconIconLineOrganization } from './IconIconLineOrganization/
|
|
|
308
308
|
export { default as IconIconLineTime } from './IconIconLineTime/index.vue';
|
|
309
309
|
export { default as IconIconLineWarning } from './IconIconLineWarning/index.vue';
|
|
310
310
|
export { default as IconIconLineFile } from './IconIconLineFile/index.vue';
|
|
311
|
-
export { default as IconIconLineSpacing } from './IconIconLineSpacing/index.vue';
|
|
311
|
+
export { default as IconIconLineSpacing } from './IconIconLineSpacing/index.vue';
|
|
312
|
+
export { default as IconIconFillHome } from './IconIconFillHome/index.vue';
|