ohif-viewer/platform/ui/index.js
Rodrigo Antinarelli f4b078912a feat: StudyListTable, ExpandedRow, API definitions (#1579)
* feat: StudyListTable Refactor

* feat: StudyListTable + Props Refactor

* fix expanded rows handler

* update and fix study list doc page

* fix date format

* use moment to format date

* expose new components

* fix study list expanded row

* Export and Create doc page for Pagination

* API Definition, Export and Doc page for StudyListTable

* StudyListTableRow

* use real example to mount study list

* move files

* temporary change study list (viewer) structure

* fix studyList

* remove unused files

* remove file

* remove unused package

* PR fixes

* Remove console.dir

Co-authored-by: Gustavo Lelis <galelis@gmail.com>
2020-05-15 12:46:20 +01:00

46 lines
728 B
JavaScript

/** UTILS */
import utils from './src/utils';
export { utils };
/** CONTEXT/HOOKS */
export {
ModalProvider,
ModalConsumer,
useModal,
withModal,
} from './src/contextProviders';
/** COMPONENTS */
export {
Button,
ButtonGroup,
DateRange,
EmptyStudies,
Icon,
IconButton,
Input,
InputDateRange,
InputGroup,
InputLabelWrapper,
InputMultiSelect,
InputText,
Label,
NavBar,
Select,
StudyListExpandedRow,
StudyListPagination,
StudyListTable,
Svg,
Table,
TableBody,
TableCell,
TableHead,
TableRow,
ThemeWrapper,
Typography,
} from './src/components';
/** VIEWS */
export { StudyList } from './src/views';
export { ModalProvider, ModalConsumer, useModal, withModal, utils };