-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: readme corrections from localization (#1933)
- Loading branch information
1 parent
26d1609
commit 498b620
Showing
105 changed files
with
11,459 additions
and
1,222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!--GITHUB_BLOCK--> | ||
|
||
# ActionTooltip | ||
|
||
<!--/GITHUB_BLOCK--> | ||
|
||
`ActionTooltip` — это простая текстовая подсказка, использующая в качестве якоря дочерний элемент. Для правильной работы элемент-якорь должен поддерживать события мыши и события получения или потери фокуса. | ||
|
||
## Использование | ||
|
||
```tsx | ||
import {ActionTooltip} from '@gravity-ui/uikit'; | ||
|
||
<ActionTooltip title="Content"> | ||
<div tabIndex={0}>Anchor</div> | ||
</ActionTooltip>; | ||
``` | ||
|
||
## Свойства | ||
|
||
| Имя | Описание | Тип | Значение по умолчанию | | ||
| :--------------- | ------------------------------------------------------------------------------------------ | :----------------------------------------------: | :-------------------: | | ||
| children | Элемент-якорь для `Tooltip`. Должен принимать `ref` для передачи DOM-элемента. | `React.ReactElement` | | | ||
| closeDelay | Время задержки в миллисекундах перед скрытием `Tooltip` после увода курсора с элемента. | `number` | `0` | | ||
| openDelay | Время задержки в миллисекундах перед показом `Tooltip` после наведения курсора на элемент. | `number` | `250` | | ||
| placement | Положение `Tooltip` относительно якоря. | [`PopupPlacement`](../Popup/README.md#placement) | | | ||
| qa | HTML-атрибут `data-qa`, используется для тестирования. | `string` | | | ||
| title | Текст заголовка для тултипа. | `string` | | | ||
| description | Текст описания в тултипе. | `string` | | | ||
| hotkey | Горячие клавиши, назначенные на действие в интерфейсе. | `string` | | | ||
| id | Используется для реализации логики доступности. | `string` | | | ||
| disablePortal | Отключает использование `Portal` для дочерних элементов. | `boolean` | | | ||
| contentClassName | HTML-атрибут `class` для узла с содержимым. | `string` | | | ||
| disabled | Блокирует открытие всплывающего окна. | `boolean` | `false` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.