Interface representing the props for the WizardView component.

interface IWizardViewProps<
    Data extends {} = IAnything,
    Payload = IAnything,
    Params = IAnything,
> {
    className?: string;
    fullScreen?: boolean;
    history?: any;
    onNavigate?: (update: Update) => void;
    outlinePaper?: boolean;
    pathname?: string;
    routes: IWizardOutlet<Data, Payload>[];
    steps: IWizardStep<Payload>[];
    style?: any;
    sx?: any;
    transparentPaper?: boolean;
    withScroll?: boolean;
    [key: string]: BoxProps;
    [key: number]: BoxProps;
    [key: symbol]: BoxProps;
}

Type Parameters

Hierarchy

Indexable

  • [key: string]: BoxProps
  • [key: number]: BoxProps
  • [key: symbol]: BoxProps

Properties

className?: string
fullScreen?: boolean
history?: any
onNavigate?: (update: Update) => void
outlinePaper?: boolean
pathname?: string
style?: any
sx?: any
transparentPaper?: boolean
withScroll?: boolean