@progress/kendo-vue-scheduler 8.0.3-develop.2 → 8.0.3-develop.4

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 (176) hide show
  1. package/Scheduler.d.ts +1536 -0
  2. package/common.d.ts +13 -0
  3. package/components/BaseView.d.ts +74 -0
  4. package/components/CurrentTimeMarker.d.ts +35 -0
  5. package/components/CurrentTimeMarkerArrow.d.ts +33 -0
  6. package/components/DateHeaderCell.d.ts +70 -0
  7. package/components/SchedulerActionButtons.d.ts +32 -0
  8. package/components/SchedulerForm.d.ts +70 -0
  9. package/components/SchedulerOccurrenceDialog.d.ts +75 -0
  10. package/components/SchedulerRemoveDialog.d.ts +61 -0
  11. package/components/ShowMoreItemsButton.d.ts +36 -0
  12. package/components/TimeHeaderCell.d.ts +70 -0
  13. package/components/footer/SchedulerFooter.d.ts +20 -0
  14. package/components/footer/bussiness-hours/BusinessHours.d.ts +27 -0
  15. package/components/footer/bussiness-hours/BusinessHours.js +1 -1
  16. package/components/footer/bussiness-hours/BusinessHours.mjs +1 -1
  17. package/components/header/SchedulerHeader.d.ts +23 -0
  18. package/components/header/navigation/DatePickerToggleButton.d.ts +16 -0
  19. package/components/header/navigation/NavigationDatePicker.d.ts +34 -0
  20. package/components/header/navigation/SchedulerNavigation.d.ts +39 -0
  21. package/components/header/view-selector/SchedulerViewSelector.d.ts +20 -0
  22. package/components/header/view-selector/ViewSelectorItem.d.ts +25 -0
  23. package/components/header/view-selector/ViewSelectorList.d.ts +17 -0
  24. package/constants/main.d.ts +66 -0
  25. package/context/SchedulerContext.d.ts +29 -0
  26. package/context/SchedulerEditItemContext.d.ts +22 -0
  27. package/context/SchedulerEditSlotContext.d.ts +17 -0
  28. package/context/SchedulerEditTaskContext.d.ts +18 -0
  29. package/context/SchedulerResourceIteratorContext.d.ts +47 -0
  30. package/context/SchedulerViewContext.d.ts +25 -0
  31. package/context/main.d.ts +12 -0
  32. package/dist/cdn/js/kendo-vue-scheduler.js +1 -1
  33. package/editors/FilterableComboBox.d.ts +38 -0
  34. package/editors/ResourceEditor.d.ts +60 -0
  35. package/editors/SchedulerFormEditor.d.ts +3858 -0
  36. package/editors/ZonedDateTime.d.ts +32 -0
  37. package/editors/common.d.ts +19 -0
  38. package/hooks/main.d.ts +16 -0
  39. package/hooks/use-items-focus.d.ts +29 -0
  40. package/hooks/use-items-focus.js +1 -1
  41. package/hooks/use-items-focus.mjs +2 -2
  42. package/hooks/use-items-selection.d.ts +36 -0
  43. package/hooks/use-items-selection.js +1 -1
  44. package/hooks/use-items-selection.mjs +2 -2
  45. package/hooks/use-slots-focus.d.ts +39 -0
  46. package/hooks/use-slots-focus.js +1 -1
  47. package/hooks/use-slots-focus.mjs +2 -2
  48. package/hooks/use-slots-selection.d.ts +29 -0
  49. package/hooks/use-slots-selection.js +1 -1
  50. package/hooks/use-slots-selection.mjs +2 -2
  51. package/hooks/useAsyncMouseEnterLeave.d.ts +17 -0
  52. package/hooks/useCellSync.d.ts +16 -0
  53. package/hooks/useEditable.d.ts +10 -0
  54. package/hooks/usePropOrState.d.ts +9 -0
  55. package/hooks/useRowSync.d.ts +17 -0
  56. package/hooks/useSchedulerSlot.d.ts +13 -0
  57. package/hooks/useSlotExpand.d.ts +10 -0
  58. package/hooks/useWorkHours.d.ts +9 -0
  59. package/index.d.mts +45 -10991
  60. package/index.d.ts +45 -10991
  61. package/items/SchedulerEditItem.d.ts +896 -0
  62. package/items/SchedulerItem.d.ts +404 -0
  63. package/items/SchedulerItemContent.d.ts +27 -0
  64. package/items/SchedulerViewItem.d.ts +235 -0
  65. package/items/hooks/use-drag-item.d.ts +40 -0
  66. package/items/hooks/use-drag-item.js +1 -1
  67. package/items/hooks/use-drag-item.mjs +2 -2
  68. package/items/hooks/use-form-item.d.ts +29 -0
  69. package/items/hooks/use-form-item.js +1 -1
  70. package/items/hooks/use-form-item.mjs +2 -2
  71. package/items/hooks/use-remove-item.d.ts +37 -0
  72. package/items/hooks/use-remove-item.js +1 -1
  73. package/items/hooks/use-remove-item.mjs +2 -2
  74. package/items/hooks/use-resize-item.d.ts +45 -0
  75. package/items/hooks/use-resize-item.js +1 -1
  76. package/items/hooks/use-resize-item.mjs +2 -2
  77. package/items/hooks/use-series.d.ts +32 -0
  78. package/items/hooks/use-series.js +1 -1
  79. package/items/hooks/use-series.mjs +2 -2
  80. package/items/hooks/use-show-occurrence-dialog.d.ts +36 -0
  81. package/items/hooks/use-show-occurrence-dialog.js +1 -1
  82. package/items/hooks/use-show-occurrence-dialog.mjs +2 -2
  83. package/items/hooks/use-show-remove-item-dialog.d.ts +36 -0
  84. package/items/hooks/use-show-remove-item-dialog.js +1 -1
  85. package/items/hooks/use-show-remove-item-dialog.mjs +2 -2
  86. package/messages/main.d.ts +243 -0
  87. package/models/DataItem.d.ts +15 -0
  88. package/models/DateRange.d.ts +25 -0
  89. package/models/EditableProp.d.ts +36 -0
  90. package/models/Fields.d.ts +24 -0
  91. package/models/Group.d.ts +15 -0
  92. package/models/Item.d.ts +69 -0
  93. package/models/NavigationAction.d.ts +24 -0
  94. package/models/Occurrence.d.ts +59 -0
  95. package/models/Omit.d.ts +11 -0
  96. package/models/Orientation.d.ts +9 -0
  97. package/models/Range.d.ts +17 -0
  98. package/models/Rect.d.ts +22 -0
  99. package/models/Resource.d.ts +15 -0
  100. package/models/SchedulerGroup.d.ts +20 -0
  101. package/models/SchedulerHandle.d.ts +13 -0
  102. package/models/SchedulerModelFields.d.ts +69 -0
  103. package/models/SchedulerResource.d.ts +40 -0
  104. package/models/SchedulerView.d.ts +90 -0
  105. package/models/Slot.d.ts +58 -0
  106. package/models/events.d.ts +88 -0
  107. package/models/main.d.ts +24 -0
  108. package/package-metadata.d.ts +12 -0
  109. package/package-metadata.js +1 -1
  110. package/package-metadata.mjs +2 -2
  111. package/package.json +19 -13
  112. package/recurrence/RecurrenceEditor.d.ts +82 -0
  113. package/recurrence/RecurrenceFrequencyEditor.d.ts +32 -0
  114. package/recurrence/RecurrenceRepeatOnWeekEditor.d.ts +59 -0
  115. package/recurrence/common.d.ts +64 -0
  116. package/recurrence/types/EndRule.d.ts +11 -0
  117. package/recurrence/types/Frequency.d.ts +11 -0
  118. package/recurrence/types/FrequencyEntity.d.ts +15 -0
  119. package/recurrence/types/MonthEntity.d.ts +14 -0
  120. package/recurrence/types/OffsetPosition.d.ts +11 -0
  121. package/recurrence/types/OffsetPositionEntity.d.ts +14 -0
  122. package/recurrence/types/RepeatOnRule.d.ts +11 -0
  123. package/recurrence/types/WeekDayEntity.d.ts +14 -0
  124. package/recurrence/types/WeekDayRule.d.ts +14 -0
  125. package/recurrence/utils/main.d.ts +7 -0
  126. package/reducers/editReducer.d.ts +40 -0
  127. package/reducers/main.d.ts +8 -0
  128. package/services/itemsService.d.ts +21 -0
  129. package/services/main.d.ts +11 -0
  130. package/services/occurrenceService.d.ts +14 -0
  131. package/services/rangeService.d.ts +13 -0
  132. package/services/slotsService.d.ts +15 -0
  133. package/slots/SchedulerEditSlot.d.ts +148 -0
  134. package/slots/SchedulerSlot.d.ts +248 -0
  135. package/slots/SchedulerViewSlot.d.ts +134 -0
  136. package/tasks/SchedulerEditTask.d.ts +225 -0
  137. package/tasks/SchedulerTask.d.ts +139 -0
  138. package/tasks/SchedulerViewTask.d.ts +120 -0
  139. package/utils/main.d.ts +192 -0
  140. package/utils/main.mjs +3 -3
  141. package/views/agenda/AgendaView.d.ts +173 -0
  142. package/views/agenda/AgendaView.js +1 -1
  143. package/views/agenda/AgendaView.mjs +2 -2
  144. package/views/agenda/AgendaViewBody.d.ts +53 -0
  145. package/views/agenda/AgendaViewHead.d.ts +24 -0
  146. package/views/agenda/AgendaViewHeaderItem.d.ts +22 -0
  147. package/views/common/HorizontalResourceIterator.d.ts +57 -0
  148. package/views/common/SchedulerDrag.d.ts +459 -0
  149. package/views/common/SchedulerResize.d.ts +462 -0
  150. package/views/common/VerticalResourceIterator.d.ts +57 -0
  151. package/views/common/utils.d.ts +41 -0
  152. package/views/day/DayView.d.ts +208 -0
  153. package/views/day/DayViewAllDayRowContent.d.ts +19 -0
  154. package/views/day/DayViewAllDaySlots.d.ts +63 -0
  155. package/views/day/DayViewGroupRowContent.d.ts +19 -0
  156. package/views/day/DayViewHead.d.ts +21 -0
  157. package/views/day/DayViewMiddleRow.d.ts +82 -0
  158. package/views/day/DayViewRowContent.d.ts +29 -0
  159. package/views/day/DayViewVerticalRow.d.ts +43 -0
  160. package/views/day/DayViewVerticalSlotsRow.d.ts +94 -0
  161. package/views/day/DayViewVerticalSlotsRow.mjs +3 -3
  162. package/views/day/MultiDayView.d.ts +411 -0
  163. package/views/month/MonthView.d.ts +205 -0
  164. package/views/month/MonthView.js +1 -1
  165. package/views/month/MonthView.mjs +1 -1
  166. package/views/month/MonthViewBody.d.ts +57 -0
  167. package/views/month/MonthViewHead.d.ts +30 -0
  168. package/views/time/MultiDayTimelineView.d.ts +382 -0
  169. package/views/time/TimelineView.d.ts +233 -0
  170. package/views/time/TimelineViewAllEventsRowContent.d.ts +13 -0
  171. package/views/time/TimelineViewBody.d.ts +66 -0
  172. package/views/time/TimelineViewBody.mjs +3 -3
  173. package/views/time/TimelineViewRowContent.d.ts +13 -0
  174. package/views/week/WeekView.d.ts +270 -0
  175. package/views/week/WeekView.mjs +1 -1
  176. package/views/week/WorkWeekView.d.ts +141 -0
