Mateusz Burzyński
Mateusz Burzyński
If you pass `disableOnClickOutside` prop the component is treated as controlled in this regard and calling `enableOnClickOutside` method wont change that as the prop stays the same, instead of just...
I think the only way to make this work now is to control passed `disableOnClickOutside` prop, there is no clean way to call `disableOnClickOutside` method 🤔 Your use case seems...
Makes sense :) Thanks for the contribution. Could add some simple tests for this PR?
Could you prepare a codesandbox illustrating the problem? I could tinker with it then more quickly. I'd also consider merging the PR if you like to provide one.
I thought even of the simpler way thing - just pass sandbox id as argument. I think this still should be considered and added as it might be useful for...
> > I think there shouldnt be any magic here, just create something like .codesanbox.json with the sandbox's id and we are good to go. It has also the benefit...
@tomayac I'm on vacation rn but I might take a look in a week when I get back. Don't hesitate to ping me again if I don't - sometimes things...
@aradhyakalva the most likely fix for your problem is to add this to your `tsconfig.json`:: ```json { "compilerOptions": { "lib": ["DOM"] } } ```
After continuing the work with my fix I've noticed that Monaco tooltips can get cut off with this applied - which makes sense since they are, unfortunately, not positioned using...
@pje done