Skip to content

Releases: rte-antares-rpackage/manipulateWidget

v0.11.0

05 Oct 08:24
Compare
Choose a tag to compare
fix tests on R-devel 4.2

CRAN version 0.10.1

28 Feb 09:05
Compare
Choose a tag to compare
  • Changed maintainer

v0.8

29 Jan 17:00
Compare
Choose a tag to compare
update readme

v0.5.1

25 Jan 09:42
Compare
Choose a tag to compare

New Features

  • Variable .id is now available when evaluating the initial properties of the input controls. This can be useful in comparison mode, for instance to set different choices for a select input.

Bug fixes

  • Fixed a scope problem occuring when manipulateWidget was used inside a function and parameter .updateInputs was used.
  • Fixed a crash that could occur when parameters .compare and .updateInputs were used together.

V0.5.0

19 Jan 14:32
Compare
Choose a tag to compare

New Features

  • manipulateWidget() can now be used in a R Markdown document with shiny runtime. Input controls are included in the final document so end users can play with their values directly. (contribution by JJ. Allaire)
  • manipulateWidget() has two new arguments .compare and .compareLayout to create a comparison interface. When .compare is set, two charts are outputed with some common and some individual input controls (see vignette).
  • Now, input controls generated by manipulateWidget() can be dynamically updated thanks to the new argument ".updateInputs".
  • New functions staticImage() and staticPlot() to include in a combine widget a static image or a static plot created with base functions, ggplot2, etc.
  • In combinedWidgetsobjects, individual widgets are stored in a property called widgets, so users can now access them and modify them.

V 0.4

04 Jan 10:54
Compare
Choose a tag to compare

BREAKING CHANGES:

  • Function combineWidgets has been entirely rewritten and now produces a htmlwidget that can be included as is in documents or shiny applications. The general behavior is the same, but some parameters have changed

NEW FEATURES:

  • manipulateWidget() can now update an already rendered widget instead of overwriting it each time the user changes an input. This leads to better performance and user experience. Look at the documentation of manipulateWidget for further information.

BUGFIXES:

  • manipulateWidgets() now preserves the order of the initial value of select inputs.
  • manipulateWidgets() now automatically finds the correct render and output functions. This solves in particular sizing problems.