@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.
@@ -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): boolean;
178
+ inList(controlId: string): undefined;
179
179
  }
180
180
  export { Engine, EventPayload, SchemaEventPayload, EngineProps };
@@ -35,6 +35,7 @@ declare class Store {
35
35
  state: StatesType;
36
36
  dataBindMapping: dataBindMappingType;
37
37
  controlIdMapping: controlIdMappingType;
38
+ readonly defaultState: StatesType;
38
39
  constructor(props: StoreProps);
39
40
  /**
40
41
  * 使用该方法仅改变数据,不会表单触发事件。明细表可全量赋值也可根据rowIndex进行单独设置
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-engine",
3
- "version": "2.6.0-alpha.8",
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.6.0-alpha.8",
30
- "@byteluck-fe/model-driven-shared": "2.6.0-alpha.8",
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": "c5d5b083b6ddcef1b76656ed36bb92632d718947"
37
+ "gitHead": "1f71ece061d5febd6e6d9809b2ee8d35aa74c41f"
38
38
  }