(date: CalendarDate)
| 224 | |
| 225 | // Sets focus to a specific cell date |
| 226 | function focusCell(date: CalendarDate) { |
| 227 | date = constrainValue(date, minValue, maxValue); |
| 228 | setFocusedDate(date); |
| 229 | } |
| 230 | |
| 231 | function normalizeValue(newValue: CalendarDate) { |
| 232 | let constrained = constrainValue(newValue, minValue, maxValue); |
no test coverage detected