@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.
- package/README.md +71 -0
- package/lib/button/index.d.ts +118 -0
- package/lib/button/src/index.vue.d.ts +67 -0
- package/lib/checkbox/index.d.ts +113 -0
- package/lib/checkbox/src/index.vue.d.ts +51 -0
- package/lib/components.d.ts +19 -0
- package/lib/date-picker/index.d.ts +89 -0
- package/lib/date-picker/src/index.vue.d.ts +49 -0
- package/lib/ep-ui.js +15211 -0
- package/lib/ep-ui.js.gz +0 -0
- package/lib/ep-ui.umd.cjs +40 -0
- package/lib/favicon.ico +0 -0
- package/lib/form/index.d.ts +118 -0
- package/lib/form/src/index.vue.d.ts +84 -0
- package/lib/form/src/renderBtn.vue.d.ts +8 -0
- package/lib/form/src/renderComp.vue.d.ts +8 -0
- package/lib/hook/index.d.ts +10 -0
- package/lib/index.d.ts +14 -0
- package/lib/input/index.d.ts +83 -0
- package/lib/input/src/index.vue.d.ts +46 -0
- package/lib/radio/index.d.ts +105 -0
- package/lib/radio/src/index.vue.d.ts +52 -0
- package/lib/select/index.d.ts +170 -0
- package/lib/select/src/index.vue.d.ts +99 -0
- package/lib/style.css +1 -0
- package/lib/table/index.d.ts +3108 -0
- package/lib/table/src/ColumnSet.vue.d.ts +33 -0
- package/lib/table/src/CustomRender.vue.d.ts +20 -0
- package/lib/table/src/RowEdit.vue.d.ts +16 -0
- package/lib/table/src/index.vue.d.ts +1150 -0
- package/lib/table/src/useHooks.d.ts +8 -0
- package/lib/withInstall.d.ts +5 -0
- package/package.json +89 -0
|
@@ -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
|
+
};
|
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
|
+
}
|