vue-ui-kit-pro 0.0.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.
@@ -0,0 +1,6 @@
1
+ export * from './src/index'
2
+ export {}
3
+ import VueUiKitPro from './src/index'
4
+ export default VueUiKitPro
5
+ export * from './src/index'
6
+ export {}
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { default as ListPage } from './components/ListPage.vue';
2
+ export { ListPage };
3
+ export default ListPage;
@@ -0,0 +1,2 @@
1
+ declare const _default: import('vite').UserConfig;
2
+ export default _default;
@@ -0,0 +1,17 @@
1
+ const s = (t, e) => {
2
+ const c = t.__vccOpts || t;
3
+ for (const [o, r] of e)
4
+ c[o] = r;
5
+ return c;
6
+ }, _ = {};
7
+ function a(t, e) {
8
+ return null;
9
+ }
10
+ const n = /* @__PURE__ */ s(_, [["render", a]]);
11
+ n.install = (t) => {
12
+ t.component(n.name, n);
13
+ };
14
+ export {
15
+ n as ListPage,
16
+ n as default
17
+ };
@@ -0,0 +1 @@
1
+ (function(e,t){typeof exports=="object"&&typeof module<"u"?t(exports):typeof define=="function"&&define.amd?define(["exports"],t):(e=typeof globalThis<"u"?globalThis:e||self,t(e.VueUiKitPro={}))})(this,(function(e){"use strict";const t=(o,i)=>{const s=o.__vccOpts||o;for(const[u,r]of i)s[u]=r;return s},c={};function f(o,i){return null}const n=t(c,[["render",f]]);n.install=o=>{o.component(n.name,n)},e.ListPage=n,e.default=n,Object.defineProperties(e,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}})}));
package/package.json ADDED
@@ -0,0 +1,38 @@
1
+ {
2
+ "name": "vue-ui-kit-pro",
3
+ "version": "0.0.1",
4
+ "description": "vue3 ui kit ",
5
+ "main": "dist/vue-ui-kit-pro.umd.js",
6
+ "module": "dist/vue-ui-kit-pro.es.js",
7
+ "types": "dist/index.d.ts",
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "scripts": {
12
+ "build": "vue-tsc --noEmit && vite build"
13
+ },
14
+ "keywords": [
15
+ "vue3",
16
+ "element-plus",
17
+ "ui-kit",
18
+ "business-components",
19
+ "list",
20
+ "drawer"
21
+ ],
22
+ "author": "wang yu yang",
23
+ "license": "MIT",
24
+ "peerDependencies": {
25
+ "element-plus": "^2.0.0",
26
+ "vue": "^3.0.0"
27
+ },
28
+ "devDependencies": {
29
+ "@types/node": "^25.0.5",
30
+ "@vitejs/plugin-vue": "^6.0.3",
31
+ "element-plus": "^2.13.1",
32
+ "typescript": "^5.9.3",
33
+ "vite": "^7.3.1",
34
+ "vite-plugin-dts": "^4.5.4",
35
+ "vue": "^3.5.26",
36
+ "vue-tsc": "^3.2.2"
37
+ }
38
+ }