| 48 | const BuildLogsSnack = lazy(() => import("@src/components/TableModals/CloudLogsModal/BuildLogs/BuildLogsSnack" /* webpackChunkName: "TableModals-BuildLogsSnack" */)); |
| 49 | |
| 50 | export interface ITablePageProps { |
| 51 | /** |
| 52 | * Disable modals on this table when a sub-table is open and it’s listening |
| 53 | * to URL state |
| 54 | */ |
| 55 | disableModals?: boolean; |
| 56 | /** Disable side drawer */ |
| 57 | disableSideDrawer?: boolean; |
| 58 | /** list of table tools to be disabled */ |
| 59 | disabledTools?: TableToolsType; |
| 60 | /** If true shows checkbox to select rows */ |
| 61 | enableRowSelection?: boolean; |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * TablePage renders all the UI for the table. |
nothing calls this directly
no outgoing calls
no test coverage detected