@automateinc/fleet-types 1.0.85-dev.1212174 → 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.
|
@@ -106,20 +106,16 @@ export interface IStructuredContentTableToolbar {
|
|
|
106
106
|
|
|
107
107
|
export type StructuredContentTableSortOrder = "asc" | "desc";
|
|
108
108
|
|
|
109
|
-
export interface
|
|
110
|
-
|
|
111
|
-
|
|
109
|
+
export interface IStructuredContentTableColumnSortConfig {
|
|
110
|
+
sortOrder?: StructuredContentTableSortOrder;
|
|
111
|
+
sortType?: StructuredContentTableSortType;
|
|
112
|
+
sortable?: boolean;
|
|
112
113
|
}
|
|
113
114
|
|
|
114
115
|
export interface IStructuredContentTablePagination {
|
|
115
116
|
pageSize?: number;
|
|
116
117
|
}
|
|
117
118
|
|
|
118
|
-
export interface IStructuredContentTableColumnSortConfig {
|
|
119
|
-
sortType?: StructuredContentTableSortType;
|
|
120
|
-
sortable?: boolean;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
119
|
export interface IStructuredContentTableColumnBase {
|
|
124
120
|
id: string;
|
|
125
121
|
type: StructuredContentTableColumnType;
|
|
@@ -237,7 +233,6 @@ export interface IStructuredContentLinkNode extends IStructuredContentNodeBase {
|
|
|
237
233
|
export interface IStructuredContentTableNode extends IStructuredContentNodeBase {
|
|
238
234
|
config?: {
|
|
239
235
|
columns?: IStructuredContentTableColumn[];
|
|
240
|
-
defaultSort?: IStructuredContentTableSort;
|
|
241
236
|
pagination?: IStructuredContentTablePagination;
|
|
242
237
|
toolbar?: IStructuredContentTableToolbar;
|
|
243
238
|
};
|
package/package.json
CHANGED