File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,15 @@ export declare class Column extends AntdComponent {
21
21
* @type string
22
22
*/
23
23
align ?: 'left' | 'right' | 'center' ;
24
+
25
+ /**
26
+ * ellipsize cell content, not working with sorter and filters for now.
27
+ * tableLayout would be fixed when ellipsis is true.
28
+ * @default false
29
+ * @type boolean
30
+ */
31
+ ellipsis ?: boolean ;
32
+
24
33
25
34
/**
26
35
* Span of this column's title
@@ -33,6 +42,12 @@ export declare class Column extends AntdComponent {
33
42
* @type string
34
43
*/
35
44
dataIndex ?: string ;
45
+
46
+ /**
47
+ * Default filtered values
48
+ * @type string[]
49
+ */
50
+ defaultFilteredValue ?: string [ ] ;
36
51
37
52
/**
38
53
* Default order of sorted values: 'ascend' 'descend' null
@@ -115,7 +130,14 @@ export declare class Column extends AntdComponent {
115
130
* @type boolean | string
116
131
*/
117
132
sortOrder ?: boolean | SortOrder ;
118
-
133
+
134
+ /**
135
+ * supported sort way, could be 'ascend', 'descend'
136
+ * @default ['ascend', 'descend']
137
+ * @type string[]
138
+ */
139
+ sortDirections ?: string [ ] ;
140
+
119
141
/**
120
142
* Title of this column
121
143
* @type any (string | slot)
You can’t perform that action at this time.
0 commit comments