Components like ChipSelect have floating content (select list in this case).
Currently this list is implemented in naive z-index technique. While it works, I must admit that this approach has crucial downsides and should be avoided.
React Portals are the correct way to implement this, so I have to use them (manually or through external package).
Components like ChipSelect have floating content (select list in this case).
Currently this list is implemented in naive z-index technique. While it works, I must admit that this approach has crucial downsides and should be avoided.
React Portals are the correct way to implement this, so I have to use them (manually or through external package).