-
-
Notifications
You must be signed in to change notification settings - Fork 31
Closed
Description
This issue describes changes to bring the Dash for R internal API more in line with the Python version of the backend. The changes here are minimal, and related largely to outdated code:
- 🔪
is.layout()
andlayout_container_id()
- 🔪 redundant
is.component(layout_)
test
Lines 18 to 25 in 9aace06
# layout is really a special type of component | |
is.layout <- function(x) { | |
is.component(x) && identical(x[["props"]][["id"]], layout_container_id()) | |
} | |
layout_container_id <- function() { | |
"_dashR-layout-container" | |
} |