@vtj/renderer 0.16.28 → 0.16.30
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.cjs +11 -11
- package/dist/index.mjs +236 -228
- package/package.json +5 -5
- package/types/render/context.d.ts +0 -1
- package/types/utils/util.d.ts +1 -0
- package/types/version.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vtj/renderer",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.16.
|
|
4
|
+
"version": "0.16.30",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"低代码引擎",
|
|
@@ -21,15 +21,15 @@
|
|
|
21
21
|
"author": "chenhuachun",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@vtj/core": "~0.16.
|
|
25
|
-
"@vtj/utils": "~0.16.
|
|
24
|
+
"@vtj/core": "~0.16.30",
|
|
25
|
+
"@vtj/utils": "~0.16.30"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"vue": "~3.5.5",
|
|
29
29
|
"vue-router": "~4.6.0",
|
|
30
|
-
"@vtj/ui": "~0.16.28",
|
|
31
30
|
"@vtj/cli": "~0.12.19",
|
|
32
|
-
"@vtj/
|
|
31
|
+
"@vtj/ui": "~0.16.30",
|
|
32
|
+
"@vtj/icons": "~0.16.30"
|
|
33
33
|
},
|
|
34
34
|
"exports": {
|
|
35
35
|
".": {
|
|
@@ -42,7 +42,6 @@ export declare class Context {
|
|
|
42
42
|
constructor(options: ContextOptions);
|
|
43
43
|
setup(attrs: Record<string, any>, Vue?: any): void;
|
|
44
44
|
private __proxy;
|
|
45
|
-
private __cleanup;
|
|
46
45
|
private __reset;
|
|
47
46
|
__parseFunction(code?: JSFunction): Function | undefined;
|
|
48
47
|
__parseExpression(code?: JSExpression | JSFunction): any;
|
package/types/utils/util.d.ts
CHANGED
|
@@ -14,3 +14,4 @@ export declare function getMock(global?: any): any;
|
|
|
14
14
|
export declare function setupPageSetting(app: App, route: RouteLocationNormalizedGeneric, file: PageFile | BlockFile): void;
|
|
15
15
|
export declare function isArrowFunction(code: string): boolean;
|
|
16
16
|
export declare function isCallFunction(code: string): boolean;
|
|
17
|
+
export declare function isAssignment(code: string): boolean;
|
package/types/version.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) 2026, VTJ.PRO All rights reserved.
|
|
3
3
|
* @name @vtj/renderer
|
|
4
4
|
* @author CHC chenhuachun1549@dingtalk.com
|
|
5
|
-
* @version 0.16.
|
|
5
|
+
* @version 0.16.29
|
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
7
7
|
*/
|
|
8
|
-
export declare const version = "0.16.
|
|
8
|
+
export declare const version = "0.16.29";
|