@automateinc/fleet-types 1.0.81-dev.3bc0cf4 → 1.0.81-dev.cc51323

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.
@@ -26,6 +26,10 @@ export interface IStructuredContentTableToolbar {
26
26
  search?: boolean;
27
27
  }
28
28
 
29
+ export interface IStructuredContentTablePagination {
30
+ pageSize?: number;
31
+ }
32
+
29
33
  export interface IStructuredContentTableColumn {
30
34
  id: string;
31
35
  name: string;
@@ -77,6 +81,7 @@ export interface IStructuredContentLinkNode extends IStructuredContentNodeBase {
77
81
  export interface IStructuredContentTableNode extends IStructuredContentNodeBase {
78
82
  config?: {
79
83
  columns?: IStructuredContentTableColumn[];
84
+ pagination?: IStructuredContentTablePagination;
80
85
  toolbar?: IStructuredContentTableToolbar;
81
86
  };
82
87
  type: "TABLE";
package/package.json CHANGED
@@ -52,5 +52,5 @@
52
52
  "test": "echo \"Error: no test specified\" && exit 1"
53
53
  },
54
54
  "types": "dist/types/index.d.ts",
55
- "version": "1.0.81-dev.3bc0cf4"
55
+ "version": "1.0.81-dev.cc51323"
56
56
  }