keli-ui 0.3.6 → 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.
@@ -5,5 +5,6 @@ export * from './dateTime';
5
5
  export * from './emitter';
6
6
  export * from './formValidates';
7
7
  export * from './msgTips';
8
+ export * from './openHostDialog';
8
9
  export * from './sleep';
9
10
  export * from './validate';
@@ -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,78 +1,78 @@
1
- {
2
- "name": "keli-ui",
3
- "version": "0.3.6",
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
- }
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
+ }