From 474b1aaf061616bc0c4cb2af8528905545728101 Mon Sep 17 00:00:00 2001 From: Daniel Sil Date: Fri, 20 Dec 2024 11:01:57 +0000 Subject: [PATCH] docs: update v19 migration guide with size prop removal The following breaking changes were missing from the migration guide: - The size prop was removed from InputGroup - The inputSize prop was removed from ErrorFormTooltip. --- .../04-migration-guides/01-v19.mdx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/docs/src/documentation/05-development/04-migration-guides/01-v19.mdx b/docs/src/documentation/05-development/04-migration-guides/01-v19.mdx index bacd165b9a..d3e73d4dc7 100644 --- a/docs/src/documentation/05-development/04-migration-guides/01-v19.mdx +++ b/docs/src/documentation/05-development/04-migration-guides/01-v19.mdx @@ -25,3 +25,22 @@ The `UserSingle` icon has been renamed to `UserSingleLight`. No changes have bee - + ``` + +### 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 +- ++ +``` + +### 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 +- ++ +```