ant-design/components/tour/interface.ts
二货爱吃白萝卜 54c5721f48
chore: bump trigger to move click to mouseDown (#47775)
* chore: bump trigger

* chore: bump trigger

* chore: bump trigger

* chore: bump trigger

* chore: fix logic

* fix: context tour config

* test: coverage
2024-03-08 21:31:27 +08:00

39 lines
1.1 KiB
TypeScript

import type { ReactNode } from 'react';
import type {
TourProps as RCTourProps,
TourStepProps as RCTourStepProps,
} from '@rc-component/tour';
export interface TourProps extends Omit<RCTourProps, 'renderPanel'> {
steps?: TourStepProps[];
className?: string;
prefixCls?: string;
current?: number;
indicatorsRender?: (current: number, total: number) => ReactNode;
type?: 'default' | 'primary'; // default type, affects the background color and text color
}
export interface TourStepProps extends RCTourStepProps {
cover?: ReactNode; // Display pictures or videos
nextButtonProps?: {
children?: ReactNode;
onClick?: () => void;
className?: string;
style?: React.CSSProperties;
};
prevButtonProps?: {
children?: ReactNode;
onClick?: () => void;
className?: string;
style?: React.CSSProperties;
};
indicatorsRender?: (current: number, total: number) => ReactNode;
type?: 'default' | 'primary'; // default type, affects the background color and text color
}
export interface TourLocale {
Next: string;
Previous: string;
Finish: string;
}