Date filter for the month
(date: D)
| 548 | |
| 549 | /** Date filter for the month */ |
| 550 | private _shouldEnableDate(date: D): boolean { |
| 551 | return ( |
| 552 | !!date && |
| 553 | (!this.minDate || this._dateAdapter.compareDate(date, this.minDate) >= 0) && |
| 554 | (!this.maxDate || this._dateAdapter.compareDate(date, this.maxDate) <= 0) && |
| 555 | (!this.dateFilter || this.dateFilter(date)) |
| 556 | ); |
| 557 | } |
| 558 | |
| 559 | /** |
| 560 | * Gets the date in this month that the given Date falls on. |
no test coverage detected