Maarten Breddels
Maarten Breddels
Do not include a div in between temporarily. Since the widget view is created before we try to render the the upyter-widget-mount-point we do not need to get it asynchrounously...
This might break classic notebook where requirejs is already available. Proof of concept fix. The following code on colab works: ```python import altair as alt import pandas as pd from...
TODO: - [ ] test - [ ] document The motivation for this was a discord question about using ydata-profiling (formerly known as pandas-profiling): ```python import pandas as pd from...
Fixes https://github.com/widgetti/solara/issues/127 TODO: * [x] hook support for clear_output should also go upstream to ipykernel * [ ] tests * [ ] make sure the whole API surface is covered...
If you have a dataclass like: ```python @dataclasses.dataclass(frozen=True) class Bears: type: str count: int = dataclasses.field() ``` And you transform it to: ```python @dataclasses.dataclass(frozen=True) class Bears: count: Field[int] type: Field[str]...
Allows to use query parameters to manage state.
We currently use normal vuetify, while in ipyvuetify we use a special version. This makes solara's css different from ipyvuetify. This fix can be considered a breaking change, therefore we...
see https://github.com/widgetti/solara/issues/221 https://github.com/widgetti/solara/pull/185 is a good template of what it should look like