|
|
|
@ -21,16 +21,15 @@ export declare class Column extends AntdComponent {
|
|
|
|
|
* @type string
|
|
|
|
|
*/
|
|
|
|
|
align?: 'left' | 'right' | 'center';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ellipsize cell content, not working with sorter and filters for now.
|
|
|
|
|
* ellipsize cell content, not working with sorter and filters for now.
|
|
|
|
|
* tableLayout would be fixed when ellipsis is true.
|
|
|
|
|
* @default false
|
|
|
|
|
* @type boolean
|
|
|
|
|
*/
|
|
|
|
|
ellipsis?: boolean;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Span of this column's title
|
|
|
|
|
* @type number
|
|
|
|
@ -42,11 +41,11 @@ export declare class Column extends AntdComponent {
|
|
|
|
|
* @type string
|
|
|
|
|
*/
|
|
|
|
|
dataIndex?: string;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Default filtered values
|
|
|
|
|
* @type string[]
|
|
|
|
|
*/
|
|
|
|
|
* Default filtered values
|
|
|
|
|
* @type string[]
|
|
|
|
|
*/
|
|
|
|
|
defaultFilteredValue?: string[];
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -130,14 +129,14 @@ export declare class Column extends AntdComponent {
|
|
|
|
|
* @type boolean | string
|
|
|
|
|
*/
|
|
|
|
|
sortOrder?: boolean | SortOrder;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* supported sort way, could be 'ascend', 'descend'
|
|
|
|
|
* @default ['ascend', 'descend']
|
|
|
|
|
* @type string[]
|
|
|
|
|
*/
|
|
|
|
|
* supported sort way, could be 'ascend', 'descend'
|
|
|
|
|
* @default ['ascend', 'descend']
|
|
|
|
|
* @type string[]
|
|
|
|
|
*/
|
|
|
|
|
sortDirections?: string[];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Title of this column
|
|
|
|
|
* @type any (string | slot)
|
|
|
|
|