* During range selection, when the user is navigating with the keyboard, * the currently focused day is considered the "second day". * @private
()
| 819 | * @private |
| 820 | */ |
| 821 | _updateSecondTimestamp() { |
| 822 | if (this.selectionMode === CalendarSelectionMode.Range && (this.selectedDates.length === 1 || this.selectedDates.length === 2)) { |
| 823 | this._secondTimestamp = this.timestamp; |
| 824 | } |
| 825 | } |
| 826 | |
| 827 | get _specialCalendarDates() { |
| 828 | return this.specialCalendarDates; |
no outgoing calls
no test coverage detected