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() and layout_container_id() - 🔪 redundant
is.component(layout_)test
| # 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" |
| } |
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()is.component(layout_)testdashR/R/utils.R
Lines 18 to 25 in 9aace06