UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

13 lines (12 loc) 633 B
import { FieldProps } from "../../types"; type UserSelectProps = FieldProps<string>; /** * Field binding for selecting a user from the internal user management system. * Renders a select dropdown with user information including name and email. * * 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 UserSelectFieldBinding({ propertyKey, value, setValue, error, showError, disabled, autoFocus, touched, property, includeDescription, size }: UserSelectProps): import("react/jsx-runtime").JSX.Element; export {};