@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,25 @@
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, SchedulerViewProps } from '../models/index.js';
9
+ import * as React from 'react';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface BaseViewProps {
14
+ props: SchedulerViewProps;
15
+ slots: any[];
16
+ ranges: Range[];
17
+ id?: string;
18
+ className?: string;
19
+ style?: React.CSSProperties;
20
+ children?: React.ReactNode;
21
+ }
22
+ /**
23
+ * @hidden
24
+ */
25
+ export declare const BaseView: React.ForwardRefExoticComponent<BaseViewProps & React.RefAttributes<HTMLDivElement | null>>;
@@ -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("react"),a=require("@progress/kendo-react-common"),w=require("../context/SchedulerViewContext.js"),d=require("../hooks/use-items-selection.js"),S=require("../hooks/use-slots-selection.js"),m=require("../hooks/useCellSync.js"),x=require("../hooks/use-items-focus.js"),E=require("../hooks/use-slots-focus.js");function _(e){const l=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const t in e)if(t!=="default"){const c=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(l,t,c.get?c:{enumerable:!0,get:()=>e[t]})}}return l.default=e,Object.freeze(l)}const s=_(T),f=s.forwardRef((e,l)=>{const t=s.useRef(null);s.useImperativeHandle(l,()=>t.current);const[c,h]=a.useCollection([]),[i,p]=a.useCollection([]),[I,y]=x.useItemsFocus(c),[C,b]=E.useSlotsFocus(i),[g,o]=d.useItemsSelection(c),[O,n]=S.useSlotsSelection(),k=s.useCallback((u,r)=>{n({type:S.SLOTS_SELECT_ACTION.reset}),o(u,r)},[o,n]),q=s.useCallback((u,r)=>{o({type:d.ITEMS_SELECT_ACTION.reset},r),n(u)},[o,n]),N=s.useMemo(()=>a.classNames("k-scheduler-layout k-scheduler-layout-flex",e.className),[e.className]);return m.useCellSync({element:t,selector:".k-group-cell",attribute:"data-depth-index",explicitDepth:!0}),m.useCellSync({element:t,selector:".k-side-cell",attribute:"data-depth-index",explicitDepth:!1}),s.createElement(w.SchedulerViewContext,{props:e.props,ranges:e.ranges,items:[c,h],slots:[i,p],selectedItems:[g,k],selectedSlots:[O,q],focusedItems:[I,y],focusedSlots:[C,b]},s.createElement("div",{ref:t,style:e.style,className:N,role:"presentation"},e.children))});f.displayName="KendoReactSchedulerBaseView";exports.BaseView=f;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const T=require("react"),a=require("@progress/kendo-react-common"),w=require("../context/SchedulerViewContext.js"),d=require("../hooks/use-items-selection.js"),S=require("../hooks/use-slots-selection.js"),m=require("../hooks/useCellSync.js"),x=require("../hooks/use-slots-focus.js"),E=require("../hooks/use-items-focus.js");function _(e){const l=Object.create(null,{[Symbol.toStringTag]:{value:"Module"}});if(e){for(const t in e)if(t!=="default"){const c=Object.getOwnPropertyDescriptor(e,t);Object.defineProperty(l,t,c.get?c:{enumerable:!0,get:()=>e[t]})}}return l.default=e,Object.freeze(l)}const s=_(T),f=s.forwardRef((e,l)=>{const t=s.useRef(null);s.useImperativeHandle(l,()=>t.current);const[c,h]=a.useCollection([]),[i,p]=a.useCollection([]),[I,y]=E.useItemsFocus(c),[C,b]=x.useSlotsFocus(i),[g,o]=d.useItemsSelection(c),[O,n]=S.useSlotsSelection(),k=s.useCallback((u,r)=>{n({type:S.SLOTS_SELECT_ACTION.reset}),o(u,r)},[o,n]),q=s.useCallback((u,r)=>{o({type:d.ITEMS_SELECT_ACTION.reset},r),n(u)},[o,n]),N=s.useMemo(()=>a.classNames("k-scheduler-layout k-scheduler-layout-flex",e.className),[e.className]);return m.useCellSync({element:t,selector:".k-group-cell",attribute:"data-depth-index",explicitDepth:!0}),m.useCellSync({element:t,selector:".k-side-cell",attribute:"data-depth-index",explicitDepth:!1}),s.createElement(w.SchedulerViewContext,{props:e.props,ranges:e.ranges,items:[c,h],slots:[i,p],selectedItems:[g,k],selectedSlots:[O,q],focusedItems:[I,y],focusedSlots:[C,b]},s.createElement("div",{ref:t,style:e.style,className:N,role:"presentation"},e.children))});f.displayName="KendoReactSchedulerBaseView";exports.BaseView=f;
@@ -11,12 +11,12 @@ import { SchedulerViewContext as T } from "../context/SchedulerViewContext.mjs";
11
11
  import { useItemsSelection as b, ITEMS_SELECT_ACTION as w } from "../hooks/use-items-selection.mjs";
