Type Alias Props
type Props = {
allowTabFocus?: boolean;
attach?: Action;
container?: TJSScrollContainerData;
gutterStable?: boolean;
keyPropagate?: boolean;
onContextMenu?: (data: { event: KeyboardEvent | PointerEvent }) => void;
padToVisualEdge?: VisualEdgeSides;
scrollLeft?: MinimalWritable<number>;
scrollTop?: MinimalWritable<number>;
styles?: { [key: string]: string };
}
allowTabFocus?: boolean;
attach?: Action;
container?: TJSScrollContainerData;
gutterStable?: boolean;
keyPropagate?: boolean;
onContextMenu?: (data: { event: KeyboardEvent | PointerEvent }) => void;
padToVisualEdge?: VisualEdgeSides;
scrollLeft?: MinimalWritable<number>;
scrollTop?: MinimalWritable<number>;
styles?: { [key: string]: string };
}
Properties
OptionalallowTabFocus
allowTabFocus?: boolean
Optionalattach
External dynamic action to attach to scroll container element.
Optionalcontainer
OptionalgutterStable
gutterStable?: boolean
OptionalkeyPropagate
keyPropagate?: boolean
OptionalonContextMenu
OptionalpadToVisualEdge
When true, the inline styles for padding of the parent element to the scroll container element is adjusted for any visual edge insets / border image applied to the parent element allowing the scroll container to take up the entire visual content space.
OptionalscrollLeft
OptionalscrollTop
Optionalstyles
styles?: { [key: string]: string }
Props type alias for associated component.