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).

25 lines (24 loc) 697 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * @hidden */ export const MIDNIGHT_DATE = new Date(1980, 0, 1); /** * @hidden */ export const MIN_DATE = new Date(1900, 0, 1); /** * @hidden */ export const MAX_DATE = new Date(2099, 11, 31); /** * @hidden */ export const MIN_TIME = new Date(1980, 0, 1); /** * @hidden */ export const MAX_TIME = new Date(1980, 0, 1, 23, 59, 59);