finform-react-builder 1.8.12 → 1.8.14

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,9 @@ 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;
200
203
  }
201
204
  export type FieldConfig = TextField | NumberField | SelectField | CheckboxField | ToggleField | RadioField | SwitchField | AutocompleteField | DateField | ImageField | TitleField | SectionField | ComponentField | FinUiHeaderField;
202
205
  export interface FormButton {