@automateinc/fleet-types 1.0.85-dev.573a027 → 1.0.85-dev.711aef5
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.
|
@@ -104,15 +104,18 @@ export interface IStructuredContentTableToolbar {
|
|
|
104
104
|
search?: boolean;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
export
|
|
108
|
-
pageSize?: number;
|
|
109
|
-
}
|
|
107
|
+
export type StructuredContentTableSortOrder = "asc" | "desc";
|
|
110
108
|
|
|
111
109
|
export interface IStructuredContentTableColumnSortConfig {
|
|
110
|
+
sortOrder?: StructuredContentTableSortOrder;
|
|
112
111
|
sortType?: StructuredContentTableSortType;
|
|
113
112
|
sortable?: boolean;
|
|
114
113
|
}
|
|
115
114
|
|
|
115
|
+
export interface IStructuredContentTablePagination {
|
|
116
|
+
pageSize?: number;
|
|
117
|
+
}
|
|
118
|
+
|
|
116
119
|
export interface IStructuredContentTableColumnBase {
|
|
117
120
|
id: string;
|
|
118
121
|
type: StructuredContentTableColumnType;
|
package/package.json
CHANGED