@atlaskit/inline-dialog
Version:
An inline dialog is a pop-up container for small amounts of information. It can also contain controls.
17 lines (16 loc) • 505 B
TypeScript
/**
* @jsxRuntime classic
* @jsx jsx
*/
import { type FC } from 'react';
import type { InlineDialogProps } from './types';
/**
* Top-layer implementation of InlineDialog.
*
* Replaces the legacy rendering pipeline (Popper.js + Portal + @atlaskit/layering)
* with the native Popover API + CSS Anchor Positioning via @atlaskit/top-layer.
*
* Gated behind the `platform-dst-top-layer` feature flag.
*/
declare const InlineDialogTopLayer: FC<InlineDialogProps>;
export default InlineDialogTopLayer;