@fangzhongya/icons 0.0.1-1
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/README.md +18 -0
- package/dist/_virtual/_plugin-vue_export-helper.cjs +9 -0
- package/dist/_virtual/_plugin-vue_export-helper.js +10 -0
- package/dist/index.cjs +18 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +18 -0
- package/dist/vue/bicycle.d.ts +3 -0
- package/dist/vue/bicycle.vue.cjs +17 -0
- package/dist/vue/bicycle.vue.js +18 -0
- package/dist/vue/bicycle.vue2.cjs +5 -0
- package/dist/vue/bicycle.vue2.js +6 -0
- package/dist/vue/bottom-left.d.ts +3 -0
- package/dist/vue/bottom-left.vue.cjs +25 -0
- package/dist/vue/bottom-left.vue.js +26 -0
- package/dist/vue/bottom-left.vue2.cjs +5 -0
- package/dist/vue/bottom-left.vue2.js +6 -0
- package/dist/vue/bottom-right.d.ts +3 -0
- package/dist/vue/bottom-right.vue.cjs +25 -0
- package/dist/vue/bottom-right.vue.js +26 -0
- package/dist/vue/bottom-right.vue2.cjs +5 -0
- package/dist/vue/bottom-right.vue2.js +6 -0
- package/dist/vue/bottom.d.ts +3 -0
- package/dist/vue/bottom.vue.cjs +20 -0
- package/dist/vue/bottom.vue.js +21 -0
- package/dist/vue/bottom.vue2.cjs +5 -0
- package/dist/vue/bottom.vue2.js +6 -0
- package/dist/vue/index.cjs +10 -0
- package/dist/vue/index.d.ts +4 -0
- package/dist/vue/index.js +10 -0
- package/package.json +40 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Vue 3 + TypeScript + Vite
|
|
2
|
+
|
|
3
|
+
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
|
|
4
|
+
|
|
5
|
+
## Recommended IDE Setup
|
|
6
|
+
|
|
7
|
+
- [VS Code](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
8
|
+
|
|
9
|
+
## Type Support For `.vue` Imports in TS
|
|
10
|
+
|
|
11
|
+
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
|
|
12
|
+
|
|
13
|
+
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
|
|
14
|
+
|
|
15
|
+
1. Disable the built-in TypeScript Extension
|
|
16
|
+
1. Run `Extensions: Show Built-in Extensions` from VSCode's command palette
|
|
17
|
+
2. Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
|
18
|
+
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
|
|
3
|
+
const index$1 = require("./vue/index.cjs");
|
|
4
|
+
const bicycle = require("./vue/bicycle.vue.cjs");
|
|
5
|
+
const bottomLeft = require("./vue/bottom-left.vue.cjs");
|
|
6
|
+
const bottom = require("./vue/bottom.vue.cjs");
|
|
7
|
+
const bottomRight = require("./vue/bottom-right.vue.cjs");
|
|
8
|
+
const index = (app, { prefix = "Icon" } = {}) => {
|
|
9
|
+
for (const [key, component] of Object.entries(index$1)) {
|
|
10
|
+
app.component(prefix + key, component);
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
exports.icons = index$1;
|
|
14
|
+
exports.Bicycle = bicycle;
|
|
15
|
+
exports.BottomLeft = bottomLeft;
|
|
16
|
+
exports.Bottom = bottom;
|
|
17
|
+
exports.BottomRight = bottomRight;
|
|
18
|
+
exports.default = index;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as icons from './vue';
|
|
2
|
+
import type { App } from 'vue';
|
|
3
|
+
export interface InstallOptions {
|
|
4
|
+
prefix?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: (app: App, { prefix }?: InstallOptions) => void;
|
|
7
|
+
export default _default;
|
|
8
|
+
export { icons };
|
|
9
|
+
export * from './vue';
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as index$1 from "./vue/index.js";
|
|
2
|
+
import { default as default2 } from "./vue/bicycle.vue.js";
|
|
3
|
+
import { default as default3 } from "./vue/bottom-left.vue.js";
|
|
4
|
+
import { default as default4 } from "./vue/bottom.vue.js";
|
|
5
|
+
import { default as default5 } from "./vue/bottom-right.vue.js";
|
|
6
|
+
const index = (app, { prefix = "Icon" } = {}) => {
|
|
7
|
+
for (const [key, component] of Object.entries(index$1)) {
|
|
8
|
+
app.component(prefix + key, component);
|
|
9
|
+
}
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
default2 as Bicycle,
|
|
13
|
+
default4 as Bottom,
|
|
14
|
+
default3 as BottomLeft,
|
|
15
|
+
default5 as BottomRight,
|
|
16
|
+
index as default,
|
|
17
|
+
index$1 as icons
|
|
18
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { DefineComponent } from 'vue';
|
|
2
|
+
declare const _sfc_main: DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
3
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const bicycle_vue_vue_type_script_lang = require("./bicycle.vue2.cjs");
|
|
3
|
+
const vue = require("vue");
|
|
4
|
+
const _pluginVue_exportHelper = require("../_virtual/_plugin-vue_export-helper.cjs");
|
|
5
|
+
const _hoisted_1 = {
|
|
6
|
+
viewBox: "0 0 1024 1024",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8
|
+
};
|
|
9
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createStaticVNode('<path fill="currentColor" d="M256 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256zm0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384z"></path><path fill="currentColor" d="M288 672h320q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"></path><path fill="currentColor" d="M768 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256zm0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384z"></path><path fill="currentColor" d="M480 192a32 32 0 0 1 0-64h160a32 32 0 0 1 31.04 24.256l96 384a32 32 0 0 1-62.08 15.488L615.04 192H480zM96 384a32 32 0 0 1 0-64h128a32 32 0 0 1 30.336 21.888l64 192a32 32 0 1 1-60.672 20.224L200.96 384H96z"></path><path fill="currentColor" d="m373.376 599.808-42.752-47.616 320-288 42.752 47.616z"></path>', 5);
|
|
10
|
+
const _hoisted_7 = [
|
|
11
|
+
_hoisted_2
|
|
12
|
+
];
|
|
13
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
14
|
+
return vue.openBlock(), vue.createElementBlock("svg", _hoisted_1, _hoisted_7);
|
|
15
|
+
}
|
|
16
|
+
const bicycle = /* @__PURE__ */ _pluginVue_exportHelper(bicycle_vue_vue_type_script_lang, [["render", _sfc_render]]);
|
|
17
|
+
module.exports = bicycle;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import _sfc_main from "./bicycle.vue2.js";
|
|
2
|
+
import { openBlock, createElementBlock, createStaticVNode } from "vue";
|
|
3
|
+
import _export_sfc from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const _hoisted_1 = {
|
|
5
|
+
viewBox: "0 0 1024 1024",
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7
|
+
};
|
|
8
|
+
const _hoisted_2 = /* @__PURE__ */ createStaticVNode('<path fill="currentColor" d="M256 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256zm0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384z"></path><path fill="currentColor" d="M288 672h320q32 0 32 32t-32 32H288q-32 0-32-32t32-32z"></path><path fill="currentColor" d="M768 832a128 128 0 1 0 0-256 128 128 0 0 0 0 256zm0 64a192 192 0 1 1 0-384 192 192 0 0 1 0 384z"></path><path fill="currentColor" d="M480 192a32 32 0 0 1 0-64h160a32 32 0 0 1 31.04 24.256l96 384a32 32 0 0 1-62.08 15.488L615.04 192H480zM96 384a32 32 0 0 1 0-64h128a32 32 0 0 1 30.336 21.888l64 192a32 32 0 1 1-60.672 20.224L200.96 384H96z"></path><path fill="currentColor" d="m373.376 599.808-42.752-47.616 320-288 42.752 47.616z"></path>', 5);
|
|
9
|
+
const _hoisted_7 = [
|
|
10
|
+
_hoisted_2
|
|
11
|
+
];
|
|
12
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
13
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, _hoisted_7);
|
|
14
|
+
}
|
|
15
|
+
const bicycle = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
16
|
+
export {
|
|
17
|
+
bicycle as default
|
|
18
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { DefineComponent } from 'vue';
|
|
2
|
+
declare const _sfc_main: DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
3
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const bottomLeft_vue_vue_type_script_lang = require("./bottom-left.vue2.cjs");
|
|
3
|
+
const vue = require("vue");
|
|
4
|
+
const _pluginVue_exportHelper = require("../_virtual/_plugin-vue_export-helper.cjs");
|
|
5
|
+
const _hoisted_1 = {
|
|
6
|
+
viewBox: "0 0 1024 1024",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8
|
+
};
|
|
9
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
10
|
+
fill: "currentColor",
|
|
11
|
+
d: "M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0v416z"
|
|
12
|
+
}, null, -1);
|
|
13
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"
|
|
16
|
+
}, null, -1);
|
|
17
|
+
const _hoisted_4 = [
|
|
18
|
+
_hoisted_2,
|
|
19
|
+
_hoisted_3
|
|
20
|
+
];
|
|
21
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22
|
+
return vue.openBlock(), vue.createElementBlock("svg", _hoisted_1, _hoisted_4);
|
|
23
|
+
}
|
|
24
|
+
const bottomLeft = /* @__PURE__ */ _pluginVue_exportHelper(bottomLeft_vue_vue_type_script_lang, [["render", _sfc_render]]);
|
|
25
|
+
module.exports = bottomLeft;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import _sfc_main from "./bottom-left.vue2.js";
|
|
2
|
+
import { openBlock, createElementBlock, createElementVNode } from "vue";
|
|
3
|
+
import _export_sfc from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const _hoisted_1 = {
|
|
5
|
+
viewBox: "0 0 1024 1024",
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7
|
+
};
|
|
8
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M256 768h416a32 32 0 1 1 0 64H224a32 32 0 0 1-32-32V352a32 32 0 0 1 64 0v416z"
|
|
11
|
+
}, null, -1);
|
|
12
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("path", {
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
d: "M246.656 822.656a32 32 0 0 1-45.312-45.312l544-544a32 32 0 0 1 45.312 45.312l-544 544z"
|
|
15
|
+
}, null, -1);
|
|
16
|
+
const _hoisted_4 = [
|
|
17
|
+
_hoisted_2,
|
|
18
|
+
_hoisted_3
|
|
19
|
+
];
|
|
20
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
21
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, _hoisted_4);
|
|
22
|
+
}
|
|
23
|
+
const bottomLeft = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
24
|
+
export {
|
|
25
|
+
bottomLeft as default
|
|
26
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { DefineComponent } from 'vue';
|
|
2
|
+
declare const _sfc_main: DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
3
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const bottomRight_vue_vue_type_script_lang = require("./bottom-right.vue2.cjs");
|
|
3
|
+
const vue = require("vue");
|
|
4
|
+
const _pluginVue_exportHelper = require("../_virtual/_plugin-vue_export-helper.cjs");
|
|
5
|
+
const _hoisted_1 = {
|
|
6
|
+
viewBox: "0 0 1024 1024",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8
|
+
};
|
|
9
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
10
|
+
fill: "currentColor",
|
|
11
|
+
d: "M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416H352z"
|
|
12
|
+
}, null, -1);
|
|
13
|
+
const _hoisted_3 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
d: "M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312l544 544z"
|
|
16
|
+
}, null, -1);
|
|
17
|
+
const _hoisted_4 = [
|
|
18
|
+
_hoisted_2,
|
|
19
|
+
_hoisted_3
|
|
20
|
+
];
|
|
21
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
22
|
+
return vue.openBlock(), vue.createElementBlock("svg", _hoisted_1, _hoisted_4);
|
|
23
|
+
}
|
|
24
|
+
const bottomRight = /* @__PURE__ */ _pluginVue_exportHelper(bottomRight_vue_vue_type_script_lang, [["render", _sfc_render]]);
|
|
25
|
+
module.exports = bottomRight;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import _sfc_main from "./bottom-right.vue2.js";
|
|
2
|
+
import { openBlock, createElementBlock, createElementVNode } from "vue";
|
|
3
|
+
import _export_sfc from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const _hoisted_1 = {
|
|
5
|
+
viewBox: "0 0 1024 1024",
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7
|
+
};
|
|
8
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M352 768a32 32 0 1 0 0 64h448a32 32 0 0 0 32-32V352a32 32 0 0 0-64 0v416H352z"
|
|
11
|
+
}, null, -1);
|
|
12
|
+
const _hoisted_3 = /* @__PURE__ */ createElementVNode("path", {
|
|
13
|
+
fill: "currentColor",
|
|
14
|
+
d: "M777.344 822.656a32 32 0 0 0 45.312-45.312l-544-544a32 32 0 0 0-45.312 45.312l544 544z"
|
|
15
|
+
}, null, -1);
|
|
16
|
+
const _hoisted_4 = [
|
|
17
|
+
_hoisted_2,
|
|
18
|
+
_hoisted_3
|
|
19
|
+
];
|
|
20
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
21
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, _hoisted_4);
|
|
22
|
+
}
|
|
23
|
+
const bottomRight = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
24
|
+
export {
|
|
25
|
+
bottomRight as default
|
|
26
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { DefineComponent } from 'vue';
|
|
2
|
+
declare const _sfc_main: DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
3
|
+
export default _sfc_main;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
const bottom_vue_vue_type_script_lang = require("./bottom.vue2.cjs");
|
|
3
|
+
const vue = require("vue");
|
|
4
|
+
const _pluginVue_exportHelper = require("../_virtual/_plugin-vue_export-helper.cjs");
|
|
5
|
+
const _hoisted_1 = {
|
|
6
|
+
viewBox: "0 0 1024 1024",
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
8
|
+
};
|
|
9
|
+
const _hoisted_2 = /* @__PURE__ */ vue.createElementVNode("path", {
|
|
10
|
+
fill: "currentColor",
|
|
11
|
+
d: "M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"
|
|
12
|
+
}, null, -1);
|
|
13
|
+
const _hoisted_3 = [
|
|
14
|
+
_hoisted_2
|
|
15
|
+
];
|
|
16
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
17
|
+
return vue.openBlock(), vue.createElementBlock("svg", _hoisted_1, _hoisted_3);
|
|
18
|
+
}
|
|
19
|
+
const bottom = /* @__PURE__ */ _pluginVue_exportHelper(bottom_vue_vue_type_script_lang, [["render", _sfc_render]]);
|
|
20
|
+
module.exports = bottom;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import _sfc_main from "./bottom.vue2.js";
|
|
2
|
+
import { openBlock, createElementBlock, createElementVNode } from "vue";
|
|
3
|
+
import _export_sfc from "../_virtual/_plugin-vue_export-helper.js";
|
|
4
|
+
const _hoisted_1 = {
|
|
5
|
+
viewBox: "0 0 1024 1024",
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
7
|
+
};
|
|
8
|
+
const _hoisted_2 = /* @__PURE__ */ createElementVNode("path", {
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
d: "M544 805.888V168a32 32 0 1 0-64 0v637.888L246.656 557.952a30.72 30.72 0 0 0-45.312 0 35.52 35.52 0 0 0 0 48.064l288 306.048a30.72 30.72 0 0 0 45.312 0l288-306.048a35.52 35.52 0 0 0 0-48 30.72 30.72 0 0 0-45.312 0L544 805.824z"
|
|
11
|
+
}, null, -1);
|
|
12
|
+
const _hoisted_3 = [
|
|
13
|
+
_hoisted_2
|
|
14
|
+
];
|
|
15
|
+
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
16
|
+
return openBlock(), createElementBlock("svg", _hoisted_1, _hoisted_3);
|
|
17
|
+
}
|
|
18
|
+
const bottom = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
19
|
+
export {
|
|
20
|
+
bottom as default
|
|
21
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const bicycle = require("./bicycle.vue.cjs");
|
|
4
|
+
const bottomLeft = require("./bottom-left.vue.cjs");
|
|
5
|
+
const bottom = require("./bottom.vue.cjs");
|
|
6
|
+
const bottomRight = require("./bottom-right.vue.cjs");
|
|
7
|
+
exports.Bicycle = bicycle;
|
|
8
|
+
exports.BottomLeft = bottomLeft;
|
|
9
|
+
exports.Bottom = bottom;
|
|
10
|
+
exports.BottomRight = bottomRight;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { default as default2 } from "./bicycle.vue.js";
|
|
2
|
+
import { default as default3 } from "./bottom-left.vue.js";
|
|
3
|
+
import { default as default4 } from "./bottom.vue.js";
|
|
4
|
+
import { default as default5 } from "./bottom-right.vue.js";
|
|
5
|
+
export {
|
|
6
|
+
default2 as Bicycle,
|
|
7
|
+
default4 as Bottom,
|
|
8
|
+
default3 as BottomLeft,
|
|
9
|
+
default5 as BottomRight
|
|
10
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fangzhongya/icons",
|
|
3
|
+
"version": "0.0.1-1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"devDependencies": {
|
|
7
|
+
"@fangzhongya/create": "0.2.3-11",
|
|
8
|
+
"@fangzhongya/utils": "0.0.7-22",
|
|
9
|
+
"@types/node": "^18.14.1",
|
|
10
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
11
|
+
"ts-node": "^10.9.1",
|
|
12
|
+
"typescript": "^4.9.5",
|
|
13
|
+
"vite": "^4.1.4",
|
|
14
|
+
"vite-plugin-dts": "2.0.2",
|
|
15
|
+
"vue": "^3.2.47",
|
|
16
|
+
"vue-tsc": "^1.2.0"
|
|
17
|
+
},
|
|
18
|
+
"main": "./dist/index.cjs",
|
|
19
|
+
"module": "./dist/index.js",
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"require": "./dist/index.cjs",
|
|
27
|
+
"import": "./dist/index.js",
|
|
28
|
+
"types": "./dist/index.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./*": "./*"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"dev:index": "ts-node node/index.ts",
|
|
34
|
+
"dev:y": "ts-node node/svg.ts",
|
|
35
|
+
"dev:v": "ts-node node/version.ts",
|
|
36
|
+
"build": "vue-tsc && vite build",
|
|
37
|
+
"pub": "pnpm publish --access public --no-git-checks",
|
|
38
|
+
"all": "pnpm dev:y & pnpm build & pnpm dev:v & pnpm pub"
|
|
39
|
+
}
|
|
40
|
+
}
|