jupyterlab-sidecar
jupyterlab-sidecar copied to clipboard
A sidecar output widget for JupyterLab
Here's my code. What am I doing wrong: sc = Sidecar(title='Trace') ht = widgets.HTML( value="Hello World", placeholder='Some HTML', description='Some HTML', ) with sc: display(ht) I have also tried: sc =...
I created a simple app using Ipywidgets where I used GridSpecLayout to define the layout of my app and then used a tab within the GridSpecLayout to have multiple tabs...
In the tests there is an ```typescript import { ExampleModel, ExampleView } from '../../src/' ``` But there is no definition of those types in the code base
It would be nice if there was some way to run a cleanup function on the sidecar when the user presses the x button or when the close() function is...
How do I test to see if a sidecar is still open and has not been closed by a user ? currently I close the side car and reopen it...
How to display, in the same view, items in diffent rows? Now can display in different columns. How to add items below other items?
This commit https://github.com/jupyter-widgets/jupyterlab-sidecar/commit/aab5071b9ccc630a6f03bcde0f2e116a2d435bc7 added "display: flex" to the CSS, causing a change in layout when showing multiple elements. Example: sc = Sidecar(...) with sc: display(widgets.Label("A")) display(widgets.Label("B")) Used to show A...
The latest wheel doesn't include the jupyter lab extension. So if you try to install from pip, you won't get the lab extension.
xref: https://github.com/QuantStack/voila/issues/335
trying to install from master in a jupyter 1 env (with yarn and nodejs) ``` pip install sidecar==0.4.0 Collecting sidecar==0.4.0 ERROR: Could not find a version that satisfies the requirement...