ohif-viewer/platform/ui/index.js
Gustavo André Lelis eda99a0bac OHIF-79: Study Browser side panel (#1614)
* Initial code changes for StudyBrowser

* StudyItem component basic strucure

* Adding new icon

* Updates to get StudyItem working

* Small fix on side panel open header

* Adding new icons

* Thumbnail List

* ThumbnailSR WIP

* Thumanil WIP

* Export new components into ohif/ui

* Updates on style

* Update ThumbnailSR style

* Margin updates

* MAke it scrollable

* Make it scrollable

* Style updates

* Fixing tooltip

* Tunning the mock data and testing scenarios

* Update mock data

* make all studies collapsed

* small fix on tooltip

* Removing empty mdx files

* Updating viewer docz page

* Style updates

* Update button font-size

* Fix: Make cancel button only visible on hover

* Fixing callouts

* Fix eslint
2020-05-15 12:49:24 +01:00

53 lines
795 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,
MeasurementTable,
NavBar,
Select,
SegmentationTable,
SidePanel,
StudyBrowser,
StudyItem,
StudyListExpandedRow,
StudyListPagination,
StudyListTable,
Svg,
Table,
TableBody,
TableCell,
TableHead,
TableRow,
ThemeWrapper,
Thumbnail,
ThumbnailSR,
ThumbnailList,
Typography,
} from './src/components';
/** VIEWS */
export { StudyList, Viewer } from './src/views';