-
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(Typography): add color style token #7090
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 |
👀 Docs deployed
Commit 15cc461 |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #7090 +/- ##
=======================================
Coverage 83.89% 83.89%
=======================================
Files 357 357
Lines 10776 10776
Branches 3553 3553
=======================================
Hits 9041 9041
Misses 1735 1735
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Для решения задачи нужно в TokensClassProvider докинуть класс который бы навешивал класс с стилями:
Если кто-то выше AppearanceProvider пытался прокинуть другой токен для цвета, то он перебьется. Но и узнать что это был за токен мы не можем |
…TokensClassProvider
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.
👍
Необходимые стили теперь прокидываются через TokensClassProvider
Описание
У компонентов Typoghraphy не был установлен стиль
color
. Поэтому при смене темы не менялся цвет текстаИзменения
Добавил prop
colorType
с двумя типами:inherit
. Означает, что цвет наследуется от родителя. Нужен для того, чтобы не ломать обратную совместимость с прошлыми версиями(если у кого-то уже цвет зависит от родителей)primary
. Добавляет стильcolor: var(--vkui--color_text_primary)
UPD
Изменения в реализации: