finform-react-builder 1.8.43 → 1.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -51,6 +51,10 @@ export interface FinEditableGridProps {
51
51
  columns: GridColumn[];
52
52
  initialRow: Record<string, any>;
53
53
  addLabel?: string;
54
+ maxRows?: number;
55
+ hideAddWhenMax?: boolean;
56
+ disableAddWhenMax?: boolean;
57
+ showEmptyState?: boolean;
54
58
  rowDeletable?: boolean;
55
59
  control: any;
56
60
  sx?: any;
@@ -391,6 +391,10 @@ export interface FinFormProps {
391
391
  showSubmitButton?: boolean;
392
392
  buttons?: FormButton[];
393
393
  buttonGroup?: ButtonGroup;
394
+ stickyButtons?: boolean;
395
+ stickyButtonsSx?: any;
396
+ fixedButtons?: boolean;
397
+ fixedButtonsSx?: any;
394
398
  formCardWrap?: boolean;
395
399
  formCardSx?: any;
396
400
  formCardProps?: any;