@bscomp/ep-ui 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.
@@ -0,0 +1,8 @@
1
+ export default function (props: any, emits: any): {
2
+ editRowKey: import('vue').Ref<any, any>;
3
+ newPageProps: any;
4
+ handleRowClick: (row: any, item: any, scope: any) => void;
5
+ handleRowEditSave: (row: any) => void;
6
+ handleRowEditCancel: () => void;
7
+ bindPageProps: import('vue').ComputedRef<any>;
8
+ };
@@ -0,0 +1,5 @@
1
+ import { Plugin } from 'vue';
2
+
3
+ type SFCWithInstall<T> = T & Plugin;
4
+ export declare const withInstall: <T, E extends Record<string, any>>(main: T, extra?: E | undefined) => SFCWithInstall<T> & E;
5
+ export {};
package/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "@bscomp/ep-ui",
3
+ "version": "0.0.7",
4
+ "description": "Vue3 中基于Element-plus二次封装基础组件文档",
5
+ "author": "bishang",
6
+ "license": "MIT",
7
+ "private": false,
8
+ "main": "lib/ep-ui.umd.cjs",
9
+ "module": "lib/ep-ui.umd.cjs",
10
+ "types": "lib/index.d.ts",
11
+ "type": "module",
12
+ "files": [
13
+ "package.json",
14
+ "README.md",
15
+ "LICENSE",
16
+ "lib",
17
+ "global.d.ts"
18
+ ],
19
+ "scripts": {
20
+ "lib": "rimraf lib && vite build",
21
+ "deploy": "deploy.sh",
22
+ "pub": "npm publish --registry=https://registry.npmjs.org/",
23
+ "prettier": "prettier --write \"packages/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
24
+ "docs:prettier": "prettier --write \"docs/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
25
+ "docs:dev": "vitepress dev docs",
26
+ "docs:build": "vitepress build docs"
27
+ },
28
+ "devDependencies": {
29
+ "@element-plus/icons-vue": "^2.0.10",
30
+ "@rollup/plugin-replace": "^6.0.1",
31
+ "@rollup/plugin-terser": "^0.4.4",
32
+ "@types/node": "18.7.18",
33
+ "@types/nprogress": "^0.2.0",
34
+ "@types/path-browserify": "^1.0.0",
35
+ "@typescript-eslint/eslint-plugin": "^5.40.0",
36
+ "@typescript-eslint/parser": "^5.40.0",
37
+ "@vitejs/plugin-vue": "^5.0.4",
38
+ "@vitejs/plugin-vue-jsx": "^4.1.0",
39
+ "@vue/shared": "^3.3.13",
40
+ "@vueuse/core": "^9.13.0",
41
+ "axios": "^1.1.2",
42
+ "chalk": "^5.2.0",
43
+ "consola": "^3.1.0",
44
+ "echarts": "^5.4.3",
45
+ "element-plus": "^2.7.8",
46
+ "escape-html": "^1.0.3",
47
+ "eslint": "^8.25.0",
48
+ "eslint-config-prettier": "^8.5.0",
49
+ "eslint-plugin-prettier": "^4.2.1",
50
+ "eslint-plugin-vue": "^9.6.0",
51
+ "markdown-it": "^13.0.1",
52
+ "markdown-it-container": "^3.0.0",
53
+ "nprogress": "^0.2.0",
54
+ "path-browserify": "^1.0.1",
55
+ "prettier": "^2.7.1",
56
+ "prismjs": "^1.29.0",
57
+ "rollup-plugin-visualizer": "^5.12.0",
58
+ "sass": "^1.55.0",
59
+ "sass-loader": "^13.1.0",
60
+ "sortablejs": "^1.15.0",
61
+ "typescript": "^4.6.4",
62
+ "vite": "^5.2.5",
63
+ "vite-plugin-compression": "^0.5.1",
64
+ "vite-plugin-dts": "^3.9.1",
65
+ "vite-plugin-vue-setup-extend": "^0.4.0",
66
+ "vitepress": "^1.2.3",
67
+ "vue": "^3.5.12",
68
+ "vue-router": "^4.1.5",
69
+ "vue-tsc": "^0.40.4",
70
+ "vuedraggable": "^4.1.0"
71
+ },
72
+ "repository": {
73
+ "type": "git",
74
+ "url": "https://github.com/bsprcomp/ep-ui.git"
75
+ },
76
+ "keywords": [
77
+ "element-ui",
78
+ "element-plus",
79
+ "vite",
80
+ "vitepress",
81
+ "vue",
82
+ "vue3",
83
+ "ep-ui",
84
+ "bscomp",
85
+ "二次封装组件",
86
+ "封装组件",
87
+ "components"
88
+ ]
89
+ }