Skip to content

Releases: rte-antares-rpackage/manipulateWidget

Cran version 0.11.2

Choose a tag to compare

@berthetclement berthetclement released this 16 Jan 09:47
3514b42

What's Changed

New Contributors

Full Changelog: v0.11.0...v0.11.2

v0.11.0

Choose a tag to compare

@bthieurmel bthieurmel released this 05 Oct 08:24
fix tests on R-devel 4.2

CRAN version 0.10.1

Choose a tag to compare

@pvictor pvictor released this 28 Feb 09:05
  • Changed maintainer

v0.8

Choose a tag to compare

@bthieurmel bthieurmel released this 29 Jan 17:00
update readme

v0.5.1

Choose a tag to compare

@FrancoisGuillem FrancoisGuillem released this 25 Jan 09:42

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

Choose a tag to compare

@FrancoisGuillem FrancoisGuillem released this 19 Jan 14:32

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

Choose a tag to compare

@FrancoisGuillem FrancoisGuillem released this 04 Jan 10:54

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.