finform-react-builder 1.8.17 → 1.8.19
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 +7 -0
- package/dist/index.es.js +3827 -3763
- package/dist/index.js +28 -28
- package/package.json +1 -1
|
@@ -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';
|
|
@@ -211,6 +214,7 @@ export interface TabsField extends BaseField {
|
|
|
211
214
|
value?: string | number | React.ReactNode;
|
|
212
215
|
content?: React.ReactNode;
|
|
213
216
|
disabled?: boolean;
|
|
217
|
+
fields?: FieldConfig[];
|
|
214
218
|
}>;
|
|
215
219
|
defaultValue?: any;
|
|
216
220
|
tabSx?: any;
|
|
@@ -266,6 +270,9 @@ export interface FinFormProps {
|
|
|
266
270
|
showSubmitButton?: boolean;
|
|
267
271
|
buttons?: FormButton[];
|
|
268
272
|
buttonGroup?: ButtonGroup;
|
|
273
|
+
formCardWrap?: boolean;
|
|
274
|
+
formCardSx?: any;
|
|
275
|
+
formCardProps?: any;
|
|
269
276
|
baseUrl?: string;
|
|
270
277
|
apiHeaders?: Record<string, string>;
|
|
271
278
|
isMultiStep?: boolean;
|