UNPKG

@lunit/insight-viewer

Version:

Based on the cornerstone library, it provides several components for handling Dicom images

15 lines (14 loc) 740 B
import { CSSProperties } from 'react'; export declare type ViewerStyleType = 'default' | 'select' | 'hover' | 'outline' | 'hoveredOutline' | 'selectedOutline' | 'highlight' | 'dashLine' | 'extendsArea' | 'selectedExtendsArea'; export declare type ViewerStyle = { [styleType in ViewerStyleType]?: CSSProperties; }; export declare const TEXT_SIZE = 14; export declare const FONT_WIDTH = 600; export declare const LINE_HEIGHT = 1.4; export declare const svgRootStyle: ViewerStyle; export declare const svgWrapperStyle: ViewerStyle; export declare const pointSvgStyle: ViewerStyle; export declare const svgBoxStyle: ViewerStyle; export declare const editPointerStyle: ViewerStyle; export declare const textStyle: ViewerStyle;