@@ -0,0 +1,32 @@
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, DateTimePickerProps } from '@progress/kendo-vue-dateinputs';
9
+ import { Omit } from '../models/Omit';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export type ZonedDateTimeProps = Omit<(DatePickerProps | DateTimePickerProps), 'value'> & {
14
+ as?: any;
15
+ value?: string | Date;
16
+ isAllDay: boolean;
17
+ };
18
+ /**
19
+ * @hidden
20
+ */
21
+ declare const ZonedDateTime: import('vue').DefineComponent<{}, {}, {}, {}, {
22
+ handleChange(event: any): any;
23
+ readDateAsLocal(value: any, timezone?: string): Date;
24
+ readDateWithTimezone(value: any, timezone?: string): Date;
25
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
26
+ change: any;
27
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
28
+ onChange?: (...args: any[] | unknown[]) => any;
29
+ }>, {} | {
30
+ [x: string]: any;
31
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
32
+ export { ZonedDateTime };
@@ -0,0 +1,19 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare const labelUserSelect: any;
12
+ /**
13
+ * @hidden
14
+ */
15
+ export declare const readDateWithTimezone: (value: any, timezone: string) => Date;
16
+ /**
17
+ * @hidden
18
+ */
19
+ export declare const readDateAsLocal: (value: any, timezone?: string) => Date;
@@ -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
+ export * from './usePropOrState';
9
+ export * from './useCellSync';
10
+ export * from './useRowSync';
11
+ export * from './useAsyncMouseEnterLeave';
12
+ export * from './useEditable';
13
+ export * from './useSlotExpand';
14
+ export * from './useWorkHours';
15
+ export * from './use-items-focus';
16
+ export * from './use-slots-focus';
@@ -0,0 +1,29 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Represents the available `action` types for the `SchedulerItemsFocusAction` objects.
10
+ *
11
+ * The available types are:
12
+ * - `ITEMS_FOCUS_NEXT`
13
+ * - `ITEMS_FOCUS_PREV`
14
+ */
15
+ export declare enum ITEMS_FOCUS_ACTION {
16
+ current = "ITEMS_FOCUS_CURRENT",
17
+ next = "ITEMS_FOCUS_NEXT",
18
+ prev = "ITEMS_FOCUS_PREV"
19
+ }
20
+ /**
21
+ * Represents the object passed to the `items-focus` reducer.
22
+ */
23
+ export interface SchedulerItemsFocusAction {
24
+ type: ITEMS_FOCUS_ACTION;
25
+ item?: any;
26
+ ignoreIsAllDay?: boolean;
27
+ }
28
+ /** @hidden */
29
+ export declare const dispatchFocusedItems: (this: any, action: SchedulerItemsFocusAction, event: any) => void;
@@ -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 i=require("../utils/main.js");let s=function(e){return e.current="ITEMS_FOCUS_CURRENT",e.next="ITEMS_FOCUS_NEXT",e.prev="ITEMS_FOCUS_PREV",e}({});const n=function(e,r){switch(e.type){case s.current:{if(!e.item||!this.bv.items)return;const t=i.findCurrentItem(e.item,this.bv.items,e.ignoreIsAllDay);t&&t.element&&(r.preventDefault(),t.element.focus());break}case s.next:{if(!e.item||!this.bv.items)return;const t=i.findNextItem(e.item,this.bv.items,e.ignoreIsAllDay,!1);t&&t.element&&(r.preventDefault(),t.element.focus());break}case s.prev:{if(!e.item||!this.bv.items)return;const t=i.findNextItem(e.item,this.bv.items,e.ignoreIsAllDay,!0);t&&t.element&&(r.preventDefault(),t.element.focus());break}}};exports.ITEMS_FOCUS_ACTION=s;exports.dispatchFocusedItems=n;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const i=require("../utils/main.js");let s=(function(e){return e.current="ITEMS_FOCUS_CURRENT",e.next="ITEMS_FOCUS_NEXT",e.prev="ITEMS_FOCUS_PREV",e})({});const n=function(e,r){switch(e.type){case s.current:{if(!e.item||!this.bv.items)return;const t=i.findCurrentItem(e.item,this.bv.items,e.ignoreIsAllDay);t&&t.element&&(r.preventDefault(),t.element.focus());break}case s.next:{if(!e.item||!this.bv.items)return;const t=i.findNextItem(e.item,this.bv.items,e.ignoreIsAllDay,!1);t&&t.element&&(r.preventDefault(),t.element.focus());break}case s.prev:{if(!e.item||!this.bv.items)return;const t=i.findNextItem(e.item,this.bv.items,e.ignoreIsAllDay,!0);t&&t.element&&(r.preventDefault(),t.element.focus());break}}};exports.ITEMS_FOCUS_ACTION=s;exports.dispatchFocusedItems=n;
@@ -6,9 +6,9 @@
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
8
  import { findNextItem as i, findCurrentItem as m } from "../utils/main.mjs";
9
- let r = /* @__PURE__ */ function(e) {
9
+ let r = /* @__PURE__ */ (function(e) {
10
10
  return e.current = "ITEMS_FOCUS_CURRENT", e.next = "ITEMS_FOCUS_NEXT", e.prev = "ITEMS_FOCUS_PREV", e;
11
- }({});
11
+ })({});
12
12
  const f = function(e, s) {
13
13
  switch (e.type) {
14
14
  case r.current: {
@@ -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
+ /**
9
+ * Represents the available `action` types for the `SchedulerItemsSelectAction` objects.
10
+ *
11
+ * The available types are:
12
+ * - 'ITEMS_SELECT_SELECT`
13
+ * - 'ITEMS_SELECT_SELECT_NEXT`
14
+ * - 'ITEMS_SELECT_SELECT_PREV`
15
+ * - 'ITEMS_SELECT_RESET`
16
+ * - 'ITEMS_SELECT_ADD`
17
+ * - 'ITEMS_SELECT_REMOVE`
18
+ */
19
+ export declare enum ITEMS_SELECT_ACTION {
20
+ select = "ITEMS_SELECT_SELECT",
21
+ selectNext = "ITEMS_SELECT_SELECT_NEXT",
22
+ selectPrev = "ITEMS_SELECT_SELECT_PREV",
23
+ reset = "ITEMS_SELECT_RESET",
24
+ add = "ITEMS_SELECT_ADD",
25
+ remove = "ITEMS_SELECT_REMOVE"
26
+ }
27
+ /**
28
+ * Represents the object passed to the `items-select` reducer.
29
+ */
30
+ export interface SchedulerItemsSelectAction {
31
+ type: ITEMS_SELECT_ACTION;
32
+ item?: any;
33
+ ignoreIsAllDay?: boolean;
34
+ }
35
+ /** @hidden */
36
+ export declare const dispatchSelectedItems: (this: any, action: SchedulerItemsSelectAction, event: any) => void;
@@ -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 r=require("../utils/main.js");let s=function(e){return e.select="ITEMS_SELECT_SELECT",e.selectNext="ITEMS_SELECT_SELECT_NEXT",e.selectPrev="ITEMS_SELECT_SELECT_PREV",e.reset="ITEMS_SELECT_RESET",e.add="ITEMS_SELECT_ADD",e.remove="ITEMS_SELECT_REMOVE",e}({});const m=function(e,i){switch(e.type){case s.select:if(!e.item)return;this.bv.selectedItems=[e.item];break;case s.selectNext:{if(!e.item||!this.bv.items)return;const t=r.findNextItem(e.item,this.bv.items,e.ignoreIsAllDay,!1);t&&(i.preventDefault(),this.bv.selectedItems=[t]);break}case s.selectPrev:{if(!e.item||!this.bv.items)return;const t=r.findNextItem(e.item,this.bv.items,e.ignoreIsAllDay,!0);t&&(i.preventDefault(),this.bv.selectedItems=[t]);break}case s.reset:this.bv.selectedItems=[];break;case s.add:if(!e.item)return;this.bv.selectedItems.some(t=>t===e.item)||(this.bv.selectedItems=[...this.bv.selectedItems,e.item]);break;case s.remove:if(!e.item)return;this.bv.selectedItems=[...this.bv.selectedItems.filter(t=>t!==e.item)];break}};exports.ITEMS_SELECT_ACTION=s;exports.dispatchSelectedItems=m;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("../utils/main.js");let s=(function(e){return e.select="ITEMS_SELECT_SELECT",e.selectNext="ITEMS_SELECT_SELECT_NEXT",e.selectPrev="ITEMS_SELECT_SELECT_PREV",e.reset="ITEMS_SELECT_RESET",e.add="ITEMS_SELECT_ADD",e.remove="ITEMS_SELECT_REMOVE",e})({});const m=function(e,i){switch(e.type){case s.select:if(!e.item)return;this.bv.selectedItems=[e.item];break;case s.selectNext:{if(!e.item||!this.bv.items)return;const t=r.findNextItem(e.item,this.bv.items,e.ignoreIsAllDay,!1);t&&(i.preventDefault(),this.bv.selectedItems=[t]);break}case s.selectPrev:{if(!e.item||!this.bv.items)return;const t=r.findNextItem(e.item,this.bv.items,e.ignoreIsAllDay,!0);t&&(i.preventDefault(),this.bv.selectedItems=[t]);break}case s.reset:this.bv.selectedItems=[];break;case s.add:if(!e.item)return;this.bv.selectedItems.some(t=>t===e.item)||(this.bv.selectedItems=[...this.bv.selectedItems,e.item]);break;case s.remove:if(!e.item)return;this.bv.selectedItems=[...this.bv.selectedItems.filter(t=>t!==e.item)];break}};exports.ITEMS_SELECT_ACTION=s;exports.dispatchSelectedItems=m;
@@ -6,9 +6,9 @@
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
8
  import { findNextItem as i } from "../utils/main.mjs";
9
- let s = /* @__PURE__ */ function(e) {
9
+ let s = /* @__PURE__ */ (function(e) {
10
10
  return e.select = "ITEMS_SELECT_SELECT", e.selectNext = "ITEMS_SELECT_SELECT_NEXT", e.selectPrev = "ITEMS_SELECT_SELECT_PREV", e.reset = "ITEMS_SELECT_RESET", e.add = "ITEMS_SELECT_ADD", e.remove = "ITEMS_SELECT_REMOVE", e;
11
- }({});
11
+ })({});
12
12
  const l = function(e, r) {
13
13
  switch (e.type) {
14
14
  case s.select:
@@ -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
+ /**
9
+ * Represents the available `action` types for the `SchedulerSlotsFocusAction` objects.
10
+ *
11
+ * The available actions are:
12
+ * - `SLOT_FOCUS_UP`
13
+ * - `SLOT_FOCUS_DOWN`
14
+ * - `SLOT_FOCUS_LEFT`
15
+ * - `SLOT_FOCUS_RIGHT`
16
+ */
17
+ export declare enum SLOTS_FOCUS_ACTION {
18
+ up = "SLOT_FOCUS_UP",
19
+ down = "SLOT_FOCUS_DOWN",
20
+ left = "SLOT_FOCUS_LEFT",
21
+ right = "SLOT_FOCUS_RIGHT"
22
+ }
23
+ /**
24
+ * Represents the object passed to the `slots-focus` reducer.
25
+ */
26
+ export interface SchedulerSlotsFocusAction {
27
+ type: SLOTS_FOCUS_ACTION;
28
+ slot: any;
29
+ }
30
+ /** @hidden */
31
+ export declare const dispatchFocusedSlots: (this: any, action: SchedulerSlotsFocusAction, event: any) => void;
32
+ /** @hidden */
33
+ export declare const findUpSlot: (target: any, all: any[]) => any | undefined;
34
+ /** @hidden */
35
+ export declare const findLeftSlot: (target: any, all: any[]) => any | undefined;
36
+ /** @hidden */
37
+ export declare const findRightSlot: (target: any, all: any[]) => any | undefined;
38
+ /** @hidden */
39
+ export declare const findDownSlot: (target: any, all: any[]) => any | undefined;
@@ -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"});let t=function(l){return l.up="SLOT_FOCUS_UP",l.down="SLOT_FOCUS_DOWN",l.left="SLOT_FOCUS_LEFT",l.right="SLOT_FOCUS_RIGHT",l}({});const c=function(l,s){switch(l.type){case t.up:{if(!l.slot||!this.bv.slots)return;const o=n(l.slot,this.bv.slots);o&&o.$el&&(s.preventDefault(),o.$el.focus());break}case t.down:{if(!l.slot||!this.bv.slots)return;const o=f(l.slot,this.bv.slots);o&&o.$el&&(s.preventDefault(),o.$el.focus());break}case t.left:{if(!l.slot||!this.bv.slots)return;const o=e(l.slot,this.bv.slots);o&&o.$el&&(s.preventDefault(),o.$el.focus());break}case t.right:{if(!l.slot||!this.bv.slots)return;const o=r(l.slot,this.bv.slots);o&&o.$el&&(s.preventDefault(),o.$el.focus());break}}},n=(l,s)=>s.find(o=>o!==null&&l!==null&&o.cSlot.row===l.$props.row-1&&o.cSlot.col===l.$props.col),e=(l,s)=>s.find(o=>o!==null&&l!==null&&o.cSlot.row===l.$props.row&&o.cSlot.col===l.$props.col-1),r=(l,s)=>s.find(o=>o!==null&&l!==null&&o.cSlot.row===l.$props.row&&o.cSlot.col===l.$props.col+1),f=(l,s)=>s.find(o=>o!==null&&l!==null&&o.cSlot.row===l.$props.row+1&&o.cSlot.col===l.$props.col);exports.SLOTS_FOCUS_ACTION=t;exports.dispatchFocusedSlots=c;exports.findDownSlot=f;exports.findLeftSlot=e;exports.findRightSlot=r;exports.findUpSlot=n;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});let t=(function(l){return l.up="SLOT_FOCUS_UP",l.down="SLOT_FOCUS_DOWN",l.left="SLOT_FOCUS_LEFT",l.right="SLOT_FOCUS_RIGHT",l})({});const c=function(l,s){switch(l.type){case t.up:{if(!l.slot||!this.bv.slots)return;const o=n(l.slot,this.bv.slots);o&&o.$el&&(s.preventDefault(),o.$el.focus());break}case t.down:{if(!l.slot||!this.bv.slots)return;const o=f(l.slot,this.bv.slots);o&&o.$el&&(s.preventDefault(),o.$el.focus());break}case t.left:{if(!l.slot||!this.bv.slots)return;const o=e(l.slot,this.bv.slots);o&&o.$el&&(s.preventDefault(),o.$el.focus());break}case t.right:{if(!l.slot||!this.bv.slots)return;const o=r(l.slot,this.bv.slots);o&&o.$el&&(s.preventDefault(),o.$el.focus());break}}},n=(l,s)=>s.find(o=>o!==null&&l!==null&&o.cSlot.row===l.$props.row-1&&o.cSlot.col===l.$props.col),e=(l,s)=>s.find(o=>o!==null&&l!==null&&o.cSlot.row===l.$props.row&&o.cSlot.col===l.$props.col-1),r=(l,s)=>s.find(o=>o!==null&&l!==null&&o.cSlot.row===l.$props.row&&o.cSlot.col===l.$props.col+1),f=(l,s)=>s.find(o=>o!==null&&l!==null&&o.cSlot.row===l.$props.row+1&&o.cSlot.col===l.$props.col);exports.SLOTS_FOCUS_ACTION=t;exports.dispatchFocusedSlots=c;exports.findDownSlot=f;exports.findLeftSlot=e;exports.findRightSlot=r;exports.findUpSlot=n;
@@ -5,9 +5,9 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- let t = /* @__PURE__ */ function(l) {
8
+ let t = /* @__PURE__ */ (function(l) {
9
9
  return l.up = "SLOT_FOCUS_UP", l.down = "SLOT_FOCUS_DOWN", l.left = "SLOT_FOCUS_LEFT", l.right = "SLOT_FOCUS_RIGHT", l;
10
- }({});
10
+ })({});
11
11
  const u = function(l, s) {
12
12
  switch (l.type) {
13
13
  case t.up: {
@@ -0,0 +1,29 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * Represents the available `action` types for the `SchedulerSlotsSelectAction` objects.
10
+ *
11
+ * The available actions are:
12
+ * - `SLOTS_SELECT_SELECT`
13
+ * - `SLOTS_SELECT_RESET`
14
+ * - `SLOTS_SELECT_ADD`
15
+ */
16
+ export declare enum SLOTS_SELECT_ACTION {
17
+ select = "SLOTS_SELECT_SELECT",
18
+ reset = "SLOTS_SELECT_RESET",
19
+ add = "SLOTS_SELECT_ADD"
20
+ }
21
+ /**
22
+ * Represents the object passed to the `slots-select` reducer.
23
+ */
24
+ export interface SchedulerSlotsSelectAction {
25
+ type: SLOTS_SELECT_ACTION;
26
+ slot?: any;
27
+ }
28
+ /** @hidden */
29
+ export declare const dispatchSelectedSlots: (this: any, action: SchedulerSlotsSelectAction) => void;
@@ -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"});let t=function(e){return e.select="SLOTS_SELECT_SELECT",e.reset="SLOTS_SELECT_RESET",e.add="SLOTS_SELECT_ADD",e}({});const l=function(e){switch(e.type){case t.select:if(!e.slot)return;this.bv.selectedSlots=[e.slot];break;case t.reset:this.bv.selectedSlots=[];break;case t.add:if(!e.slot)return;this.bv.selectedSlots.some(s=>s===e.slot)||(this.bv.selectedSlots=[...this.bv.selectedSlots,e.slot]);break}};exports.SLOTS_SELECT_ACTION=t;exports.dispatchSelectedSlots=l;
8
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});let t=(function(e){return e.select="SLOTS_SELECT_SELECT",e.reset="SLOTS_SELECT_RESET",e.add="SLOTS_SELECT_ADD",e})({});const l=function(e){switch(e.type){case t.select:if(!e.slot)return;this.bv.selectedSlots=[e.slot];break;case t.reset:this.bv.selectedSlots=[];break;case t.add:if(!e.slot)return;this.bv.selectedSlots.some(s=>s===e.slot)||(this.bv.selectedSlots=[...this.bv.selectedSlots,e.slot]);break}};exports.SLOTS_SELECT_ACTION=t;exports.dispatchSelectedSlots=l;
@@ -5,9 +5,9 @@
5
5
  * Licensed under commercial license. See LICENSE.md in the package root for more information
6
6
  *-------------------------------------------------------------------------------------------
7
7
  */
8
- let s = /* @__PURE__ */ function(e) {
8
+ let s = /* @__PURE__ */ (function(e) {
9
9
  return e.select = "SLOTS_SELECT_SELECT", e.reset = "SLOTS_SELECT_RESET", e.add = "SLOTS_SELECT_ADD", e;
10
- }({});
10
+ })({});
11
11
  const l = function(e) {
12
12
  switch (e.type) {
13
13
  case s.select:
@@ -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
+ /** @hidden */
9
+ export interface AsyncMouseEnterLeaveArgs {
10
+ handleMouseEnter: (event: any) => void;
11
+ handleMouseLeave: (event: any) => void;
12
+ }
13
+ /** @hidden */
14
+ export declare const useAsyncMouseEnterLeave: ({ handleMouseEnter, handleMouseLeave }: AsyncMouseEnterLeaveArgs) => {
15
+ onMouseEnter: (event: any) => void;
16
+ onMouseLeave: (event: any) => void;
17
+ };
@@ -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
+ /** @hidden */
9
+ export interface CellSyncArgs {
10
+ element: any;
11
+ selector: string;
12
+ attribute?: string;
13
+ explicitDepth: boolean;
14
+ }
15
+ /** @hidden */
16
+ export declare const useCellSync: (args: CellSyncArgs) => void;
@@ -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/main';
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,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
+ /** @hidden */
9
+ export interface RowSyncArgs {
10
+ element: any;
11
+ selector: string;
12
+ horizontalAttribute: string;
13
+ verticalAttribute: string;
14
+ applyTo: string;
15
+ }
16
+ /** @hidden */
17
+ export declare const useRowSync: (args: RowSyncArgs, _inputs?: any[]) => void;
@@ -0,0 +1,13 @@
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 { SchedulerSlotProps } from '..';
9
+ /** @hidden */
10
+ export declare const useSchedulerSlot: (_props: SchedulerSlotProps) => {
11
+ slot: any;
12
+ element: any;
13
+ };
@@ -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 { SchedulerSlotExpandableConfig } from '../slots/SchedulerViewSlot';
9
+ /** @hidden */
10
+ export declare const useSlotExpand: (slot: any, _scheduler: any, 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[];