You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
922 B
28 lines
922 B
import type { ReactNode } from 'react';
|
|
import type {
|
|
TourProps as RCTourProps,
|
|
TourStepProps as RCTourStepProps,
|
|
} from '@rc-component/tour';
|
|
|
|
export type TourProps = Omit<RCTourProps, 'renderPanel'> & {
|
|
steps?: TourStepProps[];
|
|
className?: string;
|
|
prefixCls?: string;
|
|
current?: number;
|
|
stepRender?: (current: number, total: number) => ReactNode;
|
|
type?: 'default' | 'primary'; // default 类型,影响底色与文字颜色
|
|
};
|
|
|
|
export interface TourStepProps extends RCTourStepProps {
|
|
cover?: ReactNode; // 展示的图片或者视频
|
|
nextButtonProps?: { children?: ReactNode; onClick?: () => void };
|
|
prevButtonProps?: { children?: ReactNode; onClick?: () => void };
|
|
stepRender?: (current: number, total: number) => ReactNode;
|
|
type?: 'default' | 'primary'; // default 类型,影响底色与文字颜色
|
|
}
|
|
|
|
export interface TourLocale {
|
|
Next: string;
|
|
Previous: string;
|
|
Finish: string;
|
|
}
|
|
|