@byteluck-fe/model-driven-engine 2.5.6 → 2.5.9-beta.4
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/common/ActionManager.js +3 -3
- package/dist/esm/common/DataManager.js +2 -2
- package/dist/esm/common/Engine.js +48 -47
- package/dist/esm/common/OkWorker.js +8 -8
- package/dist/esm/common/Runtime.js +48 -22
- package/dist/esm/common/Store.js +9 -9
- package/dist/esm/common/checkerValue.js +22 -22
- package/dist/esm/common/index.js +2 -2
- package/dist/esm/common/proxyState.js +38 -34
- package/dist/esm/index.js +3 -3
- package/dist/esm/plugins/CalcPlugin.js +18 -14
- package/dist/esm/plugins/ControlsEventPlugin.js +2 -2
- package/dist/esm/plugins/ES6ModulePlugin.js +6 -6
- package/dist/esm/plugins/LifecycleEventPlugin.js +4 -4
- package/dist/esm/plugins/StylePlugin.js +5 -5
- package/dist/esm/plugins/index.js +5 -5
- package/dist/esm/utils/index.js +1 -1
- package/dist/esm/utils/runtimeUtils.js +3 -3
- package/dist/index.umd.js +8 -8
- package/dist/types/common/Runtime.d.ts +1 -0
- package/package.json +2 -2
|
@@ -10,6 +10,7 @@ export declare class Runtime extends RegisterControls<'Runtime'> {
|
|
|
10
10
|
private _instance;
|
|
11
11
|
private _flatInstances;
|
|
12
12
|
private _instanceMap;
|
|
13
|
+
private _controlParentIdMap;
|
|
13
14
|
constructor(props: RuntimeProps);
|
|
14
15
|
getFlatInstances(): ControlRuntimeInstance<ControlsKeys>[];
|
|
15
16
|
get schema(): any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-engine",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.9-beta.4",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "~18.0.6"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "d820cddfeaf35f0c337db2969f7c4bb5f7381702"
|
|
38
38
|
}
|