UNPKG

@progress/kendo-angular-dateinputs

Version:

Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).

24 lines (23 loc) 925 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { SelectionRangeEnd } from "./selection-range-end.type"; import { SelectionRange } from "./selection-range.interface"; /** * Sets the Calendar selection mode. * * The available values are: * * `single` (default) * * `multiple` * * `range` * */ export type CalendarSelection = 'single' | 'multiple' | 'range'; /** * @hidden */ export declare function handleRangeSelection(date: Date, selectionRange: SelectionRange, activeRangeEnd: SelectionRangeEnd, allowReverse?: boolean): { activeRangeEnd: SelectionRangeEnd; selectionRange: SelectionRange; };