@kengic/vue 0.25.2 → 0.25.3-beta.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -112,8 +112,6 @@ export declare type IUseKgVar = {
112
112
  }): Promise<void>;
113
113
  /** 状态数据. */
114
114
  store: IKgVarStore;
115
- /** 系统的 VarGridDetail 列表. */
116
- systemVarGridDetails: ComputedRef<ReturnType<IKgVarStore['getSystemVarGridDetails']>>;
117
115
  /**
118
116
  * 翻译变量. 响应式的.
119
117
  *
@@ -90,14 +90,6 @@ export interface IUseKgVarStoreGetters {
90
90
  */
91
91
  getLevel(): (formID: string | null | undefined) => number;
92
92
  getParent(): (formID: string | null | undefined) => IUseKgVar | null;
93
- /**
94
- * 获取系统的 VarGridDetail 列表, 即 customLevel 为 0 的 VarGridMaster 下面的所有 VarGridDetail.
95
- */
96
- getSystemVarGridDetails(): (formID: string | null | undefined) => Array<VarGridDetail> | null;
97
- /**
98
- * 获取系统的 VarProfileDetail 列表, 即 customLevel 为 0 的 VarProfileMaster 下面的所有 VarProfileDetail.
99
- */
100
- getSystemVarProfileDetails(): (formID: string | null | undefined) => Array<VarProfileDetail> | null;
101
93
  /**
102
94
  * 和 var_nam 获取 VarButton.
103
95
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.25.2",
3
+ "version": "0.25.3-beta.0",
4
4
  "scripts": {
5
5
  "build": "npm run switch-node-version && rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "npm run switch-node-version && rimraf dist && vue-tsc && vite build --mode development",