@vtj/designer 0.11.2 → 0.11.3
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/index.mjs +956 -946
- package/package.json +7 -7
- package/types/components/widgets/apis/form.d.ts +2 -2
- package/types/constants.d.ts +6 -0
- package/types/utils.d.ts +2 -1
- package/types/version.d.ts +2 -2
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@vtj/designer",
|
3
3
|
"private": false,
|
4
|
-
"version": "0.11.
|
4
|
+
"version": "0.11.3",
|
5
5
|
"type": "module",
|
6
6
|
"keywords": [
|
7
7
|
"低代码引擎",
|
@@ -24,12 +24,12 @@
|
|
24
24
|
"html2canvas": "~1.4.1",
|
25
25
|
"mockjs": "~1.1.0",
|
26
26
|
"monaco-editor": "~0.52.0",
|
27
|
-
"@vtj/core": "~0.11.
|
28
|
-
"@vtj/
|
29
|
-
"@vtj/
|
30
|
-
"@vtj/ui": "~0.11.
|
31
|
-
"@vtj/
|
32
|
-
"@vtj/
|
27
|
+
"@vtj/core": "~0.11.3",
|
28
|
+
"@vtj/icons": "~0.11.3",
|
29
|
+
"@vtj/renderer": "~0.11.3",
|
30
|
+
"@vtj/ui": "~0.11.3",
|
31
|
+
"@vtj/utils": "~0.11.3",
|
32
|
+
"@vtj/uni": "~0.11.3"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
35
35
|
"@types/mockjs": "~1.0.10",
|
@@ -46,8 +46,8 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
46
46
|
readonly top?: string | number | undefined;
|
47
47
|
readonly left?: string | number | undefined;
|
48
48
|
readonly title?: string | undefined;
|
49
|
-
readonly icon?: IconParam | undefined;
|
50
49
|
readonly cancel?: string | boolean | undefined;
|
50
|
+
readonly icon?: IconParam | undefined;
|
51
51
|
readonly src?: string | undefined;
|
52
52
|
readonly submit?: string | boolean | undefined;
|
53
53
|
readonly subtitle?: string | undefined;
|
@@ -1127,7 +1127,7 @@ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsM
|
|
1127
1127
|
isOutside: ShallowRef<boolean, boolean>;
|
1128
1128
|
stop: () => void;
|
1129
1129
|
}) => any) | undefined;
|
1130
|
-
}>, "size" | "height" | "width" | "
|
1130
|
+
}>, "size" | "height" | "width" | "close" | "cancel" | "mode" | "modelValue" | "primary" | "submit" | "$vtjEl" | "draggable" | "pure" | "modal" | "closable" | "maximizable" | "minimizable" | "componentInstance" | "bodyPadding" | "panelRef" | "state" | "maximized" | "minimized" | "changeMode" | "show" | "hide"> & ShallowUnwrapRef<{
|
1131
1131
|
$vtjEl: ComputedRef<any>;
|
1132
1132
|
panelRef: Ref<any, any>;
|
1133
1133
|
state: {
|
package/types/constants.d.ts
CHANGED
@@ -43,3 +43,9 @@ export declare const VUE_DEVTOOLS_PATH = "@id/virtual:vue-devtools-path:overlay.
|
|
43
43
|
*/
|
44
44
|
export declare const VUE_DEVTOOLS_OVERLAY_PATH = "@id/virtual:vue-devtools-path:overlay/devtools-overlay.mjs";
|
45
45
|
export declare const NPM_REGISTRY_URL = "https://registry.npmmirror.com/@vtj/pro";
|
46
|
+
export declare const REMOTE = "https://lcdp.vtj.pro";
|
47
|
+
export declare const ACCESS: {
|
48
|
+
auth: string;
|
49
|
+
storageKey: string;
|
50
|
+
privateKey: string;
|
51
|
+
};
|
package/types/utils.d.ts
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
import { JSExpression, JSFunction } from '@vtj/core';
|
2
|
-
import {
|
2
|
+
import { MessageBoxData, NotificationHandle, MessageHandler } from 'element-plus';
|
3
|
+
export declare function alert(message: string): Promise< MessageBoxData>;
|
3
4
|
export declare function notify(message: string, title?: string): NotificationHandle;
|
4
5
|
export declare function confirm(message: string): Promise<boolean | MessageBoxData>;
|
5
6
|
export declare function message(message: string, type?: 'success' | 'warning'): MessageHandler;
|
package/types/version.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* Copyright (c) 2025, VTJ.PRO All rights reserved.
|
3
3
|
* @name @vtj/designer
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
5
|
-
* @version 0.11.
|
5
|
+
* @version 0.11.2
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
7
7
|
*/
|
8
|
-
export declare const version = "0.11.
|
8
|
+
export declare const version = "0.11.2";
|