-
-
Notifications
You must be signed in to change notification settings - Fork 143
Update dashCoreComponents package in R to 0.44.0 #482
Conversation
package.json
Outdated
"build:py": "node ./extract-meta src/components > dash_core_components/metadata.json && cp package.json dash_core_components && dash-generate-components ./src/components dash_core_components", | ||
"build:r": "node ./extract-meta src/components > dash_core_components/metadata.json && cp package.json dash_core_components && dash-generate-components ./src/components dash_core_components --r-prefix 'core'", | ||
"build:py": "dash-generate-components ./src/components dash_core_components", | ||
"build:r": "dash-generate-components ./src/components dash_core_components --r-prefix 'dcc'", |
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.
Again, let's 🔪 extract-meta
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.
fixed in 2a78084
man/dccChecklist.Rd
Outdated
@@ -10,7 +10,7 @@ Checklist is a component that encapsulates several checkboxes. The values and la | |||
} | |||
|
|||
\usage{ | |||
coreChecklist(id=NULL, options=NULL, values=NULL, className=NULL, style=NULL, inputStyle=NULL, inputClassName=NULL, labelStyle=NULL, labelClassName=NULL, ...) | |||
dccChecklist(id=NULL, options=NULL, values=NULL, className=NULL, style=NULL, inputStyle=NULL, inputClassName=NULL, labelStyle=NULL, labelClassName=NULL, loading_state=NULL, ...) |
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.
These ones still have ...
at the end, but looks like the components themselves lost that a while back?
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 again for noting this -- it turns out there were actually two separate issues to address.
This has been fixed in plotly/dash#638; when that PR is merged, ...
will only appear when wildcards are supported by the component.
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.
The components being merged here were 'transpiled' using the updated code from the aforementioned PR ☝️, so the stray ellipsis has been 🔪.
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.
- 🔪
extract-meta
- open an issue to come back to the
...
in the docs - 💃
#482 renamed core* to dcc*, coreLoading.R is not even exported, so it can be safely deleted.
In addition to updating
dash_core_components.min.js
anddash_core_components.dev.js
to version 0.44.0, and includingplotly-1.45.0.min.js
, this PR also aims to incorporate support for loading_state in "transpiled" dashR components.Some simplification of the component generation statements in
package.json
is proposed as well.