Skip to content

Commit

Permalink
fix(FormLayoutGroup): FormItem width with long text in top prop makes…
Browse files Browse the repository at this point in the history
… second FormItem overflows (#7819)

Если внутри FormLayoutGroup лежит по крайней мере 2 FormItem в горизонтальной ориентации и у первого FormItem в свойстве top очень длинный текст, то размер первого FormItem может увеличится на столько, что он вытеснит за пределы FormLayoutGroup второй FormItem.
  • Loading branch information
andrey-medvedev-vk authored Oct 24, 2024
1 parent bc35b0a commit 3551971
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@ export const FormLayoutGroupPlayground = (props: ComponentPlaygroundProps) => {
</FormItem>
</React.Fragment>,
<React.Fragment key="">
<FormItem htmlFor="tooLongTop" top="Сверху очень длинная надпись аж распирает">
<FormItem
htmlFor="tooLongTop"
top="Сверху очень длинная надпись аж распирает. Такая длинная, что не должна поместиться, но и не должна вытеснить следующий FormItem из группы"
>
<Input id="tooLongTop" />
</FormItem>
<FormItem htmlFor="theSameLongTop" top="И у меня тоже не короче твоей">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
border: 0;
padding: 0;
margin: 0;
min-inline-size: auto;
}

.modeHorizontal {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 3551971

Please sign in to comment.