@progress/kendo-react-dateinputs 14.4.1-develop.9 → 14.5.0-develop.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (71) hide show
  1. package/calendar/components/Calendar.d.ts +35 -110
  2. package/calendar/components/Calendar.js +5 -5
  3. package/calendar/components/Calendar.mjs +288 -313
  4. package/calendar/components/CalendarCell.d.ts +1 -10
  5. package/calendar/components/CalendarCell.js +1 -1
  6. package/calendar/components/CalendarCell.mjs +68 -78
  7. package/calendar/components/Header.d.ts +11 -24
  8. package/calendar/components/Header.js +1 -1
  9. package/calendar/components/Header.mjs +41 -55
  10. package/calendar/components/HorizontalViewList.d.ts +29 -27
  11. package/calendar/components/HorizontalViewList.js +1 -1
  12. package/calendar/components/HorizontalViewList.mjs +112 -102
  13. package/calendar/components/MultiViewCalendar.d.ts +39 -141
  14. package/calendar/components/MultiViewCalendar.js +1 -1
  15. package/calendar/components/MultiViewCalendar.mjs +331 -373
  16. package/calendar/components/Navigation.d.ts +19 -39
  17. package/calendar/components/Navigation.js +1 -1
  18. package/calendar/components/Navigation.mjs +95 -107
  19. package/calendar/components/TodayCommand.d.ts +8 -25
  20. package/calendar/components/TodayCommand.js +1 -1
  21. package/calendar/components/TodayCommand.mjs +44 -61
  22. package/calendar/components/View.d.ts +12 -43
  23. package/calendar/components/View.js +1 -1
  24. package/calendar/components/View.mjs +111 -137
  25. package/calendar/components/ViewList.d.ts +27 -67
  26. package/calendar/components/ViewList.js +1 -1
  27. package/calendar/components/ViewList.mjs +207 -225
  28. package/calendar/models/CalendarSettings.d.ts +2 -2
  29. package/calendar/models/MultiViewCalendarSettings.d.ts +4 -4
  30. package/calendar/models/ViewService.d.ts +1 -1
  31. package/calendar/models/index.d.ts +7 -7
  32. package/calendar/services/BusViewService.d.ts +1 -1
  33. package/calendar/services/DecadeViewService.d.ts +2 -2
  34. package/calendar/services/MonthViewService.d.ts +2 -2
  35. package/calendar/services/NavigationService.d.ts +1 -1
  36. package/calendar/services/ScrollSyncService.d.ts +4 -4
  37. package/calendar/services/WeekNamesService.d.ts +1 -1
  38. package/calendar/services/YearViewService.d.ts +2 -2
  39. package/dateinput/DateInput.d.ts +1 -1
  40. package/dateinput/models/DateInputSettings.d.ts +2 -2
  41. package/dateinput/models/dateinput-options.d.ts +2 -2
  42. package/dateinput/models/index.d.ts +7 -7
  43. package/dateinput/models/kendo-date.d.ts +1 -1
  44. package/datepicker/models/DatePickerSettings.d.ts +2 -2
  45. package/datepicker/models/index.d.ts +1 -1
  46. package/daterangepicker/models/DateRangePickerCalendarSettings.d.ts +1 -1
  47. package/daterangepicker/models/DateRangePickerDateInputSettings.d.ts +1 -1
  48. package/daterangepicker/models/DateRangePickerSettings.d.ts +3 -3
  49. package/daterangepicker/models/index.d.ts +4 -4
  50. package/datetimepicker/DateTimePicker.d.ts +1 -1
  51. package/datetimepicker/models/DateTimePickerSettings.d.ts +1 -1
  52. package/datetimepicker/models/index.d.ts +1 -1
  53. package/dist/cdn/js/kendo-react-dateinputs.js +1 -1
  54. package/index.d.mts +1 -1
  55. package/index.d.ts +1 -1
  56. package/package-metadata.js +1 -1
  57. package/package-metadata.mjs +2 -2
  58. package/package.json +8 -8
  59. package/timepicker/TimePart.d.ts +1 -1
  60. package/timepicker/TimePicker.d.ts +1 -1
  61. package/timepicker/TimeSelector.d.ts +1 -1
  62. package/timepicker/models/ListService.d.ts +2 -2
  63. package/timepicker/models/TimePickerSettings.d.ts +3 -3
  64. package/timepicker/models/index.d.ts +5 -5
  65. package/timepicker/services/DayPeriodService.d.ts +3 -3
  66. package/timepicker/services/HoursService.d.ts +3 -3
  67. package/timepicker/services/MinutesService.d.ts +3 -3
  68. package/timepicker/services/SecondsService.d.ts +3 -3
  69. package/virtualization/Virtualization.d.ts +25 -63
  70. package/virtualization/Virtualization.js +1 -1
  71. package/virtualization/Virtualization.mjs +163 -168
