Mateusz Burzyński
Mateusz Burzyński
From the given screenshot im not sure what the problem is. Could u describe it?
Well, you don't have a horizontal overflow there - you get a vertical scrollbar. And this is expected as this particular textarea has `maxRows` set to 3: https://github.com/Andarist/react-textarea-autosize/blob/58c9807645dceb9034b733d9cb63aa66df2364b0/example/index.tsx#L11
Can't quite reproduce this on my machine, would be great to have exact repro steps - including dimensions of the browser window, system etc
Ok, I've reproduced this on Windows - couldn't do it on Mac. I **suspect** that this might be some rounding issue, but can't be sure. I have no idea when...
This is a community project. If you experience any problems I encourage you to investigate them and figure out how we can improve the code to handle them - preferably...
SSR should not reach for `react-textarea-autosize.browser.esm.js`. This is a browser build - this means that your bundler is configured incorrectly.
Its better not to bundle this dependency and let it be installed as a regular dep
Aint sure what exact use case would it solve. It feels weird to adjust textarea's width at runtime and regarding one time predicting of the best possible value - it...
Still it seems a little bit out of scope of this library, at least yet. If you feel like working on this, please do and we can come back to...
Could you prepare a runnable repro case for this? I'd like to understand the problem first before rushing into changing the implementation