keli-ui 0.3.5 → 0.3.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/{ApprovalRecord-vVZRlsOq.js → ApprovalRecord-CBHg5KYG.js} +2 -2
- package/dist/{ApprovalRecord-vVZRlsOq.js.map → ApprovalRecord-CBHg5KYG.js.map} +1 -1
- package/dist/{api-CgGVcbfG.js → api-VujlHEgc.js} +34 -32
- package/dist/api-VujlHEgc.js.map +1 -0
- package/dist/components/AppComponent/AppFormRender.vue.d.ts +17 -17
- package/dist/components/AppComponent/DynamicDialogHost.vue.d.ts +21 -0
- package/dist/components/AppComponent/index.d.ts +2 -1
- package/dist/components/FormComponent/FormSelectAsync/FormSelectAsync.vue.d.ts +8 -8
- package/dist/components/FormComponent/FormSelectRemote/FormSelectRemote.vue.d.ts +8 -8
- package/dist/components/FormComponent/FormTableSelectAsync/FormTableSelectAsync.vue.d.ts +8 -8
- package/dist/components/TableComponent/TableCardRender/TableCardRender.vue.d.ts +28 -28
- package/dist/components/TableComponent/TableRender/TableRender.vue.d.ts +28 -28
- package/dist/config/appRouter.config.d.ts +1 -1
- package/dist/config/index.d.ts +2 -2
- package/dist/keli-ui.css +1 -1
- package/dist/keli-ui.js +21422 -21301
- package/dist/keli-ui.js.map +1 -1
- package/dist/keli-ui.umd.cjs +706 -700
- package/dist/keli-ui.umd.cjs.map +1 -1
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/openHostDialog.d.ts +9 -0
- package/package.json +78 -80
- package/dist/api-CgGVcbfG.js.map +0 -1
package/dist/utils/index.d.ts
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface DialogOptions {
|
|
2
|
+
name: string;
|
|
3
|
+
componentProps?: Record<string, any>;
|
|
4
|
+
width?: string;
|
|
5
|
+
autoOpen?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export declare const createDynamicContentDialog: ({ name, componentProps, width, }: DialogOptions) => Promise<{
|
|
8
|
+
destroy: () => void;
|
|
9
|
+
}>;
|
package/package.json
CHANGED
|
@@ -1,80 +1,78 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "keli-ui",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "A Vue 3 component library based on element-plus",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/keli-ui.umd.cjs",
|
|
7
|
-
"module": "./dist/keli-ui.js",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/keli-ui.js",
|
|
13
|
-
"require": "./dist/keli-ui.umd.cjs"
|
|
14
|
-
},
|
|
15
|
-
"./style.css": "./dist/keli-ui.css",
|
|
16
|
-
"./dist/keli-ui.css": "./dist/keli-ui.css",
|
|
17
|
-
"./global-components": {
|
|
18
|
-
"types": "./dist/types/global-components.d.ts"
|
|
19
|
-
}
|
|
20
|
-
},
|
|
21
|
-
"typesVersions": {
|
|
22
|
-
"*": {
|
|
23
|
-
"global-components": ["./dist/types/global-components.d.ts"]
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"files": [
|
|
27
|
-
"dist"
|
|
28
|
-
],
|
|
29
|
-
"scripts": {
|
|
30
|
-
"dev": "vite",
|
|
31
|
-
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
32
|
-
"build:lib": "vite build",
|
|
33
|
-
"preview": "vite preview"
|
|
34
|
-
},
|
|
35
|
-
"keywords": [
|
|
36
|
-
"vue3",
|
|
37
|
-
"element-plus",
|
|
38
|
-
"component-library",
|
|
39
|
-
"keli-ui"
|
|
40
|
-
],
|
|
41
|
-
"author": "",
|
|
42
|
-
"license": "MIT",
|
|
43
|
-
"peerDependencies": {
|
|
44
|
-
"@iconify/vue": "^5.0.0",
|
|
45
|
-
"@vueuse/core": "^10.
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"vue": "^
|
|
52
|
-
"vue-
|
|
53
|
-
"
|
|
54
|
-
"vxe-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"@
|
|
60
|
-
"@
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"vue": "^
|
|
73
|
-
"vue-
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "keli-ui",
|
|
3
|
+
"version": "0.3.7",
|
|
4
|
+
"description": "A Vue 3 component library based on element-plus",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/keli-ui.umd.cjs",
|
|
7
|
+
"module": "./dist/keli-ui.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/keli-ui.js",
|
|
13
|
+
"require": "./dist/keli-ui.umd.cjs"
|
|
14
|
+
},
|
|
15
|
+
"./style.css": "./dist/keli-ui.css",
|
|
16
|
+
"./dist/keli-ui.css": "./dist/keli-ui.css",
|
|
17
|
+
"./global-components": {
|
|
18
|
+
"types": "./dist/types/global-components.d.ts"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"typesVersions": {
|
|
22
|
+
"*": {
|
|
23
|
+
"global-components": ["./dist/types/global-components.d.ts"]
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist"
|
|
28
|
+
],
|
|
29
|
+
"scripts": {
|
|
30
|
+
"dev": "vite",
|
|
31
|
+
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
32
|
+
"build:lib": "vite build",
|
|
33
|
+
"preview": "vite preview"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"vue3",
|
|
37
|
+
"element-plus",
|
|
38
|
+
"component-library",
|
|
39
|
+
"keli-ui"
|
|
40
|
+
],
|
|
41
|
+
"author": "",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"@iconify/vue": "^5.0.0",
|
|
45
|
+
"@vueuse/core": "^10.11.0",
|
|
46
|
+
"element-plus": "^2.13.2",
|
|
47
|
+
"mitt": "^3.0.1",
|
|
48
|
+
"monaco-editor": "^0.54.0",
|
|
49
|
+
"solarday2lunarday": "^1.12.1",
|
|
50
|
+
"vue": "^3.5.17",
|
|
51
|
+
"vue-draggable-plus": "^0.6.0",
|
|
52
|
+
"vue-hooks-plus": "^2.4.0",
|
|
53
|
+
"vxe-pc-ui": "^4.13.28",
|
|
54
|
+
"vxe-table": "^4.18.13"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@iconify/vue": "^5.0.0",
|
|
58
|
+
"@types/node": "^20.11.0",
|
|
59
|
+
"@vitejs/plugin-vue": "^6.0.6",
|
|
60
|
+
"@vueuse/core": "^14.2.1",
|
|
61
|
+
"element-plus": "^2.6.0",
|
|
62
|
+
"esbuild": "^0.28.0",
|
|
63
|
+
"mitt": "^3.0.1",
|
|
64
|
+
"monaco-editor": "^0.52.2",
|
|
65
|
+
"sass": "^1.77.0",
|
|
66
|
+
"solarday2lunarday": "^1.12.1",
|
|
67
|
+
"typescript": "^5.4.0",
|
|
68
|
+
"vite": "^8.0.9",
|
|
69
|
+
"vite-plugin-dts": "^3.7.0",
|
|
70
|
+
"vue": "^3.5.13",
|
|
71
|
+
"vue-draggable-plus": "^0.6.0",
|
|
72
|
+
"vue-hooks-plus": "^2.4.0",
|
|
73
|
+
"vue-tsc": "^2.0.0",
|
|
74
|
+
"vue3-sfc-loader": "^0.9.5",
|
|
75
|
+
"vxe-pc-ui": "^4.13.28",
|
|
76
|
+
"vxe-table": "^4.18.13"
|
|
77
|
+
}
|
|
78
|
+
}
|