@kengic/vue 0.5.14 → 0.5.16

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.
@@ -263,10 +263,6 @@ export declare class VarGridMasterDTO {
263
263
  }
264
264
  /** 变量查找. */
265
265
  export declare class VarLookup {
266
- /** 查询接口地址(Command). */
267
- cmd?: string | null;
268
- /** 查询接口参数(CommandParameter). */
269
- cmd_prm?: string | null;
270
266
  /** 定制级别(CustomLevel). */
271
267
  cust_lvl?: number | null;
272
268
  /** 是否启用(EnableFlag). */
@@ -125,6 +125,8 @@ export declare type IKgVarStoreDefinition = StoreDefinition<'KgVar', IKgVarState
125
125
  getSystemVarProfileDetails(): (formID?: string | null) => Array<VarProfileDetail> | null;
126
126
  getCurrentVarProfileMaster(): (formID?: string | null) => VarProfileMasterDTO | null;
127
127
  getCurrentVarProfileMasterID(): (formID?: string | null) => string | null;
128
+ /** 获取所有的 VarGridConfig. */
129
+ getVarGridConfigMap(): Map<string, VarGridConfig | null>;
128
130
  getVarGridConfig(): (formID?: string | null) => VarGridConfig | null;
129
131
  getVarGridMasters(): (formID?: string | null) => Array<VarGridMasterDTO> | null;
130
132
  getVarGridDetail(): (formID?: string | null, var_nam?: string | null) => VarGridDetail | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.5.14",
3
+ "version": "0.5.16",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "rimraf dist && vue-tsc && vite build --mode development",