You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/shared/CHANGELOG.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,21 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
5
5
Please note, that this project, while following numbering syntax, it DOES NOT
6
6
adhere to [Semantic Versioning](http://semver.org/spec/v2.0.0.html) rules.
7
7
8
+
## [5.17.3] - 2026-05-29
9
+
10
+
### Added
11
+
-`Label` setting `fontFamily` now accepts special value of `"inherit"`. If set it will automatically use computer `fontFamily` value on chart's DOM container.
12
+
-`onDebounced(key, callback, delay)` and `offDebounced(key, callback?)` methods added to all entities. Like `on()`/`off()` for settings, but the callback fires only once after rapid changes settle, waiting `delay` milliseconds since the last change.
13
+
-`onPrivateDebounced(key, callback, delay)` and `offDebouncedPrivate(key, callback?)` — same as above for private settings.
14
+
15
+
### Fixed
16
+
- The underline text for a `Label` could render thicker in some cases.
17
+
-`GanttSeries` was not syncing the `end` field back to data context when tasks were moved or resized, causing stale values when serializing data or calculating linked group positions.
18
+
-`Gantt.addNewTask()` was setting a hardcoded stale `end` value in new task data.
19
+
- If `Root` was placed in a ShadowDOM, TAB would select non-visible focusable elements.
20
+
- Accessibility: The text for readable tooltip element had in-line formatting text in them.
0 commit comments