ipywidgets
ipywidgets copied to clipboard
Interactive Widgets for the Jupyter Notebook
### Problem It would be nice if I could set the background color of the progress bar. right now its a near-white gray color. Jupyter puts ipywidgets into a white...
Dropdown widgets display a tooltip (or at least have a `title` set in the `select` tag - what the browser does is up to the browser) as long as you...
This PR combines the following PRs - #3922 - #3921 - #3966 It also requires python>=3.10.
The counter (0) next to the file uploader icon should be optional. It does not fit in well with the rest of our buttons, which are minimalistic.
Fixes https://github.com/jupyter-widgets/ipywidgets/issues/4007
The list of color names used in validating the color trait contains certain mistakes. https://github.com/jupyter-widgets/ipywidgets/blob/fbc0d6e9cd63727b5951f2bf559f1a5769e4455d/python/ipywidgets/ipywidgets/widgets/trait_types.py#L13C1-L14C1 ```python _color_names = ['aliceblue', 'antiquewhite', 'aqua', 'aquamarine', 'azure', 'beiae', 'bisque', 'black', 'blanchedalmond', 'blue', 'blueviolet', 'brown',...
Hi, 1st great project thanks ! Just to report an error with the last conda package build, I have `InvalidArchiveError` with `jupyterlab_widgets-3.0.16-pyhd8ed1ab_0.conda` when I tried to install it. I do...
## Description Clicking away from a text-based widget in an `interact_manual` function triggers an execute event without the button being clicked. This also occurs if one tabs away from it...
## Description Updating a widget in the background, as advertised [in the doc](https://ipywidgets.readthedocs.io/en/stable/examples/Widget%20Asynchronous.html#updating-a-widget-in-the-background), fails. ## Reproduce Open a notebook and copy-paste the code (from the documentation): ``` import threading from...
### Problem I would like to embed widgets in light/dark aware applications, such as the `pydata-sphinx-theme` for ipywidgets on ReadTheDocs. ### Proposed Solution - Ship a `variableslight.css` and `variablesdark.css` -...