I have a project with a start and end date picker right next to each other, since one is at the corner of the screen, it opens in a modal, and the other opens normally
I know this was done as a fix to the datetime picker displays underneath other elements bug, but if this is the workaround then it would be nice to have a way to make them consistent
Typically, if you are getting the modal version, it is due to some containerization. because of the way the component renders itself it will think that the popup cannot be displayed without creating a modal.
If you have this issue, you can either attempt to reconfigure how your layout is setup (maybe there are too many flex boxes trying to achieve a type of layout as an example) or you can give the picker, or its container, a margin left or right in the direction it needs to go.