Skip to content

Commit d7698f1

Browse files
committed
added changlog and lint
1 parent a8391de commit d7698f1

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ This project adheres to [Semantic Versioning](https://semver.org/).
44

55
## [Unreleased]
66

7+
### Added
8+
- [#1952](https://github.com/plotly/dash/pull/1952) Improved callback_context
9+
- Closes [#1818](https://github.com/plotly/dash/issues/1818) Closes [#1054](https://github.com/plotly/dash/issues/1054)
10+
- adds `dash.ctx`, a more concise name for `dash.callback_context`
11+
- adds `ctx.triggered_prop_ids`, a dictionary of the component ids and props that triggered the callback.
12+
- adds `ctx.triggered_id`, the `id` of the component that triggered the callback.
13+
- adds `ctx.args_grouping`, a dict of the inputs used with flexible callback signatures.
14+
715
### Fixed
816

917
- [#2015](https://github.com/plotly/dash/pull/2015) Fix bug [#1854](https://github.com/plotly/dash/issues/1854) in which the combination of row_selectable="single or multi" and filter_action="native" caused the JS error.

dash/_callback_context.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,4 +287,3 @@ def using_outputs_grouping(self):
287287

288288

289289
callback_context = CallbackContext()
290-

0 commit comments

Comments
 (0)