@vtj/renderer 0.18.14 → 0.18.16
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 +13 -13
- package/dist/index.mjs +308 -299
- package/package.json +5 -5
- package/types/render/context.d.ts +5 -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.18.
|
|
4
|
+
"version": "0.18.16",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"低代码引擎",
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"eval5": "^1.4.8",
|
|
25
|
-
"@vtj/
|
|
26
|
-
"@vtj/
|
|
25
|
+
"@vtj/utils": "~0.18.16",
|
|
26
|
+
"@vtj/core": "~0.18.16"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"vue": "~3.5.37",
|
|
30
30
|
"vue-router": "~4.6.0",
|
|
31
31
|
"@vtj/cli": "~0.13.0",
|
|
32
|
-
"@vtj/
|
|
33
|
-
"@vtj/
|
|
32
|
+
"@vtj/ui": "~0.18.16",
|
|
33
|
+
"@vtj/icons": "~0.18.16"
|
|
34
34
|
},
|
|
35
35
|
"exports": {
|
|
36
36
|
".": {
|
|
@@ -19,6 +19,11 @@ export declare class Context {
|
|
|
19
19
|
__contextRefs: Record<string, Context>;
|
|
20
20
|
__refs: Record<string, any>;
|
|
21
21
|
__refCaches: Record<string, any>;
|
|
22
|
+
/**
|
|
23
|
+
* 记录每个节点 id 当前注册的 ref 回调代次,
|
|
24
|
+
* 用于防止旧 ref 卸载回调(await delay 后执行)误删新 ref 已设置的 $refs 条目。
|
|
25
|
+
*/
|
|
26
|
+
private __refGenerations;
|
|
22
27
|
context: Record<string, any>;
|
|
23
28
|
/**
|
|
24
29
|
* @deprecated
|
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.18.
|
|
5
|
+
* @version 0.18.15
|
|
6
6
|
* @license <a href="https://vtj.pro/license.html">MIT License</a>
|
|
7
7
|
*/
|
|
8
|
-
export declare const version = "0.18.
|
|
8
|
+
export declare const version = "0.18.15";
|