@a2simcode/ui 0.0.59 → 0.0.60
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,9 +1,5 @@
|
|
|
1
1
|
import { BaseSchemaConfig, BaseCompConfig } from '../../comp/src/interface';
|
|
2
2
|
export interface TableColumnConfig {
|
|
3
|
-
/**
|
|
4
|
-
* @zh 列的标题
|
|
5
|
-
*/
|
|
6
|
-
label: string;
|
|
7
3
|
/**
|
|
8
4
|
* @zh 列的宽度
|
|
9
5
|
*/
|
|
@@ -82,7 +78,12 @@ export interface ColumnSchemaConfig extends BaseSchemaConfig {
|
|
|
82
78
|
/**
|
|
83
79
|
* @zh 列配置
|
|
84
80
|
*/
|
|
85
|
-
config: TableColumnCompConfig
|
|
81
|
+
config: TableColumnCompConfig & {
|
|
82
|
+
/**
|
|
83
|
+
* @zh 列的标题
|
|
84
|
+
*/
|
|
85
|
+
label: string;
|
|
86
|
+
};
|
|
86
87
|
/**
|
|
87
88
|
* @zh 子集
|
|
88
89
|
*/
|