Releases: RinteRface/shinyHeatmap
Releases · RinteRface/shinyHeatmap
shinyHeatmap 0.2.2
shinyHeatmap 0.2.2.9000
Minor change
- Adjust z-index for pushbar and heatmap canvas.
- Remove delay in R code.
- More space between heatmap buttons (toggle and options).
shinyHeatmap 0.2.1
shinyHeatmap 0.2.1.9000
New feature
- Add filter to select the platform where the app was accessed (mobile, desktop).
This avoids to mix incompatible logs.
Minor change
- The slider to select dates has been replaced by a selectInput. We can display
dates in the input choices which is easier to read (Note: the slider animation capability is lost).
shinyHeatmap 0.2.0
shinyHeatmap 0.2.0
New feature
- Introducing
process_heatmap()
, a wrapper aroundrecord_heatmap()
anddownload_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 forrecord_heatmap()
anddownload_heatmap()
as first parameters. This allows to record heatmaps for multi-tabs apps like withshiny::navbarPage()
(Seeinst/examples/navbar
).
Leavetrigger
NULL for one page apps.trigger
expects a reactive expression likereactive(input$navbar)
. - The
target
value is now removed fromrecord_heatmap()
.
Instead, it is written in a filewww/*/target.txt
byrecord_heatmap()
,
and subsequently read byrecord_heatmap()
. For old apps without this file,
you can manually create onetouch www/<WHATEVER_SUBFOLDER>/target.txt
and type in the DOM selector value, for instance.container-fluid
.