UNPKG

@firecms/core

Version:

Awesome Firebase/Firestore-based headless open-source CMS

12 lines (11 loc) 608 B
import React from "react"; import { FieldProps } from "../../types"; /** * Generic array field that allows reordering and renders the child property * as nodes. * * 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 RepeatFieldBinding<T extends Array<any>>({ propertyKey, value, error, showError, isSubmitting, setValue, setFieldValue, minimalistView: minimalistViewProp, property, includeDescription, underlyingValueHasChanged, context, disabled }: FieldProps<T>): React.JSX.Element;