Shahmir Varqha
Shahmir Varqha
Hi, I found that removing the max-width's of both the child and parent container and making the parent container a flexbox works. Let me know if I can help with...
Hi, I tried an interesting solution for this issue. Instead of rerendering the lines, I moved the grid around! ``` // moves the grid around to match the viewport export...
Could we use their sample user agents which is the first 10,000 rows of their actual DB? [https://developers.whatismybrowser.com/useragents/database/](https://developers.whatismybrowser.com/useragents/database/) Or maybe we can start compiling our own list and manually update...
hi @mscolnick, I'd like to help with this. My thoughts so far: - add a `keyboard_shortcut` parameter in Python, so users can call button(keyboard_shortcut='Ctrl+G') - add a `keyboardShortcut` prop for...
great idea, and we can always change it after getting wider feedback. I've made a draft, imo, the keyboard shortcuts should be universal, so working on that + testing.
Hey, sorry have been quite occupied recently. I tested Myles's solution w Marimo and yes it seems to be really smooth! This would add @tanstack/react-virtual lib. Are we opting for...
yeap agreed, there is a decent amount of refactoring needed with virtualization. Add tableContainer, grid display. And the table component is used in many places.
ah 😅, I finished it but wanted to test in the morning. But feel free to just take it up next time @Haleshot :)
This works as a quick fix. ```.py import marimo as mo import plotly.express as px # no async so it executes immediately script = '''''' fig_html = px.line( x=[1, 2,...
hmm, I thought the issue was the mathjax library is missing, if I return this in `plotly_formatters.py:68`, the script wouldn't be executed. ```plotly_formatters.py return Html( 'console.log("Hello!")' + build_stateless_plugin( component_name="marimo-plotly", args={"figure":...