@byteluck-fe/model-driven-engine 2.5.2 → 2.5.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/Engine.js +56 -25
- package/dist/esm/common/Store.js +10 -0
- package/dist/index.umd.js +5 -5
- package/dist/types/common/Engine.d.ts +2 -1
- package/package.json +4 -4
|
@@ -68,6 +68,7 @@ declare class Engine extends Watcher<EventKeys> {
|
|
|
68
68
|
private _proxyStateBeforeSetCallback;
|
|
69
69
|
private _proxyStateCallback;
|
|
70
70
|
private _handlerArrayUpdate;
|
|
71
|
+
private _handlerSubtableUpdateUid;
|
|
71
72
|
private _handlerObjectUpdate;
|
|
72
73
|
private applyPlugins;
|
|
73
74
|
listControlCreateRow<RowType extends ControlsKeys>(instance: RuntimeListControl, rowType: RowType): NonNullable<InstanceType<import("@byteluck-fe/model-driven-core").ControlsConstructor<RowType, "Runtime">>> | undefined;
|
|
@@ -105,7 +106,7 @@ declare class Engine extends Watcher<EventKeys> {
|
|
|
105
106
|
* @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
|
|
106
107
|
* */
|
|
107
108
|
getField(dataCode: string, fieldCode?: string, rowIndex?: number): unknown;
|
|
108
|
-
getData(dataCode: string):
|
|
109
|
+
getData(dataCode: string): any;
|
|
109
110
|
/**
|
|
110
111
|
* 通过dataCode和fieldCode来设置控件的值
|
|
111
112
|
* @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
|
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.4",
|
|
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.5.
|
|
30
|
-
"@byteluck-fe/model-driven-shared": "2.5.
|
|
29
|
+
"@byteluck-fe/model-driven-core": "2.5.3",
|
|
30
|
+
"@byteluck-fe/model-driven-shared": "2.5.3",
|
|
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": "d83f37ec94492befc3fc019d1e071fdff9cef686"
|
|
38
38
|
}
|