| 12
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 
 | htmlwidgets 1.3
-----------------------------------------------------------------------
* All files and directories under the `inst/htmlwidgets/` directory of
  a widget package will be copied when a widget is rendered due to an
  unintended change in #306. Only the single `WIDGET.js` file should be
  copied (where `WIDGET` is the widget name). Fixed via #312.
* Support for async Shiny. Widget render functions that use the default
  implementation of `htmlwidgets::shinyRenderWidget` can receive
  promises of widget objects (you can, of course, continue to use
  regular widget objects as well).
  See https://rstudio.github.io/promises for more about async Shiny.
htmlwidgets 1.2
-----------------------------------------------------------------------
* htmlwidgets can be created without a package, without yaml, and/or
  without JavaScript binding. (#304, #305)
* Use RStudio Page Viewer for full page widgets.
* Fix #297: Setting background in saveWidget() is broken
htmlwidgets 1.1
-----------------------------------------------------------------------
* The saveWidget's background parameter could not process hex color
  codes, due to changes introduced in htmlwidgets 1.0. (#297)
htmlwidgets 1.0
-----------------------------------------------------------------------
* Fix issues with self-contained mode when used with new versions of
  pandoc. (#289)
htmlwidgets 0.9
-----------------------------------------------------------------------
* Starting with R 3.4.0, a "Calling 'structure(NULL, *)' is deprecated"
  warning would occur when shinyRenderWidget encountered a NULL value.
  (#269)
* Fix edge case where using dynamic HTML dependencies from a widget
  binding's JS factory function would fail.
htmlwidgets 0.8
-----------------------------------------------------------------------
* Export getDependency function
* `onRender` hooks were firing too early when used in Shiny apps.
* Widget IDs: only restore random.seed when non-NULL
htmlwidgets 0.7
-----------------------------------------------------------------------
* Pass knitr options to saveWidget
* Ensure that scaffoldWidget opens files correctly within RStudio
* The resize handler also works for the JavaScript events `shown.bs.collapse`
  and `hidden.bs.collapse` now so that widgets inside the Bootstrap collapse
  class can be displayed
* Fix references to vignettes in documentation
* Add elementId parameter to widget function generated by scaffoldWidget
* More robust method of generating unique widget IDs
* Modify advanced and sizing vignettes to use new style widget declarations
htmlwidgets 0.6
-----------------------------------------------------------------------
* Introduce new scheme for defining JavaScript bindings that will make
  it easier for widgets to gain access to other widget instances on
  the page.
* Add `onRender` hook for widgets to execute custom JavaScript code
  after rendering.
* Add `appendContent` and `prependContent` functions for adding HTML
  to a widget rendered in a static context (i.e. R console or Rmd)
* Fix a bug where the string "</body></html>" in the widget data caused
  `saveWidget()` to have malformed output. (#168)
* Tweak pandoc conversion used in saveWidget to prevent hanging with
  large htmlwidget script data elements (use "markdown" rather than
  "markdown-strict" as input format)
* Increase pandoc stack size to 512M for saveWidget (often required for
  e.g. larger embedded leaflet maps). Stack size can also be controlled
  by the pandoc.stack.size option.
* Import latest version of with_pandoc_safe_environment from rmarkdown
* Fix issue that prevented calling renderValue() from within resize()
htmlwidgets 0.5
-----------------------------------------------------------------------
* Add background parameter to saveWidget function
* Fix a bug where "</script>" appearing in widget data would break
  parsing
* Fix a bug where multiple widgets on a page caused all but one to miss
  resize events
* Sync vignettes with contents of htmlwidgets website
htmlwidgets 0.4
-----------------------------------------------------------------------
* Use minified files while scaffolding widget wherever available
* Suppress viewing widgets in non-interactive R sessions by default
* Export the HTMLWidgets.staticRender function
* Add a preRenderHook for widgets
* Use jsonlite rather than RJSONIO for JSON serialization
* Call widget.resize in more situations
htmlwidgets 0.3.2
-----------------------------------------------------------------------
* Initial release to CRAN
 |