finform-react-builder 1.8.13 → 1.8.15

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.
@@ -197,6 +197,12 @@ export interface FinUiHeaderField extends BaseField {
197
197
  subtitle?: string;
198
198
  align?: 'left' | 'center' | 'right';
199
199
  actions?: any;
200
+ actionName?: string;
201
+ actionComponent?: 'switch' | 'checkbox';
202
+ actionLabel?: string;
203
+ cardWrap?: boolean;
204
+ cardSx?: any;
205
+ cardProps?: any;
200
206
  }
201
207
  export type FieldConfig = TextField | NumberField | SelectField | CheckboxField | ToggleField | RadioField | SwitchField | AutocompleteField | DateField | ImageField | TitleField | SectionField | ComponentField | FinUiHeaderField;
202
208
  export interface FormButton {