@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;
|