Universal Robots TypeScript API - v10.12.0
    Preparing search index...

    Interface DialogInputData

    interface DialogInputData {
        charLimit?: number;
        currentValue?: string | number;
        keyboardLayout?: VirtualKeyboardLayout;
        label: string;
        message?: string;
        onBeforeClose?: (
            value: string,
            reason?: "CANCELLED" | "DESTROYED" | "CONFIRMED" | "UNKNOWN",
        ) => string | Promise<string | null> | null;
        placeholder?: string;
        positiveDigitsOnly?: boolean;
        precision?: number;
        showClearIcon?: boolean;
        step?: number;
        title?: string;
        translations?: InputTranslation;
        type: "number" | InputType;
        uid?: string;
        unit?: string;
        valid?: boolean;
        validation?: InputValidationAttribute;
        validators?: InputValidator<string | number>[];
        value?: string | number;
    }
    Index

    Properties

    charLimit?: number
    currentValue?: string | number
    keyboardLayout?: VirtualKeyboardLayout
    label: string
    message?: string
    onBeforeClose?: (
        value: string,
        reason?: "CANCELLED" | "DESTROYED" | "CONFIRMED" | "UNKNOWN",
    ) => string | Promise<string | null> | null
    placeholder?: string
    positiveDigitsOnly?: boolean
    precision?: number
    showClearIcon?: boolean
    step?: number
    title?: string
    translations?: InputTranslation
    type: "number" | InputType
    uid?: string
    unit?: string
    valid?: boolean
    validators?: InputValidator<string | number>[]
    value?: string | number