11import { ReactNode } from "react" ;
22import { FieldArrayField } from "@data-driven-forms/react-form-renderer" ;
3- import { FormControlProps , GridProps } from "@material-ui/core" ;
3+ import { FormControlProps , GridProps , ButtonProps , FormHelperTextProps , TypographyProps } from "@material-ui/core" ;
44
55export interface FieldArrayButtonLabels {
66 add ?: ReactNode ;
@@ -18,6 +18,22 @@ export interface FieldArrayProps {
1818 FormControlProps ?: FormControlProps ;
1919 FormFieldGridProps ?: GridProps ;
2020 buttonLabels ?: FieldArrayButtonLabels ;
21+ GridContainerProps : GridProps ;
22+ HeaderGridProps : GridProps ;
23+ HeaderProps : TypographyProps ;
24+ UndoButtonProps : ButtonProps ;
25+ RedoButtonProps : ButtonProps ;
26+ AddButtonProps : ButtonProps ;
27+ DescriptionGridProps : GridProps ;
28+ DescriptionProps : TypographyProps ;
29+ BodyGridProps : GridProps ;
30+ NoItemsProps : TypographyProps ;
31+ FormHelperTextGridProps : GridProps ;
32+ FormHelperTextProps : FormHelperTextProps ;
33+ FieldContainerProps : GridProps ;
34+ FieldGroupGridProps : GridProps ;
35+ RemoveButtonGridProps : GridProps ;
36+ RemoveButtonProps : ButtonProps ;
2137}
2238
2339declare const FieldArray : React . ComponentType < FieldArrayProps > ;
0 commit comments