UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

11 lines (10 loc) 548 B
import React from "react"; import { FieldProps } from "../../types"; /** * Field that renders the children property fields * * 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 MapFieldBinding({ propertyKey, value, showError, error, disabled, property, partOfArray, minimalistView: minimalistViewProp, includeDescription, autoFocus, context, onPropertyChange, setValue }: FieldProps<Record<string, any>>): React.JSX.Element;