ohif-viewer/platform/ui/src/components/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

56 lines
1.4 KiB
JavaScript

import Button from './Button';
import ButtonGroup from './ButtonGroup';
import DateRange from './DateRange';
import EmptyStudies from './EmptyStudies';
import Icon from './Icon';
import IconButton from './IconButton';
import Input from './Input';
import InputDateRange from './InputDateRange';
import InputGroup from './InputGroup';
import InputLabelWrapper from './InputLabelWrapper';
import InputMultiSelect from './InputMultiSelect';
import InputText from './InputText';
import Label from './Label';
import NavBar from './NavBar';
import Select from './Select';
import Svg from './Svg';
import StudyListExpandedRow from './StudyListExpandedRow';
import StudyListPagination from './StudyListPagination';
import StudyListTable from './StudyListTable';
import Table from './Table';
import TableBody from './TableBody';
import TableCell from './TableCell';
import TableHead from './TableHead';
import TableRow from './TableRow';
import ThemeWrapper from './ThemeWrapper/';
import Typography from './Typography';
export {
Button,
ButtonGroup,
DateRange,
EmptyStudies,
Icon,
IconButton,
Input,
InputDateRange,
InputGroup,
InputLabelWrapper,
InputMultiSelect,
InputText,
Label,
NavBar,
Select,
Svg,
StudyListExpandedRow,
StudyListPagination,
StudyListTable,
Table,
TableBody,
TableCell,
TableHead,
TableRow,
ThemeWrapper,
Typography,
};