* Called by Calendar.js * **Note:** when the user presses the ">" button in the calendar header (same as "PageDown") * @protected
()
| 426 | * @protected |
| 427 | */ |
| 428 | _showNextPage() { |
| 429 | this._modifyTimestampBy(PAGE_SIZE, true); |
| 430 | } |
| 431 | |
| 432 | _isOutOfSelectableRange(date: CalendarDate, minDate: CalendarDate, maxDate: CalendarDate): boolean { |
| 433 | const month = date.getMonth(); |
nothing calls this directly
no test coverage detected