init
This commit is contained in:
144
platform/ui/src/index.js
Normal file
144
platform/ui/src/index.js
Normal file
@@ -0,0 +1,144 @@
|
||||
import * as Types from './types';
|
||||
|
||||
export {
|
||||
useCine,
|
||||
CineProvider,
|
||||
DialogProvider,
|
||||
useDialog,
|
||||
withDialog,
|
||||
DragAndDropProvider,
|
||||
ModalProvider,
|
||||
ModalConsumer,
|
||||
useModal,
|
||||
withModal,
|
||||
ImageViewerContext,
|
||||
ImageViewerProvider,
|
||||
useImageViewer,
|
||||
SnackbarProvider,
|
||||
useSnackbar,
|
||||
withSnackbar,
|
||||
ViewportDialogProvider,
|
||||
useViewportDialog,
|
||||
ViewportGridContext,
|
||||
ViewportGridProvider,
|
||||
useViewportGrid,
|
||||
UserAuthenticationContext,
|
||||
UserAuthenticationProvider,
|
||||
useUserAuthentication,
|
||||
useToolbox,
|
||||
ToolboxProvider,
|
||||
} from './contextProviders';
|
||||
|
||||
/** COMPONENTS */
|
||||
export {
|
||||
ActionButtons,
|
||||
AboutModal,
|
||||
AdvancedToolbox,
|
||||
AllInOneMenu,
|
||||
HotkeyField,
|
||||
Header,
|
||||
UserPreferences,
|
||||
HotkeysPreferences,
|
||||
Button,
|
||||
ButtonGroup,
|
||||
ButtonEnums,
|
||||
ContextMenu,
|
||||
CheckBox,
|
||||
CinePlayer,
|
||||
DateRange,
|
||||
Dialog,
|
||||
Dropdown,
|
||||
EmptyStudies,
|
||||
ErrorBoundary,
|
||||
ExpandableToolbarButton,
|
||||
LineChart,
|
||||
ListMenu,
|
||||
Icon,
|
||||
IconButton,
|
||||
Input,
|
||||
InputRange,
|
||||
InputDoubleRange,
|
||||
InputNumber,
|
||||
InputDateRange,
|
||||
InputFilterText,
|
||||
InputGroup,
|
||||
InputLabelWrapper,
|
||||
InputMultiSelect,
|
||||
InputText,
|
||||
Label,
|
||||
LayoutSelector,
|
||||
LegacyButton,
|
||||
LegacyButtonGroup,
|
||||
LegacyCinePlayer,
|
||||
LegacySidePanel,
|
||||
LegacyViewportActionBar,
|
||||
LoadingIndicatorProgress,
|
||||
LoadingIndicatorTotalPercent,
|
||||
MeasurementTable,
|
||||
Modal,
|
||||
NavBar,
|
||||
Notification,
|
||||
PanelSection,
|
||||
ProgressLoadingBar,
|
||||
Select,
|
||||
SegmentationTable,
|
||||
SegmentationGroupTable,
|
||||
SegmentationGroupTableExpanded,
|
||||
SidePanel,
|
||||
SplitButton,
|
||||
ProgressDropdown,
|
||||
LegacySplitButton,
|
||||
StudyBrowser,
|
||||
StudyItem,
|
||||
StudyListExpandedRow,
|
||||
StudyListFilter,
|
||||
StudyListPagination,
|
||||
StudyListTable,
|
||||
StudyListTableRow,
|
||||
StudySummary,
|
||||
Svg,
|
||||
SwitchButton,
|
||||
SwitchLabelLocation,
|
||||
Table,
|
||||
TableBody,
|
||||
TableCell,
|
||||
TableHead,
|
||||
TableRow,
|
||||
ThemeWrapper,
|
||||
Thumbnail,
|
||||
ThumbnailNoImage,
|
||||
ThumbnailTracked,
|
||||
ThumbnailList,
|
||||
ToolbarButton,
|
||||
Tooltip,
|
||||
TooltipClipboard,
|
||||
Typography,
|
||||
Viewport,
|
||||
ViewportActionArrows,
|
||||
ViewportActionBar,
|
||||
ViewportActionCorners,
|
||||
ViewportActionCornersLocations,
|
||||
ViewportDownloadForm,
|
||||
ViewportGrid,
|
||||
ViewportPane,
|
||||
WindowLevel,
|
||||
WindowLevelMenuItem,
|
||||
ImageScrollbar,
|
||||
ViewportOverlay,
|
||||
MeasurementItem,
|
||||
LabellingFlow,
|
||||
HeaderPatientInfo,
|
||||
ToolSettings,
|
||||
Toolbox,
|
||||
InvestigationalUseDialog,
|
||||
LayoutPreset,
|
||||
StudyBrowserSort,
|
||||
} from './components';
|
||||
|
||||
export { useSessionStorage } from './hooks';
|
||||
|
||||
/** These are mostly used in the docs */
|
||||
export { getIcon, ICONS, addIcon } from './components/Icon/getIcon';
|
||||
export { BackgroundColor } from './pages/Colors/BackgroundColor';
|
||||
export { ModalComponent } from './contextProviders/ModalComponent';
|
||||
export { Types };
|
||||
Reference in New Issue
Block a user