@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).
20 lines (19 loc) • 797 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Defines the available Calendar view types for navigation and display.
 *
 * The possible values are:
 * - `month` - Displays days within a month
 * - `year` - Displays months within a year
 * - `decade` - Displays years within a decade
 * - `century` - Displays decades within a century
 *
 * @example
 * ```typescript
 * const view: CalendarView = 'month';
 * ```
 */
export type CalendarView = 'month' | 'year' | 'decade' | 'century';