UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

11 lines (10 loc) 505 B
import React from "react"; import { EnumType, FieldProps } from "../../types"; /** * This fields renders a dropdown with multiple selection. * * This is one of the internal components that get mapped natively inside forms * and tables to the specified properties. * @group Form fields */ export declare function MultiSelectFieldBinding({ propertyKey, value, setValue, error, showError, disabled, property, includeDescription, size, autoFocus }: FieldProps<EnumType[], any, any>): React.JSX.Element;