Skip to content

Commit 3cd3c04

Browse files
committed
Drop IE 11 support and core-js dependency
1 parent 6ea871e commit 3cd3c04

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@
3636

3737
* Fixed `JS()` not working when `htmlwidgets` 1.6.3 or later is installed. ([#348](https://github.com/glin/reactable/issues/348))
3838

39+
## Breaking changes
40+
41+
* Internet Explorer 11 (IE 11) is no longer supported.
42+
* `core-js` is no longer included in the HTML dependencies. This was required to support IE 11 and old versions of the RStudio Viewer. ([#245](https://github.com/glin/reactable/issues/245))
43+
3944
# reactable 0.4.4
4045

4146
[Documentation - reactable 0.4.4](https://v0-4-4--reactable-docs.netlify.app/)

R/reactable.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1002,7 +1002,6 @@ widget_html.reactable <- function(id, style, class, ...) {
10021002
# wouldn't be needed with ramnathv/htmlwidgets#324
10031003
reactDependencies <- function() {
10041004
list(
1005-
reactR::html_dependency_corejs(), # Necessary for RStudio Viewer version < 1.2 and IE11
10061005
reactR::html_dependency_react(),
10071006
reactR::html_dependency_reacttools()
10081007
)

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,9 @@ To learn more about using reactable, check out the examples below.
107107
- [JavaScript API](https://glin.github.io/reactable/articles/examples.html#javascript-api)
108108

109109
## Browser Support
110-
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="IE / Edge" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>IE / Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/opera/opera_48x48.png" alt="Opera" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>Opera |
110+
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="Edge" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/opera/opera_48x48.png" alt="Opera" width="24px" height="24px" />](https://godban.github.io/browsers-support-badges/)<br>Opera |
111111
| --------- | --------- | --------- | --------- | --------- |
112-
| IE 11*, Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
113-
114-
\* Support for Internet Explorer 11 was deprecated in reactable v0.4.0.
112+
| Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
115113

116114
## License
117115
MIT

0 commit comments

Comments
 (0)