Changelog
shinyTimer (development version)
- Added
color
parameter toshinyTimer()
andupdateShinyTimer()
functions (#57). - Added new feedback value (text content of the timer) returned after pausing
shinyTimer
(#63). It can be accessed viainput${inputId}_content
, whereinputId
is the id of theshinyTimer
widget. - Renamed
background
parameter toframe
to better reflect its purpose. Addedfill
parameter to pass colors to the background of theshinyTimer
(#60). - Made callback value after finishing of count down more flexible by changing
input$timer_done
toinput${inputId}_done
, whereinputId
is the id of theshinyTimer
widget (#67).
shinyTimer 0.1.0
CRAN release: 2025-03-07
This is the first release presenting the timer widget for Shiny
applications with the following features:
- Basic UI and server functions:
shinyTimer()
,updateShinyTimer()
,countDown()
andcountUp()
functions (#1, #11, #28). - Possibility to set different units with
hours
,minutes
andseconds
parameters and different formats of the timer with thetype
parameter (#9, #13, #30, #31). - Possibility to
pauseTimer()
(#23) andresetTimer()
(#10). - Option to add a
background
toshinyTimer()
(#47).