I two main Components in this situation:
The Popover has no effects on other components.
The Popover blurs TextField.
Link: https://codesandbox.io/s/1omr9x0np7
| Tech | Version |
|--------------|---------|
| Material-UI | v4.0.0-alpha.7 |
| React | v16.8 |
| Browser | Version 73.0.3683.86 (Official Build) (64-bit) |
| TypeScript | 3.4.3 |
| etc. | |
Things to know when using the Popover component:
The component is built on top of the Modal component.
The scroll and click away are blocked unlike with the Popper component.
-- https://material-ui.com/utils/popover/
Your codesandbox doesn't have a textfield so it's hard to replicate. I think you should rather use a Tooltip or Popper for your use case.
@eps1lon Sorry, I updated Reproduction link.
@eps1lon Sorry, I updated Reproduction link.
Yeah as I said: a Popper or Tooltip is more appropriate. A Popover is intended to block the background.
Thanks, Popper is the correct choice