I have implemented the select component of Material Angular and the dropdown overlay is placed over the select field like that :
I would like to place the dropdown at the bottom of the select field. In fact, the placement of the overlay is calculated by a private method _calculateOverlayPosition in MdSelect. The best solution that I found is to override this method.
However, even if this method is private, I don't know how I can do it.
Is there anyone who has already found a solution to my problem ? Or how hack a private method in typescript?