@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
31 lines • 768 B
TypeScript
import { Ace } from 'ace-builds';
import { PaneStatus } from './util';
interface PaneProps {
id: string;
paneStatus: PaneStatus;
visible: boolean;
annotations: Ace.Annotation[];
highlighted?: Ace.Annotation;
cursorPositionLabel?: (row: number, column: number) => string;
closeButtonAriaLabel?: string;
handleAriaLabel?: string;
handleTooltipText?: string;
onClose: () => void;
onAnnotationClick: (annotation: Ace.Annotation) => void;
onAnnotationClear: () => void;
}
export declare const Pane: ({
id,
paneStatus,
visible,
annotations,
highlighted,
onClose,
onAnnotationClick,
onAnnotationClear,
cursorPositionLabel,
closeButtonAriaLabel,
handleAriaLabel,
handleTooltipText
}: PaneProps) => JSX.Element | null;
export {};