Natalia Romankevich
Natalia Romankevich
> Until this is merged and a new release is created, you can use my branch by adding the following in your package.json > > `"react-leaflet": "https://github.com/mistenkt/react-leaflet/archive/refs/tags/react-leaflet-v4.2.1-gitpkg.tar.gz",` > > we've...
It's explained well [here](https://gis.stackexchange.com/questions/447502/prevent-leaflet-map-from-showing-rectangle-around-layer-on-click) and it's not an issue of this library as I understand.  This will remove the outline: `path.leaflet-interactive:focus { outline: none;...
> I think we should add the following rule so that the user can have the outline when tabbing, but is not disturbed when using the mouse. > > ```...
> Perhaps we can do: > > ```css > :focus { > outline: 0; > } > > :focus-visible { > outline: initial; > } > ``` This removes the...
> Instead of trying to guess the right number of times to call `await toPng(...)`, here's a workaround that should hopefully work more consistently. All you need to do is...
I miss the `value` prop. In my case, the `ref.current.setValue` is in `useEffect` and depends on a prop (an array of strings). When I set `isMulti=true` I get an inifity...