UNPKG

@base-ui/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

38 lines 1.29 kB
import * as React from 'react'; import type { Align, Side } from "../../utils/useAnchorPositioning.js"; import type { BaseUIComponentProps } from "../../internals/types.js"; import type { TransitionStatus } from "../../internals/useTransitionStatus.js"; /** * A container for the preview card contents. * Renders a `<div>` element. * * Documentation: [Base UI Preview Card](https://base-ui.com/react/components/preview-card) */ export declare const PreviewCardPopup: React.ForwardRefExoticComponent<Omit<PreviewCardPopupProps, "ref"> & React.RefAttributes<HTMLDivElement>>; export interface PreviewCardPopupState { /** * Whether the preview card is currently open. */ open: boolean; /** * The side of the anchor the component is placed on. */ side: Side; /** * The alignment of the component relative to the anchor. */ align: Align; /** * Whether transitions should be skipped. */ instant: 'dismiss' | 'focus' | undefined; /** * The transition status of the component. */ transitionStatus: TransitionStatus; } export interface PreviewCardPopupProps extends BaseUIComponentProps<'div', PreviewCardPopupState> {} export declare namespace PreviewCardPopup { type State = PreviewCardPopupState; type Props = PreviewCardPopupProps; }