12
12
  import { useSlotsSelection as A, SLOTS_SELECT_ACTION as F } from "../hooks/use-slots-selection.mjs";
13
13
  import { useCellSync as m } from "../hooks/useCellSync.mjs";
14
- import { useItemsFocus as R } from "../hooks/use-items-focus.mjs";
15
- import { useSlotsFocus as _ } from "../hooks/use-slots-focus.mjs";
14
+ import { useSlotsFocus as R } from "../hooks/use-slots-focus.mjs";
15
+ import { useItemsFocus as _ } from "../hooks/use-items-focus.mjs";
16
16
  const g = e.forwardRef((t, n) => {
17
17
  const s = e.useRef(null);
18
18
  e.useImperativeHandle(n, () => s.current);
19
- const [o, u] = i([]), [d, S] = i([]), [p, h] = R(o), [f, I] = _(d), [C, l] = b(o), [y, c] = A(), x = e.useCallback(
19
+ const [o, u] = i([]), [d, S] = i([]), [p, h] = _(o), [f, I] = R(d), [C, l] = b(o), [y, c] = A(), x = e.useCallback(
20
20
  (a, r) => {
21
21
  c({ type: F.reset }), l(a, r);
22
22
  },
@@ -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 * as React from 'react';
9
+ type CurrentTimeMarkerProps = {
10
+ updateInterval?: number;
11
+ groupIndex?: number | null;
12
+ vertical?: boolean;
13
+ attachArrow?: React.RefObject<HTMLElement | null>;
14
+ };
15
+ /** @hidden */
16
+ export declare const CurrentTimeMarker: (props: CurrentTimeMarkerProps) => React.JSX.Element;
17
+ export {};
@@ -0,0 +1,53 @@
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 { DateFormatOptions } from '@progress/kendo-react-intl';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the properties of [DateHeaderCell](https://www.telerik.com/kendo-react-ui/components/scheduler/api/dateheadercell) component.
12
+ */
13
+ export interface DateHeaderCellProps extends React.HTMLAttributes<HTMLDivElement> {
14
+ /** @hidden */
15
+ as?: React.ComponentType<DateHeaderCellProps>;
16
+ /**
17
+ * Represents the date format.
18
+ */
19
+ format?: string | DateFormatOptions;
20
+ /**
21
+ * Represents the current date.
22
+ */
23
+ date: Date;
24
+ /**
25
+ * Represents the start date.
26
+ */
27
+ start: Date;
28
+ /**
29
+ * Represents the end date.
30
+ */
31
+ end: Date;
32
+ }
33
+ /**
34
+ * Represents the target(element and props).
35
+ */
36
+ export interface DateHeaderCellHandle {
37
+ /**
38
+ * The current element or `null` if there is no one.
39
+ */
40
+ element: HTMLElement | null;
41
+ /**
42
+ * The props values of the DateHeaderCell.
43
+ */
44
+ props: DateHeaderCellProps;
45
+ }
46
+ /**
47
+ * Represents the DateHeaderCell component.
48
+ */
49
+ export declare const DateHeaderCell: React.ForwardRefExoticComponent<DateHeaderCellProps & React.RefAttributes<DateHeaderCellHandle | null>>;
50
+ export declare const dateHeaderCellDefaultProps: {
51
+ as: React.ForwardRefExoticComponent<DateHeaderCellProps & React.RefAttributes<unknown>>;
52
+ format: string;
53
+ };
@@ -0,0 +1,87 @@
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 { FormProps, FormRenderProps } from '@progress/kendo-react-form';
9
+ import { DialogProps } from '@progress/kendo-react-dialogs';
10
+ import { DataItem } from '../models/index.js';
11
+ import { SchedulerFormEditorProps } from '../editors/SchedulerFormEditor.js';
12
+ import { Omit } from '../models/Omit.js';
13
+ import * as React from 'react';
14
+ export interface SchedulerFormStateChangeEvent<T> {
15
+ /**
16
+ * The SchedulerForm instance that triggered the event.
17
+ */
18
+ target: SchedulerFormHandle;
19
+ /**
20
+ * The value associated with the event.
21
+ */
22
+ value: T;
23
+ /**
24
+ * The React synthetic event object.
25
+ */
26
+ syntheticEvent: React.SyntheticEvent;
27
+ }
28
+ /**
29
+ * Represents the props of the KendoReact [SchedulerForm](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerform) component.
30
+ */
31
+ export interface SchedulerFormProps extends Omit<FormProps, 'render' | 'onSubmit'> {
32
+ /**
33
+ * Specifies the `dataItem` to be visualized inside the form.
34
+ */
35
+ dataItem: DataItem;
36
+ /**
37
+ * The Form content that will be rendered. The default rendering includes a `dialog` and `editor`.
38
+ *
39
+ * For more information about customizing some parts of the default rendering please refer to the [SchedulerForm Customization](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/overview) article.
40
+ */
41
+ render?: (props: FormRenderProps) => any;
42
+ /**
43
+ * Fires when you click the `cancel` button.
44
+ */
45
+ onCancel?: (event: SchedulerFormStateChangeEvent<null>) => void;
46
+ /**
47
+ * Fires when you click the `close` button.
48
+ */
49
+ onClose?: (event: SchedulerFormStateChangeEvent<null>) => void;
50
+ /**
51
+ * Fires when you click the `submit` button.
52
+ */
53
+ onSubmit: (event: SchedulerFormStateChangeEvent<any>) => void;
54
+ /**
55
+ * Overrides the component used for visualizing the `editor`.
56
+ * The [SchedulerFormEditor](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerformeditor) component is used, by default.
57
+ *
58
+ * For more information, please refer to the [`Scheduler Form Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/overview) article.
59
+ */
60
+ editor?: React.ComponentType<SchedulerFormEditorProps>;
61
+ /**
62
+ * Overrides the component used for visualizing the `dialog`.
63
+ * The [KendoReact Dialog](https://www.telerik.com/kendo-react-ui/components/dialogs/api/dialog) component is used, by default.
64
+ *
65
+ * For more information, please refer to the [`Scheduler Form Customization`](https://www.telerik.com/kendo-react-ui/components/scheduler/customization/form/overview) article.
66
+ */
67
+ dialog?: React.ComponentType<DialogProps>;
68
+ }
69
+ /**
70
+ * Represent the `ref` of the SchedulerForm component.
71
+ */
72
+ export interface SchedulerFormHandle {
73
+ /**
74
+ * Represents the properties passed to the current instance of the `SchedulerForm`.
75
+ */
76
+ props: SchedulerFormProps;
77
+ }
78
+ /**
79
+ * Represents the default `form` component rendered by the [SchedulerEditItem](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititem) and [SchedulerEditSlot](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulereditslot) components.
80
+ *
81
+ * Accepts [SchedulerFormProps](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerformprops) properties and provide [SchedulerFormHandle](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerformhandle) `ref` callback.
82
+ */
83
+ export declare const SchedulerForm: React.ForwardRefExoticComponent<SchedulerFormProps & React.RefAttributes<SchedulerFormHandle | null>>;
84
+ export declare const schedulerFormDefaultProps: {
85
+ dialog: React.ForwardRefExoticComponent<DialogProps & React.RefAttributes<import('@progress/kendo-react-dialogs').DialogHandle | null>>;
86
+ validator: () => {};
87
+ };
@@ -10,7 +10,7 @@ import * as K from "react-dom";
10
10
  import { canUseDOM as U } from "@progress/kendo-react-common";
11
11
  import { Button as p } from "@progress/kendo-react-buttons";
12
12
  import { Form as W } from "@progress/kendo-react-form";
13
- import { DialogActionsBar as j, Dialog as J } from "@progress/kendo-react-dialogs";
13
+ import { Dialog as j, DialogActionsBar as J } from "@progress/kendo-react-dialogs";
14
14
  import { useLocalization as P } from "@progress/kendo-react-intl";
15
15
  import { SchedulerFormEditor as Q } from "../editors/SchedulerFormEditor.mjs";
16
16
  import { editorValidationRequired as k, messages as n, editorValidationEnd as E, editorSave as I, editorCancel as L, editorTitle as D, editorValidationStart as F } from "../messages/index.mjs";
@@ -112,7 +112,7 @@ const _ = e.forwardRef((l, T) => {
112
112
  className: "k-scheduler-edit-dialog"
113
113
  },
114
114
  /* @__PURE__ */ e.createElement(Q, { ...t, as: y }),
115
- /* @__PURE__ */ e.createElement(j, { layout: "start" }, /* @__PURE__ */ e.createElement(
115
+ /* @__PURE__ */ e.createElement(J, { layout: "start" }, /* @__PURE__ */ e.createElement(
116
116
  p,
117
117
  {
118
118
  themeColor: "primary",
@@ -130,7 +130,7 @@ const _ = e.forwardRef((l, T) => {
130
130
  document && document.body
131
131
  ) : null;
132
132
  }), R = {
133
- dialog: J,
133
+ dialog: j,
134
134
  validator: () => ({})
135
135
  };
136
136
  _.displayName = "KendoReactSchedulerForm";
@@ -0,0 +1,58 @@
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
+ export interface SchedulerOccurrenceDialogStateChangeEvent<T> {
11
+ /**
12
+ * The SchedulerOccurrenceDialog instance that triggered the event.
13
+ */
14
+ target: SchedulerOccurrenceDialogHandle;
15
+ /**
16
+ * The value associated with the event.
17
+ */
18
+ value: T;
19
+ /**
20
+ * The React synthetic event object.
21
+ */
22
+ syntheticEvent: React.SyntheticEvent;
23
+ }
24
+ /**
25
+ * Represents the props of the KendoReact [SchedulerOccurrenceDialog](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleroccurrencedialog) component.
26
+ */
27
+ export interface SchedulerOccurrenceDialogProps {
28
+ /**
29
+ * Specifies the `DataItem` currently being edited.
30
+ */
31
+ dataItem: DataItem;
32
+ /**
33
+ * Specifies if the dialog is for `remove` or `edit` action.
34
+ */
35
+ isRemove?: boolean;
36
+ /**
37
+ * Fires when you click the `close` button.
38
+ */
39
+ onClose: (event: SchedulerOccurrenceDialogStateChangeEvent<DataItem | null>) => void;
40
+ /**
41
+ * Fires when you click the `series` button.
42
+ */
43
+ onSeriesClick: (event: SchedulerOccurrenceDialogStateChangeEvent<DataItem | null>) => void;
44
+ /**
45
+ * Fires when you click the `occurrence` button.
46
+ */
47
+ onOccurrenceClick: (event: SchedulerOccurrenceDialogStateChangeEvent<DataItem | null>) => void;
48
+ }
49
+ /**
50
+ * Represent the `ref` of the SchedulerOccurrenceDialog component.
51
+ */
52
+ export type SchedulerOccurrenceDialogHandle = {
53
+ props: SchedulerOccurrenceDialogProps;
54
+ };
55
+ /**
56
+ * Represents the default `occurrenceDialog` component rendered by the [KendoReact SchedulerEditItem component](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititem).
57
+ */
58
+ export declare const SchedulerOccurrenceDialog: React.ForwardRefExoticComponent<SchedulerOccurrenceDialogProps & React.RefAttributes<SchedulerOccurrenceDialogHandle | null>>;
@@ -9,7 +9,7 @@ import * as e from "react";
9
9
  import * as T from "react-dom";
10
10
  import { Dialog as z, DialogActionsBar as y } from "@progress/kendo-react-dialogs";
11
11
  import { useLocalization as B } from "@progress/kendo-react-intl";
12
- import { messages as H, editorOccurrence as I, editorSeries as L, editorRecurringConfirmation as w, editorRecurringDialogTitle as x, deleteOccurrence as A, deleteSeries as K, deleteRecurringDialogTitle as N, deleteRecurringConfirmation as P } from "../messages/index.mjs";
12
+ import { messages as H, deleteRecurringDialogTitle as I, editorRecurringDialogTitle as L, deleteRecurringConfirmation as w, editorRecurringConfirmation as x, deleteOccurrence as A, editorOccurrence as K, deleteSeries as N, editorSeries as P } from "../messages/index.mjs";
13
13
  import { canUseDOM as U } from "@progress/kendo-react-common";
14
14
  import { Button as s } from "@progress/kendo-react-buttons";
15
15
  const j = e.forwardRef((a, u) => {
@@ -18,7 +18,7 @@ const j = e.forwardRef((a, u) => {
18
18
  u,
19
19
  () => c.current
20
20
  );
21
- const g = B(), r = (t) => g.toLanguageString(t, H[t]), d = r(I), m = r(L), f = r(w), C = r(x), M = r(A), R = r(K), S = r(N), v = r(P), D = n ? S : C, O = n ? v : f, k = n ? M : d, p = n ? R : m, h = e.useCallback(
21
+ const g = B(), r = (t) => g.toLanguageString(t, H[t]), d = r(K), m = r(P), f = r(x), C = r(L), M = r(A), R = r(N), S = r(I), v = r(w), D = n ? S : C, O = n ? v : f, k = n ? M : d, p = n ? R : m, h = e.useCallback(
22
22
  ({ syntheticEvent: t }) => {
23
23
  o && o.call(void 0, { syntheticEvent: t, value: null, target: c.current });
24
24
  },
@@ -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 * as React from 'react';
10
+ export interface SchedulerRemoveDialogStateChangeEvent<T> {
11
+ /**
12
+ * The SchedulerRemoveDialog instance that triggered the event.
13
+ */
14
+ target: SchedulerRemoveDialogHandle;
15
+ /**
16
+ * The value associated with the event.
17
+ */
18
+ value: T;
19
+ /**
20
+ * The React synthetic event object.
21
+ */
22
+ syntheticEvent: React.SyntheticEvent;
23
+ }
24
+ /**
25
+ * Represents the props of the KendoReact [SchedulerRemoveDialog](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerremovedialog) component.
26
+ */
27
+ export interface SchedulerRemoveDialogProps {
28
+ /**
29
+ * Specifies the `DataItem` currently being deleted.
30
+ */
31
+ dataItem: DataItem;
32
+ /**
33
+ * Fires when you click the `close` button.
34
+ */
35
+ onClose?: (event: SchedulerRemoveDialogStateChangeEvent<null>) => void;
36
+ /**
37
+ * Fires when you click the `cancel` button.
38
+ */
39
+ onCancel?: (event: SchedulerRemoveDialogStateChangeEvent<null>) => void;
40
+ /**
41
+ * Fires when you click the `confirm` button.
42
+ */
43
+ onConfirm?: (event: SchedulerRemoveDialogStateChangeEvent<DataItem | null>) => void;
44
+ }
45
+ /**
46
+ * Represent the `ref` of the SchedulerOccurrenceDialog component.
47
+ */
48
+ export type SchedulerRemoveDialogHandle = {
49
+ props: SchedulerRemoveDialogProps;
50
+ };
51
+ /**
52
+ * Represents the default `removeDialog` component rendered by the [KendoReact SchedulerEditItem component](https://www.telerik.com/kendo-react-ui/components/scheduler/api/scheduleredititem).
53
+ */
54
+ export declare const SchedulerRemoveDialog: React.ForwardRefExoticComponent<SchedulerRemoveDialogProps & React.RefAttributes<SchedulerRemoveDialogHandle | null>>;
@@ -0,0 +1,33 @@
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 { Slot } from '../models/index.js';
9
+ import * as React from 'react';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface ShowMoreItemsButtonMouseEvent {
14
+ syntheticEvent: React.MouseEvent;
15
+ target: ShowMoreItemsButtonHandle;
16
+ }
17
+ /**
18
+ * @hidden
19
+ */
20
+ export interface ShowMoreItemsButtonProps {
21
+ slot?: Slot;
22
+ onClick?: (event: ShowMoreItemsButtonMouseEvent) => void;
23
+ }
24
+ /**
25
+ * @hidden
26
+ */
27
+ export interface ShowMoreItemsButtonHandle extends ShowMoreItemsButtonProps {
28
+ element: HTMLButtonElement | null;
29
+ }
30
+ /**
31
+ * @hidden
32
+ */
33
+ export declare const ShowMoreItemsButton: React.ForwardRefExoticComponent<ShowMoreItemsButtonProps & React.RefAttributes<ShowMoreItemsButtonHandle>>;
@@ -0,0 +1,53 @@
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 { DateFormatOptions } from '@progress/kendo-react-intl';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the properties of [TimeHeaderCell](https://www.telerik.com/kendo-react-ui/components/scheduler/api/timeheadercell) component.
12
+ */
13
+ export interface TimeHeaderCellProps extends React.HTMLAttributes<HTMLDivElement> {
14
+ /** @hidden */
15
+ as?: React.ComponentType<TimeHeaderCellProps>;
16
+ /**
17
+ * Represents the date format.
18
+ */
19
+ format?: string | DateFormatOptions;
20
+ /**
21
+ * Represents the current date.
22
+ */
23
+ date: Date;
24
+ /**
25
+ * Represents the start date.
26
+ */
27
+ start: Date;
28
+ /**
29
+ * Represents the end date.
30
+ */
31
+ end: Date;
32
+ }
33
+ /**
34
+ * Represents the target(element and props).
35
+ */
36
+ export interface TimeHeaderCellHandle {
37
+ /**
38
+ * The current element or `null` if there is no one.
39
+ */
40
+ element: HTMLElement | null;
41
+ /**
42
+ * The props values of the TimeHeaderCell.
43
+ */
44
+ props: TimeHeaderCellProps;
45
+ }
46
+ /**
47
+ * Represents the TimeHeaderCell component.
48
+ */
49
+ export declare const TimeHeaderCell: React.ForwardRefExoticComponent<TimeHeaderCellProps & React.RefAttributes<TimeHeaderCellHandle | null>>;
50
+ export declare const timeHeaderCellDefaultProps: {
51
+ as: React.ForwardRefExoticComponent<TimeHeaderCellProps & React.RefAttributes<unknown>>;
52
+ format: string;
53
+ };
@@ -0,0 +1,37 @@
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 { ToolbarProps } from '@progress/kendo-react-buttons';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the props of the KendoReact [SchedulerFooter](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfooter) component.
12
+ */
13
+ export interface SchedulerFooterProps extends ToolbarProps {
14
+ /**
15
+ * The content of the footer component.
16
+ */
17
+ children?: React.ReactNode;
18
+ }
19
+ /**
20
+ * Represents the object which is returned from the `ref` callback of the [SchedulerFooter](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerfooter).
21
+ *
22
+ * For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
23
+ */
24
+ export interface SchedulerFooterHandle {
25
+ /**
26
+ * The HTML element of the SchedulerFooter component.
27
+ */
28
+ element: HTMLDivElement | null;
29
+ /**
30
+ * The props of the SchedulerFooter component.
31
+ */
32
+ props: SchedulerFooterProps;
33
+ }
34
+ /**
35
+ * Represents the default `footer` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
36
+ */
37
+ export declare const SchedulerFooter: React.ForwardRefExoticComponent<SchedulerFooterProps & React.RefAttributes<SchedulerFooterHandle>>;
@@ -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 { ToolbarItemProps } from '@progress/kendo-react-buttons';
9
+ import * as React from 'react';
10
+ /** @hidden */
11
+ export interface BusinessHoursProps extends ToolbarItemProps {
12
+ children?: React.ReactNode;
13
+ }
14
+ /** @hidden */
15
+ export interface BusinessHoursHandle {
16
+ element: HTMLSpanElement | null;
17
+ props: BusinessHoursProps;
18
+ }
19
+ /** @hidden */
20
+ export declare const BusinessHours: React.ForwardRefExoticComponent<BusinessHoursProps & React.RefAttributes<BusinessHoursHandle>>;
@@ -0,0 +1,34 @@
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 { ToolbarProps } from '@progress/kendo-react-buttons';
9
+ import * as React from 'react';
10
+ export interface SchedulerHeaderProps extends ToolbarProps {
11
+ /**
12
+ * The content of the header component.
13
+ */
14
+ children?: React.ReactNode;
15
+ }
16
+ /**
17
+ * Represents the object which is returned from the `ref` callback of the [SchedulerHeader](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerheader).
18
+ *
19
+ * For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
20
+ */
21
+ export interface SchedulerHeaderHandle {
22
+ /**
23
+ * The HTML element of the SchedulerHeader component.
24
+ */
25
+ element: HTMLDivElement | null;
26
+ /**
27
+ * The props of the SchedulerHeader component.
28
+ */
29
+ props: SchedulerHeaderProps;
30
+ }
31
+ /**
32
+ * Represents the default `header` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
33
+ */
34
+ export declare const SchedulerHeader: React.ForwardRefExoticComponent<SchedulerHeaderProps & React.RefAttributes<SchedulerHeaderHandle>>;
@@ -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 { DatePickerProps } from '@progress/kendo-react-dateinputs';
9
+ import { ButtonHandle } from '@progress/kendo-react-buttons';
10
+ import * as React from 'react';
11
+ /** @hidden */
12
+ export declare const NavigationDatePicker: React.ForwardRefExoticComponent<DatePickerProps & React.RefAttributes<ButtonHandle>>;
@@ -0,0 +1,31 @@
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 { ToolbarItemProps } from '@progress/kendo-react-buttons';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the props of the KendoReact [SchedulerNavigation](https://www.telerik.com/kendo-react-ui/components/scheduler/navigation) component.
12
+ */
13
+ /** @hidden */
14
+ export interface SchedulerNavigationProps extends ToolbarItemProps {
15
+ children?: React.ReactNode;
16
+ }
17
+ /**
18
+ * Represents the object which is returned from the `ref` callback of the [SchedulerNavigation](https://www.telerik.com/kendo-react-ui/components/scheduler/navigation).
19
+ *
20
+ * For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
21
+ */
22
+ /** @hidden */
23
+ export interface SchedulerNavigationHandle {
24
+ props: SchedulerNavigationProps;
25
+ element: HTMLSpanElement | null;
26
+ }
27
+ /**
28
+ * Represents the default `navigation` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
29
+ */
30
+ /** @hidden */
31
+ export declare const SchedulerNavigation: React.ForwardRefExoticComponent<SchedulerNavigationProps & React.RefAttributes<SchedulerNavigationHandle>>;
@@ -0,0 +1,31 @@
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 { ToolbarItemProps } from '@progress/kendo-react-buttons';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the props of the KendoReact [SchedulerViewSelector](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewselector) component.
12
+ */
13
+ /** @hidden */
14
+ export interface SchedulerViewSelectorProps extends ToolbarItemProps {
15
+ children?: React.ReactNode;
16
+ }
17
+ /**
18
+ * Represents the object which is returned from the `ref` callback of the [SchedulerViewSelector](https://www.telerik.com/kendo-react-ui/components/scheduler/api/schedulerviewselector).
19
+ *
20
+ * For more information about Refs, refer to the [React Refs & Dom](https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom) article.
21
+ */
22
+ /** @hidden */
23
+ export interface SchedulerViewSelectorHandle {
24
+ element: HTMLSpanElement | null;
25
+ props: SchedulerViewSelectorProps;
26
+ }
27
+ /**
28
+ * Represents the default `viewSelector` component rendered by the [KendoReact Scheduler component](https://www.telerik.com/kendo-react-ui/components/scheduler).
29
+ */
30
+ /** @hidden */
31
+ export declare const SchedulerViewSelector: React.ForwardRefExoticComponent<SchedulerViewSelectorProps & React.RefAttributes<SchedulerViewSelectorHandle>>;
@@ -0,0 +1,16 @@
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 { ButtonProps } from '@progress/kendo-react-buttons';
9
+ import { SchedulerViewProps } from '../../../models/index.js';
10
+ import * as React from 'react';
11
+ /** @hidden */
12
+ export interface ViewSelectorItemProps extends ButtonProps {
13
+ view: SchedulerViewProps;
14
+ }
15
+ /** @hidden */
16
+ export declare const ViewSelectorItem: (props: ViewSelectorItemProps) => React.JSX.Element;