@byteluck-fe/model-driven-engine 6.2.0-beta.19 → 6.2.0-beta.21
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 +11 -3
- package/dist/esm/common/DataManager.js +11 -3
- package/dist/esm/common/Engine.js +17 -9
- package/dist/esm/common/Store.js +5 -5
- package/dist/esm/common/checkerValue.js +6 -6
- package/dist/esm/common/proxyState.js +3 -3
- package/dist/esm/plugins/CalcPlugin.js +5 -6
- package/dist/esm/plugins/ControlsEventPlugin.js +11 -3
- package/dist/esm/plugins/LifecycleEventPlugin.js +11 -3
- package/dist/esm/plugins/StylePlugin.js +2 -2
- package/dist/index.umd.js +25 -24
- package/dist/types/common/Engine.d.ts +1 -1
- package/package.json +4 -4
|
@@ -176,7 +176,7 @@ declare class Engine extends Watcher<EventKeys> {
|
|
|
176
176
|
* @param fieldCode 字段code
|
|
177
177
|
*/
|
|
178
178
|
getFieldInstance(dataCode: string, fieldCode: string, rowIndex?: number): RuntimeControl | undefined;
|
|
179
|
-
setFieldInstance(dataCode: string, fieldCode: string, props: string, value: unknown, rowIndex?: number):
|
|
179
|
+
setFieldInstance(dataCode: string, fieldCode: string, props: string, value: unknown, rowIndex?: number): RuntimeControl | undefined;
|
|
180
180
|
getDataBindMapping(): dataBindMappingType;
|
|
181
181
|
getDataBindMapping(dataCode: string): DataBindMappingTypeItem | undefined;
|
|
182
182
|
getDataBindMapping(dataCode: string, fieldCode: string): DataBindMappingFieldItem | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-engine",
|
|
3
|
-
"version": "6.2.0-beta.
|
|
3
|
+
"version": "6.2.0-beta.21",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-core": "6.2.0-beta.
|
|
30
|
-
"@byteluck-fe/model-driven-shared": "6.2.0-beta.
|
|
29
|
+
"@byteluck-fe/model-driven-core": "6.2.0-beta.21",
|
|
30
|
+
"@byteluck-fe/model-driven-shared": "6.2.0-beta.21",
|
|
31
31
|
"@types/mathjs": "^9.4.2",
|
|
32
32
|
"mathjs": "^11.3.3",
|
|
33
33
|
"postcss": "^8.5.6",
|
|
@@ -38,5 +38,5 @@
|
|
|
38
38
|
"@types/postcss-prefix-selector": "^1.16.3",
|
|
39
39
|
"postcss-nested": "^7.0.2"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "150f27fd2794b4b95461cd50ec3de977b98a2c15"
|
|
42
42
|
}
|