Skip to content

Commit 08e3663

Browse files
committed
update readme
1 parent d2949cc commit 08e3663

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,9 @@ The example shows a simple wizard with two pages.
9292

9393
| Name | Description | Default |
9494
| :---------------------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
95+
| `bodyHeight` | Sets the height of the form body. | 500 |
9596
| `strict` | Validation rules are applied to all inputs that have been marked for validation or that are required. The component prevents the user from moving on until the current step's errors have been fixed. | false |
96-
| `theme` | [Theme](#🎨-theme) object for customized styling | |
97+
| `theme` | [Theme](#🎨-theme) object for customized styling | |
9798
| `highlightFieldsOnValidation` | Highlights the fields when the validation fails or succeeds | false |
9899
| `pages` | Collection of [Page](#Page) object | |
99100
| `onFinish` | Callback executed on final step | |

src/components/wizard.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import React, {
77
useEffect,
88
useMemo,
99
useRef,
10-
useState
10+
useState,
1111
} from "react";
1212
import { FormFieldProps } from "./form-field/form-field.model";
1313
import { Page } from "./page/page";
@@ -252,4 +252,3 @@ const Wizard: FunctionComponent<WizardProps> = ({
252252
};
253253

254254
export { Wizard };
255-

0 commit comments

Comments
 (0)