finform-react-builder 1.8.18 → 1.8.20

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.
@@ -190,6 +190,9 @@ export interface SectionField extends BaseField {
190
190
  color?: string;
191
191
  align?: 'left' | 'center' | 'right';
192
192
  sx?: any;
193
+ cardWrap?: boolean;
194
+ cardSx?: any;
195
+ cardProps?: any;
193
196
  }
194
197
  export interface FinUiHeaderField extends BaseField {
195
198
  type: 'finuiHeader';
@@ -267,6 +270,9 @@ export interface FinFormProps {
267
270
  showSubmitButton?: boolean;
268
271
  buttons?: FormButton[];
269
272
  buttonGroup?: ButtonGroup;
273
+ formCardWrap?: boolean;
274
+ formCardSx?: any;
275
+ formCardProps?: any;
270
276
  baseUrl?: string;
271
277
  apiHeaders?: Record<string, string>;
272
278
  isMultiStep?: boolean;