@progress/kendo-react-scheduler 13.3.0 → 13.4.0-develop.2

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 (160) hide show
  1. package/Scheduler.d.ts +597 -0
  2. package/Scheduler.js +1 -1
  3. package/Scheduler.mjs +1 -1
  4. package/components/BaseView.d.ts +25 -0
  5. package/components/BaseView.js +1 -1
  6. package/components/BaseView.mjs +3 -3
  7. package/components/CurrentTimeMarket.d.ts +17 -0
  8. package/components/DateHeaderCell.d.ts +53 -0
  9. package/components/SchedulerForm.d.ts +87 -0
  10. package/components/SchedulerForm.mjs +3 -3
  11. package/components/SchedulerOccurrenceDialog.d.ts +58 -0
  12. package/components/SchedulerOccurrenceDialog.mjs +2 -2
  13. package/components/SchedulerRemoveDialog.d.ts +54 -0
  14. package/components/ShowMoreItemsButton.d.ts +33 -0
  15. package/components/TimeHeaderCell.d.ts +53 -0
  16. package/components/footer/SchedulerFooter.d.ts +37 -0
  17. package/components/footer/bussiness-hours/BussinessHours.d.ts +20 -0
  18. package/components/header/SchedulerHeader.d.ts +34 -0
  19. package/components/header/navigation/NavigationDatePicker.d.ts +12 -0
  20. package/components/header/navigation/SchedulerNavigation.d.ts +31 -0
  21. package/components/header/view-selector/SchedulerViewSelector.d.ts +31 -0
  22. package/components/header/view-selector/ViewSelectorItem.d.ts +16 -0
  23. package/components/header/view-selector/ViewSelectorList.d.ts +10 -0
  24. package/constants/index.d.ts +61 -0
  25. package/constants/index.js +1 -1
  26. package/constants/index.mjs +9 -9
  27. package/context/SchedulerContext.d.ts +234 -0
  28. package/context/SchedulerEditItemContext.d.ts +199 -0
  29. package/context/SchedulerEditSlotContext.d.ts +54 -0
  30. package/context/SchedulerEditTaskContext.d.ts +36 -0
  31. package/context/SchedulerResourceIteratorContext.d.ts +23 -0
  32. package/context/SchedulerViewContext.d.ts +97 -0
  33. package/context/index.d.ts +12 -0
  34. package/dist/cdn/js/kendo-react-scheduler.js +1 -1
  35. package/editors/FilterableComboBox.d.ts +12 -0
  36. package/editors/ResourceEditor.d.ts +22 -0
  37. package/editors/SchedulerFormEditor.d.ts +495 -0
  38. package/editors/SchedulerFormEditor.mjs +3 -3
  39. package/editors/ZonedDateTime.d.ts +25 -0
  40. package/editors/common.d.ts +19 -0
  41. package/hooks/index.d.ts +17 -0
  42. package/hooks/use-items-focus.d.ts +39 -0
  43. package/hooks/use-items-selection.d.ts +47 -0
  44. package/hooks/use-slots-focus.d.ts +47 -0
  45. package/hooks/use-slots-selection.d.ts +37 -0
  46. package/hooks/useAsyncMouseEnterLeave.d.ts +18 -0
  47. package/hooks/useCellSync.d.ts +17 -0
  48. package/hooks/useControlledState.d.ts +20 -0
  49. package/hooks/useEditable.d.ts +10 -0
  50. package/hooks/usePropOrState.d.ts +9 -0
  51. package/hooks/useRowSync.d.ts +18 -0
  52. package/hooks/useSchedulerItem.d.ts +14 -0
  53. package/hooks/useSchedulerSlot.d.ts +14 -0
  54. package/hooks/useSlotExpand.d.ts +12 -0
  55. package/hooks/useWorkHours.d.ts +9 -0
  56. package/index.d.mts +41 -4703
  57. package/index.d.ts +41 -4703
  58. package/items/SchedulerEditItem.d.ts +453 -0
  59. package/items/SchedulerEditItem.mjs +7 -7
  60. package/items/SchedulerItem.d.ts +222 -0
  61. package/items/SchedulerItemContent.d.ts +18 -0
  62. package/items/SchedulerProportionalViewItem.d.ts +19 -0
  63. package/items/SchedulerViewItem.d.ts +46 -0
  64. package/items/hooks/use-drag-item.d.ts +51 -0
  65. package/items/hooks/use-form-item.d.ts +25 -0
  66. package/items/hooks/use-remove-item.d.ts +33 -0
  67. package/items/hooks/use-resize-item.d.ts +57 -0
  68. package/items/hooks/use-series.d.ts +30 -0
  69. package/items/hooks/use-show-occurrence-dialog.d.ts +34 -0
  70. package/items/hooks/use-show-remove-item-dialog.d.ts +34 -0
  71. package/messages/index.d.ts +243 -0
  72. package/models/DataItem.d.ts +15 -0
  73. package/models/DateRange.d.ts +25 -0
  74. package/models/EditableProp.d.ts +36 -0
  75. package/models/Fields.d.ts +60 -0
  76. package/models/Group.d.ts +21 -0
  77. package/models/Item.d.ts +71 -0
  78. package/models/NavigationAction.d.ts +65 -0
  79. package/models/Occurrence.d.ts +59 -0
  80. package/models/Omit.d.ts +11 -0
  81. package/models/Orientation.d.ts +9 -0
  82. package/models/Range.d.ts +17 -0
  83. package/models/Rect.d.ts +22 -0
  84. package/models/Resource.d.ts +15 -0
  85. package/models/SchedulerGroup.d.ts +20 -0
  86. package/models/SchedulerHandle.d.ts +21 -0
  87. package/models/SchedulerModelFields.d.ts +69 -0
  88. package/models/SchedulerResource.d.ts +40 -0
  89. package/models/SchedulerView.d.ts +103 -0
  90. package/models/Slot.d.ts +57 -0
  91. package/models/events.d.ts +96 -0
  92. package/models/index.d.ts +26 -0
  93. package/package-metadata.d.ts +12 -0
  94. package/package-metadata.js +1 -1
  95. package/package-metadata.mjs +9 -16
  96. package/package.json +11 -11
  97. package/recurrence/RecurrenceEditor.d.ts +19 -0
  98. package/recurrence/RecurrenceEditor.mjs +3 -3
  99. package/recurrence/RecurrenceFrequencyEditor.d.ts +17 -0
  100. package/recurrence/RecurrenceRepeatOnWeekEditor.d.ts +20 -0
  101. package/recurrence/common.d.ts +64 -0
  102. package/recurrence/types/EndRule.d.ts +11 -0
  103. package/recurrence/types/Frequency.d.ts +11 -0
  104. package/recurrence/types/FrequencyEntity.d.ts +15 -0
  105. package/recurrence/types/MonthEntity.d.ts +14 -0
  106. package/recurrence/types/OffsetPosition.d.ts +11 -0
  107. package/recurrence/types/OffsetPositionEntity.d.ts +14 -0
  108. package/recurrence/types/RepeatOnRule.d.ts +11 -0
  109. package/recurrence/types/WeekDayEntity.d.ts +14 -0
  110. package/recurrence/types/WeekDayRule.d.ts +14 -0
  111. package/recurrence/utils/index.d.ts +7 -0
  112. package/reducers/editReducer.d.ts +40 -0
  113. package/reducers/index.d.ts +8 -0
  114. package/services/index.d.ts +11 -0
  115. package/services/itemsService.d.ts +19 -0
  116. package/services/occurrenceService.d.ts +10 -0
  117. package/services/occurrenceService.js +1 -1
  118. package/services/occurrenceService.mjs +12 -10
  119. package/services/rangeService.d.ts +10 -0
  120. package/services/slotsService.d.ts +13 -0
  121. package/slots/SchedulerEditSlot.d.ts +62 -0
  122. package/slots/SchedulerSlot.d.ts +140 -0
  123. package/slots/SchedulerViewSlot.d.ts +56 -0
  124. package/tasks/SchedulerEditTask.d.ts +93 -0
  125. package/tasks/SchedulerTask.d.ts +70 -0
  126. package/tasks/SchedulerViewTask.d.ts +44 -0
  127. package/utils/index.d.ts +177 -0
  128. package/views/agenda/AgendaView.d.ts +97 -0
  129. package/views/agenda/AgendaView.js +1 -1
  130. package/views/agenda/AgendaView.mjs +2 -2
  131. package/views/agenda/AgendaViewHeaderItem.d.ts +15 -0
  132. package/views/common/HorizontalResourceIterator.d.ts +33 -0
  133. package/views/common/HorizontalResourceIterator.js +1 -1
  134. package/views/common/HorizontalResourceIterator.mjs +33 -39
  135. package/views/common/SchedulerDrag.d.ts +46 -0
  136. package/views/common/SchedulerResize.d.ts +48 -0
  137. package/views/common/VerticalResourceIterator.d.ts +28 -0
  138. package/views/common/VerticalResourceIterator.js +1 -1
  139. package/views/common/VerticalResourceIterator.mjs +21 -21
  140. package/views/common/utils.d.ts +41 -0
  141. package/views/day/DayView.d.ts +38 -0
  142. package/views/day/DayView.mjs +3 -3
  143. package/views/day/DayViewAllDayRowContent.d.ts +15 -0
  144. package/views/day/DayViewGroupRowContent.d.ts +15 -0
  145. package/views/day/DayViewRowContent.d.ts +20 -0
  146. package/views/day/MultiDayView.d.ts +179 -0
  147. package/views/day/MultiDayView.mjs +8 -8
  148. package/views/month/MonthView.d.ts +104 -0
  149. package/views/month/MonthView.js +1 -1
  150. package/views/month/MonthView.mjs +5 -5
  151. package/views/time/MultiDayTimelineView.d.ts +183 -0
  152. package/views/time/MultiDayTimelineView.mjs +5 -5
  153. package/views/time/TimelineView.d.ts +38 -0
  154. package/views/time/TimelineView.mjs +3 -3
  155. package/views/time/TimelineViewAllEventsRowContent.d.ts +14 -0
  156. package/views/time/TimelineViewRowContent.d.ts +14 -0
  157. package/views/week/WeekView.d.ts +109 -0
  158. package/views/week/WeekView.mjs +1 -1
  159. package/views/week/WorkWeekView.d.ts +27 -0
  160. package/views/week/WorkWeekView.mjs +1 -1
