Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions semcore/tooltip/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

CHANGELOG.md standards are inspired by [keepachangelog.com](https://keepachangelog.com/en/1.0.0/).

## [16.0.11] - 2025-10-30

### Fixed

- Tooltip popper content are not announced by SR in chrome.

Check warning on line 9 in semcore/tooltip/CHANGELOG.md

View workflow job for this annotation

GitHub Actions / docs-lint

[vale] reported by reviewdog 🐶 [DevDocs.Contractions] It's okay to use the contracted form 'aren't' instead of 'are not'. Raw Output: {"message": "[DevDocs.Contractions] It's okay to use the contracted form 'aren't' instead of 'are not'.", "location": {"path": "semcore/tooltip/CHANGELOG.md", "range": {"start": {"line": 9, "column": 26}}}, "severity": "INFO"}

## [16.0.10] - 2025-10-06

### Changed
Expand Down
4 changes: 2 additions & 2 deletions semcore/tooltip/src/Tooltip.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,11 @@ function TooltipPopper(props) {
if (visible) {
timer = setTimeout(() => {
setIsVisible(true);
}, timeoutConfig[0] + 50);
}, timeoutConfig[0] + 150);
} else {
timer = setTimeout(() => {
setIsVisible(false);
}, timeoutConfig[1] + 50);
}, timeoutConfig[1] + 150);
}

return () => {
Expand Down
Loading