Trevor Manz
Trevor Manz
For anyone else reading this, `display` works for the core ipywidgets-based API: ```python import anywidget import traitlets class CounterWidget(anywidget.AnyWidget): _esm = """ function render({ model, el }) { let count...
Ah you know what, I think I figured something out. I don't think it is related to the `display` import, my mistake. ```python display(HelloWidget(value=42)) ``` Does not show anything for...
Thanks for the exploration! ok, now i’m realizing that this is due to fact we make widgets with our Descriptor weakrefable. The comms are getting cleaned up. cc: @tlambert03
Just wanted to follow up from a recent [discussion](https://github.com/marimo-team/marimo/pull/5879), I think this behavior will end up being documented as expected rather than "fixed". Our goal with the descriptor API is...
Resolved as of #1147
Thanks for the detailed error message. I'm sorry I haven't been able to dive deep into this yet. Some users on Discord mentioned some issues in an update of VS...
I just tested locally with the anywidget template repo and I'm able to develop in VS Code: ``` pnpm create anywidget@latest ``` However, I think there may be an issue...
I believe this error stems from non-anywidget JavaScript code failing to load in VS Code, not anywidget itself. I've opened #717 to improve error messaging to better identify the true...
I think I understand the motivation, but I'm weary of options except Option 3. The proposed solutions tightly couple Gosling with other libraries, implicitly making vega-lite and others dependencies of...
> can probably get ideas from Vitessce since AFAIK it loads HiGlass (or Vega) only when needed, but users only need to use a single component, Vitessce. The top level...