@kengic/vue 0.32.21 → 0.32.23

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.
@@ -1,6 +1,6 @@
1
1
  import { IKgRemoveEventListener } from '@kengic/core.core';
2
2
  import { ComputedRef } from 'vue';
3
- import { VarButton, VarButtonConfig, VarChildDetail, VarConfigControl, VarConfigDescription, VarConfigPossibility, VarDda, VarGridConfig, VarGridDetail, VarGridMasterDTO, VarProfileConfig, VarProfileMasterDTO, VarVariable } from '../../api/WMS/models';
3
+ import { VarButton, VarButtonConfig, VarChildDetail, VarConfigControl, VarConfigDescription, VarConfigPossibility, VarDda, VarGridConfig, VarGridDetail, VarGridMasterDTO, VarProfileConfig, VarProfileDetail, VarProfileMasterDTO, VarVariable } from '../../api/WMS/models';
4
4
  import { IKgVarButtonConfigProperties, IKgVarDdaProperties, IKgVarGridConfigProperties, IKgVarProfileConfigProperties, KG__VAR_BUTTON__TYPE } from '../../model';
5
5
  import { IUseKgButton } from '../KgButton';
6
6
  import { IUseKgForm } from '../KgForm';
@@ -40,6 +40,8 @@ export declare type IUseKgVar = {
40
40
  currentVarGridMasteID: ComputedRef<string | null>;
41
41
  /** 当前的「表格视图」. */
42
42
  currentVarGridMaster: ComputedRef<VarGridMasterDTO | null>;
43
+ /** 当前的「查询条件视图明细」列表. */
44
+ currentVarProfileDetailList: ComputedRef<Array<VarProfileDetail> | null>;
43
45
  /** 当前的「表格视图」主键. */
44
46
  currentVarProfileMasterID: ComputedRef<string | null>;
45
47
  /**
@@ -141,6 +143,10 @@ export declare type IUseKgVar = {
141
143
  kgSubmit: IUseKgSubmit;
142
144
  kgTable: IUseKgTable;
143
145
  kgTable02: IUseKgTable02;
146
+ /**
147
+ * 父亲界面.
148
+ */
149
+ kgVar$Parent$$: ComputedRef<IUseKgVar | null>;
144
150
  kgVarConfig: IUseKgVarConfig;
145
151
  /**
146
152
  * 界面层级.
@@ -176,10 +182,6 @@ export declare type IUseKgVar = {
176
182
  * @param isOnce 是否只会触发一次. 默认为 undefined.
177
183
  */
178
184
  onUnmounted(listener: IKgVar$EventListener$onUnmounted, isOnce?: boolean): IKgRemoveEventListener;
179
- /**
180
- * 父亲界面.
181
- */
182
- kgVar$Parent$$: ComputedRef<IUseKgVar | null>;
183
185
  /**
184
186
  * 修改「按钮」的部分属性.
185
187
  *
@@ -105,6 +105,10 @@ export interface UseKgVarStoreGetters {
105
105
  * 和 varName 获取当前 VarProfileMaster 下的某个 VarProfileDetail.
106
106
  */
107
107
  getVarProfileDetail: (fid: string | null | undefined, varName: string | null | undefined) => VarProfileDetail | null;
108
+ /**
109
+ * 获取当前的「查询条件视图明细」列表.
110
+ */
111
+ getVarProfileDetailList: (fid: string | null | undefined) => Array<VarProfileDetail> | null;
108
112
  getVarProfileMasterMap: Record<string, {
109
113
  varProfileMasters: Array<VarProfileMasterDTO> | null;
110
114
  /** 当前选中的 VarProfileMaster ID. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.32.21",
3
+ "version": "0.32.23",
4
4
  "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
5
5
  "engines": {
6
6
  "node": "24.14.1",