@progress/kendo-react-scheduler 13.3.0 → 13.4.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 (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,10 @@
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 declare const ViewSelectorList: React.ForwardRefExoticComponent<React.RefAttributes<unknown>>;
@@ -0,0 +1,61 @@
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 { Range, Group } from '../models/index.js';
9
+ import * as React from 'react';
10
+ /** @hidden */
11
+ export { MS_PER_DAY } from '@progress/kendo-date-math';
12
+ /** @hidden */
13
+ export declare const MIDNIGHT_INVARIANT: Date;
14
+ /** @hidden */
15
+ export declare const MS_PER_SECOND = 1000;
16
+ /** @hidden */
17
+ export declare const MS_PER_MINUTE: number;
18
+ /** @hidden */
19
+ export declare const MS_PER_HOUR: number;
20
+ /** @hidden */
21
+ export declare const TIME_FORMAT = "t";
22
+ /** @hidden */
23
+ export declare const BORDER_WIDTH = 1;
24
+ /** @hidden */
25
+ export declare const DEFAULT_EVENT_HEIGHT = 25;
26
+ /** @hidden */
27
+ export declare const DAYS_IN_WEEK_COUNT = 7;
28
+ /** @hidden */
29
+ export declare const WEEKS_COUNT = 6;
30
+ /** @hidden */
31
+ export declare const HOURS_IN_DAY_COUNT = 24;
32
+ /** @hidden */
33
+ export declare const EMPTY_RESOURCE: {}[];
34
+ /** @hidden */
35
+ export declare const OCCURRENCE_ID = 0;
36
+ /** @hidden */
37
+ export declare const DEFAULT_ID: undefined;
38
+ /** @hidden */
39
+ export declare const DISPLAY_NONE_STYLES: React.CSSProperties;
40
+ /** @hidden */
41
+ export declare const VISIBILITY_HIDDEN_STYLES: React.CSSProperties;
42
+ /** @hidden */
43
+ export declare const DEFAULT_GROUP: Group;
44
+ /**
45
+ * @hidden
46
+ */
47
+ export declare const MIN_DATE: Date;
48
+ /**
49
+ * @hidden
50
+ */
51
+ export declare const MAX_DATE: Date;
52
+ /** @hidden */
53
+ export declare const DEFAULT_RANGE: Range;
54
+ /**
55
+ * Specifies the available [DataAction](https://www.telerik.com/kendo-react-ui/components/scheduler/api/data_action) types.
56
+ */
57
+ export declare enum DATA_ACTION {
58
+ create = 0,
59
+ update = 1,
60
+ remove = 2
61
+ }
@@ -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 t=require("@progress/kendo-date-math"),n=1e3,r=60*n,a=1,D=7,c=[{}],M={index:0,resources:[]},E=new Date(1900,0,1),o=new Date(2099,11,31);t.ZonedDate.fromLocalDate(E),t.ZonedDate.fromLocalDate(o);var _=(e=>(e[e.create=0]="create",e[e.update=1]="update",e[e.remove=2]="remove",e))(_||{});Object.defineProperty(exports,"MS_PER_DAY",{enumerable:!0,get:()=>t.MS_PER_DAY});exports.BORDER_WIDTH=a;exports.DATA_ACTION=_;exports.DAYS_IN_WEEK_COUNT=D;exports.DEFAULT_GROUP=M;exports.EMPTY_RESOURCE=c;exports.MAX_DATE=o;exports.MIN_DATE=E;exports.MS_PER_MINUTE=r;exports.MS_PER_SECOND=n;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("@progress/kendo-date-math"),E=1e3,r=60*E,a=1,D=7,c=[{}],M={index:0,resources:[]},o=new Date(1900,0,1),_=new Date(2099,11,31);t.ZonedDate.fromLocalDate(o),t.ZonedDate.fromLocalDate(_);var n=(e=>(e[e.create=0]="create",e[e.update=1]="update",e[e.remove=2]="remove",e))(n||{});Object.defineProperty(exports,"MS_PER_DAY",{enumerable:!0,get:()=>t.MS_PER_DAY});exports.BORDER_WIDTH=a;exports.DATA_ACTION=n;exports.DAYS_IN_WEEK_COUNT=D;exports.DEFAULT_GROUP=M;exports.EMPTY_RESOURCE=c;exports.MAX_DATE=_;exports.MIN_DATE=o;exports.MS_PER_MINUTE=r;exports.MS_PER_SECOND=E;
@@ -5,23 +5,23 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- import { ZonedDate as t } from "@progress/kendo-date-math";
8
+ import { ZonedDate as o } from "@progress/kendo-date-math";
9
9
  import { MS_PER_DAY as M } from "@progress/kendo-date-math";
10
- const r = 1e3, c = 60 * r, s = 1, d = 7, _ = [{}], D = {
10
+ const t = 1e3, c = 60 * t, s = 1, _ = 7, D = [{}], R = {
11
11
  index: 0,
12
12
  resources: []
13
- }, o = new Date(1900, 0, 1), n = new Date(2099, 11, 31);
14
- t.fromLocalDate(o), t.fromLocalDate(n);
13
+ }, r = new Date(1900, 0, 1), n = new Date(2099, 11, 31);
14
+ o.fromLocalDate(r), o.fromLocalDate(n);
15
15
  var E = /* @__PURE__ */ ((e) => (e[e.create = 0] = "create", e[e.update = 1] = "update", e[e.remove = 2] = "remove", e))(E || {});
16
16
  export {
17
17
  s as BORDER_WIDTH,
18
18
  E as DATA_ACTION,
19
- d as DAYS_IN_WEEK_COUNT,
20
- D as DEFAULT_GROUP,
21
- _ as EMPTY_RESOURCE,
19
+ _ as DAYS_IN_WEEK_COUNT,
20
+ R as DEFAULT_GROUP,
21
+ D as EMPTY_RESOURCE,
22
22
  n as MAX_DATE,
23
- o as MIN_DATE,
23
+ r as MIN_DATE,
24
24
  M as MS_PER_DAY,
25
25
  c as MS_PER_MINUTE,
26
- r as MS_PER_SECOND
26
+ t as MS_PER_SECOND
27
27
  };
@@ -0,0 +1,234 @@
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 { DataItem, DateRange, SchedulerView, Group } from '../models/index.js';
9
+ import { DataAction, SchedulerProps } from '../Scheduler.js';
10
+ import { Fields } from '../models/Fields.js';
11
+ import { Orientation } from '../models/Orientation.js';
12
+ import * as React from 'react';
13
+ /** @hidden */
14
+ export interface SchedulerContextProps {
15
+ children?: React.ReactNode;
16
+ element: SchedulerElementContextType;
17
+ props: SchedulerPropsContextType;
18
+ views: SchedulerViewsContextType;
19
+ fields: SchedulerFieldsContextType;
20
+ groups: SchedulerGroupsContextType;
21
+ dateRange: SchedulerDateRangeContextType;
22
+ dateFormat: SchedulerDateFormatContextType;
23
+ orientation: SchedulerOrientationContextType;
24
+ date: SchedulerDateContextType;
25
+ activeView: SchedulerActiveViewContextType;
26
+ selection: SchedulerItemSelectionContextType;
27
+ data: SchedulerDataContextType;
28
+ }
29
+ /** @hidden */
30
+ export type SchedulerElementContextType = React.RefObject<HTMLElement | null>;
31
+ /** @hidden */
32
+ export declare const SchedulerElementContext: React.Context<SchedulerElementContextType>;
33
+ /** @hidden */
34
+ export declare const useSchedulerElementContext: () => SchedulerElementContextType;
35
+ /**
36
+ * Specifies the result of the [useSchedulerPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerpropscontext) and [SchedulerPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerpropscontext).
37
+ */
38
+ export type SchedulerPropsContextType = SchedulerProps;
39
+ /**
40
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [Scheduler](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduler) props.
41
+ *
42
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
43
+ */
44
+ export declare const SchedulerPropsContext: React.Context<SchedulerProps>;
45
+ /**
46
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [Scheduler](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduler) props.
47
+ *
48
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
49
+ *
50
+ * @returns
51
+ */
52
+ export declare const useSchedulerPropsContext: () => SchedulerPropsContextType;
53
+ /**
54
+ * Specifies the result of the [useSchedulerViewsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerviewscontext) and [SchedulerViewsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewscontext).
55
+ */
56
+ export type SchedulerViewsContextType = SchedulerView[];
57
+ /**
58
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the available Scheduler [views](https://www.telerik.com/kendo-react-ui/components/scheduler/views).
59
+ *
60
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
61
+ */
62
+ export declare const SchedulerViewsContext: React.Context<SchedulerViewsContextType>;
63
+ /**
64
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the available Scheduler [views](https://www.telerik.com/kendo-react-ui/components/scheduler/views).
65
+ *
66
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
67
+ *
68
+ * @returns
69
+ */
70
+ export declare const useSchedulerViewsContext: () => SchedulerViewsContextType;
71
+ /**
72
+ * Specifies the result of the [useSchedulerFieldsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerfieldscontext) and [SchedulerFieldsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfieldscontext).
73
+ */
74
+ export type SchedulerFieldsContextType = Fields;
75
+ /**
76
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the combined default and custom [modelFields](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-modelfields) of the Scheduler.
77
+ *
78
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
79
+ */
80
+ export declare const SchedulerFieldsContext: React.Context<Fields>;
81
+ /**
82
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the combined default and custom [modelFields](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-modelfields) of the Scheduler.
83
+ *
84
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
85
+ *
86
+ * @returns
87
+ */
88
+ export declare const useSchedulerFieldsContext: () => SchedulerFieldsContextType;
89
+ /**
90
+ * Specifies the result of the [useSchedulerFieldsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerfieldscontext) and [SchedulerFieldsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfieldscontext).
91
+ */
92
+ export type SchedulerDateFormatContextType = {
93
+ dateFormat: string;
94
+ shortDateFormat: string;
95
+ };
96
+ /**
97
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the combined default and custom [modelFields](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-modelfields) of the Scheduler.
98
+ *
99
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
100
+ */
101
+ export declare const SchedulerDateFormatContext: React.Context<SchedulerDateFormatContextType>;
102
+ /**
103
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the combined default and custom [modelFields](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-modelfields) of the Scheduler.
104
+ *
105
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
106
+ *
107
+ * @returns
108
+ */
109
+ export declare const useSchedulerDateFormatContext: () => SchedulerDateFormatContextType;
110
+ /**
111
+ * Specifies the result of the [useSchedulerGroupsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulergroupscontext) and [SchedulerGroupsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulergroupscontext).
112
+ */
113
+ export type SchedulerGroupsContextType = Group[];
114
+ /**
115
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the Scheduler `Group` object, calculated based on the [group](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-group) and [resources](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-resources).
116
+ *
117
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
118
+ */
119
+ export declare const SchedulerGroupsContext: React.Context<SchedulerGroupsContextType>;
120
+ /**
121
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the Scheduler `Group` object, calculated based on the [group](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-group) and [resources](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerprops#toc-resources).
122
+ *
123
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
124
+ *
125
+ * @returns
126
+ */
127
+ export declare const useSchedulerGroupsContext: () => SchedulerGroupsContextType;
128
+ /**
129
+ * Specifies the result of the [useSchedulerDateRangeContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerdaterangecontext) and [SchedulerDateRangeContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerdaterangecontext).
130
+ */
131
+ export type SchedulerDateRangeContextType = DateRange;
132
+ /**
133
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the `dateRange` of the current view.
134
+ *
135
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
136
+ */
137
+ export declare const SchedulerDateRangeContext: React.Context<DateRange>;
138
+ /**
139
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the `dateRange` of the current view.
140
+ *
141
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
142
+ *
143
+ * @returns
144
+ */
145
+ export declare const useSchedulerDateRangeContext: () => SchedulerDateRangeContextType;
146
+ /**
147
+ * Specifies the result of the [useSchedulerOrientationContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerorientationcontext) and [SchedulerOrientationContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerorientationcontext).
148
+ */
149
+ export type SchedulerOrientationContextType = Orientation;
150
+ /**
151
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the grouping orientation of the Scheduler.
152
+ *
153
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
154
+ */
155
+ export declare const SchedulerOrientationContext: React.Context<Orientation>;
156
+ /**
157
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the grouping orientation of the Scheduler.
158
+ *
159
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
160
+ *
161
+ * @returns
162
+ */
163
+ export declare const useSchedulerOrientationContext: () => SchedulerOrientationContextType;
164
+ /**
165
+ * Specifies the result of the [useSchedulerDateContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerdatecontext) and [SchedulerDateContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerdatecontext).
166
+ */
167
+ export type SchedulerDateContextType = [Date, (date: Date, event?: any) => void];
168
+ /**
169
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the Scheduler internal `date` state.
170
+ *
171
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
172
+ */
173
+ export declare const SchedulerDateContext: React.Context<SchedulerDateContextType>;
174
+ /**
175
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the Scheduler internal `date` state.
176
+ *
177
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
178
+ *
179
+ * @returns
180
+ */
181
+ export declare const useSchedulerDateContext: () => SchedulerDateContextType;
182
+ /**
183
+ * Specifies the result of the [useSchedulerDataContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulerdatacontext) and [SchedulerDataContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerdatacontext).
184
+ */
185
+ export type SchedulerDataContextType = [DataItem[], (action: DataAction, event?: any) => void];
186
+ /**
187
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the Scheduler internal `data` reducer.
188
+ *
189
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
190
+ */
191
+ export declare const SchedulerDataContext: React.Context<SchedulerDataContextType>;
192
+ /**
193
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the Scheduler internal `data` reducer.
194
+ *
195
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
196
+ *
197
+ * @returns
198
+ */
199
+ export declare const useSchedulerDataContext: () => SchedulerDataContextType;
200
+ /**
201
+ * Specifies the result of the [useSchedulerActiveViewContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleractiveviewcontext) and [SchedulerActiveViewContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleractiveviewcontext).
202
+ */
203
+ export type SchedulerActiveViewContextType = [string, (activeView: string, event?: any) => void];
204
+ /**
205
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the Scheduler internal `activeView` state.
206
+ *
207
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
208
+ */
209
+ export declare const SchedulerActiveViewContext: React.Context<SchedulerActiveViewContextType>;
210
+ /**
211
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the Scheduler internal `activeView` state.
212
+ *
213
+ * For more information, refer to the [Scheduler Context](https://www.telerik.com/kendo-react-ui/components/scheduler/context) article.
214
+ *
215
+ * @returns
216
+ */
217
+ export declare const useSchedulerActiveViewContext: () => SchedulerActiveViewContextType;
218
+ /**
219
+ * @hidden
220
+ */
221
+ export type SchedulerItemSelectionContextType = [any, any];
222
+ /**
223
+ * @hidden
224
+ */
225
+ export declare const SchedulerItemSelectionContext: React.Context<SchedulerItemSelectionContextType>;
226
+ /**
227
+ * @hidden
228
+ */
229
+ export declare const useSchedulerItemSelectionContext: () => SchedulerItemSelectionContextType;
230
+ /**
231
+ *
232
+ */
233
+ /** @hidden */
234
+ export declare const SchedulerContext: ({ children, element, props, views, fields, groups, dateRange, dateFormat, orientation, date, data, activeView, selection }: SchedulerContextProps) => React.JSX.Element;
@@ -0,0 +1,199 @@
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 { DataItem } from '../models/index.js';
9
+ import { SchedulerItemFormItemAction } from '../items/hooks/use-form-item.js';
10
+ import { BaseEvent } from '@progress/kendo-react-common';
11
+ import { SchedulerEditItemProps } from '../items/SchedulerEditItem.js';
12
+ import * as React from 'react';
13
+ /** @hidden */
14
+ export interface SchedulerEditItemContextProps {
15
+ props: SchedulerEditItemPropsContextType;
16
+ form: SchedulerEditItemFormItemContextType;
17
+ drag: SchedulerEditItemDragItemContextType;
18
+ resize: SchedulerEditItemResizeItemContextType;
19
+ remove: SchedulerEditItemRemoveItemContextType;
20
+ showRemoveDialog: SchedulerEditItemShowRemoveDialogContextType;
21
+ showOccurrenceDialog: SchedulerEditItemShowOccurrenceDialogContextType;
22
+ children?: React.ReactNode;
23
+ }
24
+ /**
25
+ * Specifies the result of the [useSchedulerEditItemPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititempropscontext) and [SchedulerEditItemPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititempropscontext).
26
+ */
27
+ export type SchedulerEditItemPropsContextType = SchedulerEditItemProps;
28
+ /**
29
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) `props`.
30
+ *
31
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
32
+ */
33
+ export declare const SchedulerEditItemPropsContext: React.Context<SchedulerEditItemProps>;
34
+ /**
35
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) `props`.
36
+ *
37
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
38
+ *
39
+ * @returns
40
+ */
41
+ export declare const useSchedulerEditItemPropsContext: () => SchedulerEditItemPropsContextType;
42
+ /**
43
+ * Specifies the result of the [useSchedulerEditItemFormItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemformitemcontext) and [SchedulerEditItemFormItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemformitemcontext).
44
+ */
45
+ export type SchedulerEditItemFormItemContextType = [
46
+ DataItem | null,
47
+ (newValue: DataItem | null, event?: React.SyntheticEvent | BaseEvent<any> | {
48
+ preventDefault: any;
49
+ }) => void,
50
+ (action: SchedulerItemFormItemAction, event?: React.SyntheticEvent | BaseEvent<any> | {
51
+ preventDefault: any;
52
+ }) => void
53
+ ];
54
+ /**
55
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `formItem` state.
56
+ *
57
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
58
+ */
59
+ export declare const SchedulerEditItemFormItemContext: React.Context<SchedulerEditItemFormItemContextType>;
60
+ /**
61
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `formItem` state.
62
+ *
63
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
64
+ *
65
+ * @returns
66
+ */
67
+ export declare const useSchedulerEditItemFormItemContext: () => SchedulerEditItemFormItemContextType;
68
+ /**
69
+ * Specifies the result of the [useSchedulerEditItemDragItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemdragitemcontext) and [SchedulerEditItemDragItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemdragitemcontext).
70
+ */
71
+ export type SchedulerEditItemDragItemContextType = [
72
+ DataItem | null,
73
+ (newValue?: DataItem | null, event?: React.SyntheticEvent | BaseEvent<any> | {
74
+ preventDefault: any;
75
+ }) => void,
76
+ (action: SchedulerItemFormItemAction, event?: React.SyntheticEvent | BaseEvent<any> | {
77
+ preventDefault: any;
78
+ }) => void
79
+ ];
80
+ /**
81
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `dragItem` state.
82
+ *
83
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
84
+ */
85
+ export declare const SchedulerEditItemDragItemContext: React.Context<SchedulerEditItemDragItemContextType>;
86
+ /**
87
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `dragItem` state.
88
+ *
89
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
90
+ *
91
+ * @returns
92
+ */
93
+ export declare const useSchedulerEditItemDragItemContext: () => SchedulerEditItemDragItemContextType;
94
+ /**
95
+ * Specifies the result of the [useSchedulerEditItemResizeItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemresizeitemcontext) and [SchedulerEditItemResizeItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemresizeitemcontext).
96
+ */
97
+ export type SchedulerEditItemResizeItemContextType = [
98
+ DataItem | null,
99
+ (newValue?: DataItem | null, event?: React.SyntheticEvent | BaseEvent<any> | {
100
+ preventDefault: any;
101
+ }) => void,
102
+ (action: SchedulerItemFormItemAction, event?: React.SyntheticEvent | BaseEvent<any> | {
103
+ preventDefault: any;
104
+ }) => void
105
+ ];
106
+ /**
107
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `resizeItem` state.
108
+ *
109
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
110
+ */
111
+ export declare const SchedulerEditItemResizeItemContext: React.Context<SchedulerEditItemResizeItemContextType>;
112
+ /**
113
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `resizeItem` state.
114
+ *
115
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
116
+ *
117
+ * @returns
118
+ */
119
+ export declare const useSchedulerEditItemResizeItemContext: () => SchedulerEditItemResizeItemContextType;
120
+ /**
121
+ * Specifies the result of the [useSchedulerEditItemRemoveItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemremoveitemcontext) and [SchedulerEditItemRemoveItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemremoveitemcontext).
122
+ */
123
+ export type SchedulerEditItemRemoveItemContextType = [
124
+ DataItem | null,
125
+ (newValue?: any, event?: React.SyntheticEvent | BaseEvent<any> | {
126
+ preventDefault: any;
127
+ }) => void,
128
+ (action: SchedulerItemFormItemAction, event?: React.SyntheticEvent | BaseEvent<any> | {
129
+ preventDefault: any;
130
+ }) => void
131
+ ];
132
+ /**
133
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `removeItem` state.
134
+ *
135
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
136
+ */
137
+ export declare const SchedulerEditItemRemoveItemContext: React.Context<SchedulerEditItemRemoveItemContextType>;
138
+ /**
139
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `removeItem` state.
140
+ *
141
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
142
+ *
143
+ * @returns
144
+ */
145
+ export declare const useSchedulerEditItemRemoveItemContext: () => SchedulerEditItemRemoveItemContextType;
146
+ /**
147
+ * Specifies the result of the [useSchedulerEditItemShowRemoveDialogContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemshowremovedialogcontext) and [SchedulerEditItemShowRemoveDialogContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemshowremovedialogcontext).
148
+ */
149
+ export type SchedulerEditItemShowRemoveDialogContextType = [
150
+ boolean,
151
+ (newValue?: boolean, event?: React.SyntheticEvent | BaseEvent<any> | {
152
+ preventDefault: any;
153
+ }) => void,
154
+ (action: SchedulerItemFormItemAction, event?: React.SyntheticEvent | BaseEvent<any> | {
155
+ preventDefault: any;
156
+ }) => void
157
+ ];
158
+ /**
159
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `showRemoveDialog` state.
160
+ *
161
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
162
+ */
163
+ export declare const SchedulerEditItemShowRemoveDialogContext: React.Context<SchedulerEditItemShowRemoveDialogContextType>;
164
+ /**
165
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `showRemoveDialog` state.
166
+ *
167
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
168
+ *
169
+ * @returns
170
+ */
171
+ export declare const useSchedulerEditItemShowRemoveDialogContext: () => SchedulerEditItemShowRemoveDialogContextType;
172
+ /**
173
+ * Specifies the result of the [useSchedulerEditItemShowOccurrenceDialogContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/usescheduleredititemshowoccurrencedialogcontext) and [SchedulerEditItemShowOccurrenceDialogContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititemshowoccurrencedialogcontext).
174
+ */
175
+ export type SchedulerEditItemShowOccurrenceDialogContextType = [
176
+ boolean,
177
+ (newValue?: boolean, event?: React.SyntheticEvent | BaseEvent<any> | {
178
+ preventDefault: any;
179
+ }) => void,
180
+ (action: SchedulerItemFormItemAction, event?: React.SyntheticEvent | BaseEvent<any> | {
181
+ preventDefault: any;
182
+ }) => void
183
+ ];
184
+ /**
185
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `showOccurrenceDialog` state.
186
+ *
187
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
188
+ */
189
+ export declare const SchedulerEditItemShowOccurrenceDialogContext: React.Context<SchedulerEditItemShowOccurrenceDialogContextType>;
190
+ /**
191
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/edit-item) internal `showOccurrenceDialog` state.
192
+ *
193
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
194
+ *
195
+ * @returns
196
+ */
197
+ export declare const useSchedulerEditItemShowOccurrenceDialogContext: () => SchedulerEditItemShowOccurrenceDialogContextType;
198
+ /** @hidden */
199
+ export declare const SchedulerEditItemContext: ({ props, form, drag, resize, remove, showRemoveDialog, showOccurrenceDialog, children }: SchedulerEditItemContextProps) => React.JSX.Element;
@@ -0,0 +1,54 @@
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 { DataItem } from '../models/index.js';
9
+ import { SchedulerEditSlotProps } from '../slots/SchedulerEditSlot.js';
10
+ import * as React from 'react';
11
+ /** @hidden */
12
+ export interface SchedulerEditSlotContextProps {
13
+ props: SchedulerEditSlotProps;
14
+ form: SchedulerEditSlotFormItemContextType;
15
+ children?: React.ReactNode;
16
+ }
17
+ /**
18
+ * Specifies the result of the [useSchedulerEditSlotPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulereditslotpropscontext) and [SchedulerEditSlotPropsContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslotpropscontext).
19
+ */
20
+ export type SchedulerEditSlotPropsContextType = SchedulerEditSlotProps;
21
+ /**
22
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) `props`.
23
+ *
24
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
25
+ */
26
+ export declare const SchedulerEditSlotPropsContext: React.Context<SchedulerEditSlotProps>;
27
+ /**
28
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) `props`.
29
+ *
30
+ * For more information, refer to the [Items Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/items/state-update) article.
31
+ *
32
+ * @returns
33
+ */
34
+ export declare const useSchedulerEditSlotPropsContext: () => SchedulerEditSlotPropsContextType;
35
+ /**
36
+ * Specifies the result of the [useSchedulerEditSlotFormItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/useschedulereditslotformitemcontext) and [SchedulerEditSlotFormItemContext](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslotformitemcontext).
37
+ */
38
+ export type SchedulerEditSlotFormItemContextType = [DataItem | null, (event?: any) => void];
39
+ /**
40
+ * A [React Context](https://react.dev/reference/react/hooks#context-hooks) providing access to the [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) internal `formItem` state.
41
+ *
42
+ * For more information, refer to the [Slots Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/slots/state-update) article.
43
+ */
44
+ export declare const SchedulerEditSlotFormItemContext: React.Context<SchedulerEditSlotFormItemContextType>;
45
+ /**
46
+ * A custom [React Hook](https://react.dev/reference/react/hooks) providing access to the [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) internal `formItem` state.
47
+ *
48
+ * For more information, refer to the [Slots Context](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/slots/state-update) article.
49
+ *
50
+ * @returns
51
+ */
52
+ export declare const useSchedulerEditSlotFormItemContext: () => SchedulerEditSlotFormItemContextType;
53
+ /** @hidden */
54
+ export declare const SchedulerEditSlotContext: ({ props, form, children }: SchedulerEditSlotContextProps) => React.JSX.Element;
@@ -0,0 +1,36 @@
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 { DataItem } from '../models/index.js';
9
+ import * as React from 'react';
10
+ /** @hidden */
11
+ export interface SchedulerEditTaskContextProps {
12
+ remove: SchedulerEditTaskRemoveItemContextType;
13
+ showRemoveDialog: SchedulerEditTaskShowRemoveDialogContextType;
14
+ showOccurrenceDialog: SchedulerEditTaskShowOccurrenceDialogContextType;
15
+ children?: React.ReactNode;
16
+ }
17
+ /** @hidden */
18
+ export type SchedulerEditTaskRemoveItemContextType = [DataItem | null, (event?: any) => void];
19
+ /** @hidden */
20
+ export declare const SchedulerEditTaskRemoveItemContext: React.Context<SchedulerEditTaskRemoveItemContextType>;
21
+ /** @hidden */
22
+ export declare const useSchedulerEditTaskRemoveItemContext: () => SchedulerEditTaskRemoveItemContextType;
23
+ /** @hidden */
24
+ export type SchedulerEditTaskShowRemoveDialogContextType = [boolean, (event?: any) => void];
25
+ /** @hidden */
26
+ export declare const SchedulerEditTaskShowRemoveDialogContext: React.Context<SchedulerEditTaskShowRemoveDialogContextType>;
27
+ /** @hidden */
28
+ export declare const useSchedulerEditTaskShowRemoveDialogContext: () => SchedulerEditTaskShowRemoveDialogContextType;
29
+ /** @hidden */
30
+ export type SchedulerEditTaskShowOccurrenceDialogContextType = [boolean, (event?: any) => void];
31
+ /** @hidden */
32
+ export declare const SchedulerEditTaskShowOccurrenceDialogContext: React.Context<SchedulerEditTaskShowOccurrenceDialogContextType>;
33
+ /** @hidden */
34
+ export declare const useSchedulerEditTaskShowOccurrenceDialogContext: () => SchedulerEditTaskShowOccurrenceDialogContextType;
35
+ /** @hidden */
36
+ export declare const SchedulerEditTaskContext: (props: SchedulerEditTaskContextProps) => React.JSX.Element;