@@ -0,0 +1,15 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /** @hidden */
9
+ export interface Resource {
10
+ field: string;
11
+ valueField: string;
12
+ textField?: string;
13
+ colorField?: string;
14
+ multiple?: boolean;
15
+ }
@@ -0,0 +1,20 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * An interface for the Scheduler groups.
10
+ */
11
+ export interface SchedulerGroup {
12
+ /**
13
+ * An array of the resource names that will be grouped.
14
+ */
15
+ resources: string[];
16
+ /**
17
+ * Specifies the orientation of the groups.
18
+ */
19
+ orientation: 'horizontal' | 'vertical';
20
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { SchedulerProps } from '../Scheduler.js';
9
+ /**
10
+ * Represents the Object which is passed to the [`ref`](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) callback of the Scheduler component.
11
+ */
12
+ export interface SchedulerHandle {
13
+ /**
14
+ * The props of the Scheduler component.
15
+ */
16
+ props: SchedulerProps;
17
+ /**
18
+ * The HTML element of the Scheduler component.
19
+ */
20
+ element: HTMLDivElement | null;
21
+ }
@@ -0,0 +1,69 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Defines the model fields that will be used for creating `SchedulerEvent` instances.
10
+ */
11
+ export interface SchedulerModelFields {
12
+ /**
13
+ * The name of the `ID` model field.
14
+ * Defaults to `"id"`.
15
+ */
16
+ id?: string;
17
+ /**
18
+ * The name of the start date model field.
19
+ * Defaults to `"start"`.
20
+ */
21
+ start?: string;
22
+ /**
23
+ * The name of the start timezone model field.
24
+ * Defaults to `"startTimezone"`.
25
+ */
26
+ startTimezone?: string;
27
+ /** @hidden */
28
+ originalStart?: string;
29
+ /**
30
+ * The name of the end date model field.
31
+ * Defaults to `"end"`.
32
+ */
33
+ end?: string;
34
+ /**
35
+ * The name of the end timezone model field.
36
+ * Defaults to `"endTimezone"`.
37
+ */
38
+ endTimezone?: string;
39
+ /**
40
+ * The name of the all-day flag model field.
41
+ * Defaults to `"isAllDay"`.
42
+ */
43
+ isAllDay?: string;
44
+ /**
45
+ * The name of the title model field.
46
+ * Defaults to `"title"`.
47
+ */
48
+ title?: string;
49
+ /**
50
+ * The name of the description model field.
51
+ * Defaults to `"title"`.
52
+ */
53
+ description?: string;
54
+ /**
55
+ * The name of the recurrence model field.
56
+ * Defaults to `"recurrenceRule"`.
57
+ */
58
+ recurrenceRule?: string;
59
+ /**
60
+ * The name of the recurrence ID model field.
61
+ * Defaults to `"recurrenceId"`.
62
+ */
63
+ recurrenceId?: string;
64
+ /**
65
+ * The name of the recurrence exceptions model field.
66
+ * Defaults to `"recurrenceExceptions"`.
67
+ */
68
+ recurrenceExceptions?: string;
69
+ }
@@ -0,0 +1,40 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * An interface for the resources of the Scheduler.
10
+ */
11
+ export interface SchedulerResource {
12
+ /**
13
+ * The resource name. If not set, the value of the `field` option is used.
14
+ */
15
+ name?: string;
16
+ /**
17
+ * The field name of the event that contains the resource value.
18
+ */
19
+ field: string;
20
+ /**
21
+ * The resource data.
22
+ */
23
+ data: any[];
24
+ /**
25
+ * The field name from the data that contains the resource value.
26
+ */
27
+ valueField: string;
28
+ /**
29
+ * The field name from the data that contains the resource text.
30
+ */
31
+ textField: string;
32
+ /**
33
+ * The field name from the data that contains the resource color.
34
+ */
35
+ colorField?: string;
36
+ /**
37
+ * Specifies if the events have multiple resource values.
38
+ */
39
+ multiple?: boolean;
40
+ }
@@ -0,0 +1,103 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { LocalizationService, IntlService } from '@progress/kendo-react-intl';
9
+ import { DateRange } from './DateRange.js';
10
+ import { Day } from '@progress/kendo-date-math';
11
+ import { DataAction } from '../Scheduler.js';
12
+ import { SchedulerFooterProps } from '../components/footer/SchedulerFooter.js';
13
+ import { SchedulerHeaderProps } from '../components/header/SchedulerHeader.js';
14
+ /**
15
+ * Represents the arguments which are passed to the [dateRange](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewprops#toc-daterange) function.
16
+ */
17
+ export interface SchedulerViewDateRangeArgs {
18
+ /**
19
+ * The current date for the view.
20
+ */
21
+ date: Date;
22
+ /**
23
+ * The internationalization service instance.
24
+ */
25
+ intl: IntlService;
26
+ /**
27
+ * The timezone for the scheduler.
28
+ */
29
+ timezone?: string;
30
+ /**
31
+ * The number of days to display in the view.
32
+ */
33
+ numberOfDays?: number;
34
+ /**
35
+ * The start day of the work week.
36
+ */
37
+ workWeekStart?: Day;
38
+ /**
39
+ * The end day of the work week.
40
+ */
41
+ workWeekEnd?: Day;
42
+ }
43
+ export type SchedulerViewDateRangeFunction = (args: SchedulerViewDateRangeArgs) => DateRange;
44
+ /**
45
+ * Represents the required props which every [SchedulerView](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerview) must accept.
46
+ */
47
+ export interface SchedulerViewProps {
48
+ /**
49
+ * The name property is used by the Scheduler to match which view is selected. Every view has a default name.
50
+ */
51
+ name?: string;
52
+ /**
53
+ * The title to be displayed in the view selection list in the Toolbar.
54
+ * If a function is passed, it will receive a [LocalizationService](https://www.telerik.com/kendo-react-ui/components/intl/api/localizationservice) as an argument
55
+ */
56
+ title?: string | ((localization: LocalizationService) => string);
57
+ /**
58
+ * Called every time any of the SchedulerView Slots or Items trigger a data action, through editing, deleting or creating new `DataItem`.
59
+ */
60
+ onDataAction?: (action: DataAction) => void;
61
+ /**
62
+ * Specifies the number of days to be shown in the current view.
63
+ */
64
+ numberOfDays?: number;
65
+ /**
66
+ * The long-date format for displaying the
67
+ * selected date in the Scheduler toolbar.
68
+ * Defaults to `{0:Y}`
69
+ * ([more information](https://www.github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md))
70
+ */
71
+ selectedDateFormat?: string;
72
+ /**
73
+ * The short-date format for displaying the
74
+ * selected date in the Scheduler toolbar.
75
+ * Defaults to `{0:Y}`
76
+ * ([more information](https://www.github.com/telerik/kendo-intl/blob/develop/docs/date-formatting/index.md))
77
+ */
78
+ selectedShortDateFormat?: string;
79
+ /**
80
+ * Overrides the `dateRange` calculated by the `Scheduler` component.
81
+ *
82
+ * If a function is passed, an object of type [SchedulerViewDateRangeArgs](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewdaterangeargs) will be passed.
83
+ */
84
+ dateRange?: DateRange | ((args: SchedulerViewDateRangeArgs) => DateRange);
85
+ /** @hidden */
86
+ header?: React.ComponentType<SchedulerHeaderProps>;
87
+ /** @hidden */
88
+ footer?: React.ComponentType<SchedulerFooterProps>;
89
+ /** @hidden */
90
+ slotDivisions?: number;
91
+ /** @hidden */
92
+ slotDuration?: number;
93
+ /** @hidden */
94
+ workWeekStart?: Day;
95
+ /** @hidden */
96
+ workWeekEnd?: Day;
97
+ /** @hidden */
98
+ step?: number;
99
+ }
100
+ /**
101
+ * Represents a single Scheduler view.
102
+ */
103
+ export type SchedulerView = React.ReactElement<SchedulerViewProps>;
@@ -0,0 +1,57 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ZonedDate } from '@progress/kendo-date-math';
9
+ import { Item } from './Item.js';
10
+ import { Group } from './Group.js';
11
+ import { Range } from './Range.js';
12
+ import { SchedulerSlotHandle } from '../slots/SchedulerSlot.js';
13
+ /** @hidden */
14
+ export interface Slot {
15
+ /** @hidden */
16
+ _ref: React.RefObject<SchedulerSlotHandle | null>;
17
+ /**
18
+ * Represents the consecutive number of the slot in the current range.
19
+ */
20
+ index: number;
21
+ /**
22
+ * The `end` date of the slot.
23
+ */
24
+ start: Date;
25
+ /**
26
+ * The `end` date of the slot.
27
+ */
28
+ end: Date;
29
+ /**
30
+ * Represents the `start` Date in the provided timezone.
31
+ *
32
+ * For more information about timezones, refer to the [Scheduler TImezones](https://www.telerik.com/kendo-react-ui/components/scheduler/timezones) article.
33
+ */
34
+ zonedStart: ZonedDate;
35
+ /**
36
+ * Represents the `end` Date in the provided timezone.
37
+ *
38
+ * For more information about timezones, refer to the [Scheduler TImezones](https://www.telerik.com/kendo-react-ui/components/scheduler/timezones) article.
39
+ */
40
+ zonedEnd: ZonedDate;
41
+ /**
42
+ * A collection of all `items` which fits in the current slot.
43
+ */
44
+ items: Item[];
45
+ /**
46
+ * Represents the current group in which the slot is rendered.
47
+ */
48
+ group: Group;
49
+ /**
50
+ * Represents the current range in which the slot is rendered.
51
+ */
52
+ range: Range;
53
+ /**
54
+ * Represents if the slot is an `All-day` slot.
55
+ */
56
+ isAllDay?: boolean;
57
+ }
@@ -0,0 +1,96 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { SchedulerItemHandle } from '../items/SchedulerItem.js';
9
+ import { SchedulerSlotHandle } from '../slots/SchedulerSlot.js';
10
+ import { SchedulerTaskHandle } from '../tasks/SchedulerTask.js';
11
+ /**
12
+ * @hidden
13
+ **/
14
+ export interface BaseEvent<T> {
15
+ target: T;
16
+ }
17
+ /**
18
+ * @hidden
19
+ */
20
+ export interface ItemDragEvent {
21
+ pageX: number;
22
+ pageY: number;
23
+ clientX: number;
24
+ clientY: number;
25
+ offsetX: number;
26
+ offsetY: number;
27
+ type: string;
28
+ ctrlKey: boolean;
29
+ shiftKey: boolean;
30
+ altKey: boolean;
31
+ originalEvent: PointerEvent;
32
+ }
33
+ /**
34
+ * @hidden
35
+ */
36
+ export interface ViewChangeEvent {
37
+ target: any;
38
+ syntheticEvent: React.SyntheticEvent;
39
+ }
40
+ /**
41
+ * @hidden
42
+ */
43
+ export interface SchedulerItemFocusEvent {
44
+ target: SchedulerItemHandle;
45
+ syntheticEvent: React.FocusEvent;
46
+ }
47
+ /**
48
+ * @hidden
49
+ */
50
+ export interface SchedulerItemMouseEvent {
51
+ target: SchedulerItemHandle;
52
+ syntheticEvent: React.MouseEvent;
53
+ }
54
+ /**
55
+ * @hidden
56
+ */
57
+ export interface SchedulerItemKeyboardEvent {
58
+ target: SchedulerItemHandle;
59
+ syntheticEvent: React.KeyboardEvent;
60
+ }
61
+ /**
62
+ * @hidden
63
+ */
64
+ export interface SchedulerItemDragEvent {
65
+ target: SchedulerItemHandle;
66
+ dragEvent: ItemDragEvent;
67
+ }
68
+ export interface SchedulerTaskMouseEvent {
69
+ /**
70
+ * The SchedulerTask instance that triggered the event.
71
+ */
72
+ target: SchedulerTaskHandle;
73
+ /**
74
+ * The React mouse event object.
75
+ */
76
+ syntheticEvent: React.MouseEvent;
77
+ }
78
+ /**
79
+ * @hidden
80
+ */
81
+ export interface SchedulerSlotFocusEvent {
82
+ target: SchedulerSlotHandle;
83
+ syntheticEvent: React.FocusEvent;
84
+ }
85
+ /**
86
+ * @hidden
87
+ */
88
+ export interface SchedulerSlotMouseEvent {
89
+ target: SchedulerSlotHandle;
90
+ syntheticEvent: React.MouseEvent;
91
+ }
92
+ /** @hidden */
93
+ export interface SchedulerSlotKeyboardEvent {
94
+ target: SchedulerSlotHandle;
95
+ syntheticEvent: React.KeyboardEvent;
96
+ }
@@ -0,0 +1,26 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ export * from './DateRange.js';
9
+ export * from './DataItem.js';
10
+ export * from './SchedulerModelFields.js';
11
+ export * from './Rect.js';
12
+ export * from './Item.js';
13
+ export * from './Slot.js';
14
+ export * from './Occurrence.js';
15
+ export * from './Range.js';
16
+ export * from './Group.js';
17
+ export * from './SchedulerGroup.js';
18
+ export * from './EditableProp.js';
19
+ export * from './SchedulerView.js';
20
+ export * from './SchedulerResource.js';
21
+ export * from './events.js';
22
+ export * from './Resource.js';
23
+ export * from './Orientation.js';
24
+ export * from './Fields.js';
25
+ export * from './SchedulerHandle.js';
26
+ export * from './SchedulerModelFields.js';
@@ -0,0 +1,12 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { PackageMetadata } from '@progress/kendo-licensing';
9
+ /**
10
+ * @hidden
11
+ */
12
+ export declare const packageMetadata: PackageMetadata;
@@ -5,4 +5,4 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-scheduler",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1768550511,version:"13.3.0",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui"});exports.packageMetadata=e;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=Object.freeze({name:"@progress/kendo-react-scheduler",productName:"KendoReact",productCode:"KENDOUIREACT",productCodes:["KENDOUIREACT"],publishDate: 1770288382,version:"13.4.0-develop.2",licensingDocsUrl:"https://www.telerik.com/kendo-react-ui"});exports.packageMetadata=e;
@@ -1,19 +1,12 @@
1
1
  /**
2
- * @license
3
- *-------------------------------------------------------------------------------------------
4
- * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
- * Licensed under commercial license. See LICENSE.md in the package root for more information
6
- *-------------------------------------------------------------------------------------------
2
+ * @hidden
7
3
  */
