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
Merge branch 'data_view_meta' into df_input_cell_selection
* data_view_meta:
Add demo apps for `update_sort()` and `update_filter()`
Add `update_sort()` and `update_filter()` to DF
bug(output transformer): fix transformer auto-registration (#1394)
fix: Add wait till pulse animation has started (#1393)
bug(test-deploy): Add retries for deploy tests (#1392)
Add busy indicator tests (#1391)
Yield to give "synchronous" writes a chance to complete (#1388)
chore(busy indicator): Update busy indicator css files (#1389)
`ColumnFilter` and `ColumnSort` should use `col: num` and not `id: str` for consistency
Lints
Have `.data_view()` use `.data_view_info()` information for consistent subsetting
feat(cli): Add `shiny --version` (#1387)
fix(selectize): Accept jsonifiable values in `options` dictionary (#1382)
bug(data frame): Use `<ID>_data_view_rows` (#1386)
test(data frame): Verify that data frame's outputs are reset before moving forward (#1383)
Send busy/idle at the right times (#1380)
feat(data frame): Restore `input.<ID>_selected_rows()`. Rename `input.<ID>_data_view_indices` to `input.<ID>_data_view_rows` (#1377)
Apply suggestions from code review
Copy file name to clipboardExpand all lines: CHANGELOG.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [UNRELEASED]
9
9
10
-
### Breaking Changes
10
+
### `input` key changes
11
+
12
+
* Restored `@render.data_frame`'s (prematurely removed in v0.9.0) input value `input.<ID>_selected_rows()`. Please use `<ID>.input_cell_selection()["rows"]` and consider `input.<ID>_selected_rows()` deprecated. (#1345, #1377)
13
+
14
+
*`@render.data_frame`'s input value `input.<ID>_data_view_indices` has been renamed to `input.<ID>_data_view_rows` for consistent naming. Please use `input.<ID>_data_view_rows` and consider `input.<ID>_data_view_indices` deprecated. (#1377)
11
15
12
16
*`@render.data_frame`'s input value `input.<ID>_data_view_indices` has been renamed to `input.<ID>_data_view_rows` for consistent naming. Please use `input.<ID>_data_view_rows` and consider `input.<ID>_data_view_indices` deprecated. (#1374)
13
17
@@ -29,7 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
29
33
30
34
* Fixed an issue that prevented Shiny from serving the `font.css` file referenced in Shiny's Bootstrap CSS file. (#1342)
31
35
32
-
* Removed temporary state where a data frame renderer would try to subset to selected rows that did not exist. (#1351)
36
+
* Removed temporary state where a data frame renderer would try to subset to selected rows that did not exist. (#1351, #1377)
0 commit comments