Skip to content

Commit

Permalink
docs: update v19 migration guide with size prop removal
Browse files Browse the repository at this point in the history
The following breaking changes were missing from the migration guide:
- The size prop was removed from InputGroup
- The inputSize prop was removed from ErrorFormTooltip.
  • Loading branch information
DSil committed Dec 30, 2024
1 parent f15746d commit 474b1aa
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,22 @@ The `UserSingle` icon has been renamed to `UserSingleLight`. No changes have bee
- <UserSingle />
+ <UserSingleLight />
```

### Removal of `size` prop in InputGroup

Following the removal of the `size` prop from the `InputField` and `Select` components in version 7, the `size` prop in the `InputGroup` component was having no effect at all.
Therefore, it has now been removed.

```diff
- <InputGroup size="small">
+ <InputGroup>
```

### Removal of `inputSize` prop in ErrorFormTooltip

The `inputSize` prop in the `ErrorFormTooltip` component has been removed as it was not being used at all, for the same reason mentioned above.

```diff
- <ErrorFormTooltip inputSize="small" />
+ <ErrorFormTooltip />
```

0 comments on commit 474b1aa

Please sign in to comment.