@@ -5,8 +5,8 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { DateInputFormatPlaceholder } from '../../dateinput/models/format-placeholder.js';
9
- import { DateInputsPopupSettings } from '../../PopupSettings.js';
8
+ import { DateInputFormatPlaceholder } from '../../dateinput/models/format-placeholder';
9
+ import { DateInputsPopupSettings } from '../../PopupSettings';
10
10
  import { CalendarProps } from '../../calendar/components/Calendar.js';
11
11
  import { PopupProps } from '@progress/kendo-react-popup';
12
12
  import { DateInputProps, MultiViewCalendarProps } from '../../index.js';
@@ -5,5 +5,5 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { DatePickerSettings } from './DatePickerSettings.js';
8
+ import { DatePickerSettings } from './DatePickerSettings';
9
9
  export { DatePickerSettings };
@@ -5,7 +5,7 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { MultiViewCalendarSettings } from '../../calendar/models/MultiViewCalendarSettings.js';
8
+ import { MultiViewCalendarSettings } from '../../calendar/models/MultiViewCalendarSettings';
9
9
  /**
10
10
  * Represents the settings that can be passed to the MultiViewCalendar inside the DateRangePicker.
11
11
  */
@@ -5,7 +5,7 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { DateInputSettings } from '../../dateinput/models/DateInputSettings.js';
8
+ import { DateInputSettings } from '../../dateinput/models/DateInputSettings';
9
9
  /**
10
10
  * Represents the settings that can be passed to the DateInput inside the DateRangePicker.
11
11
  */
@@ -5,9 +5,9 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { DateRangePickerCalendarSettings } from './DateRangePickerCalendarSettings.js';
9
- import { DateRangePickerDateInputSettings } from './DateRangePickerDateInputSettings.js';
10
- import { DateRangePickerPopupSettings } from './DateRangePickerPopupSettings.js';
8
+ import { DateRangePickerCalendarSettings } from './DateRangePickerCalendarSettings';
9
+ import { DateRangePickerDateInputSettings } from './DateRangePickerDateInputSettings';
10
+ import { DateRangePickerPopupSettings } from './DateRangePickerPopupSettings';
11
11
  import { DateInputProps } from '../../dateinput/DateInput.js';
12
12
  import { MultiViewCalendarProps } from '../../calendar/components/MultiViewCalendar.js';
13
13
  import { PopupProps } from '@progress/kendo-react-popup';
@@ -5,8 +5,8 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { DateRangePickerCalendarSettings } from './DateRangePickerCalendarSettings.js';
9
- import { DateRangePickerDateInputSettings } from './DateRangePickerDateInputSettings.js';
10
- import { DateRangePickerSettings } from './DateRangePickerSettings.js';
11
- import { DateRangePickerPopupSettings } from './DateRangePickerPopupSettings.js';
8
+ import { DateRangePickerCalendarSettings } from './DateRangePickerCalendarSettings';
9
+ import { DateRangePickerDateInputSettings } from './DateRangePickerDateInputSettings';
10
+ import { DateRangePickerSettings } from './DateRangePickerSettings';
11
+ import { DateRangePickerPopupSettings } from './DateRangePickerPopupSettings';
12
12
  export { DateRangePickerCalendarSettings, DateRangePickerDateInputSettings, DateRangePickerSettings, DateRangePickerPopupSettings };
@@ -9,7 +9,7 @@ import { default as PropTypes } from 'prop-types';
9
9
  import { FormComponent, FormComponentProps, FormComponentValidity, DateInputsClassStructure, AdaptiveModeContextType } from '@progress/kendo-react-common';
10
10
  import { DateInputHandle, DateInputProps } from '../dateinput/DateInput.js';
11
11
  import { DateTimePickerSettings } from './models/index.js';
12
- import { DateInputCommonPackageProps } from '../dateinput/models/common-package-props.js';
12
+ import { DateInputCommonPackageProps } from '../dateinput/models/common-package-props';
13
13
  import * as React from 'react';
14
14
  /**
15
15
  * The arguments for the `onChange` event of the DateTimePicker.
@@ -5,7 +5,7 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { DateInputFormatPlaceholder } from '../../dateinput/models/format-placeholder.js';
8
+ import { DateInputFormatPlaceholder } from '../../dateinput/models/format-placeholder';
9
9
  import { DateFormatOptions } from '@progress/kendo-react-intl';
10
10
  import { CalendarProps } from '../../calendar/components/Calendar.js';
11
11
  import { PopupProps } from '@progress/kendo-react-popup';
@@ -5,5 +5,5 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { DateTimePickerSettings } from './DateTimePickerSettings.js';
8
+ import { DateTimePickerSettings } from './DateTimePickerSettings';
9
9
  export { DateTimePickerSettings };