@sito/dashboard 0.0.33 → 0.0.34
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.
|
@@ -3,11 +3,11 @@ import { Action } from '../types';
|
|
|
3
3
|
import { FilterTypes, SortOrder } from '../../../lib';
|
|
4
4
|
export type ColumnType = {
|
|
5
5
|
key: string;
|
|
6
|
-
label
|
|
6
|
+
label?: string;
|
|
7
7
|
/** if the column can be sorted */
|
|
8
8
|
sortable?: boolean;
|
|
9
9
|
/** only works if sortable has value true */
|
|
10
|
-
sortOptions
|
|
10
|
+
sortOptions?: {
|
|
11
11
|
icons: {
|
|
12
12
|
className: string;
|
|
13
13
|
asc: string;
|