This repository has been archived by the owner on Jun 3, 2024. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Omit marks that are outside of range specified by min and max. #695
Omit marks that are outside of range specified by min and max. #695
Changes from 4 commits
709f46c
3bf1241
480511f
01324bf
5cb8509
9c94308
396756e
4bdaf71
1f5d15d
a93fa42
fdd296b
ad838fc
c8070d4
9e2ee6b
4d03221
5a6a845
bbb4fea
a0aad56
1261f90
e4476ea
b7dee1a
edc2784
df14f7d
b9a8fcf
dfee39a
3e32f28
473e86a
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Not for now, but just because I'm thinking about it: I'd like us to consider moving away from
omit
for forwarding props to 3rd-party components, and usepick
instead. IMOomit
makes it too hard to follow which props are being passed on, too easy to forget to remove newly added props, and makes us lazy about accepting someone else's choice of names and values even if they don't make sense in our case. (cc @Marc-Andre-Rivet )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.
@alexcjohnson Agreed for DCC! There's also a bit of this happening in the table fragments / d3-format wrappers that should be looked into. Due to its generated nature I'd say whether this makes sense on HTML components would have to be evaluated independently. Can you open an issue for follow up and tag it for
Dash v1.x
milestone? Thanks.