ipywidgets icon indicating copy to clipboard operation
ipywidgets copied to clipboard

OutputWidget and Selection widget enhancements

Open fleming79 opened this issue 1 year ago • 1 comments
trafficstars

Output

This change adds a new class to subclass the SimplifiedOutputArea in place of the JupyterLuminoPanelWidget for the Output area. SimplifiedOutputArea was deliberately chosen instead of OutputArea.

Before

Internally the layout is applied to a widget that contains the OutputArea meaning the layout doesn't apply to the OutputArea as expected. Here we unsuccessfully invert the widgets.

image

After

Now the layout applies as expected to the OutputArea. Here the widgets are inverted as directed.

image

Select

The widget-select css class height is changed from inherit to 100% enabling the selection field to span vertically by default.

Before

image

After

image

fleming79 avatar Nov 17 '24 22:11 fleming79