Eric Charles
Eric Charles
mambalite might be interesting https://github.com/emscripten-forge/recipes#outlook
> The values are coming from a hook that runs on scroll as well as after the initial render at line 866 in @jupyterlab/ui-components/lib/components/windowedlist.js where const estimatedTotalHeight = this.viewModel.getEstimatedTotalSize(); returns...
Storybook provides a nice way to support tests with playwright, see https://github.com/datalayer/jupyter-ui/blob/main/packages/react/stories/Console.test.ts
The pyodide support has introduced requirements for webpack/vite configs. I have pushed the proposed workaround for dev mode in https://github.com/datalayer-examples/jupyter-react-vite-example/commit/95fe1df03edf3250ea3b416e999549180cb033dd Maybe @fcollonval knows more on how to fix the wheel...
Not sure is this link helps https://vitejs.dev/guide/assets
Can you add `raw-loader` as dependency in your `package.json`?
Webpack's raw-loader has been introduced to deal with the color theme change in next-js https://github.com/datalayer/jupyter-ui/blob/026bc319e35a896abf700bcdbda127654c748acb/packages/react/src/jupyter/lab/JupyterLabCss.tsx#L55-L65 That sounds finally like a bad idea, as the webpack loader are not compatible with...
You can configure the kernel name and server via props on the Jupyter context as listed on https://jupyter-ui.datalayer.tech/docs/components/context/ - `defaultKernelName` - `jupyterServerHttpUrl` - `jupyterServerWsUrl` Doe it help? If you want...
You can list the available kernelspecs with ```bash $ jupyter kernelspec list Available kernels: python3 .../jupyter/kernels/python3 python3-slow-start .../jupyter/kernels/python3-slow-start ``` `python3` or `python3-slow-start` will be the names you would use for...
@alwayslovez Right, there was an issue which I have fixed in the `0.7.7` release. You will have to set the `kernelSpecName` to the name the command `jupyter kernelspec list` returns....