Skip to content
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

feat(Link): add props – before, after, noUnderline #7957

Merged
merged 1 commit into from
Nov 20, 2024

Conversation

inomdzhon
Copy link
Contributor

@inomdzhon inomdzhon commented Nov 19, 2024


  • Unit-тесты
  • e2e-тесты
  • [ ] Дизайн-ревью – вернул старое поведение
  • Документация фичи
  • Release notes

Описание

Решение из #7579 не подошло из-за того, что подчеркивания распространяется и на пробел.

До #7579
image

После #7579
image

По аналогии с другими компонентами, самое простое оказалось добавить before / after с указанием отступов через соответствующие CSS классы, что избавляет от каскада .host :global(.vkuiIcon).

Заодно добавил свойство noUnderline.

Нюансы про альтернативное решение

Решение через .host :global(.vkuiIcon:first-child) и .host :global(.vkuiIcon:last-child) не работает без оборачивания текстового блока в DOM-элемент. Здесь без просьбы пользователя оборачивать в <span> никак.

Release notes

BREAKING CHANGE

  • Link: теперь для передачи иконок следует использовать параметры before и after, CSS свойства, которые через каскад задавались переданным иконкам в children, удалены

    Пример миграции
    <Link
      href="#"
    + after={<Icon12Example />}
    >
      Текст ссылки
    - <Icon12Example />
    </Link>

Улучшения

  • Link: появился параметр noUnderline, отключающий подчеркивание при наведении

Copy link
Contributor

github-actions bot commented Nov 19, 2024

size-limit report 📦

Path Size
JS 382.13 KB (+0.07% 🔺)
JS (gzip) 115.82 KB (+0.06% 🔺)
JS (brotli) 95.26 KB (+0.02% 🔺)
JS import Div (tree shaking) 1.46 KB (0%)
CSS 332.84 KB (+0.04% 🔺)
CSS (gzip) 42.17 KB (+0.06% 🔺)
CSS (brotli) 33.27 KB (+0.08% 🔺)

Copy link
Contributor

e2e tests

Playwright Report

Copy link
Contributor

github-actions bot commented Nov 19, 2024

👀 Docs deployed

Commit 0cfb864

@inomdzhon inomdzhon marked this pull request as ready for review November 19, 2024 10:26
@inomdzhon inomdzhon requested a review from a team as a code owner November 19, 2024 10:26
Copy link
Contributor

@andrey-medvedev-vk andrey-medvedev-vk left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👏 Хорошее решение проблемы!

Copy link
Contributor

@EldarMuhamethanov EldarMuhamethanov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@inomdzhon inomdzhon merged commit 77fe44d into master Nov 20, 2024
50 of 51 checks passed
@inomdzhon inomdzhon deleted the imirdzhamolov/issue6855/fix/Link-gaps branch November 20, 2024 10:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[BREAKING CHANGE][Bug]: Применение стилей для иконки внутри <Link>
4 participants