@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,39 @@
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 * as React from 'react';
10
+ /**
11
+ * Represents the available `action` types for the `SchedulerItemsFocusAction` objects.
12
+ *
13
+ * The available types are:
14
+ * - `ITEMS_FOCUS_NEXT`
15
+ * - `ITEMS_FOCUS_PREV`
16
+ */
17
+ export declare enum ITEMS_FOCUS_ACTION {
18
+ next = "ITEMS_FOCUS_NEXT",
19
+ prev = "ITEMS_FOCUS_PREV"
20
+ }
21
+ /**
22
+ * Represents the object passed to the `items-focus` reducer.
23
+ */
24
+ export interface SchedulerItemsFocusAction {
25
+ /**
26
+ * The type of focus action to perform on the item.
27
+ */
28
+ type: ITEMS_FOCUS_ACTION;
29
+ /**
30
+ * The reference to the scheduler item handle.
31
+ */
32
+ item?: React.RefObject<SchedulerItemHandle | null>;
33
+ /**
34
+ * Whether to ignore the isAllDay property when performing the action.
35
+ */
36
+ ignoreIsAllDay?: boolean;
37
+ }
38
+ /** @hidden */
39
+ export declare const useItemsFocus: (items: React.RefObject<SchedulerItemHandle | null>[]) => [[], (action: SchedulerItemsFocusAction, event: React.SyntheticEvent) => void];
@@ -0,0 +1,47 @@
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 * as React from 'react';
10
+ /**
11
+ * Represents the available `action` types for the `SchedulerItemsSelectAction` objects.
12
+ *
13
+ * The available types are:
14
+ * - 'ITEMS_SELECT_SELECT`
15
+ * - 'ITEMS_SELECT_SELECT_NEXT`
16
+ * - 'ITEMS_SELECT_SELECT_PREV`
17
+ * - 'ITEMS_SELECT_RESET`
18
+ * - 'ITEMS_SELECT_ADD`
19
+ * - 'ITEMS_SELECT_REMOVE`
20
+ */
21
+ export declare enum ITEMS_SELECT_ACTION {
22
+ select = "ITEMS_SELECT_SELECT",
23
+ selectNext = "ITEMS_SELECT_SELECT_NEXT",
24
+ selectPrev = "ITEMS_SELECT_SELECT_PREV",
25
+ reset = "ITEMS_SELECT_RESET",
26
+ add = "ITEMS_SELECT_ADD",
27
+ remove = "ITEMS_SELECT_REMOVE"
28
+ }
29
+ /**
30
+ * Represents the object passed to the `items-select` reducer.
31
+ */
32
+ export interface SchedulerItemsSelectAction {
33
+ /**
34
+ * The type of action to perform on item selection.
35
+ */
36
+ type: ITEMS_SELECT_ACTION;
37
+ /**
38
+ * The reference to the scheduler item handle.
39
+ */
40
+ item?: React.RefObject<SchedulerItemHandle | null>;
41
+ /**
42
+ * Whether to ignore the isAllDay property when performing the action.
43
+ */
44
+ ignoreIsAllDay?: boolean;
45
+ }
46
+ /** @hidden */
47
+ export declare const useItemsSelection: (items: React.RefObject<SchedulerItemHandle | null>[]) => [React.RefObject<SchedulerItemHandle | null>[], (action: SchedulerItemsSelectAction, event: React.SyntheticEvent) => void];
@@ -0,0 +1,47 @@
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 { SchedulerSlotHandle } from '../slots/SchedulerSlot.js';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the available `action` types for the `SchedulerSlotsFocusAction` objects.
12
+ *
13
+ * The available actions are:
14
+ * - `SLOT_FOCUS_UP`
15
+ * - `SLOT_FOCUS_DOWN`
16
+ * - `SLOT_FOCUS_LEFT`
17
+ * - `SLOT_FOCUS_RIGHT`
18
+ */
19
+ export declare enum SLOTS_FOCUS_ACTION {
20
+ up = "SLOT_FOCUS_UP",
21
+ down = "SLOT_FOCUS_DOWN",
22
+ left = "SLOT_FOCUS_LEFT",
23
+ right = "SLOT_FOCUS_RIGHT"
24
+ }
25
+ /**
26
+ * Represents the object passed to the `slots-focus` reducer.
27
+ */
28
+ export interface SchedulerSlotsFocusAction {
29
+ /**
30
+ * The type of focus action to perform on the slot.
31
+ */
32
+ type: SLOTS_FOCUS_ACTION;
33
+ /**
34
+ * The reference to the scheduler slot handle.
35
+ */
36
+ slot: React.RefObject<SchedulerSlotHandle | null>;
37
+ }
38
+ /** @hidden */
39
+ export declare const useSlotsFocus: (slots: React.RefObject<SchedulerSlotHandle | null>[]) => [React.RefObject<SchedulerSlotHandle | null>[], (action: SchedulerSlotsFocusAction, event: React.SyntheticEvent) => void];
40
+ /** @hidden */
41
+ export declare const findUpSlot: (target: React.RefObject<SchedulerSlotHandle | null>, all: React.RefObject<SchedulerSlotHandle | null>[]) => React.RefObject<SchedulerSlotHandle | null> | undefined;
42
+ /** @hidden */
43
+ export declare const findLeftSlot: (target: React.RefObject<SchedulerSlotHandle | null>, all: React.RefObject<SchedulerSlotHandle | null>[]) => React.RefObject<SchedulerSlotHandle | null> | undefined;
44
+ /** @hidden */
45
+ export declare const findRightSlot: (target: React.RefObject<SchedulerSlotHandle | null>, all: React.RefObject<SchedulerSlotHandle | null>[]) => React.RefObject<SchedulerSlotHandle | null> | undefined;
46
+ /** @hidden */
47
+ export declare const findDownSlot: (target: React.RefObject<SchedulerSlotHandle | null>, all: React.RefObject<SchedulerSlotHandle | null>[]) => React.RefObject<SchedulerSlotHandle | null> | undefined;
@@ -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 { SchedulerSlotHandle } from '../slots/SchedulerSlot.js';
9
+ import * as React from 'react';
10
+ /**
11
+ * Represents the available `action` types for the `SchedulerSlotsSelectAction` objects.
12
+ *
13
+ * The available actions are:
14
+ * - `SLOTS_SELECT_SELECT`
15
+ * - `SLOTS_SELECT_RESET`
16
+ * - `SLOTS_SELECT_ADD`
17
+ */
18
+ export declare enum SLOTS_SELECT_ACTION {
19
+ select = "SLOTS_SELECT_SELECT",
20
+ reset = "SLOTS_SELECT_RESET",
21
+ add = "SLOTS_SELECT_ADD"
22
+ }
23
+ /**
24
+ * Represents the object passed to the `slots-select` reducer.
25
+ */
26
+ export interface SchedulerSlotsSelectAction {
27
+ /**
28
+ * The type of action to perform on slot selection.
29
+ */
30
+ type: SLOTS_SELECT_ACTION;
31
+ /**
32
+ * The reference to the scheduler slot handle.
33
+ */
34
+ slot?: React.RefObject<SchedulerSlotHandle | null>;
35
+ }
36
+ /** @hidden */
37
+ export declare const useSlotsSelection: (_slots: React.RefObject<SchedulerSlotHandle | null>[]) => [React.RefObject<SchedulerSlotHandle | null>[], (action: SchedulerSlotsSelectAction) => void];
@@ -0,0 +1,18 @@
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 AsyncMouseEnterLeaveArgs {
11
+ handleMouseEnter: (event: React.MouseEvent<any>) => void;
12
+ handleMouseLeave: (event: React.MouseEvent<any>) => void;
13
+ }
14
+ /** @hidden */
15
+ export declare const useAsyncMouseEnterLeave: ({ handleMouseEnter, handleMouseLeave }: AsyncMouseEnterLeaveArgs) => {
16
+ onMouseEnter: (event: React.MouseEvent<any>) => void;
17
+ onMouseLeave: (event: React.MouseEvent<any>) => void;
18
+ };
@@ -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
+ /** @hidden */
10
+ export interface CellSyncArgs {
11
+ element: React.RefObject<any>;
12
+ selector: string;
13
+ attribute?: string;
14
+ explicitDepth: boolean;
15
+ }
16
+ /** @hidden */
17
+ export declare const useCellSync: (args: CellSyncArgs, inputs?: any[]) => void;
@@ -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 * as React from 'react';
9
+ /** @hidden */
10
+ export type ControlledStateHook<T> = [
11
+ T,
12
+ (value: T, event?: React.SyntheticEvent | {
13
+ target: any;
14
+ syntheticEvent: React.SyntheticEvent;
15
+ } | {
16
+ preventDefault: any;
17
+ }) => void
18
+ ];
19
+ /** @hidden */
20
+ export declare const useControlledState: <T extends unknown>(defaultProp: T, prop?: T | undefined, callback?: any) => ControlledStateHook<T>;
@@ -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 { EditableProp } from '../models/index.js';
9
+ /** @hidden */
10
+ export declare const useEditable: (editable?: EditableProp | boolean) => EditableProp;
@@ -0,0 +1,9 @@
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 declare const usePropOrState: <S extends unknown>(prop?: any, defaultValue?: any) => [S, any];
@@ -0,0 +1,18 @@
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 RowSyncArgs {
10
+ element: HTMLElement | null;
11
+ selector: string;
12
+ horizontalAttribute: string;
13
+ verticalAttribute: string;
14
+ applyTo: string;
15
+ syncHeight?: boolean;
16
+ }
17
+ /** @hidden */
18
+ export declare const useRowSync: (args: RowSyncArgs, inputs?: any[]) => void;
@@ -0,0 +1,14 @@
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, SchedulerItemProps } from '../items/SchedulerItem.js';
9
+ import * as React from 'react';
10
+ /** @hidden */
11
+ export declare const useSchedulerItem: (props: SchedulerItemProps, ref?: React.Ref<SchedulerItemHandle | null>) => {
12
+ item: React.RefObject<SchedulerItemHandle | null>;
13
+ element: React.RefObject<HTMLDivElement | null>;
14
+ };
@@ -0,0 +1,14 @@
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 { SchedulerSlotHandle, SchedulerSlotProps } from '../slots/SchedulerSlot.js';
9
+ import * as React from 'react';
10
+ /** @hidden */
11
+ export declare const useSchedulerSlot: (props: SchedulerSlotProps, ref: React.Ref<SchedulerSlotHandle | null>) => {
12
+ slot: React.RefObject<SchedulerSlotHandle | null>;
13
+ element: React.RefObject<HTMLDivElement | null>;
14
+ };
@@ -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 { SchedulerSlotHandle } from '../slots/SchedulerSlot.js';
9
+ import { SchedulerSlotExpandableConfig } from '../slots/SchedulerViewSlot.js';
10
+ import * as React from 'react';
11
+ /** @hidden */
12
+ export declare const useSlotExpand: (slot: React.RefObject<SchedulerSlotHandle | null>, config?: boolean | SchedulerSlotExpandableConfig) => void;
@@ -0,0 +1,9 @@
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 declare const useWorkHours: (showWorkHours?: boolean, defaultShowWorkHours?: boolean) => any[];