vuematerial / vue-material

Vue.js Framework - ready-to-use Vue components with Material Design, free forever.
https://www.creative-tim.com/vuematerial
MIT License
9.88k stars 1.16k forks source link

fix(MdDatePicker): close datepicker on blur - fixes issues #2371, #2343 #2372

Closed arpansaha13 closed 1 year ago

arpansaha13 commented 1 year ago

The date-picker dialog would not close even if focus moves out of the datepicker input field.

I have added a focus-out event listener instead of blur event listener. If the new focus is within the datepicker, then the dialog will remain open. But if the new focus is outside the datepicker, then dialog will close.