Preparing search index...
    EditableBaseProps: BaseProps & {
        prefixText: string;
        onTitleChange: (index: number, title: string) => void;
        onDescriptionChange: (index: number, description: string) => void;
        onAddStep: () => void;
    }

    Common props for editable and add modes

    Type Declaration

    • prefixText: string

      Prefix text displayed above the steps

    • onTitleChange: (index: number, title: string) => void

      Callback fired when a step title changes

    • onDescriptionChange: (index: number, description: string) => void

      Callback fired when a step description changes

    • onAddStep: () => void

      Callback fired to add a new step