@flowgram.ai/variable-core 0.5.5 → 0.5.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/esm/index.js +690 -263
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +1185 -238
- package/dist/index.d.ts +1185 -238
- package/dist/index.js +703 -266
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- package/README.md +0 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowgram.ai/variable-core",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.7",
|
|
4
4
|
"description": "variable engine based on scope",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flow",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"nanoid": "^5.0.9",
|
|
30
30
|
"reflect-metadata": "~0.2.2",
|
|
31
31
|
"rxjs": "^7.8.2",
|
|
32
|
-
"@flowgram.ai/utils": "0.5.
|
|
33
|
-
"@flowgram.ai/core": "0.5.
|
|
32
|
+
"@flowgram.ai/utils": "0.5.7",
|
|
33
|
+
"@flowgram.ai/core": "0.5.7"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/lodash-es": "^4.17.12",
|
|
@@ -41,8 +41,8 @@
|
|
|
41
41
|
"tsup": "^8.0.1",
|
|
42
42
|
"typescript": "^5.8.3",
|
|
43
43
|
"vitest": "^3.2.4",
|
|
44
|
-
"@flowgram.ai/
|
|
45
|
-
"@flowgram.ai/
|
|
44
|
+
"@flowgram.ai/eslint-config": "0.5.7",
|
|
45
|
+
"@flowgram.ai/ts-config": "0.5.7"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"react": ">=16.8",
|
package/README.md
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
# 变量引擎
|
|
2
|
-
|
|
3
|
-
## 文件夹结构
|
|
4
|
-
|
|
5
|
-
```
|
|
6
|
-
- ast 可响应AST树实现
|
|
7
|
-
- common 通用AST节点
|
|
8
|
-
- declaration 声明AST节点
|
|
9
|
-
- expression 表达式AST节点
|
|
10
|
-
- type 类型AST节点
|
|
11
|
-
- utils 工具函数
|
|
12
|
-
- ast-node.ts 可响应式AST基类实现
|
|
13
|
-
- ast-registers.ts AST节点注册器
|
|
14
|
-
- scope 作用域实现
|
|
15
|
-
- datas 作用域内部的Data
|
|
16
|
-
- scope-available-data.ts 作用域可用变量
|
|
17
|
-
- scope-output-data.ts 作用域输出变量
|
|
18
|
-
- scope-chain.ts 作用域链抽象实现
|
|
19
|
-
- scope.ts 作用域实体
|
|
20
|
-
- variable-table.ts 变量快速访问表
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
## Case Run Down
|
|
24
|
-
|