mithril-materialized
    Preparing search index...

    Interface WizardStep

    interface WizardStep {
        disabled?: boolean;
        icon?: string;
        id?: string;
        optional?: boolean;
        subtitle?: string;
        title: string;
        validate?: () => boolean | Promise<boolean>;
        vnode: () => Vnode<any, any> | Vnode<any, any>[];
    }
    Index

    Properties

    disabled?: boolean

    Whether this step is disabled

    icon?: string

    Icon for the step (material icons)

    id?: string

    Unique identifier for the step

    optional?: boolean

    Whether this step is optional

    subtitle?: string

    Optional subtitle or description

    title: string

    Title of the step

    validate?: () => boolean | Promise<boolean>

    Custom validation function

    vnode: () => Vnode<any, any> | Vnode<any, any>[]

    Content to render for this step - function that returns vnode(s)