8
- const e = Object.freeze({
9
- name: "@progress/kendo-react-scheduler",
10
- productName: "KendoReact",
11
- productCode: "KENDOUIREACT",
12
- productCodes: ["KENDOUIREACT"],
13
- publishDate: 1768550511,
14
- version: "13.3.0",
15
- licensingDocsUrl: "https://www.telerik.com/kendo-react-ui"
4
+ export const packageMetadata = Object.freeze({
5
+ name: '@progress/kendo-react-scheduler',
6
+ productName: 'KendoReact',
7
+ productCode: 'KENDOUIREACT',
8
+ productCodes: ['KENDOUIREACT'],
9
+ publishDate: 1607496606,
10
+ version: '13.4.0-develop.2',
11
+ licensingDocsUrl: 'https://www.telerik.com/kendo-react-ui'
16
12
  });
17
- export {
18
- e as packageMetadata
19
- };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-react-scheduler",
3
- "version": "13.3.0",
3
+ "version": "13.4.0-develop.2",
4
4
  "description": "React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package",
5
5
  "author": "Progress",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -29,15 +29,15 @@
29
29
  "@progress/kendo-date-math": "^1.4.1",
30
30
  "@progress/kendo-drawing": "^1.21.2",
31
31
  "@progress/kendo-licensing": "^1.7.2",
32
- "@progress/kendo-react-buttons": "13.3.0",
33
- "@progress/kendo-react-common": "13.3.0",
34
- "@progress/kendo-react-dateinputs": "13.3.0",
35
- "@progress/kendo-react-dialogs": "13.3.0",
36
- "@progress/kendo-react-dropdowns": "13.3.0",
37
- "@progress/kendo-react-form": "13.3.0",
38
- "@progress/kendo-react-inputs": "13.3.0",
39
- "@progress/kendo-react-intl": "13.3.0",
40
- "@progress/kendo-react-popup": "13.3.0",
32
+ "@progress/kendo-react-buttons": "13.4.0-develop.2",
33
+ "@progress/kendo-react-common": "13.4.0-develop.2",
34
+ "@progress/kendo-react-dateinputs": "13.4.0-develop.2",
35
+ "@progress/kendo-react-dialogs": "13.4.0-develop.2",
36
+ "@progress/kendo-react-dropdowns": "13.4.0-develop.2",
37
+ "@progress/kendo-react-form": "13.4.0-develop.2",
38
+ "@progress/kendo-react-inputs": "13.4.0-develop.2",
39
+ "@progress/kendo-react-intl": "13.4.0-develop.2",
40
+ "@progress/kendo-react-popup": "13.4.0-develop.2",
41
41
  "@progress/kendo-svg-icons": "^4.0.0",
42
42
  "react": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc",
43
43
  "react-dom": "^16.8.2 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
@@ -67,7 +67,7 @@
67
67
  "package": {
68
68
  "productName": "KendoReact",
69
69
  "productCode": "KENDOUIREACT",
70
- "publishDate": 1768550511,
70
+ "publishDate": 1770288382,
71
71
  "licensingDocsUrl": "https://www.telerik.com/kendo-react-ui"
72
72
  }
73
73
  },
@@ -0,0 +1,19 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import * as React from 'react';
9
+ /** @hidden */
10
+ export interface RecurrenceEditorProps {
11
+ value: string;
12
+ start: Date;
13
+ timezone: string;
14
+ onChange: ({ value }: {
15
+ value: string | null;
16
+ }) => void;
17
+ }
18
+ /** @hidden */
19
+ export declare const RecurrenceEditor: React.FunctionComponent<RecurrenceEditorProps>;
@@ -7,7 +7,7 @@
7
7
  */
8
8
  import * as e from "react";
9
9
  import { useInternationalization as Q, useLocalization as X } from "@progress/kendo-react-intl";
10
- import { messages as L, recurrenceEditorRepeat as P, recurrenceEditorWeeklyRepeatOn as _, recurrenceEditorMonthlyRepeatOn as $, recurrenceEditorMonthlyDay as ee, recurrenceEditorYearlyRepeatOn as te, recurrenceEditorYearlyOf as ae, recurrenceEditorEndLabel as ne, recurrenceEditorEndNever as le, recurrenceEditorEndAfter as re, recurrenceEditorEndOccurrence as oe, recurrenceEditorEndOn as ce } from "../messages/index.mjs";
10
+ import { messages as L, recurrenceEditorRepeat as P, recurrenceEditorWeeklyRepeatOn as _, recurrenceEditorMonthlyRepeatOn as $, recurrenceEditorMonthlyDay as ee, recurrenceEditorYearlyRepeatOn as te, recurrenceEditorYearlyOf as ae, recurrenceEditorEndLabel as ne, recurrenceEditorEndNever as le, recurrenceEditorEndOccurrence as re, recurrenceEditorEndAfter as oe, recurrenceEditorEndOn as ce } from "../messages/index.mjs";
11
11
  import { serializeRule as se } from "@progress/kendo-recurrence";
12
12
  import { ZonedDate as M, toLocalDate as ue } from "@progress/kendo-date-math";
13
13
  import { RecurrenceFrequencyEditor as ie } from "./RecurrenceFrequencyEditor.mjs";
@@ -359,7 +359,7 @@ const Ne = (l) => {
359
359
  },
360
360
  {
361
361
  value: "count",
362
- label: c(re, !0),
362
+ label: c(oe, !0),
363
363
  children: [
364
364
  /* @__PURE__ */ e.createElement(e.Fragment, { key: "separator-1" }, " "),
365
365
  /* @__PURE__ */ e.createElement(
@@ -383,7 +383,7 @@ const Ne = (l) => {
383
383
  className: "k-radio-label",
384
384
  editorId: "k-endrule-after"
385
385
  },
386
- c(oe, !0)
386
+ c(re, !0)
387
387
  )
388
388
  ]
389
389
  },
@@ -0,0 +1,17 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ButtonGroupProps } from '@progress/kendo-react-buttons';
9
+ import * as React from 'react';
10
+ /** @hidden */
11
+ export interface RecurrenceFrequencyEditorProps extends ButtonGroupProps {
12
+ value: string;
13
+ data: any[];
14
+ onChange: (value: string) => void;
15
+ }
16
+ /** @hidden */
17
+ export declare const RecurrenceFrequencyEditor: React.FunctionComponent<RecurrenceFrequencyEditorProps>;
@@ -0,0 +1,20 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { ButtonGroupProps } from '@progress/kendo-react-buttons';
9
+ import * as React from 'react';
10
+ /** @hidden */
11
+ export interface RecurrenceRepeatOnWeekEditorProps extends ButtonGroupProps {
12
+ data?: {
13
+ text: string;
14
+ value: number | string;
15
+ }[];
16
+ value?: (number | string)[];
17
+ onChange: (value: number[]) => void;
18
+ }
19
+ /** @hidden */
20
+ export declare const RecurrenceRepeatOnWeekEditor: React.FunctionComponent<RecurrenceRepeatOnWeekEditorProps>;