Preparing search index...

    Type Alias editableText

    Configuration for editable text components Defines styling and callback behavior for text editing

    type editableText = {
        withBorder: boolean;
        onChangeFunction(oldValueId: number, newParam: string): void;
        onTitleChangeFunction?(stepIndex: number, newTitle: string): void;
        onDescriptionChangeFunction?(
            stepIndex: number,
            newDescription: string,
        ): void;
    }
    Index

    Properties

    withBorder: boolean

    Whether to display border around editable text

    Methods

    • Callback function for text changes

      Parameters

      • oldValueId: number
      • newParam: string

      Returns void

    • Optional callback for preparation step title changes

      Parameters

      • stepIndex: number
      • newTitle: string

      Returns void

    • Optional callback for preparation step description changes

      Parameters

      • stepIndex: number
      • newDescription: string

      Returns void