@kengic/vue 0.2.2-beta.10 → 0.2.2-beta.11

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.
@@ -119,6 +119,8 @@ export declare class VarGridConfig {
119
119
  aut_load_flg?: number | null;
120
120
  /** 按钮显示样式(ButtonDisplayType). */
121
121
  button_display_type?: string | null;
122
+ /** 接口参数(CommandParameter). */
123
+ cmd_prm?: string | null;
122
124
  /** 界面标识(FormID). */
123
125
  frm_id?: string | null;
124
126
  /** 主键. */
@@ -2,7 +2,9 @@ import { ComputedRef, Ref, UnwrapRef } from 'vue';
2
2
  import { ColumnsType } from 'ant-design-vue/es/table';
3
3
  import { IKgTableRecord } from './index.vm';
4
4
  export declare type IUseColumns = {
5
+ /** 表格的列. */
5
6
  columns: ComputedRef<ColumnsType<IKgTableRecord>>;
7
+ /** 横向滚动宽度. */
6
8
  scrollX: ComputedRef<string>;
7
9
  };
8
10
  export declare function _useColumns(): IUseColumns;
@@ -7,5 +7,5 @@ export declare class KgVarUtil {
7
7
  * @param params JSON 字符串形式的参数.
8
8
  * @return 参数对象.
9
9
  */
10
- static parseActionParameter(params?: string | null): Record<string, any>;
10
+ static parseCommandParameter(params?: string | null): Record<string, any>;
11
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kengic/vue",
3
- "version": "0.2.2-beta.10",
3
+ "version": "0.2.2-beta.11",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build:dev": "rimraf dist && vue-tsc && vite build --mode development",