ember-cli-materialize
                                
                                 ember-cli-materialize copied to clipboard
                                
                                    ember-cli-materialize copied to clipboard
                            
                            
                            
                        datepicker start date and end date don't work for dynamic values (max, min)
- set two datepicker component, first bound to startDate, second bound to endDate.
- set on the first component max value to endDate, and on the seconds component min value to startDate
- pick a startDate, then endDate value can be set to a date before the startDate.
- startDate can be set to be after endDate
** I think it works with static values.
This can be fixed by observing min and max values, and then calling picker.set('min', this.get('min')) or picker.set('max', this.get('max')). very simple fix.