@thepalaceproject/circulation-admin
    Preparing search index...

    Interface InputListProps

    interface InputListProps {
        additionalData?: any;
        altValue?: string;
        capitalize?: boolean;
        createEditableInput: (
            setting: SettingData,
            customProps?: any,
            children?: Element[],
        ) => Element;
        disableButton?: boolean;
        disabled: boolean;
        labelAndDescription?: (setting: SettingData) => Element[];
        onChange?: (value: any) => object;
        onEmpty?: string;
        onSubmit?: any;
        readOnly?: boolean;
        setting: SettingData | CustomListsSetting;
        title?: string;
        value: (string | object | Element)[];
    }
    Index

    Properties

    additionalData?: any
    altValue?: string
    capitalize?: boolean
    createEditableInput: (
        setting: SettingData,
        customProps?: any,
        children?: Element[],
    ) => Element
    disableButton?: boolean
    disabled: boolean
    labelAndDescription?: (setting: SettingData) => Element[]
    onChange?: (value: any) => object
    onEmpty?: string
    onSubmit?: any
    readOnly?: boolean
    title?: string
    value: (string | object | Element)[]