-
Notifications
You must be signed in to change notification settings - Fork 185
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(FormField): fix nesting of selectors #8007
fix(FormField): fix nesting of selectors #8007
Conversation
size-limit report 📦
|
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. |
e2e tests |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #8007 +/- ##
==========================================
- Coverage 95.50% 95.49% -0.01%
==========================================
Files 394 393 -1
Lines 11205 11199 -6
Branches 3712 3711 -1
==========================================
- Hits 10701 10695 -6
Misses 504 504
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
👀 Docs deployed
Commit bb06c86 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👏 👏 👏
# Conflicts: # packages/vkui/src/components/FormField/FormField.module.css
bb06c86
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🚀
✅ v7.1.0 🎉 |
Описание
Сейчас пикеры месяца и года в календаре выглядят по-разному в
Calendar
иDateInput
, при этом у них одинаковый тип:Компонент Calendar:
Компонент DateInput:
Правильно в
Calendar
, а вот вDateInput
почему-то считает, что modeFormField
="default"
а не"plain"
Поисследовав, оказалось, что проблема появилась после pr #6800. После него поповер с календарем стал рендериться не в портале, а прямо внутри компонента.
Из-за этого возникла следующая ситуация:
Поскольку
DateInput
- это тожеFormField
сmode="default"
, а поповер стал рендериться внутри этогоFormField
(пикеры соответственно тоже) стал срабатывать следующие селекторы(не только они, но остальные по тому же принципу)Решением является добавление комбинатора ">", для того, чтобы данные стили срабатывали только для непосредственных потомков
Изменения
Добавил комбинаторы ">" в несколько мест, связанных с отображением border, для того, чтобы данные стили срабатывали только для непосредственных потомков
Release notes
Исправления