1
1
import { ReactNode } from "react" ;
2
2
import { 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" ;
4
4
5
5
export interface FieldArrayButtonLabels {
6
6
add ?: ReactNode ;
@@ -18,6 +18,22 @@ export interface FieldArrayProps {
18
18
FormControlProps ?: FormControlProps ;
19
19
FormFieldGridProps ?: GridProps ;
20
20
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 ;
21
37
}
22
38
23
39
declare const FieldArray : React . ComponentType < FieldArrayProps > ;
0 commit comments