-
Notifications
You must be signed in to change notification settings - Fork 15
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
feat: ui.progress_bar and ui.progress_circle #892
feat: ui.progress_bar and ui.progress_circle #892
Conversation
wusteven815
commented
Sep 17, 2024
•
edited
Loading
edited
- Adds ui.progress_circle and ui.progress_bar #826
- Adds docs: ui.progress_bar #871
- Adds docs: ui.progress_circle #872
24b005d
to
eb80fa8
Compare
Approved js changes, haven't looked at python. |
@wusteven815 include docs for these as well. We should be adding docs for every new component we add. Will close #871 and #872 as well. |
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.
Add docs
label_position: LabelPosition = "top", | ||
show_value_label: bool | None = None, | ||
label: Element | None = None, | ||
# format_options, # omitted because need to connect it to Deephaven formatting options as well |
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.
@ethanalvizo is adding this to number_field
right now, can add it to progress_bar
when he's done that.
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.
Every example should be standalone runnable, therefor needs import statements.
Co-authored-by: margaretkennedy <[email protected]>
- Fixes deephaven#731 - Extract and save `key` prop - Modify key generation to use the `key` prop if it exists - Allow `map` to be a valid component - Converts directly to a list while checking for unique props
- Fixes deephaven#744 - Update props types to convert `renderEmptyState` from `Element` in Python to `() => Element` in TypeScript - Throw error if `children` is undefined
Upgrades and centralizes the Vite version since we want to use the same version across all plugins
Closes deephaven#763 --------- Co-authored-by: margaretkennedy <[email protected]>
- Fixes deephaven#900 - Add missing `await`s
7c371e1
to
1c46f92
Compare
Co-authored-by: Don <[email protected]>
1c46f92
to
2d5f692
Compare
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.
Only reviewed the documentation and python. Mostly minor details.
@@ -0,0 +1,112 @@ | |||
# Progress Circle | |||
|
|||
Progress circles show the progression of a system operation such as downloading, uploading, or processing, in a visual way. They can represent determinate or indeterminate progress. |
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.
Is there any differentiation that should be made when picking between progres_bar
and progress_circle
or are they completely interchangeable?
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.
I don't think so, React Spectrum doesn't say anything either