@byteluck-fe/model-driven-engine 2.6.0-alpha.8 → 2.7.0-alpha.0
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/Engine.js +97 -87
- package/dist/esm/common/Store.js +25 -4
- package/dist/esm/plugins/CalcPlugin.js +10 -6
- package/dist/esm/utils/runtimeUtils.js +1 -1
- package/dist/index.umd.js +8 -8
- package/dist/types/common/Engine.d.ts +1 -1
- package/dist/types/common/Store.d.ts +1 -0
- package/package.json +4 -4
|
@@ -175,6 +175,6 @@ declare class Engine extends Watcher<EventKeys> {
|
|
|
175
175
|
getInstanceInSubtableHeader<T extends ControlsKeys>(instance: ControlRuntimeInstance<T> | RuntimeControl): ControlRuntimeInstance<T> | undefined;
|
|
176
176
|
setControlConfig(...args: Parameters<Runtime['registerControlConfig']>): Runtime;
|
|
177
177
|
getControlConfig(control: ControlsKeys): Readonly<Record<string, unknown>> | undefined;
|
|
178
|
-
inList(controlId: string):
|
|
178
|
+
inList(controlId: string): undefined;
|
|
179
179
|
}
|
|
180
180
|
export { Engine, EventPayload, SchemaEventPayload, EngineProps };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-engine",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0-alpha.0",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,13 +26,13 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-core": "2.
|
|
30
|
-
"@byteluck-fe/model-driven-shared": "2.
|
|
29
|
+
"@byteluck-fe/model-driven-core": "2.7.0-alpha.0",
|
|
30
|
+
"@byteluck-fe/model-driven-shared": "2.7.0-alpha.0",
|
|
31
31
|
"@types/mathjs": "^9.4.2",
|
|
32
32
|
"mathjs": "^11.3.3"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/node": "~18.0.6"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "1f71ece061d5febd6e6d9809b2ee8d35aa74c41f"
|
|
38
38
|
}
|