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.
- package/dist/components/FinForm/types.d.ts +6 -0
- package/dist/index.es.js +3214 -3166
- package/dist/index.js +32 -32
- package/package.json +1 -1
|
@@ -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 {
|