* Called by the Calendar component. * @protected
()
| 451 | * @protected |
| 452 | */ |
| 453 | _hasNextPage(): boolean { |
| 454 | const amountInYears = this._getPageSize() * this._getRangeSize(); |
| 455 | return this._gridStartYear! + amountInYears - 1 < this._maxDate.getYear(); |
| 456 | } |
| 457 | |
| 458 | /** |
| 459 | * Called by the Calendar component. |
nothing calls this directly
no test coverage detected