ant-design/components/tour/interface.ts
诸岳 53965b88cf
feat: Tour add actionsRender prop (#53067)
* feat: Tour add buttonsRender prop

* chore: Revert unnecessary format modify

* fix(test): Update snapshots
2025-04-29 16:02:50 +08:00

40 lines
1.2 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[];
prefixCls?: string;
current?: number;
indicatorsRender?: (current: number, total: number) => ReactNode;
actionsRender?: TourStepProps['actionsRender'];
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;
actionsRender?: (originNode: ReactNode, info: { 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;
}