UNPKG

@enact/sandstone

Version:

Large-screen/TV support library for Enact, containing a variety of UI components.

230 lines (220 loc) 9.05 kB
// Type definitions for sandstone/TooltipDecorator import * as React from "react"; type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; type Merge<M, N> = Omit<M, Extract<keyof M, keyof N>> & N; export interface TooltipDecoratorConfig extends Object { /** * The boundary around the screen which the tooltip should never cross, typically involving flipping to an alternate orientation or adjusting its offset to remain on screen. The default of 48 is derived from a standard 24px screen-keepout size plus the standard Spotlight-outset (24px) margin/padding value which keeps elements and text aligned inside a . Note: This value will be scaled according to the resolution. */ screenEdgeKeepout?: number; /** * The name of the property which will receive the tooltip node. * * By default, `TooltipDecorator` will add a new child to the wrapped component, following any other children passed in. If a component needs to, it can specify another property to receive the tooltip and the `children` property will not be modified. */ tooltipDestinationProp?: string; } export interface TooltipDecoratorProps { /** * Disables the component but does not affect tooltip operation. */ disabled?: boolean; /** * Time to wait (in milliseconds) before showing tooltip on hover. */ tooltipDelay?: number; /** * Allows the tooltip to marquee. * * Specifying a restrects the marquee to that size. */ tooltipMarquee?: boolean; /** * Position of the tooltip with respect to the wrapped component. * _Value_ _Tooltip Direction_ `'above'` Above component, flowing to the right `'above center'` Above component, centered `'above left'` Above component, flowing to the left `'above right'` Above component, flowing to the right `'below'` Below component, flowing to the right `'below center'` Below component, centered `'below left'` Below component, flowing to the left `'below right'` Below component, flowing to the right `'left bottom'` Left of the component, contents at the bottom `'left middle'` Left of the component, contents middle aligned `'left top'` Left of the component, contents at the top `'right bottom'` Right of the component, contents at the bottom `'right middle'` Right of the component, contents middle aligned `'right top'` Right of the component, contents at the top * `TooltipDecorator` attempts to choose the best direction to meet layout and language requirements. Left and right directions will reverse for RTL languages. Additionally, the tooltip will reverse direction if it will prevent overflowing off the viewport * * For `type="balloon"` , the default is `"top right"` For `type="transparent"` , the default is `"bottom center"` */ tooltipPosition?: | "above" | "above center" | "above left" | "above right" | "below" | "below center" | "below left" | "below right" | "left bottom" | "left middle" | "left top" | "right bottom" | "right middle" | "right top"; /** * Properties to be passed to tooltip component. */ tooltipProps?: object; /** * Positions the tooltip relative to its container. * * Determines whether your tooltip should position itself relative to its container or relative to the screen (absolute positioning on the floating layer). When setting to `true` , to enable relative positioning, it may be important to specify the `tooltipDestinationProp` key in this HoC's config object. A relatively positioned Tooltip for a `Button` , for example, must be placed in the `decoration` prop. * * It may be necessary to assign the CSS rule `position` to the containing element so relatively positioned Tooltip has a frame to "stick to" the edge of. * * Anchoring points can be visualized as follows: * ``` ┌───◎───┐ ◎ ◎ └───◎───┘ ``` */ tooltipRelative?: boolean; /** * Tooltip content. */ tooltipText?: string | React.ReactNode; /** * Type of tooltip. * _Value_ _Tooltip Appearance_ `'balloon'` Tooltip with a border, background and arrow to the activator `'transparent'` Text only without any of the decorations above */ tooltipType?: "balloon" | "transparent"; /** * The interval (in milliseconds) to recheck the math for a currently showing tooltip's positioning and orientation. Useful if your anchor element moves. */ tooltipUpdateDelay?: number; /** * The width of tooltip content. * * Value expects a number of pixels, which will be automatically scaled to the appropriate size given the current screen resolution, or a string value containing a measurement and a valid CSS unit included. If the content goes over the given width, it will automatically wrap, or marquee if `marquee` is enabled. * * When `null` , content will auto-size and not wrap. If `tooltipMarquee` is also enabled, marqueeing will begin when the width is greater than the default (theme specified) width. */ tooltipWidth?: number | string; } export function TooltipDecorator<P>( config: TooltipDecoratorConfig, Component: React.ComponentType<P> | string, ): React.ComponentType<P & TooltipDecoratorProps>; export function TooltipDecorator<P>( Component: React.ComponentType<P> | string, ): React.ComponentType<P & TooltipDecoratorProps>; export interface TooltipBaseProps { /** * The node to be displayed as the main content of the tooltip. */ children: React.ReactNode; /** * Position of tooltip arrow in relation to the activator. * * Note that `'left'` , `'center'` , `'right'` are applicable when direction is in vertical orientation (i.e. `'above'` , `'below'` ), and `'top'` , `'middle'` , and `'bottom'` are applicable when direction is in horizontal orientation (i.e. `'left'` , `'right'` ) * * For `type="balloon"` , the default is `"right"` For `type="transparent"` , the default is `"center"` (The arrow will not be visible) */ arrowAnchor?: "left" | "center" | "right" | "top" | "middle" | "bottom"; /** * Customizes the component by mapping the supplied collection of CSS class names to the corresponding internal elements and states of this component. * * The following classes are supported: * * `tooltip` - The root component class * * `tooltipLabel` - Applied the label node */ css?: object; /** * Direction of label in relation to the activator. * * For `type="balloon"` , the default is `"above"` For `type="transparent"` , the default is `"below"` */ direction?: "above" | "below" | "left" | "right"; /** * A value representing the amount to offset the label portion of the tooltip. * * In a "center" aligned tooltip, the label may be desirable to offset to one side or the other. This prop accepts a value between -0.5 and 0.5 (representing 50% to the left or right). This defaults to 0 offset (centered). It also automatically caps the value so it never positions the tooltip label past the anchored arrow. If the tooltip label or arrow has non-rectangular geometry (rounded corners, a wide tail, etc), you'll need to manually account for that in your provided offset value. */ labelOffset?: number; /** * Allows the tooltip to marquee. * * Specifying a restrects the marquee to that size. */ marquee?: boolean; /** * Style object for tooltip position. */ position?: object; /** * Anchors the tooltip relative to its container. * * Reconfigures the component to anchor itself to the designated edge of its container. When this is not specified, the implication is that the component is "absolutely" positioned, relative to the viewport, rather than its parent layer. */ relative?: boolean; /** * Called when the tooltip mounts/unmounts, giving a reference to the DOM. */ tooltipRef?: object | Function; /** * Type of tooltip. * _Value_ _Tooltip Appearance_ `'balloon'` Tooltip with a border, background and arrow to the activator `'transparent'` Text only without any of the decorations above */ type?: "balloon" | "transparent"; /** * The width of tooltip content. * * Value expects a number of pixels, which will be automatically scaled to the appropriate size given the current screen resolution, or a string value containing a measurement and a valid CSS unit included. If the content goes over the given width, it will automatically wrap, or marquee if `marquee` is enabled. * * When `null` , content will auto-size and not wrap. If `marquee` is also enabled, marqueeing will begin when the width is greater than the default (theme specified) width. */ width?: number | string; } /** * A stateless tooltip component with Sandstone styling applied. */ export class TooltipBase extends React.Component< Merge<React.HTMLProps<HTMLElement>, TooltipBaseProps> > {} export interface TooltipProps {} /** * A tooltip component with Sandstone styling applied. */ export class Tooltip extends React.Component< Merge<React.HTMLProps<HTMLElement>, TooltipProps> > {} export default TooltipDecorator;