Skip to content

Commit 541c3e0

Browse files
committed
feat(data-viewer): port official PR REditorSupport#1717 to existing session architecture
- upgrade AG Grid Community to v35.2.1 and adopt v35 APIs - improve typed sorting, filtering, bigint and logical NA handling - support native Arrow and Polars data frames - remove the data.table dependency - add fetch status and scrollbar row-position feedback
1 parent 4417bf9 commit 541c3e0

6 files changed

Lines changed: 585 additions & 328 deletions

File tree

R/session/init.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ init_first <- function() {
1717
}
1818

1919
# check required packages
20-
required_packages <- c("jsonlite", "rlang", "data.table")
20+
required_packages <- c("jsonlite", "rlang")
2121
missing_packages <- required_packages[
2222
!vapply(required_packages, requireNamespace,
2323
logical(1L), quietly = TRUE
@@ -48,7 +48,6 @@ init_last <- function() {
4848
# cleanup previous version
4949
removeTaskCallback("vscode-R")
5050
options(vscodeR = NULL)
51-
options(datatable.quiet = TRUE)
5251
.vsc.name <- "tools:vscode"
5352
if (.vsc.name %in% search()) {
5453
detach(.vsc.name, character.only = TRUE)

0 commit comments

Comments
 (0)