Eric Charles

Results 535 comments of Eric Charles

> Curiously, when I run a notebook from the server UI, I am able to use %matplotlib widget without any problems Are you saying you can use `%matplotlib widget` from...

I have just pushed work around ipywidget with support for jupyter-matplotlib. I will now make it configurable so anyone can define the widgets he wants, but in the meantime, jupyter-matplotlib...

The latest push introduces a `externalIPyWidgets` (name can be better) where you can give an array of ipywidgets to load, eg.(see the example in the main tree) ```ts externalIPyWidgets={["jupyter-matplotlib:0.11.3"]} externalIPyWidgets={["bqplot:0.5.42"]}...

Now you have in latest main `externalIPyWidgets`. and `bundledIPyWidgets` props with more typed object to pass. External will load from CDN, you have to ship in your package.json what you...

Closing this as resolved, please open separated issue for any specific question.

@BrandonEscamilla just published @datalayer/jupyter-react 0.6.2. this morning I have pushed a feature to ensure that the JupyterLab CSS were not loaded when the components are used in JupyterLab it self...

@BrandonEscamilla Sorry, forgot to mention that I changed to more typed props (separate the name and version as ` name: "jupyter-matplotlib", version: "0.11.3" }` For externals https://github.com/datalayer/jupyter-ui/blob/527a49ca63bbe2a80542ee99243c7c376646b83c/packages/react/src/examples/Bqplot.tsx#L14-L16 for bundled https://github.com/datalayer/jupyter-ui/blob/527a49ca63bbe2a80542ee99243c7c376646b83c/packages/react/src/examples/Matplotlib.tsx#L17-L19

Rested on my env and it works for me. Now trying to create a codesandbox, but a bit slow atm. Can you double check the version of jupyter-react you use?...

A few issues here: - I have created a codesandbox and indeed I can reproduce the broken ipywidget with externalIPyWidget prop https://codesandbox.io/p/sandbox/jupyter-react-cra-notebook-66r25c-66r25c?file=/src/index.tsx:1,1 - The toolbar is a bit tricky, very...