Type aliases
ImageProps
ImageProps: Omit<DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>, "height" | "width"> & { height?: string | number; width?: string | number }
InputType
InputType: { mouse: "mouse"; touch: "touch" }
Type declaration
mouse: "mouse"
touch: "touch"
Interactions
Interactions: { click: "click"; doubleTap: "double_tap"; hover: "hover"; press: "press"; tap: "tap"; touch: "touch" }
Type declaration
click: "click"
doubleTap: "double_tap"
hover: "hover"
press: "press"
tap: "tap"
touch: "touch"
MagnifiedImagePosition
MagnifiedImagePosition: Placement | "over"
MagnifiedImageProps
MagnifiedImageProps: DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> & { height: number; width: number }
Point
Point: { x: number; y: number }
PortalProps
Portal
Props
: Omit<Partial<Options>, "modifiers" | "placement"> & { className
?: string; dataTestId
?: string; horizontalOffset
?: number; id
?: string; modifiers
?: Modifier<any, any>[]; placement
?: MagnifiedImagePosition; style
?: CSSProperties; verticalOffset
?: number }