-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix documentation bug which omits children from R help pages #638
Conversation
@@ -78,7 +78,8 @@ | |||
Version: {package_version} | |||
Authors @R: as.person(c({package_author})) | |||
Description: {package_description} | |||
Depends: R (>= 3.5.0) | |||
Depends: R (>= 3.0.2) | |||
Imports: dashR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We talked on Friday about separating dependency loading from the Imports: dashR
search, in part by extending the function name to .{package_name}_dashR_js_metadata()
. That said it does seem like Imports: dashR
is appropriate for its regular purpose (ensuring the right packages are installed), particularly for packages outside the core.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💃 - thanks for the descriptive commit messages
The arguments and usage for components in
dashHtmlComponents
anddashCoreComponents
did not properly listchildren
in the list of supported arguments.This PR will update the 'transpiler' to address this issue, while removing references to
htmltools
, and an unnecessary repeated call toreorder_props
. A dependency on thedashR
package is introduced for 'transpiled' component libraries.