finform-react-builder 1.8.18 → 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 +6 -0
- package/dist/index.es.js +3289 -3256
- package/dist/index.js +24 -24
- 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';
|
|
@@ -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;
|