mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 01:11:26 +08:00
ce5d71d66f
* feat: tour ts define update * test: add more unit test
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
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;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
};
|
|
prevButtonProps?: {
|
|
children?: ReactNode;
|
|
onClick?: () => void;
|
|
className?: string;
|
|
style?: React.CSSProperties;
|
|
};
|
|
stepRender?: (current: number, total: number) => ReactNode;
|
|
type?: 'default' | 'primary'; // default 类型,影响底色与文字颜色
|
|
}
|
|
|
|
export interface TourLocale {
|
|
Next: string;
|
|
Previous: string;
|
|
Finish: string;
|
|
}
|