1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- export declare const Steps: import("../utils").WithInstall<import("vue").DefineComponent<{
- active: {
- type: (NumberConstructor | StringConstructor)[];
- default: number;
- };
- direction: {
- type: import("vue").PropType<import("./Steps").StepsDirection>;
- default: import("./Steps").StepsDirection;
- };
- activeIcon: {
- type: import("vue").PropType<string>;
- default: string;
- };
- iconPrefix: StringConstructor;
- finishIcon: StringConstructor;
- activeColor: StringConstructor;
- inactiveIcon: StringConstructor;
- inactiveColor: StringConstructor;
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click-step"[], "click-step", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
- active: {
- type: (NumberConstructor | StringConstructor)[];
- default: number;
- };
- direction: {
- type: import("vue").PropType<import("./Steps").StepsDirection>;
- default: import("./Steps").StepsDirection;
- };
- activeIcon: {
- type: import("vue").PropType<string>;
- default: string;
- };
- iconPrefix: StringConstructor;
- finishIcon: StringConstructor;
- activeColor: StringConstructor;
- inactiveIcon: StringConstructor;
- inactiveColor: StringConstructor;
- }>> & {
- "onClick-step"?: ((...args: any[]) => any) | undefined;
- }, {
- active: string | number;
- direction: import("./Steps").StepsDirection;
- activeIcon: string;
- }>>;
- export default Steps;
- export type { StepsProps, StepsDirection } from './Steps';
- declare module 'vue' {
- interface GlobalComponents {
- VanSteps: typeof Steps;
- }
- }
|