pull/1979/head
tangjinzhou 2020-03-28 17:09:56 +08:00
commit fd87f77d7b
2 changed files with 24 additions and 2 deletions

View File

@ -160,7 +160,7 @@
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.6.11",
"vue-template-compiler": "^2.6.11",
"vue-virtual-scroller": "^0.12.0",
"vue-virtual-scroller": "^1.0.0",
"vuex": "^3.1.0",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",

View File

@ -22,6 +22,15 @@ export declare class Column extends AntdComponent {
*/
align?: 'left' | 'right' | 'center';
/**
* 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
@ -34,6 +43,12 @@ export declare class Column extends AntdComponent {
*/
dataIndex?: string;
/**
* Default filtered values
* @type string[]
*/
defaultFilteredValue?: string[];
/**
* Default order of sorted values: 'ascend' 'descend' null
* @type string
@ -116,6 +131,13 @@ export declare class Column extends AntdComponent {
*/
sortOrder?: boolean | SortOrder;
/**
* supported sort way, could be 'ascend', 'descend'
* @default ['ascend', 'descend']
* @type string[]
*/
sortDirections?: string[];
/**
* Title of this column
* @type any (string | slot)