Hex Core JS
    Preparing search index...

    Type Alias FileFieldInputProps

    FileFieldInputProps: {
        accept?: string | string[];
        autoFocus?: boolean;
        autoOpenImageEditor?: boolean;
        disabled?: boolean;
        id?: string;
        imageEditorOptions?: ImageEditorOptions;
        imagePreviewSizing?: ImageProps["sizing"];
        invalid?: boolean;
        name?: string;
        noImageEditor?: boolean;
        onBlur?: () => void;
        onFocus?: () => void;
        setValue: (value: FileFieldValue) => void;
        sideEffect?: (v: FileFieldValue) => void;
        value: FileFieldValue;
    } & Partial<ClassNameProps>