You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/components/table-data.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,8 @@ interface TableDataHeader {
38
38
label:string
39
39
/** this property defines whether sort icon should be displayed next to the column header and whether the column header will emit sort event upon clicking on it */
40
40
sortable?:boolean
41
+
/** When provided, determines the intial arrow direction on the column header, if more than one header has this value only the first is applied */
42
+
initialSort?:'asc'|'desc'
41
43
/** allow toggling column visibility */
42
44
hidable?:boolean
43
45
/** when provided, an info icon will be rendered next to the column label, upon hovering on which the tooltip will be revealed */
Copy file name to clipboardExpand all lines: docs/components/table-view.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,8 @@ interface TableViewHeader {
34
34
label:string
35
35
/** this property defines whether sort icon should be displayed next to the column header and whether the column header will emit sort event upon clicking on it */
36
36
sortable?:boolean
37
+
/** When provided, determines the intial arrow direction on the column header, if more than one header has this value only the first is applied */
38
+
initialSort?:'asc'|'desc'
37
39
/** allow toggling column visibility */
38
40
hidable?:boolean
39
41
/** when provided, an info icon will be rendered next to the column label, upon hovering on which the tooltip will be revealed */
/** This property defines whether sort icon should be displayed next to the column header and whether the column header will emit sort event upon clicking on it */
81
81
sortable?: boolean
82
+
/** When provided, determines the intial arrow direction on the column */
83
+
initialSort?: SortColumnOrder
82
84
/** Allow toggling column visibility */
83
85
hidable?: boolean
84
86
/** When provided, an info icon will be rendered next to the column label, upon hovering on which the tooltip will be revealed */
0 commit comments