Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 142x | // Import components for StudyList namespace
import {
defaultColumns,
textColumn,
COLUMN_IDS,
FILTERABLE_COLUMN_IDS,
TEXT_FILTER_COLUMN_IDS,
} from './columns/defaultColumns';
import { SettingsPopover } from './components/SettingsPopover';
import { PreviewContainer } from './components/PreviewContainer';
import { PreviewHeader } from './components/PreviewHeader';
import { Layout } from './components/Layout';
import { OpenPreviewButton, ClosePreviewButton } from './components/PreviewToggleButton';
import { PreviewContent } from './components/PreviewContent';
import { WorkflowsProvider } from './components/WorkflowsProvider';
// Types
export * from './types/types';
// Column ID constants
export { COLUMN_IDS, FILTERABLE_COLUMN_IDS, TEXT_FILTER_COLUMN_IDS };
// StudyList compound component namespace
type StudyListNamespace = typeof Layout & {
Table: typeof Layout.Table;
Preview: typeof Layout.Preview;
SettingsPopover: typeof SettingsPopover;
PreviewContainer: typeof PreviewContainer;
PreviewHeader: typeof PreviewHeader;
PreviewContent: typeof PreviewContent;
WorkflowsProvider: typeof WorkflowsProvider;
OpenPreviewButton: typeof OpenPreviewButton;
ClosePreviewButton: typeof ClosePreviewButton;
defaultColumns: typeof defaultColumns;
textColumn: typeof textColumn;
};
export const StudyList: StudyListNamespace = Object.assign(Layout, {
Table: Layout.Table,
Preview: Layout.Preview,
SettingsPopover,
PreviewContainer,
PreviewHeader,
PreviewContent,
WorkflowsProvider,
OpenPreviewButton,
ClosePreviewButton,
defaultColumns,
textColumn,
});
|