yjose / reactjs-popup

React Popup Component - Modals,Tooltips and Menus —  All in one
https://react-popup.elazizi.com/
MIT License
1.8k stars 207 forks source link

Remove SSR error #351

Open tomitrescak opened 6 months ago

tomitrescak commented 6 months ago

The component originally tries to be accessible by adding aria-describedby by automatically generated id. This is a breaking behaviour as during SSR on the server, the id differs from the one on the client.

Now, the component aria-described by is filled by the id property. Removing the issue and maintaining accessibility. Solves #215 and #219 and #334