UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

14 lines (13 loc) 638 B
import React from "react"; 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): React.JSX.Element; export {};