-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from RinteRface/feat-multi-tabs
Feat multi tabs
- Loading branch information
Showing
36 changed files
with
981 additions
and
963 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
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
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
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 |
---|---|---|
|
@@ -6,3 +6,5 @@ node_modules | |
.DS_Store | ||
docs | ||
inst/doc | ||
inst/examples/**/www | ||
inst/examples/**/rsconnect |
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
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
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 |
---|---|---|
@@ -1,3 +1,23 @@ | ||
# shinyHeatmap 0.2.0.9000 | ||
|
||
## New feature | ||
- Introducing `process_heatmap()`, a wrapper around `record_heatmap()` | ||
and `download_heatmap()`. `process_heatmap()` will record the heatmap | ||
by default unless you specify a query parameter `?get_heatmap`, | ||
which will allow to display the results. | ||
- You can now toggle the heatmap visibility while running | ||
`record_heatmap()` so as to be able to change page in multi-tabs | ||
apps. This is necessary because the heatmap z-index is set to the maximum and | ||
you can't click anywhere else after, expect the toggle heatmap button. | ||
|
||
## Breaking changes | ||
- Added new `trigger` parameter for `record_heatmap()` and `download_heatmap()` as first parameters. This allows to record heatmaps for multi-tabs apps like with `shiny::navbarPage()` (See `inst/examples/navbar`). | ||
Leave `trigger` NULL for one page apps. `trigger` expects a reactive expression like `reactive(input$navbar)`. | ||
- The `target` value is now removed from `record_heatmap()`. | ||
Instead, it is written in a file `www/*/target.txt` by `record_heatmap()`, | ||
and subsequently read by `record_heatmap()`. For old apps without this file, | ||
you can manually create one `touch www/<WHATEVER_SUBFOLDER>/target.txt` and type in the DOM selector value, for instance `.container-fluid`. | ||
|
||
# shinyHeatmap 0.0.0.9000 | ||
|
||
* Added a `NEWS.md` file to track changes to the package. | ||
- Added a `NEWS.md` file to track changes to the package. |
Oops, something went wrong.