geoview-core - v2.2.0
    Preparing search index...

    Variable StepperConst

    Stepper: (props: StepperPropsExtend) => Element = StepperUI

    Type Declaration

      • (props: StepperPropsExtend): Element
      • Material-UI Stepper component for step-by-step workflows.

        Wraps Material-UI's Stepper with configurable labels and content for each step. Supports vertical and horizontal orientations with optional step content sections. Steps can be skipped by passing null in the steps array.

        Parameters

        • props: StepperPropsExtend

          Stepper configuration (see StepperPropsExtend interface)

        Returns Element

        Stepper component with step indicators and optional content sections

        <Stepper
        activeStep={1}
        steps={[
        { stepLabel: { label: 'Step 1' }, stepContent: { children: 'Content 1' } },
        { stepLabel: { label: 'Step 2' }, stepContent: { children: 'Content 2' } }
        ]}
        />