@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
40 lines • 1.05 kB
TypeScript
import React from 'react';
import { HotspotProps } from '../../hotspot/interfaces';
import { AnnotationContextProps } from '../interfaces';
interface AnnotationPopoverProps {
title: string;
content: React.ReactNode;
alert: React.ReactNode;
direction: HotspotProps['direction'];
nextButtonEnabled: boolean;
onNextButtonClick: () => void;
onFinish: () => void;
showPreviousButton: boolean;
previousButtonEnabled: boolean;
onPreviousButtonClick: () => void;
taskLocalStepIndex: number;
totalLocalSteps: number;
showFinishButton: boolean;
onDismiss: () => void;
trackRef: React.RefObject<HTMLElement>;
i18nStrings: AnnotationContextProps['i18nStrings'];
}
export declare function AnnotationPopover({
title,
content,
alert,
direction,
taskLocalStepIndex,
totalLocalSteps,
showPreviousButton,
showFinishButton,
onDismiss,
nextButtonEnabled,
onNextButtonClick,
onFinish,
trackRef,
previousButtonEnabled,
onPreviousButtonClick,
i18nStrings
}: AnnotationPopoverProps): JSX.Element;
export {};