Myles Scolnick
Myles Scolnick
Closing due to inactivity
@astrowonk - is this a more appropriate feature-request for [jedi](https://github.com/davidhalter/jedi) or [python-lsp-server](https://github.com/python-lsp/python-lsp-server), if these libraries can support it, we can support it.
We use an LSP now (opt-in) for our completions. We use python-lsp-server. When it is not installed, we fallback to `jedi` with some of our own logic (heavy lifting done...
@zilto > Is there any interest in this feature? Yes, we are open to supporting this (with a flag to opt-in) since it may affect performance. Agreed that we can't...
@s-celles this would be nice to have. Any interest in contributing this one?
We put our anywidget elements on shadow doms for better encapsulation of styling to avoid polluting the global namespace. That could be it, but not sure without looking into the...
@paddymul this is likely still because of the shadowdom. the ag styles might be being placed on the global css scope and are not passed to the shadowdom. how are...
Using the `_css` prop is correct. I dont have sample anywidgets, but there are plenty on this page: https://anywidget.dev/en/community/
If you can share the code or a reproduction, i am happy to take a look
I see, our ag-grid styles shouldn't pollute the global CSS. I have a fix for that here: https://github.com/marimo-team/marimo/pull/3601. I also made the anywidget CSS styles use constructed style sheets (and...