@progress/kendo-vue-scheduler 5.3.0-dev.202410141143 → 5.3.0-develop.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1018) hide show
  1. package/README.md +24 -34
  2. package/Scheduler.js +8 -0
  3. package/Scheduler.mjs +439 -0
  4. package/components/BaseView.js +8 -0
  5. package/components/BaseView.mjs +123 -0
  6. package/components/CurrentTimeMarker.js +8 -0
  7. package/components/CurrentTimeMarker.mjs +95 -0
  8. package/components/CurrentTimeMarkerArrow.js +8 -0
  9. package/components/CurrentTimeMarkerArrow.mjs +80 -0
  10. package/components/DateHeaderCell.js +8 -0
  11. package/components/DateHeaderCell.mjs +53 -0
  12. package/components/SchedulerActionButtons.js +8 -0
  13. package/components/SchedulerActionButtons.mjs +58 -0
  14. package/components/SchedulerForm.js +8 -0
  15. package/components/SchedulerForm.mjs +155 -0
  16. package/components/SchedulerOccurrenceDialog.js +8 -0
  17. package/components/SchedulerOccurrenceDialog.mjs +96 -0
  18. package/components/SchedulerRemoveDialog.js +8 -0
  19. package/components/SchedulerRemoveDialog.mjs +89 -0
  20. package/components/ShowMoreItemsButton.js +8 -0
  21. package/components/ShowMoreItemsButton.mjs +53 -0
  22. package/components/TimeHeaderCell.js +8 -0
  23. package/components/TimeHeaderCell.mjs +51 -0
  24. package/components/footer/SchedulerFooter.js +8 -0
  25. package/components/footer/SchedulerFooter.mjs +30 -0
  26. package/components/footer/bussiness-hours/BusinessHours.js +8 -0
  27. package/components/footer/bussiness-hours/BusinessHours.mjs +57 -0
  28. package/components/header/SchedulerHeader.js +8 -0
  29. package/components/header/SchedulerHeader.mjs +27 -0
  30. package/components/header/navigation/NavigationDatePicker.js +8 -0
  31. package/components/header/navigation/NavigationDatePicker.mjs +122 -0
  32. package/components/header/navigation/SchedulerNavigation.js +8 -0
  33. package/components/header/navigation/SchedulerNavigation.mjs +85 -0
  34. package/components/header/view-selector/SchedulerViewSelector.js +8 -0
  35. package/components/header/view-selector/SchedulerViewSelector.mjs +18 -0
  36. package/components/header/view-selector/ViewSelectorItem.js +8 -0
  37. package/components/header/view-selector/ViewSelectorItem.mjs +53 -0
  38. package/components/header/view-selector/ViewSelectorList.js +8 -0
  39. package/components/header/view-selector/ViewSelectorList.mjs +83 -0
  40. package/constants/main.js +8 -0
  41. package/constants/main.mjs +24 -0
  42. package/context/SchedulerResourceIteratorContext.js +8 -0
  43. package/context/SchedulerResourceIteratorContext.mjs +48 -0
  44. package/dist/cdn/js/kendo-vue-scheduler.js +8 -2
  45. package/editors/FilterableComboBox.js +8 -0
  46. package/editors/FilterableComboBox.mjs +53 -0
  47. package/editors/ResourceEditor.js +8 -0
  48. package/editors/ResourceEditor.mjs +86 -0
  49. package/editors/SchedulerFormEditor.js +8 -0
  50. package/editors/SchedulerFormEditor.mjs +484 -0
  51. package/editors/ZonedDateTime.js +8 -0
  52. package/editors/ZonedDateTime.mjs +57 -0
  53. package/hooks/use-items-focus.js +8 -0
  54. package/hooks/use-items-focus.mjs +40 -0
  55. package/hooks/use-items-selection.js +8 -0
  56. package/hooks/use-items-selection.mjs +51 -0
  57. package/hooks/use-slots-focus.js +8 -0
  58. package/hooks/use-slots-focus.mjs +50 -0
  59. package/hooks/use-slots-selection.js +8 -0
  60. package/hooks/use-slots-selection.mjs +31 -0
  61. package/hooks/useCellSync.js +8 -0
  62. package/hooks/useCellSync.mjs +29 -0
  63. package/hooks/useEditable.js +8 -0
  64. package/hooks/useEditable.mjs +21 -0
  65. package/hooks/useRowSync.js +8 -0
  66. package/hooks/useRowSync.mjs +12 -0
  67. package/hooks/useSlotExpand.js +8 -0
  68. package/hooks/useSlotExpand.mjs +45 -0
  69. package/index.d.mts +10899 -0
  70. package/index.d.ts +10899 -0
  71. package/index.js +8 -0
  72. package/index.mjs +95 -0
  73. package/items/SchedulerEditItem.js +8 -0
  74. package/items/SchedulerEditItem.mjs +904 -0
  75. package/items/SchedulerItem.js +8 -0
  76. package/items/SchedulerItem.mjs +580 -0
  77. package/items/SchedulerItemContent.js +8 -0
  78. package/items/SchedulerItemContent.mjs +24 -0
  79. package/items/SchedulerViewItem.js +8 -0
  80. package/items/SchedulerViewItem.mjs +377 -0
  81. package/items/hooks/use-drag-item.js +8 -0
  82. package/items/hooks/use-drag-item.mjs +115 -0
  83. package/items/hooks/use-form-item.js +8 -0
  84. package/items/hooks/use-form-item.mjs +13 -0
  85. package/items/hooks/use-remove-item.js +8 -0
  86. package/items/hooks/use-remove-item.mjs +13 -0
  87. package/items/hooks/use-resize-item.js +8 -0
  88. package/items/hooks/use-resize-item.mjs +138 -0
  89. package/items/hooks/use-series.js +8 -0
  90. package/items/hooks/use-series.mjs +26 -0
  91. package/items/hooks/use-show-occurrence-dialog.js +8 -0
  92. package/items/hooks/use-show-occurrence-dialog.mjs +30 -0
  93. package/items/hooks/use-show-remove-item-dialog.js +8 -0
  94. package/items/hooks/use-show-remove-item-dialog.mjs +30 -0
  95. package/messages/main.js +8 -0
  96. package/messages/main.mjs +166 -0
  97. package/package-metadata.js +8 -0
  98. package/package-metadata.mjs +18 -0
  99. package/package.json +39 -65
  100. package/recurrence/RecurrenceEditor.js +8 -0
  101. package/recurrence/RecurrenceEditor.mjs +460 -0
  102. package/recurrence/RecurrenceFrequencyEditor.js +8 -0
  103. package/recurrence/RecurrenceFrequencyEditor.mjs +54 -0
  104. package/recurrence/RecurrenceRepeatOnWeekEditor.js +8 -0
  105. package/recurrence/RecurrenceRepeatOnWeekEditor.mjs +66 -0
  106. package/recurrence/common.js +8 -0
  107. package/recurrence/common.mjs +124 -0
  108. package/services/itemsService.js +8 -0
  109. package/services/itemsService.mjs +54 -0
  110. package/services/occurrenceService.js +8 -0
  111. package/services/occurrenceService.mjs +48 -0
  112. package/services/rangeService.js +8 -0
  113. package/services/rangeService.mjs +25 -0
  114. package/services/slotsService.js +8 -0
  115. package/services/slotsService.mjs +37 -0
  116. package/slots/SchedulerEditSlot.js +8 -0
  117. package/slots/SchedulerEditSlot.mjs +306 -0
  118. package/slots/SchedulerSlot.js +8 -0
  119. package/slots/SchedulerSlot.mjs +312 -0
  120. package/slots/SchedulerViewSlot.js +8 -0
  121. package/slots/SchedulerViewSlot.mjs +179 -0
  122. package/tasks/SchedulerEditTask.js +8 -0
  123. package/tasks/SchedulerEditTask.mjs +213 -0
  124. package/tasks/SchedulerTask.js +8 -0
  125. package/tasks/SchedulerTask.mjs +160 -0
  126. package/tasks/SchedulerViewTask.js +8 -0
  127. package/tasks/SchedulerViewTask.mjs +113 -0
  128. package/utils/main.js +8 -0
  129. package/utils/main.mjs +186 -0
  130. package/views/agenda/AgendaView.js +8 -0
  131. package/views/agenda/AgendaView.mjs +193 -0
  132. package/views/agenda/AgendaViewBody.js +8 -0
  133. package/views/agenda/AgendaViewBody.mjs +158 -0
  134. package/views/agenda/AgendaViewHead.js +8 -0
  135. package/views/agenda/AgendaViewHead.mjs +44 -0
  136. package/views/common/HorizontalResourceIterator.js +8 -0
  137. package/views/common/HorizontalResourceIterator.mjs +128 -0
  138. package/views/common/SchedulerDrag.js +8 -0
  139. package/views/common/SchedulerDrag.mjs +95 -0
  140. package/views/common/SchedulerResize.js +8 -0
  141. package/views/common/SchedulerResize.mjs +97 -0
  142. package/views/common/VerticalResourceIterator.js +8 -0
  143. package/views/common/VerticalResourceIterator.mjs +230 -0
  144. package/views/common/utils.js +8 -0
  145. package/views/common/utils.mjs +77 -0
  146. package/views/day/DayView.js +8 -0
  147. package/views/day/DayView.mjs +148 -0
  148. package/views/day/DayViewAllDayRowContent.js +8 -0
  149. package/views/day/DayViewAllDayRowContent.mjs +33 -0
  150. package/views/day/DayViewAllDaySlots.js +8 -0
  151. package/views/day/DayViewAllDaySlots.mjs +98 -0
  152. package/views/day/DayViewGroupRowContent.js +8 -0
  153. package/views/day/DayViewGroupRowContent.mjs +23 -0
  154. package/views/day/DayViewHead.js +8 -0
  155. package/views/day/DayViewHead.mjs +45 -0
  156. package/views/day/DayViewMiddleRow.js +8 -0
  157. package/views/day/DayViewMiddleRow.mjs +102 -0
  158. package/views/day/DayViewRowContent.js +8 -0
  159. package/views/day/DayViewRowContent.mjs +39 -0
  160. package/views/day/DayViewVerticalRow.js +8 -0
  161. package/views/day/DayViewVerticalRow.mjs +90 -0
  162. package/views/day/DayViewVerticalSlotsRow.js +8 -0
  163. package/views/day/DayViewVerticalSlotsRow.mjs +130 -0
  164. package/views/day/MultiDayView.js +8 -0
  165. package/views/day/MultiDayView.mjs +532 -0
  166. package/views/month/MonthView.js +8 -0
  167. package/views/month/MonthView.mjs +316 -0
  168. package/views/month/MonthViewBody.js +8 -0
  169. package/views/month/MonthViewBody.mjs +113 -0
  170. package/views/month/MonthViewHead.js +8 -0
  171. package/views/month/MonthViewHead.mjs +68 -0
  172. package/views/time/MultiDayTimelineView.js +8 -0
  173. package/views/time/MultiDayTimelineView.mjs +422 -0
  174. package/views/time/TimelineView.js +8 -0
  175. package/views/time/TimelineView.mjs +155 -0
  176. package/views/time/TimelineViewAllEventsRowContent.js +8 -0
  177. package/views/time/TimelineViewAllEventsRowContent.mjs +31 -0
  178. package/views/time/TimelineViewBody.js +8 -0
  179. package/views/time/TimelineViewBody.mjs +97 -0
  180. package/views/time/TimelineViewRowContent.js +8 -0
  181. package/views/time/TimelineViewRowContent.mjs +22 -0
  182. package/views/week/WeekView.js +8 -0
  183. package/views/week/WeekView.mjs +158 -0
  184. package/views/week/WorkWeekView.js +8 -0
  185. package/views/week/WorkWeekView.mjs +134 -0
  186. package/dist/cdn/js/kendo-vue-scheduler.js.LICENSE.txt +0 -14
  187. package/dist/es/Scheduler.d.ts +0 -337
  188. package/dist/es/Scheduler.js +0 -656
  189. package/dist/es/additionalTypes.ts +0 -21
  190. package/dist/es/components/BaseView.d.ts +0 -52
  191. package/dist/es/components/BaseView.js +0 -143
  192. package/dist/es/components/CurrentTimeMarker.d.ts +0 -50
  193. package/dist/es/components/CurrentTimeMarker.js +0 -157
  194. package/dist/es/components/CurrentTimeMarkerArrow.d.ts +0 -47
  195. package/dist/es/components/CurrentTimeMarkerArrow.js +0 -130
  196. package/dist/es/components/DateHeaderCell.d.ts +0 -76
  197. package/dist/es/components/DateHeaderCell.js +0 -65
  198. package/dist/es/components/SchedulerActionButtons.d.ts +0 -48
  199. package/dist/es/components/SchedulerActionButtons.js +0 -128
  200. package/dist/es/components/SchedulerForm.d.ts +0 -73
  201. package/dist/es/components/SchedulerForm.js +0 -225
  202. package/dist/es/components/SchedulerOccurrenceDialog.d.ts +0 -76
  203. package/dist/es/components/SchedulerOccurrenceDialog.js +0 -185
  204. package/dist/es/components/SchedulerRemoveDialog.d.ts +0 -72
  205. package/dist/es/components/SchedulerRemoveDialog.js +0 -166
  206. package/dist/es/components/ShowMoreItemsButton.d.ts +0 -56
  207. package/dist/es/components/ShowMoreItemsButton.js +0 -82
  208. package/dist/es/components/TimeHeaderCell.d.ts +0 -76
  209. package/dist/es/components/TimeHeaderCell.js +0 -63
  210. package/dist/es/components/footer/SchedulerFooter.d.ts +0 -49
  211. package/dist/es/components/footer/SchedulerFooter.js +0 -43
  212. package/dist/es/components/footer/bussiness-hours/BusinessHours.d.ts +0 -50
  213. package/dist/es/components/footer/bussiness-hours/BusinessHours.js +0 -97
  214. package/dist/es/components/header/SchedulerHeader.d.ts +0 -49
  215. package/dist/es/components/header/SchedulerHeader.js +0 -35
  216. package/dist/es/components/header/navigation/DatePickerToggleButton.d.ts +0 -42
  217. package/dist/es/components/header/navigation/DatePickerToggleButton.js +0 -101
  218. package/dist/es/components/header/navigation/NavigationDatePicker.d.ts +0 -42
  219. package/dist/es/components/header/navigation/NavigationDatePicker.js +0 -269
  220. package/dist/es/components/header/navigation/SchedulerNavigation.d.ts +0 -50
  221. package/dist/es/components/header/navigation/SchedulerNavigation.js +0 -315
  222. package/dist/es/components/header/view-selector/SchedulerViewSelector.d.ts +0 -49
  223. package/dist/es/components/header/view-selector/SchedulerViewSelector.js +0 -30
  224. package/dist/es/components/header/view-selector/ViewSelectorItem.d.ts +0 -47
  225. package/dist/es/components/header/view-selector/ViewSelectorItem.js +0 -79
  226. package/dist/es/components/header/view-selector/ViewSelectorList.d.ts +0 -42
  227. package/dist/es/components/header/view-selector/ViewSelectorList.js +0 -136
  228. package/dist/es/constants/main.d.ts +0 -49
  229. package/dist/es/constants/main.js +0 -55
  230. package/dist/es/context/SchedulerContext.d.ts +0 -22
  231. package/dist/es/context/SchedulerContext.js +0 -4
  232. package/dist/es/context/SchedulerEditItemContext.d.ts +0 -15
  233. package/dist/es/context/SchedulerEditItemContext.js +0 -4
  234. package/dist/es/context/SchedulerEditSlotContext.d.ts +0 -10
  235. package/dist/es/context/SchedulerEditSlotContext.js +0 -4
  236. package/dist/es/context/SchedulerEditTaskContext.d.ts +0 -11
  237. package/dist/es/context/SchedulerEditTaskContext.js +0 -4
  238. package/dist/es/context/SchedulerResourceIteratorContext.d.ts +0 -43
  239. package/dist/es/context/SchedulerResourceIteratorContext.js +0 -55
  240. package/dist/es/context/SchedulerViewContext.d.ts +0 -18
  241. package/dist/es/context/SchedulerViewContext.js +0 -4
  242. package/dist/es/context/main.d.ts +0 -5
  243. package/dist/es/context/main.js +0 -5
  244. package/dist/es/editors/FilterableComboBox.d.ts +0 -42
  245. package/dist/es/editors/FilterableComboBox.js +0 -87
  246. package/dist/es/editors/ResourceEditor.d.ts +0 -53
  247. package/dist/es/editors/ResourceEditor.js +0 -139
  248. package/dist/es/editors/SchedulerFormEditor.d.ts +0 -262
  249. package/dist/es/editors/SchedulerFormEditor.js +0 -1784
  250. package/dist/es/editors/ZonedDateTime.d.ts +0 -51
  251. package/dist/es/editors/ZonedDateTime.js +0 -102
  252. package/dist/es/editors/common.d.ts +0 -12
  253. package/dist/es/editors/common.js +0 -29
  254. package/dist/es/hooks/main.d.ts +0 -9
  255. package/dist/es/hooks/main.js +0 -9
  256. package/dist/es/hooks/use-items-focus.d.ts +0 -23
  257. package/dist/es/hooks/use-items-focus.js +0 -57
  258. package/dist/es/hooks/use-items-selection.d.ts +0 -30
  259. package/dist/es/hooks/use-items-selection.js +0 -88
  260. package/dist/es/hooks/use-slots-focus.d.ts +0 -33
  261. package/dist/es/hooks/use-slots-focus.js +0 -95
  262. package/dist/es/hooks/use-slots-selection.d.ts +0 -23
  263. package/dist/es/hooks/use-slots-selection.js +0 -49
  264. package/dist/es/hooks/useAsyncMouseEnterLeave.d.ts +0 -10
  265. package/dist/es/hooks/useAsyncMouseEnterLeave.js +0 -25
  266. package/dist/es/hooks/useCellSync.d.ts +0 -9
  267. package/dist/es/hooks/useCellSync.js +0 -41
  268. package/dist/es/hooks/useEditable.d.ts +0 -3
  269. package/dist/es/hooks/useEditable.js +0 -19
  270. package/dist/es/hooks/usePropOrState.d.ts +0 -2
  271. package/dist/es/hooks/usePropOrState.js +0 -7
  272. package/dist/es/hooks/useRowSync.d.ts +0 -10
  273. package/dist/es/hooks/useRowSync.js +0 -45
  274. package/dist/es/hooks/useSchedulerSlot.d.ts +0 -6
  275. package/dist/es/hooks/useSchedulerSlot.js +0 -4
  276. package/dist/es/hooks/useSlotExpand.d.ts +0 -3
  277. package/dist/es/hooks/useSlotExpand.js +0 -58
  278. package/dist/es/hooks/useWorkHours.d.ts +0 -2
  279. package/dist/es/hooks/useWorkHours.js +0 -4
  280. package/dist/es/items/SchedulerEditItem.d.ts +0 -357
  281. package/dist/es/items/SchedulerEditItem.js +0 -1039
  282. package/dist/es/items/SchedulerItem.d.ts +0 -236
  283. package/dist/es/items/SchedulerItem.js +0 -947
  284. package/dist/es/items/SchedulerItemContent.d.ts +0 -47
  285. package/dist/es/items/SchedulerItemContent.js +0 -35
  286. package/dist/es/items/SchedulerViewItem.d.ts +0 -61
  287. package/dist/es/items/SchedulerViewItem.js +0 -577
  288. package/dist/es/items/hooks/use-drag-item.d.ts +0 -34
  289. package/dist/es/items/hooks/use-drag-item.js +0 -207
  290. package/dist/es/items/hooks/use-form-item.d.ts +0 -22
  291. package/dist/es/items/hooks/use-form-item.js +0 -47
  292. package/dist/es/items/hooks/use-remove-item.d.ts +0 -30
  293. package/dist/es/items/hooks/use-remove-item.js +0 -45
  294. package/dist/es/items/hooks/use-resize-item.d.ts +0 -39
  295. package/dist/es/items/hooks/use-resize-item.js +0 -251
  296. package/dist/es/items/hooks/use-series.d.ts +0 -25
  297. package/dist/es/items/hooks/use-series.js +0 -37
  298. package/dist/es/items/hooks/use-show-occurrence-dialog.d.ts +0 -29
  299. package/dist/es/items/hooks/use-show-occurrence-dialog.js +0 -46
  300. package/dist/es/items/hooks/use-show-remove-item-dialog.d.ts +0 -29
  301. package/dist/es/items/hooks/use-show-remove-item-dialog.js +0 -45
  302. package/dist/es/main.d.ts +0 -43
  303. package/dist/es/main.js +0 -49
  304. package/dist/es/messages/main.d.ts +0 -236
  305. package/dist/es/messages/main.js +0 -237
  306. package/dist/es/models/DataItem.d.ts +0 -8
  307. package/dist/es/models/DataItem.js +0 -1
  308. package/dist/es/models/DateRange.d.ts +0 -18
  309. package/dist/es/models/DateRange.js +0 -1
  310. package/dist/es/models/EditableProp.d.ts +0 -29
  311. package/dist/es/models/EditableProp.js +0 -1
  312. package/dist/es/models/Fields.d.ts +0 -17
  313. package/dist/es/models/Fields.js +0 -1
  314. package/dist/es/models/Group.d.ts +0 -8
  315. package/dist/es/models/Group.js +0 -1
  316. package/dist/es/models/Item.d.ts +0 -62
  317. package/dist/es/models/Item.js +0 -1
  318. package/dist/es/models/NavigationAction.d.ts +0 -17
  319. package/dist/es/models/NavigationAction.js +0 -1
  320. package/dist/es/models/Occurrence.d.ts +0 -52
  321. package/dist/es/models/Occurrence.js +0 -1
  322. package/dist/es/models/Omit.d.ts +0 -4
  323. package/dist/es/models/Omit.js +0 -1
  324. package/dist/es/models/Orientation.d.ts +0 -2
  325. package/dist/es/models/Orientation.js +0 -1
  326. package/dist/es/models/Range.d.ts +0 -10
  327. package/dist/es/models/Range.js +0 -1
  328. package/dist/es/models/Rect.d.ts +0 -15
  329. package/dist/es/models/Rect.js +0 -1
  330. package/dist/es/models/Resource.d.ts +0 -8
  331. package/dist/es/models/Resource.js +0 -1
  332. package/dist/es/models/SchedulerGroup.d.ts +0 -13
  333. package/dist/es/models/SchedulerGroup.js +0 -1
  334. package/dist/es/models/SchedulerHandle.d.ts +0 -6
  335. package/dist/es/models/SchedulerHandle.js +0 -1
  336. package/dist/es/models/SchedulerModelFields.d.ts +0 -62
  337. package/dist/es/models/SchedulerModelFields.js +0 -1
  338. package/dist/es/models/SchedulerResource.d.ts +0 -33
  339. package/dist/es/models/SchedulerResource.js +0 -1
  340. package/dist/es/models/SchedulerView.d.ts +0 -83
  341. package/dist/es/models/SchedulerView.js +0 -1
  342. package/dist/es/models/Slot.d.ts +0 -51
  343. package/dist/es/models/Slot.js +0 -1
  344. package/dist/es/models/events.d.ts +0 -81
  345. package/dist/es/models/events.js +0 -1
  346. package/dist/es/models/main.d.ts +0 -17
  347. package/dist/es/models/main.js +0 -17
  348. package/dist/es/package-metadata.d.ts +0 -5
  349. package/dist/es/package-metadata.js +0 -11
  350. package/dist/es/recurrence/RecurrenceEditor.d.ts +0 -54
  351. package/dist/es/recurrence/RecurrenceEditor.js +0 -961
  352. package/dist/es/recurrence/RecurrenceFrequencyEditor.d.ts +0 -48
  353. package/dist/es/recurrence/RecurrenceFrequencyEditor.js +0 -101
  354. package/dist/es/recurrence/RecurrenceRepeatOnWeekEditor.d.ts +0 -51
  355. package/dist/es/recurrence/RecurrenceRepeatOnWeekEditor.js +0 -133
  356. package/dist/es/recurrence/common.d.ts +0 -57
  357. package/dist/es/recurrence/common.js +0 -212
  358. package/dist/es/recurrence/types/EndRule.d.ts +0 -4
  359. package/dist/es/recurrence/types/EndRule.js +0 -1
  360. package/dist/es/recurrence/types/Frequency.d.ts +0 -4
  361. package/dist/es/recurrence/types/Frequency.js +0 -1
  362. package/dist/es/recurrence/types/FrequencyEntity.d.ts +0 -8
  363. package/dist/es/recurrence/types/FrequencyEntity.js +0 -1
  364. package/dist/es/recurrence/types/MonthEntity.d.ts +0 -7
  365. package/dist/es/recurrence/types/MonthEntity.js +0 -1
  366. package/dist/es/recurrence/types/OffsetPosition.d.ts +0 -4
  367. package/dist/es/recurrence/types/OffsetPosition.js +0 -1
  368. package/dist/es/recurrence/types/OffsetPositionEntity.d.ts +0 -7
  369. package/dist/es/recurrence/types/OffsetPositionEntity.js +0 -1
  370. package/dist/es/recurrence/types/RepeatOnRule.d.ts +0 -4
  371. package/dist/es/recurrence/types/RepeatOnRule.js +0 -1
  372. package/dist/es/recurrence/types/WeekDayEntity.d.ts +0 -7
  373. package/dist/es/recurrence/types/WeekDayEntity.js +0 -1
  374. package/dist/es/recurrence/types/WeekDayRule.d.ts +0 -8
  375. package/dist/es/recurrence/types/WeekDayRule.js +0 -1
  376. package/dist/es/recurrence/utils/main.d.ts +0 -1
  377. package/dist/es/recurrence/utils/main.js +0 -0
  378. package/dist/es/reducers/editReducer.d.ts +0 -33
  379. package/dist/es/reducers/editReducer.js +0 -65
  380. package/dist/es/reducers/main.d.ts +0 -1
  381. package/dist/es/reducers/main.js +0 -1
  382. package/dist/es/services/itemsService.d.ts +0 -14
  383. package/dist/es/services/itemsService.js +0 -76
  384. package/dist/es/services/main.d.ts +0 -4
  385. package/dist/es/services/main.js +0 -4
  386. package/dist/es/services/occurrenceService.d.ts +0 -7
  387. package/dist/es/services/occurrenceService.js +0 -92
  388. package/dist/es/services/rangeService.d.ts +0 -6
  389. package/dist/es/services/rangeService.js +0 -23
  390. package/dist/es/services/slotsService.d.ts +0 -8
  391. package/dist/es/services/slotsService.js +0 -42
  392. package/dist/es/slots/SchedulerEditSlot.d.ts +0 -80
  393. package/dist/es/slots/SchedulerEditSlot.js +0 -395
  394. package/dist/es/slots/SchedulerSlot.d.ts +0 -146
  395. package/dist/es/slots/SchedulerSlot.js +0 -373
  396. package/dist/es/slots/SchedulerViewSlot.d.ts +0 -73
  397. package/dist/es/slots/SchedulerViewSlot.js +0 -232
  398. package/dist/es/tasks/SchedulerEditTask.d.ts +0 -113
  399. package/dist/es/tasks/SchedulerEditTask.js +0 -317
  400. package/dist/es/tasks/SchedulerTask.d.ts +0 -82
  401. package/dist/es/tasks/SchedulerTask.js +0 -233
  402. package/dist/es/tasks/SchedulerViewTask.d.ts +0 -58
  403. package/dist/es/tasks/SchedulerViewTask.js +0 -159
  404. package/dist/es/utils/main.d.ts +0 -185
  405. package/dist/es/utils/main.js +0 -593
  406. package/dist/es/views/agenda/AgendaView.d.ts +0 -107
  407. package/dist/es/views/agenda/AgendaView.js +0 -342
  408. package/dist/es/views/agenda/AgendaViewBody.d.ts +0 -50
  409. package/dist/es/views/agenda/AgendaViewBody.js +0 -243
  410. package/dist/es/views/agenda/AgendaViewHead.d.ts +0 -46
  411. package/dist/es/views/agenda/AgendaViewHead.js +0 -56
  412. package/dist/es/views/agenda/AgendaViewHeaderItem.d.ts +0 -46
  413. package/dist/es/views/agenda/AgendaViewHeaderItem.js +0 -47
  414. package/dist/es/views/common/HorizontalResourceIterator.d.ts +0 -61
  415. package/dist/es/views/common/HorizontalResourceIterator.js +0 -178
  416. package/dist/es/views/common/SchedulerDrag.d.ts +0 -64
  417. package/dist/es/views/common/SchedulerDrag.js +0 -138
  418. package/dist/es/views/common/SchedulerResize.d.ts +0 -67
  419. package/dist/es/views/common/SchedulerResize.js +0 -142
  420. package/dist/es/views/common/VerticalResourceIterator.d.ts +0 -56
  421. package/dist/es/views/common/VerticalResourceIterator.js +0 -367
  422. package/dist/es/views/common/utils.d.ts +0 -34
  423. package/dist/es/views/common/utils.js +0 -196
  424. package/dist/es/views/day/DayView.d.ts +0 -43
  425. package/dist/es/views/day/DayView.js +0 -191
  426. package/dist/es/views/day/DayViewAllDayRowContent.d.ts +0 -41
  427. package/dist/es/views/day/DayViewAllDayRowContent.js +0 -41
  428. package/dist/es/views/day/DayViewAllDaySlots.d.ts +0 -48
  429. package/dist/es/views/day/DayViewAllDaySlots.js +0 -125
  430. package/dist/es/views/day/DayViewGroupRowContent.d.ts +0 -41
  431. package/dist/es/views/day/DayViewGroupRowContent.js +0 -33
  432. package/dist/es/views/day/DayViewHead.d.ts +0 -42
  433. package/dist/es/views/day/DayViewHead.js +0 -62
  434. package/dist/es/views/day/DayViewMiddleRow.d.ts +0 -53
  435. package/dist/es/views/day/DayViewMiddleRow.js +0 -131
  436. package/dist/es/views/day/DayViewRowContent.d.ts +0 -45
  437. package/dist/es/views/day/DayViewRowContent.js +0 -51
  438. package/dist/es/views/day/DayViewVerticalRow.d.ts +0 -44
  439. package/dist/es/views/day/DayViewVerticalRow.js +0 -120
  440. package/dist/es/views/day/DayViewVerticalSlotsRow.d.ts +0 -56
  441. package/dist/es/views/day/DayViewVerticalSlotsRow.js +0 -171
  442. package/dist/es/views/day/MultiDayView.d.ts +0 -181
  443. package/dist/es/views/day/MultiDayView.js +0 -1459
  444. package/dist/es/views/month/MonthView.d.ts +0 -99
  445. package/dist/es/views/month/MonthView.js +0 -650
  446. package/dist/es/views/month/MonthViewBody.d.ts +0 -48
  447. package/dist/es/views/month/MonthViewBody.js +0 -162
  448. package/dist/es/views/month/MonthViewHead.d.ts +0 -42
  449. package/dist/es/views/month/MonthViewHead.js +0 -95
  450. package/dist/es/views/time/MultiDayTimelineView.d.ts +0 -175
  451. package/dist/es/views/time/MultiDayTimelineView.js +0 -854
  452. package/dist/es/views/time/TimelineView.d.ts +0 -43
  453. package/dist/es/views/time/TimelineView.js +0 -199
  454. package/dist/es/views/time/TimelineViewAllEventsRowContent.d.ts +0 -40
  455. package/dist/es/views/time/TimelineViewAllEventsRowContent.js +0 -42
  456. package/dist/es/views/time/TimelineViewBody.d.ts +0 -49
  457. package/dist/es/views/time/TimelineViewBody.js +0 -131
  458. package/dist/es/views/time/TimelineViewRowContent.d.ts +0 -40
  459. package/dist/es/views/time/TimelineViewRowContent.js +0 -29
  460. package/dist/es/views/week/WeekView.d.ts +0 -114
  461. package/dist/es/views/week/WeekView.js +0 -213
  462. package/dist/es/views/week/WorkWeekView.d.ts +0 -40
  463. package/dist/es/views/week/WorkWeekView.js +0 -195
  464. package/dist/esm/Scheduler.d.ts +0 -337
  465. package/dist/esm/Scheduler.js +0 -656
  466. package/dist/esm/additionalTypes.ts +0 -21
  467. package/dist/esm/components/BaseView.d.ts +0 -52
  468. package/dist/esm/components/BaseView.js +0 -143
  469. package/dist/esm/components/CurrentTimeMarker.d.ts +0 -50
  470. package/dist/esm/components/CurrentTimeMarker.js +0 -157
  471. package/dist/esm/components/CurrentTimeMarkerArrow.d.ts +0 -47
  472. package/dist/esm/components/CurrentTimeMarkerArrow.js +0 -130
  473. package/dist/esm/components/DateHeaderCell.d.ts +0 -76
  474. package/dist/esm/components/DateHeaderCell.js +0 -65
  475. package/dist/esm/components/SchedulerActionButtons.d.ts +0 -48
  476. package/dist/esm/components/SchedulerActionButtons.js +0 -128
  477. package/dist/esm/components/SchedulerForm.d.ts +0 -73
  478. package/dist/esm/components/SchedulerForm.js +0 -225
  479. package/dist/esm/components/SchedulerOccurrenceDialog.d.ts +0 -76
  480. package/dist/esm/components/SchedulerOccurrenceDialog.js +0 -185
  481. package/dist/esm/components/SchedulerRemoveDialog.d.ts +0 -72
  482. package/dist/esm/components/SchedulerRemoveDialog.js +0 -166
  483. package/dist/esm/components/ShowMoreItemsButton.d.ts +0 -56
  484. package/dist/esm/components/ShowMoreItemsButton.js +0 -82
  485. package/dist/esm/components/TimeHeaderCell.d.ts +0 -76
  486. package/dist/esm/components/TimeHeaderCell.js +0 -63
  487. package/dist/esm/components/footer/SchedulerFooter.d.ts +0 -49
  488. package/dist/esm/components/footer/SchedulerFooter.js +0 -43
  489. package/dist/esm/components/footer/bussiness-hours/BusinessHours.d.ts +0 -50
  490. package/dist/esm/components/footer/bussiness-hours/BusinessHours.js +0 -97
  491. package/dist/esm/components/header/SchedulerHeader.d.ts +0 -49
  492. package/dist/esm/components/header/SchedulerHeader.js +0 -35
  493. package/dist/esm/components/header/navigation/DatePickerToggleButton.d.ts +0 -42
  494. package/dist/esm/components/header/navigation/DatePickerToggleButton.js +0 -101
  495. package/dist/esm/components/header/navigation/NavigationDatePicker.d.ts +0 -42
  496. package/dist/esm/components/header/navigation/NavigationDatePicker.js +0 -269
  497. package/dist/esm/components/header/navigation/SchedulerNavigation.d.ts +0 -50
  498. package/dist/esm/components/header/navigation/SchedulerNavigation.js +0 -315
  499. package/dist/esm/components/header/view-selector/SchedulerViewSelector.d.ts +0 -49
  500. package/dist/esm/components/header/view-selector/SchedulerViewSelector.js +0 -30
  501. package/dist/esm/components/header/view-selector/ViewSelectorItem.d.ts +0 -47
  502. package/dist/esm/components/header/view-selector/ViewSelectorItem.js +0 -79
  503. package/dist/esm/components/header/view-selector/ViewSelectorList.d.ts +0 -42
  504. package/dist/esm/components/header/view-selector/ViewSelectorList.js +0 -136
  505. package/dist/esm/constants/main.d.ts +0 -49
  506. package/dist/esm/constants/main.js +0 -55
  507. package/dist/esm/context/SchedulerContext.d.ts +0 -22
  508. package/dist/esm/context/SchedulerContext.js +0 -4
  509. package/dist/esm/context/SchedulerEditItemContext.d.ts +0 -15
  510. package/dist/esm/context/SchedulerEditItemContext.js +0 -4
  511. package/dist/esm/context/SchedulerEditSlotContext.d.ts +0 -10
  512. package/dist/esm/context/SchedulerEditSlotContext.js +0 -4
  513. package/dist/esm/context/SchedulerEditTaskContext.d.ts +0 -11
  514. package/dist/esm/context/SchedulerEditTaskContext.js +0 -4
  515. package/dist/esm/context/SchedulerResourceIteratorContext.d.ts +0 -43
  516. package/dist/esm/context/SchedulerResourceIteratorContext.js +0 -55
  517. package/dist/esm/context/SchedulerViewContext.d.ts +0 -18
  518. package/dist/esm/context/SchedulerViewContext.js +0 -4
  519. package/dist/esm/context/main.d.ts +0 -5
  520. package/dist/esm/context/main.js +0 -5
  521. package/dist/esm/editors/FilterableComboBox.d.ts +0 -42
  522. package/dist/esm/editors/FilterableComboBox.js +0 -87
  523. package/dist/esm/editors/ResourceEditor.d.ts +0 -53
  524. package/dist/esm/editors/ResourceEditor.js +0 -139
  525. package/dist/esm/editors/SchedulerFormEditor.d.ts +0 -262
  526. package/dist/esm/editors/SchedulerFormEditor.js +0 -1784
  527. package/dist/esm/editors/ZonedDateTime.d.ts +0 -51
  528. package/dist/esm/editors/ZonedDateTime.js +0 -102
  529. package/dist/esm/editors/common.d.ts +0 -12
  530. package/dist/esm/editors/common.js +0 -29
  531. package/dist/esm/hooks/main.d.ts +0 -9
  532. package/dist/esm/hooks/main.js +0 -9
  533. package/dist/esm/hooks/use-items-focus.d.ts +0 -23
  534. package/dist/esm/hooks/use-items-focus.js +0 -57
  535. package/dist/esm/hooks/use-items-selection.d.ts +0 -30
  536. package/dist/esm/hooks/use-items-selection.js +0 -88
  537. package/dist/esm/hooks/use-slots-focus.d.ts +0 -33
  538. package/dist/esm/hooks/use-slots-focus.js +0 -95
  539. package/dist/esm/hooks/use-slots-selection.d.ts +0 -23
  540. package/dist/esm/hooks/use-slots-selection.js +0 -49
  541. package/dist/esm/hooks/useAsyncMouseEnterLeave.d.ts +0 -10
  542. package/dist/esm/hooks/useAsyncMouseEnterLeave.js +0 -25
  543. package/dist/esm/hooks/useCellSync.d.ts +0 -9
  544. package/dist/esm/hooks/useCellSync.js +0 -41
  545. package/dist/esm/hooks/useEditable.d.ts +0 -3
  546. package/dist/esm/hooks/useEditable.js +0 -19
  547. package/dist/esm/hooks/usePropOrState.d.ts +0 -2
  548. package/dist/esm/hooks/usePropOrState.js +0 -7
  549. package/dist/esm/hooks/useRowSync.d.ts +0 -10
  550. package/dist/esm/hooks/useRowSync.js +0 -45
  551. package/dist/esm/hooks/useSchedulerSlot.d.ts +0 -6
  552. package/dist/esm/hooks/useSchedulerSlot.js +0 -4
  553. package/dist/esm/hooks/useSlotExpand.d.ts +0 -3
  554. package/dist/esm/hooks/useSlotExpand.js +0 -58
  555. package/dist/esm/hooks/useWorkHours.d.ts +0 -2
  556. package/dist/esm/hooks/useWorkHours.js +0 -4
  557. package/dist/esm/items/SchedulerEditItem.d.ts +0 -357
  558. package/dist/esm/items/SchedulerEditItem.js +0 -1039
  559. package/dist/esm/items/SchedulerItem.d.ts +0 -236
  560. package/dist/esm/items/SchedulerItem.js +0 -947
  561. package/dist/esm/items/SchedulerItemContent.d.ts +0 -47
  562. package/dist/esm/items/SchedulerItemContent.js +0 -35
  563. package/dist/esm/items/SchedulerViewItem.d.ts +0 -61
  564. package/dist/esm/items/SchedulerViewItem.js +0 -577
  565. package/dist/esm/items/hooks/use-drag-item.d.ts +0 -34
  566. package/dist/esm/items/hooks/use-drag-item.js +0 -207
  567. package/dist/esm/items/hooks/use-form-item.d.ts +0 -22
  568. package/dist/esm/items/hooks/use-form-item.js +0 -47
  569. package/dist/esm/items/hooks/use-remove-item.d.ts +0 -30
  570. package/dist/esm/items/hooks/use-remove-item.js +0 -45
  571. package/dist/esm/items/hooks/use-resize-item.d.ts +0 -39
  572. package/dist/esm/items/hooks/use-resize-item.js +0 -251
  573. package/dist/esm/items/hooks/use-series.d.ts +0 -25
  574. package/dist/esm/items/hooks/use-series.js +0 -37
  575. package/dist/esm/items/hooks/use-show-occurrence-dialog.d.ts +0 -29
  576. package/dist/esm/items/hooks/use-show-occurrence-dialog.js +0 -46
  577. package/dist/esm/items/hooks/use-show-remove-item-dialog.d.ts +0 -29
  578. package/dist/esm/items/hooks/use-show-remove-item-dialog.js +0 -45
  579. package/dist/esm/main.d.ts +0 -43
  580. package/dist/esm/main.js +0 -49
  581. package/dist/esm/messages/main.d.ts +0 -236
  582. package/dist/esm/messages/main.js +0 -237
  583. package/dist/esm/models/DataItem.d.ts +0 -8
  584. package/dist/esm/models/DataItem.js +0 -1
  585. package/dist/esm/models/DateRange.d.ts +0 -18
  586. package/dist/esm/models/DateRange.js +0 -1
  587. package/dist/esm/models/EditableProp.d.ts +0 -29
  588. package/dist/esm/models/EditableProp.js +0 -1
  589. package/dist/esm/models/Fields.d.ts +0 -17
  590. package/dist/esm/models/Fields.js +0 -1
  591. package/dist/esm/models/Group.d.ts +0 -8
  592. package/dist/esm/models/Group.js +0 -1
  593. package/dist/esm/models/Item.d.ts +0 -62
  594. package/dist/esm/models/Item.js +0 -1
  595. package/dist/esm/models/NavigationAction.d.ts +0 -17
  596. package/dist/esm/models/NavigationAction.js +0 -1
  597. package/dist/esm/models/Occurrence.d.ts +0 -52
  598. package/dist/esm/models/Occurrence.js +0 -1
  599. package/dist/esm/models/Omit.d.ts +0 -4
  600. package/dist/esm/models/Omit.js +0 -1
  601. package/dist/esm/models/Orientation.d.ts +0 -2
  602. package/dist/esm/models/Orientation.js +0 -1
  603. package/dist/esm/models/Range.d.ts +0 -10
  604. package/dist/esm/models/Range.js +0 -1
  605. package/dist/esm/models/Rect.d.ts +0 -15
  606. package/dist/esm/models/Rect.js +0 -1
  607. package/dist/esm/models/Resource.d.ts +0 -8
  608. package/dist/esm/models/Resource.js +0 -1
  609. package/dist/esm/models/SchedulerGroup.d.ts +0 -13
  610. package/dist/esm/models/SchedulerGroup.js +0 -1
  611. package/dist/esm/models/SchedulerHandle.d.ts +0 -6
  612. package/dist/esm/models/SchedulerHandle.js +0 -1
  613. package/dist/esm/models/SchedulerModelFields.d.ts +0 -62
  614. package/dist/esm/models/SchedulerModelFields.js +0 -1
  615. package/dist/esm/models/SchedulerResource.d.ts +0 -33
  616. package/dist/esm/models/SchedulerResource.js +0 -1
  617. package/dist/esm/models/SchedulerView.d.ts +0 -83
  618. package/dist/esm/models/SchedulerView.js +0 -1
  619. package/dist/esm/models/Slot.d.ts +0 -51
  620. package/dist/esm/models/Slot.js +0 -1
  621. package/dist/esm/models/events.d.ts +0 -81
  622. package/dist/esm/models/events.js +0 -1
  623. package/dist/esm/models/main.d.ts +0 -17
  624. package/dist/esm/models/main.js +0 -17
  625. package/dist/esm/package-metadata.d.ts +0 -5
  626. package/dist/esm/package-metadata.js +0 -11
  627. package/dist/esm/package.json +0 -3
  628. package/dist/esm/recurrence/RecurrenceEditor.d.ts +0 -54
  629. package/dist/esm/recurrence/RecurrenceEditor.js +0 -961
  630. package/dist/esm/recurrence/RecurrenceFrequencyEditor.d.ts +0 -48
  631. package/dist/esm/recurrence/RecurrenceFrequencyEditor.js +0 -101
  632. package/dist/esm/recurrence/RecurrenceRepeatOnWeekEditor.d.ts +0 -51
  633. package/dist/esm/recurrence/RecurrenceRepeatOnWeekEditor.js +0 -133
  634. package/dist/esm/recurrence/common.d.ts +0 -57
  635. package/dist/esm/recurrence/common.js +0 -212
  636. package/dist/esm/recurrence/types/EndRule.d.ts +0 -4
  637. package/dist/esm/recurrence/types/EndRule.js +0 -1
  638. package/dist/esm/recurrence/types/Frequency.d.ts +0 -4
  639. package/dist/esm/recurrence/types/Frequency.js +0 -1
  640. package/dist/esm/recurrence/types/FrequencyEntity.d.ts +0 -8
  641. package/dist/esm/recurrence/types/FrequencyEntity.js +0 -1
  642. package/dist/esm/recurrence/types/MonthEntity.d.ts +0 -7
  643. package/dist/esm/recurrence/types/MonthEntity.js +0 -1
  644. package/dist/esm/recurrence/types/OffsetPosition.d.ts +0 -4
  645. package/dist/esm/recurrence/types/OffsetPosition.js +0 -1
  646. package/dist/esm/recurrence/types/OffsetPositionEntity.d.ts +0 -7
  647. package/dist/esm/recurrence/types/OffsetPositionEntity.js +0 -1
  648. package/dist/esm/recurrence/types/RepeatOnRule.d.ts +0 -4
  649. package/dist/esm/recurrence/types/RepeatOnRule.js +0 -1
  650. package/dist/esm/recurrence/types/WeekDayEntity.d.ts +0 -7
  651. package/dist/esm/recurrence/types/WeekDayEntity.js +0 -1
  652. package/dist/esm/recurrence/types/WeekDayRule.d.ts +0 -8
  653. package/dist/esm/recurrence/types/WeekDayRule.js +0 -1
  654. package/dist/esm/recurrence/utils/main.d.ts +0 -1
  655. package/dist/esm/recurrence/utils/main.js +0 -0
  656. package/dist/esm/reducers/editReducer.d.ts +0 -33
  657. package/dist/esm/reducers/editReducer.js +0 -65
  658. package/dist/esm/reducers/main.d.ts +0 -1
  659. package/dist/esm/reducers/main.js +0 -1
  660. package/dist/esm/services/itemsService.d.ts +0 -14
  661. package/dist/esm/services/itemsService.js +0 -76
  662. package/dist/esm/services/main.d.ts +0 -4
  663. package/dist/esm/services/main.js +0 -4
  664. package/dist/esm/services/occurrenceService.d.ts +0 -7
  665. package/dist/esm/services/occurrenceService.js +0 -92
  666. package/dist/esm/services/rangeService.d.ts +0 -6
  667. package/dist/esm/services/rangeService.js +0 -23
  668. package/dist/esm/services/slotsService.d.ts +0 -8
  669. package/dist/esm/services/slotsService.js +0 -42
  670. package/dist/esm/slots/SchedulerEditSlot.d.ts +0 -80
  671. package/dist/esm/slots/SchedulerEditSlot.js +0 -395
  672. package/dist/esm/slots/SchedulerSlot.d.ts +0 -146
  673. package/dist/esm/slots/SchedulerSlot.js +0 -373
  674. package/dist/esm/slots/SchedulerViewSlot.d.ts +0 -73
  675. package/dist/esm/slots/SchedulerViewSlot.js +0 -232
  676. package/dist/esm/tasks/SchedulerEditTask.d.ts +0 -113
  677. package/dist/esm/tasks/SchedulerEditTask.js +0 -317
  678. package/dist/esm/tasks/SchedulerTask.d.ts +0 -82
  679. package/dist/esm/tasks/SchedulerTask.js +0 -233
  680. package/dist/esm/tasks/SchedulerViewTask.d.ts +0 -58
  681. package/dist/esm/tasks/SchedulerViewTask.js +0 -159
  682. package/dist/esm/utils/main.d.ts +0 -185
  683. package/dist/esm/utils/main.js +0 -593
  684. package/dist/esm/views/agenda/AgendaView.d.ts +0 -107
  685. package/dist/esm/views/agenda/AgendaView.js +0 -342
  686. package/dist/esm/views/agenda/AgendaViewBody.d.ts +0 -50
  687. package/dist/esm/views/agenda/AgendaViewBody.js +0 -243
  688. package/dist/esm/views/agenda/AgendaViewHead.d.ts +0 -46
  689. package/dist/esm/views/agenda/AgendaViewHead.js +0 -56
  690. package/dist/esm/views/agenda/AgendaViewHeaderItem.d.ts +0 -46
  691. package/dist/esm/views/agenda/AgendaViewHeaderItem.js +0 -47
  692. package/dist/esm/views/common/HorizontalResourceIterator.d.ts +0 -61
  693. package/dist/esm/views/common/HorizontalResourceIterator.js +0 -178
  694. package/dist/esm/views/common/SchedulerDrag.d.ts +0 -64
  695. package/dist/esm/views/common/SchedulerDrag.js +0 -138
  696. package/dist/esm/views/common/SchedulerResize.d.ts +0 -67
  697. package/dist/esm/views/common/SchedulerResize.js +0 -142
  698. package/dist/esm/views/common/VerticalResourceIterator.d.ts +0 -56
  699. package/dist/esm/views/common/VerticalResourceIterator.js +0 -367
  700. package/dist/esm/views/common/utils.d.ts +0 -34
  701. package/dist/esm/views/common/utils.js +0 -196
  702. package/dist/esm/views/day/DayView.d.ts +0 -43
  703. package/dist/esm/views/day/DayView.js +0 -191
  704. package/dist/esm/views/day/DayViewAllDayRowContent.d.ts +0 -41
  705. package/dist/esm/views/day/DayViewAllDayRowContent.js +0 -41
  706. package/dist/esm/views/day/DayViewAllDaySlots.d.ts +0 -48
  707. package/dist/esm/views/day/DayViewAllDaySlots.js +0 -125
  708. package/dist/esm/views/day/DayViewGroupRowContent.d.ts +0 -41
  709. package/dist/esm/views/day/DayViewGroupRowContent.js +0 -33
  710. package/dist/esm/views/day/DayViewHead.d.ts +0 -42
  711. package/dist/esm/views/day/DayViewHead.js +0 -62
  712. package/dist/esm/views/day/DayViewMiddleRow.d.ts +0 -53
  713. package/dist/esm/views/day/DayViewMiddleRow.js +0 -131
  714. package/dist/esm/views/day/DayViewRowContent.d.ts +0 -45
  715. package/dist/esm/views/day/DayViewRowContent.js +0 -51
  716. package/dist/esm/views/day/DayViewVerticalRow.d.ts +0 -44
  717. package/dist/esm/views/day/DayViewVerticalRow.js +0 -120
  718. package/dist/esm/views/day/DayViewVerticalSlotsRow.d.ts +0 -56
  719. package/dist/esm/views/day/DayViewVerticalSlotsRow.js +0 -171
  720. package/dist/esm/views/day/MultiDayView.d.ts +0 -181
  721. package/dist/esm/views/day/MultiDayView.js +0 -1459
  722. package/dist/esm/views/month/MonthView.d.ts +0 -99
  723. package/dist/esm/views/month/MonthView.js +0 -650
  724. package/dist/esm/views/month/MonthViewBody.d.ts +0 -48
  725. package/dist/esm/views/month/MonthViewBody.js +0 -162
  726. package/dist/esm/views/month/MonthViewHead.d.ts +0 -42
  727. package/dist/esm/views/month/MonthViewHead.js +0 -95
  728. package/dist/esm/views/time/MultiDayTimelineView.d.ts +0 -175
  729. package/dist/esm/views/time/MultiDayTimelineView.js +0 -854
  730. package/dist/esm/views/time/TimelineView.d.ts +0 -43
  731. package/dist/esm/views/time/TimelineView.js +0 -199
  732. package/dist/esm/views/time/TimelineViewAllEventsRowContent.d.ts +0 -40
  733. package/dist/esm/views/time/TimelineViewAllEventsRowContent.js +0 -42
  734. package/dist/esm/views/time/TimelineViewBody.d.ts +0 -49
  735. package/dist/esm/views/time/TimelineViewBody.js +0 -131
  736. package/dist/esm/views/time/TimelineViewRowContent.d.ts +0 -40
  737. package/dist/esm/views/time/TimelineViewRowContent.js +0 -29
  738. package/dist/esm/views/week/WeekView.d.ts +0 -114
  739. package/dist/esm/views/week/WeekView.js +0 -213
  740. package/dist/esm/views/week/WorkWeekView.d.ts +0 -40
  741. package/dist/esm/views/week/WorkWeekView.js +0 -195
  742. package/dist/npm/Scheduler.d.ts +0 -337
  743. package/dist/npm/Scheduler.js +0 -663
  744. package/dist/npm/additionalTypes.ts +0 -21
  745. package/dist/npm/components/BaseView.d.ts +0 -52
  746. package/dist/npm/components/BaseView.js +0 -150
  747. package/dist/npm/components/CurrentTimeMarker.d.ts +0 -50
  748. package/dist/npm/components/CurrentTimeMarker.js +0 -164
  749. package/dist/npm/components/CurrentTimeMarkerArrow.d.ts +0 -47
  750. package/dist/npm/components/CurrentTimeMarkerArrow.js +0 -137
  751. package/dist/npm/components/DateHeaderCell.d.ts +0 -76
  752. package/dist/npm/components/DateHeaderCell.js +0 -72
  753. package/dist/npm/components/SchedulerActionButtons.d.ts +0 -48
  754. package/dist/npm/components/SchedulerActionButtons.js +0 -135
  755. package/dist/npm/components/SchedulerForm.d.ts +0 -73
  756. package/dist/npm/components/SchedulerForm.js +0 -232
  757. package/dist/npm/components/SchedulerOccurrenceDialog.d.ts +0 -76
  758. package/dist/npm/components/SchedulerOccurrenceDialog.js +0 -193
  759. package/dist/npm/components/SchedulerRemoveDialog.d.ts +0 -72
  760. package/dist/npm/components/SchedulerRemoveDialog.js +0 -173
  761. package/dist/npm/components/ShowMoreItemsButton.d.ts +0 -56
  762. package/dist/npm/components/ShowMoreItemsButton.js +0 -89
  763. package/dist/npm/components/TimeHeaderCell.d.ts +0 -76
  764. package/dist/npm/components/TimeHeaderCell.js +0 -70
  765. package/dist/npm/components/footer/SchedulerFooter.d.ts +0 -49
  766. package/dist/npm/components/footer/SchedulerFooter.js +0 -49
  767. package/dist/npm/components/footer/bussiness-hours/BusinessHours.d.ts +0 -50
  768. package/dist/npm/components/footer/bussiness-hours/BusinessHours.js +0 -103
  769. package/dist/npm/components/header/SchedulerHeader.d.ts +0 -49
  770. package/dist/npm/components/header/SchedulerHeader.js +0 -42
  771. package/dist/npm/components/header/navigation/DatePickerToggleButton.d.ts +0 -42
  772. package/dist/npm/components/header/navigation/DatePickerToggleButton.js +0 -108
  773. package/dist/npm/components/header/navigation/NavigationDatePicker.d.ts +0 -42
  774. package/dist/npm/components/header/navigation/NavigationDatePicker.js +0 -276
  775. package/dist/npm/components/header/navigation/SchedulerNavigation.d.ts +0 -50
  776. package/dist/npm/components/header/navigation/SchedulerNavigation.js +0 -322
  777. package/dist/npm/components/header/view-selector/SchedulerViewSelector.d.ts +0 -49
  778. package/dist/npm/components/header/view-selector/SchedulerViewSelector.js +0 -37
  779. package/dist/npm/components/header/view-selector/ViewSelectorItem.d.ts +0 -47
  780. package/dist/npm/components/header/view-selector/ViewSelectorItem.js +0 -86
  781. package/dist/npm/components/header/view-selector/ViewSelectorList.d.ts +0 -42
  782. package/dist/npm/components/header/view-selector/ViewSelectorList.js +0 -143
  783. package/dist/npm/constants/main.d.ts +0 -49
  784. package/dist/npm/constants/main.js +0 -59
  785. package/dist/npm/context/SchedulerContext.d.ts +0 -22
  786. package/dist/npm/context/SchedulerContext.js +0 -11
  787. package/dist/npm/context/SchedulerEditItemContext.d.ts +0 -15
  788. package/dist/npm/context/SchedulerEditItemContext.js +0 -11
  789. package/dist/npm/context/SchedulerEditSlotContext.d.ts +0 -10
  790. package/dist/npm/context/SchedulerEditSlotContext.js +0 -11
  791. package/dist/npm/context/SchedulerEditTaskContext.d.ts +0 -11
  792. package/dist/npm/context/SchedulerEditTaskContext.js +0 -11
  793. package/dist/npm/context/SchedulerResourceIteratorContext.d.ts +0 -43
  794. package/dist/npm/context/SchedulerResourceIteratorContext.js +0 -62
  795. package/dist/npm/context/SchedulerViewContext.d.ts +0 -18
  796. package/dist/npm/context/SchedulerViewContext.js +0 -11
  797. package/dist/npm/context/main.d.ts +0 -5
  798. package/dist/npm/context/main.js +0 -21
  799. package/dist/npm/editors/FilterableComboBox.d.ts +0 -42
  800. package/dist/npm/editors/FilterableComboBox.js +0 -94
  801. package/dist/npm/editors/ResourceEditor.d.ts +0 -53
  802. package/dist/npm/editors/ResourceEditor.js +0 -146
  803. package/dist/npm/editors/SchedulerFormEditor.d.ts +0 -262
  804. package/dist/npm/editors/SchedulerFormEditor.js +0 -1791
  805. package/dist/npm/editors/ZonedDateTime.d.ts +0 -51
  806. package/dist/npm/editors/ZonedDateTime.js +0 -109
  807. package/dist/npm/editors/common.d.ts +0 -12
  808. package/dist/npm/editors/common.js +0 -34
  809. package/dist/npm/hooks/main.d.ts +0 -9
  810. package/dist/npm/hooks/main.js +0 -25
  811. package/dist/npm/hooks/use-items-focus.d.ts +0 -23
  812. package/dist/npm/hooks/use-items-focus.js +0 -64
  813. package/dist/npm/hooks/use-items-selection.d.ts +0 -30
  814. package/dist/npm/hooks/use-items-selection.js +0 -95
  815. package/dist/npm/hooks/use-slots-focus.d.ts +0 -33
  816. package/dist/npm/hooks/use-slots-focus.js +0 -106
  817. package/dist/npm/hooks/use-slots-selection.d.ts +0 -23
  818. package/dist/npm/hooks/use-slots-selection.js +0 -56
  819. package/dist/npm/hooks/useAsyncMouseEnterLeave.d.ts +0 -10
  820. package/dist/npm/hooks/useAsyncMouseEnterLeave.js +0 -32
  821. package/dist/npm/hooks/useCellSync.d.ts +0 -9
  822. package/dist/npm/hooks/useCellSync.js +0 -48
  823. package/dist/npm/hooks/useEditable.d.ts +0 -3
  824. package/dist/npm/hooks/useEditable.js +0 -26
  825. package/dist/npm/hooks/usePropOrState.d.ts +0 -2
  826. package/dist/npm/hooks/usePropOrState.js +0 -14
  827. package/dist/npm/hooks/useRowSync.d.ts +0 -10
  828. package/dist/npm/hooks/useRowSync.js +0 -52
  829. package/dist/npm/hooks/useSchedulerSlot.d.ts +0 -6
  830. package/dist/npm/hooks/useSchedulerSlot.js +0 -11
  831. package/dist/npm/hooks/useSlotExpand.d.ts +0 -3
  832. package/dist/npm/hooks/useSlotExpand.js +0 -65
  833. package/dist/npm/hooks/useWorkHours.d.ts +0 -2
  834. package/dist/npm/hooks/useWorkHours.js +0 -11
  835. package/dist/npm/items/SchedulerEditItem.d.ts +0 -357
  836. package/dist/npm/items/SchedulerEditItem.js +0 -1046
  837. package/dist/npm/items/SchedulerItem.d.ts +0 -236
  838. package/dist/npm/items/SchedulerItem.js +0 -954
  839. package/dist/npm/items/SchedulerItemContent.d.ts +0 -47
  840. package/dist/npm/items/SchedulerItemContent.js +0 -42
  841. package/dist/npm/items/SchedulerViewItem.d.ts +0 -61
  842. package/dist/npm/items/SchedulerViewItem.js +0 -584
  843. package/dist/npm/items/hooks/use-drag-item.d.ts +0 -34
  844. package/dist/npm/items/hooks/use-drag-item.js +0 -214
  845. package/dist/npm/items/hooks/use-form-item.d.ts +0 -22
  846. package/dist/npm/items/hooks/use-form-item.js +0 -54
  847. package/dist/npm/items/hooks/use-remove-item.d.ts +0 -30
  848. package/dist/npm/items/hooks/use-remove-item.js +0 -52
  849. package/dist/npm/items/hooks/use-resize-item.d.ts +0 -39
  850. package/dist/npm/items/hooks/use-resize-item.js +0 -258
  851. package/dist/npm/items/hooks/use-series.d.ts +0 -25
  852. package/dist/npm/items/hooks/use-series.js +0 -45
  853. package/dist/npm/items/hooks/use-show-occurrence-dialog.d.ts +0 -29
  854. package/dist/npm/items/hooks/use-show-occurrence-dialog.js +0 -54
  855. package/dist/npm/items/hooks/use-show-remove-item-dialog.d.ts +0 -29
  856. package/dist/npm/items/hooks/use-show-remove-item-dialog.js +0 -53
  857. package/dist/npm/main.d.ts +0 -43
  858. package/dist/npm/main.js +0 -87
  859. package/dist/npm/messages/main.d.ts +0 -236
  860. package/dist/npm/messages/main.js +0 -241
  861. package/dist/npm/models/DataItem.d.ts +0 -8
  862. package/dist/npm/models/DataItem.js +0 -2
  863. package/dist/npm/models/DateRange.d.ts +0 -18
  864. package/dist/npm/models/DateRange.js +0 -2
  865. package/dist/npm/models/EditableProp.d.ts +0 -29
  866. package/dist/npm/models/EditableProp.js +0 -2
  867. package/dist/npm/models/Fields.d.ts +0 -17
  868. package/dist/npm/models/Fields.js +0 -2
  869. package/dist/npm/models/Group.d.ts +0 -8
  870. package/dist/npm/models/Group.js +0 -2
  871. package/dist/npm/models/Item.d.ts +0 -62
  872. package/dist/npm/models/Item.js +0 -2
  873. package/dist/npm/models/NavigationAction.d.ts +0 -17
  874. package/dist/npm/models/NavigationAction.js +0 -2
  875. package/dist/npm/models/Occurrence.d.ts +0 -52
  876. package/dist/npm/models/Occurrence.js +0 -2
  877. package/dist/npm/models/Omit.d.ts +0 -4
  878. package/dist/npm/models/Omit.js +0 -2
  879. package/dist/npm/models/Orientation.d.ts +0 -2
  880. package/dist/npm/models/Orientation.js +0 -2
  881. package/dist/npm/models/Range.d.ts +0 -10
  882. package/dist/npm/models/Range.js +0 -2
  883. package/dist/npm/models/Rect.d.ts +0 -15
  884. package/dist/npm/models/Rect.js +0 -2
  885. package/dist/npm/models/Resource.d.ts +0 -8
  886. package/dist/npm/models/Resource.js +0 -2
  887. package/dist/npm/models/SchedulerGroup.d.ts +0 -13
  888. package/dist/npm/models/SchedulerGroup.js +0 -2
  889. package/dist/npm/models/SchedulerHandle.d.ts +0 -6
  890. package/dist/npm/models/SchedulerHandle.js +0 -5
  891. package/dist/npm/models/SchedulerModelFields.d.ts +0 -62
  892. package/dist/npm/models/SchedulerModelFields.js +0 -2
  893. package/dist/npm/models/SchedulerResource.d.ts +0 -33
  894. package/dist/npm/models/SchedulerResource.js +0 -2
  895. package/dist/npm/models/SchedulerView.d.ts +0 -83
  896. package/dist/npm/models/SchedulerView.js +0 -2
  897. package/dist/npm/models/Slot.d.ts +0 -51
  898. package/dist/npm/models/Slot.js +0 -2
  899. package/dist/npm/models/events.d.ts +0 -81
  900. package/dist/npm/models/events.js +0 -2
  901. package/dist/npm/models/main.d.ts +0 -17
  902. package/dist/npm/models/main.js +0 -33
  903. package/dist/npm/package-metadata.d.ts +0 -5
  904. package/dist/npm/package-metadata.js +0 -14
  905. package/dist/npm/recurrence/RecurrenceEditor.d.ts +0 -54
  906. package/dist/npm/recurrence/RecurrenceEditor.js +0 -968
  907. package/dist/npm/recurrence/RecurrenceFrequencyEditor.d.ts +0 -48
  908. package/dist/npm/recurrence/RecurrenceFrequencyEditor.js +0 -108
  909. package/dist/npm/recurrence/RecurrenceRepeatOnWeekEditor.d.ts +0 -51
  910. package/dist/npm/recurrence/RecurrenceRepeatOnWeekEditor.js +0 -140
  911. package/dist/npm/recurrence/common.d.ts +0 -57
  912. package/dist/npm/recurrence/common.js +0 -233
  913. package/dist/npm/recurrence/types/EndRule.d.ts +0 -4
  914. package/dist/npm/recurrence/types/EndRule.js +0 -2
  915. package/dist/npm/recurrence/types/Frequency.d.ts +0 -4
  916. package/dist/npm/recurrence/types/Frequency.js +0 -2
  917. package/dist/npm/recurrence/types/FrequencyEntity.d.ts +0 -8
  918. package/dist/npm/recurrence/types/FrequencyEntity.js +0 -2
  919. package/dist/npm/recurrence/types/MonthEntity.d.ts +0 -7
  920. package/dist/npm/recurrence/types/MonthEntity.js +0 -2
  921. package/dist/npm/recurrence/types/OffsetPosition.d.ts +0 -4
  922. package/dist/npm/recurrence/types/OffsetPosition.js +0 -2
  923. package/dist/npm/recurrence/types/OffsetPositionEntity.d.ts +0 -7
  924. package/dist/npm/recurrence/types/OffsetPositionEntity.js +0 -2
  925. package/dist/npm/recurrence/types/RepeatOnRule.d.ts +0 -4
  926. package/dist/npm/recurrence/types/RepeatOnRule.js +0 -2
  927. package/dist/npm/recurrence/types/WeekDayEntity.d.ts +0 -7
  928. package/dist/npm/recurrence/types/WeekDayEntity.js +0 -2
  929. package/dist/npm/recurrence/types/WeekDayRule.d.ts +0 -8
  930. package/dist/npm/recurrence/types/WeekDayRule.js +0 -2
  931. package/dist/npm/recurrence/utils/main.d.ts +0 -1
  932. package/dist/npm/recurrence/utils/main.js +0 -0
  933. package/dist/npm/reducers/editReducer.d.ts +0 -33
  934. package/dist/npm/reducers/editReducer.js +0 -69
  935. package/dist/npm/reducers/main.d.ts +0 -1
  936. package/dist/npm/reducers/main.js +0 -17
  937. package/dist/npm/services/itemsService.d.ts +0 -14
  938. package/dist/npm/services/itemsService.js +0 -83
  939. package/dist/npm/services/main.d.ts +0 -4
  940. package/dist/npm/services/main.js +0 -20
  941. package/dist/npm/services/occurrenceService.d.ts +0 -7
  942. package/dist/npm/services/occurrenceService.js +0 -96
  943. package/dist/npm/services/rangeService.d.ts +0 -6
  944. package/dist/npm/services/rangeService.js +0 -27
  945. package/dist/npm/services/slotsService.d.ts +0 -8
  946. package/dist/npm/services/slotsService.js +0 -46
  947. package/dist/npm/slots/SchedulerEditSlot.d.ts +0 -80
  948. package/dist/npm/slots/SchedulerEditSlot.js +0 -402
  949. package/dist/npm/slots/SchedulerSlot.d.ts +0 -146
  950. package/dist/npm/slots/SchedulerSlot.js +0 -380
  951. package/dist/npm/slots/SchedulerViewSlot.d.ts +0 -73
  952. package/dist/npm/slots/SchedulerViewSlot.js +0 -239
  953. package/dist/npm/tasks/SchedulerEditTask.d.ts +0 -113
  954. package/dist/npm/tasks/SchedulerEditTask.js +0 -324
  955. package/dist/npm/tasks/SchedulerTask.d.ts +0 -82
  956. package/dist/npm/tasks/SchedulerTask.js +0 -240
  957. package/dist/npm/tasks/SchedulerViewTask.d.ts +0 -58
  958. package/dist/npm/tasks/SchedulerViewTask.js +0 -166
  959. package/dist/npm/utils/main.d.ts +0 -185
  960. package/dist/npm/utils/main.js +0 -648
  961. package/dist/npm/views/agenda/AgendaView.d.ts +0 -107
  962. package/dist/npm/views/agenda/AgendaView.js +0 -349
  963. package/dist/npm/views/agenda/AgendaViewBody.d.ts +0 -50
  964. package/dist/npm/views/agenda/AgendaViewBody.js +0 -250
  965. package/dist/npm/views/agenda/AgendaViewHead.d.ts +0 -46
  966. package/dist/npm/views/agenda/AgendaViewHead.js +0 -63
  967. package/dist/npm/views/agenda/AgendaViewHeaderItem.d.ts +0 -46
  968. package/dist/npm/views/agenda/AgendaViewHeaderItem.js +0 -54
  969. package/dist/npm/views/common/HorizontalResourceIterator.d.ts +0 -61
  970. package/dist/npm/views/common/HorizontalResourceIterator.js +0 -186
  971. package/dist/npm/views/common/SchedulerDrag.d.ts +0 -64
  972. package/dist/npm/views/common/SchedulerDrag.js +0 -145
  973. package/dist/npm/views/common/SchedulerResize.d.ts +0 -67
  974. package/dist/npm/views/common/SchedulerResize.js +0 -149
  975. package/dist/npm/views/common/VerticalResourceIterator.d.ts +0 -56
  976. package/dist/npm/views/common/VerticalResourceIterator.js +0 -374
  977. package/dist/npm/views/common/utils.d.ts +0 -34
  978. package/dist/npm/views/common/utils.js +0 -210
  979. package/dist/npm/views/day/DayView.d.ts +0 -43
  980. package/dist/npm/views/day/DayView.js +0 -198
  981. package/dist/npm/views/day/DayViewAllDayRowContent.d.ts +0 -41
  982. package/dist/npm/views/day/DayViewAllDayRowContent.js +0 -48
  983. package/dist/npm/views/day/DayViewAllDaySlots.d.ts +0 -48
  984. package/dist/npm/views/day/DayViewAllDaySlots.js +0 -132
  985. package/dist/npm/views/day/DayViewGroupRowContent.d.ts +0 -41
  986. package/dist/npm/views/day/DayViewGroupRowContent.js +0 -40
  987. package/dist/npm/views/day/DayViewHead.d.ts +0 -42
  988. package/dist/npm/views/day/DayViewHead.js +0 -69
  989. package/dist/npm/views/day/DayViewMiddleRow.d.ts +0 -53
  990. package/dist/npm/views/day/DayViewMiddleRow.js +0 -138
  991. package/dist/npm/views/day/DayViewRowContent.d.ts +0 -45
  992. package/dist/npm/views/day/DayViewRowContent.js +0 -58
  993. package/dist/npm/views/day/DayViewVerticalRow.d.ts +0 -44
  994. package/dist/npm/views/day/DayViewVerticalRow.js +0 -127
  995. package/dist/npm/views/day/DayViewVerticalSlotsRow.d.ts +0 -56
  996. package/dist/npm/views/day/DayViewVerticalSlotsRow.js +0 -178
  997. package/dist/npm/views/day/MultiDayView.d.ts +0 -181
  998. package/dist/npm/views/day/MultiDayView.js +0 -1466
  999. package/dist/npm/views/month/MonthView.d.ts +0 -99
  1000. package/dist/npm/views/month/MonthView.js +0 -657
  1001. package/dist/npm/views/month/MonthViewBody.d.ts +0 -48
  1002. package/dist/npm/views/month/MonthViewBody.js +0 -169
  1003. package/dist/npm/views/month/MonthViewHead.d.ts +0 -42
  1004. package/dist/npm/views/month/MonthViewHead.js +0 -102
  1005. package/dist/npm/views/time/MultiDayTimelineView.d.ts +0 -175
  1006. package/dist/npm/views/time/MultiDayTimelineView.js +0 -861
  1007. package/dist/npm/views/time/TimelineView.d.ts +0 -43
  1008. package/dist/npm/views/time/TimelineView.js +0 -206
  1009. package/dist/npm/views/time/TimelineViewAllEventsRowContent.d.ts +0 -40
  1010. package/dist/npm/views/time/TimelineViewAllEventsRowContent.js +0 -49
  1011. package/dist/npm/views/time/TimelineViewBody.d.ts +0 -49
  1012. package/dist/npm/views/time/TimelineViewBody.js +0 -138
  1013. package/dist/npm/views/time/TimelineViewRowContent.d.ts +0 -40
  1014. package/dist/npm/views/time/TimelineViewRowContent.js +0 -36
  1015. package/dist/npm/views/week/WeekView.d.ts +0 -114
  1016. package/dist/npm/views/week/WeekView.js +0 -220
  1017. package/dist/npm/views/week/WorkWeekView.d.ts +0 -40
  1018. package/dist/npm/views/week/WorkWeekView.js +0 -202
@@ -1,1046 +0,0 @@
1
- "use strict";
2
-
3
- var __assign = undefined && undefined.__assign || function () {
4
- __assign = Object.assign || function (t) {
5
- for (var s, i = 1, n = arguments.length; i < n; i++) {
6
- s = arguments[i];
7
- for (var p in s) {
8
- if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
9
- }
10
- }
11
- return t;
12
- };
13
- return __assign.apply(this, arguments);
14
- };
15
- Object.defineProperty(exports, "__esModule", {
16
- value: true
17
- });
18
- exports.SchedulerEditItemVue2 = exports.SchedulerEditItem = void 0;
19
- // @ts-ignore
20
- var Vue = require("vue");
21
- var allVue = Vue;
22
- var gh = allVue.h;
23
- var isV3 = allVue.version && allVue.version[0] === '3';
24
- var Scheduler_1 = require("../Scheduler");
25
- var kendo_vue_common_1 = require("@progress/kendo-vue-common");
26
- var SchedulerViewItem_1 = require("./SchedulerViewItem");
27
- var main_1 = require("../hooks/main");
28
- var use_form_item_1 = require("./hooks/use-form-item");
29
- var use_show_occurrence_dialog_1 = require("./hooks/use-show-occurrence-dialog");
30
- var use_remove_item_1 = require("./hooks/use-remove-item");
31
- var use_show_remove_item_dialog_1 = require("./hooks/use-show-remove-item-dialog");
32
- var use_drag_item_1 = require("./hooks/use-drag-item");
33
- var use_resize_item_1 = require("./hooks/use-resize-item");
34
- var use_series_1 = require("./hooks/use-series");
35
- var use_items_selection_1 = require("../hooks/use-items-selection");
36
- var main_2 = require("../utils/main");
37
- /**
38
- * @hidden
39
- */
40
- var SchedulerEditItemVue2 = {
41
- name: 'KendoSchedulerEditItem',
42
- inheritAttrs: false,
43
- props: {
44
- tabIndex: {
45
- type: Number,
46
- default: undefined
47
- },
48
- item: [String, Function, Object],
49
- viewItem: [String, Function, Object],
50
- drag: [String, Function, Object],
51
- resize: [String, Function, Object],
52
- form: [String, Function, Object],
53
- removeDialog: [String, Function, Object],
54
- occurrenceDialog: [String, Function, Object],
55
- formItem: Object,
56
- dragItem: Object,
57
- resizeItem: Object,
58
- removeItem: Object,
59
- showOccurrenceDialog: {
60
- type: Boolean,
61
- default: undefined
62
- },
63
- showRemoveDialog: {
64
- type: Boolean,
65
- default: undefined
66
- },
67
- series: {
68
- type: Boolean,
69
- default: undefined
70
- },
71
- uid: [String, Number],
72
- start: Date,
73
- end: Date,
74
- originalStart: Date,
75
- startTimezone: String,
76
- endTimezone: String,
77
- isAllDay: Boolean,
78
- title: String,
79
- description: String,
80
- occurrenceId: String,
81
- recurrenceExceptions: Array,
82
- recurrenceRule: String,
83
- recurrenceId: [String, Number],
84
- dataItem: Object,
85
- head: Boolean,
86
- tail: Boolean,
87
- order: Number,
88
- zonedStart: Object,
89
- zonedEnd: Object,
90
- slots: Array,
91
- group: Object,
92
- range: Object,
93
- isException: Boolean,
94
- isRecurring: Boolean,
95
- id: String,
96
- className: String,
97
- itemStyle: Object,
98
- editable: [Object, Boolean],
99
- selected: Boolean,
100
- vertical: Boolean,
101
- dragHint: Boolean,
102
- resizeHint: Boolean,
103
- format: String,
104
- ignoreIsAllDay: Boolean
105
- },
106
- inject: {
107
- bv: {
108
- default: null
109
- },
110
- ks: {
111
- default: null
112
- },
113
- dispatchFocusedItems: {
114
- default: null
115
- },
116
- dispatchFocusedSlots: {
117
- default: null
118
- },
119
- dispatchSelectedItems: {
120
- default: null
121
- }
122
- },
123
- provide: function provide() {
124
- return {
125
- ei: this.ei,
126
- ksCancel: this.handleCancel,
127
- ksFormSubmit: this.handleFormSubmit,
128
- ksOccurrenceClick: this.handleOccurrenceClick,
129
- ksSeriesClick: this.handleSeriesClick,
130
- ksRemoveConfirm: this.handleRemoveConfirm
131
- };
132
- },
133
- data: function data() {
134
- return {
135
- ei: {
136
- props: this.$props,
137
- form: this.$props.formItem,
138
- drag: this.drag,
139
- resize: this.resize,
140
- remove: this.remove,
141
- showRemoveDialog: this.showRemoveDialog,
142
- showOccurrenceDialog: this.showOccurrenceDialog
143
- },
144
- currentFormItem: null,
145
- currentSelected: null,
146
- currentSeries: null,
147
- currentRemoveItem: null,
148
- currentDragItem: null,
149
- currentResizeItem: null,
150
- currentShowRemoveDialog: null,
151
- currentShowOccurrenceDialog: null
152
- // item: null
153
- };
154
- },
155
-
156
- computed: {
157
- currentTabIndex: function currentTabIndex() {
158
- var isFirst = this.bv.items.length && this.bv.items[0].dataItem.id === this.dataItem.id;
159
- return this.$props.tabIndex !== undefined ? this.$props.tabIndex === null ? undefined : this.$props.tabIndex : this.bv.selectedItems.length === 0 ? isFirst ? 0 : undefined : undefined;
160
- },
161
- compSelected: function compSelected() {
162
- return this.selected !== undefined ? this.selected : this.currentSelected;
163
- },
164
- compSeries: function compSeries() {
165
- return this.series !== undefined ? this.series : this.currentSeries;
166
- },
167
- compFormItem: function compFormItem() {
168
- return this.formItem !== undefined ? this.formItem : this.currentFormItem;
169
- },
170
- compRemoveItem: function compRemoveItem() {
171
- return this.removeItem !== undefined ? this.removeItem : this.currentRemoveItem;
172
- },
173
- compDragItem: function compDragItem() {
174
- return this.dragItem !== undefined ? this.dragItem : this.currentDragItem;
175
- },
176
- compResizeItem: function compResizeItem() {
177
- return this.resizeItem !== undefined ? this.resizeItem : this.currentResizeItem;
178
- },
179
- compShowRemoveDialog: function compShowRemoveDialog() {
180
- return this.showRemoveDialog !== undefined ? this.showRemoveDialog : this.currentShowRemoveDialog;
181
- },
182
- compShowOccurrenceDialog: function compShowOccurrenceDialog() {
183
- return this.showOccurrenceDialog !== undefined ? this.showOccurrenceDialog : this.currentShowOccurrenceDialog;
184
- },
185
- actionsReducerMap: function actionsReducerMap() {
186
- var _a;
187
- return _a = {}, _a[use_series_1.SERIES_ACTION.set] = this.dispatchSeries, _a[use_series_1.SERIES_ACTION.toggle] = this.dispatchSeries, _a[use_series_1.SERIES_ACTION.reset] = this.dispatchSeries, _a[use_items_selection_1.ITEMS_SELECT_ACTION.select] = this.dispatchItemSelection, _a[use_items_selection_1.ITEMS_SELECT_ACTION.add] = this.dispatchItemSelection, _a[use_items_selection_1.ITEMS_SELECT_ACTION.remove] = this.dispatchItemSelection, _a[use_items_selection_1.ITEMS_SELECT_ACTION.reset] = this.dispatchItemSelection, _a[use_items_selection_1.ITEMS_SELECT_ACTION.selectNext] = this.dispatchItemSelection, _a[use_items_selection_1.ITEMS_SELECT_ACTION.selectPrev] = this.dispatchItemSelection, _a[use_form_item_1.FORM_ITEM_ACTION.set] = this.dispatchFormItem, _a[use_form_item_1.FORM_ITEM_ACTION.setMaster] = this.dispatchFormItem, _a[use_form_item_1.FORM_ITEM_ACTION.reset] = this.dispatchFormItem, _a[use_form_item_1.FORM_ITEM_ACTION.complete] = this.dispatchFormItem, _a[use_remove_item_1.REMOVE_ITEM_ACTION.set] = this.dispatchRemoveItem, _a[use_remove_item_1.REMOVE_ITEM_ACTION.reset] = this.dispatchRemoveItem, _a[use_remove_item_1.REMOVE_ITEM_ACTION.complete] = this.dispatchRemoveItem, _a[use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close] = this.dispatchShowOccurrenceDialog, _a[use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.open] = this.dispatchShowOccurrenceDialog, _a[use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.set] = this.dispatchShowOccurrenceDialog, _a[use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.toggle] = this.dispatchShowOccurrenceDialog, _a[use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.reset] = this.dispatchShowOccurrenceDialog, _a[use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.close] = this.dispatchShowRemoveDialog, _a[use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.open] = this.dispatchShowRemoveDialog, _a[use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.set] = this.dispatchShowRemoveDialog, _a[use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.toggle] = this.dispatchShowRemoveDialog, _a[use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.reset] = this.dispatchShowRemoveDialog, _a[use_drag_item_1.DRAG_ITEM_ACTION.start] = this.dispatchDragItem, _a[use_drag_item_1.DRAG_ITEM_ACTION.drag] = this.dispatchDragItem, _a[use_drag_item_1.DRAG_ITEM_ACTION.complete] = this.dispatchDragItem, _a[use_drag_item_1.DRAG_ITEM_ACTION.completeOccurrence] = this.dispatchDragItem, _a[use_drag_item_1.DRAG_ITEM_ACTION.completeSeries] = this.dispatchDragItem, _a[use_drag_item_1.DRAG_ITEM_ACTION.set] = this.dispatchDragItem, _a[use_drag_item_1.DRAG_ITEM_ACTION.reset] = this.dispatchDragItem, _a[use_drag_item_1.DRAG_ITEM_ACTION.dragSelected] = this.dispatchDragItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.start] = this.dispatchResizeItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.startDrag] = this.dispatchResizeItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.startDragSelected] = this.dispatchResizeItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.endDrag] = this.dispatchResizeItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.endDragSelected] = this.dispatchResizeItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.complete] = this.dispatchResizeItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.completeOccurrence] = this.dispatchResizeItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.completeSeries] = this.dispatchResizeItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.set] = this.dispatchResizeItem, _a[use_resize_item_1.RESIZE_ITEM_ACTION.reset] = this.dispatchResizeItem, _a[main_1.ITEMS_FOCUS_ACTION.next] = this.dispatchViewItemsFocus, _a[main_1.ITEMS_FOCUS_ACTION.prev] = this.dispatchViewItemsFocus, _a[main_1.SLOTS_FOCUS_ACTION.left] = this.dispatchViewSlotsFocus, _a[main_1.SLOTS_FOCUS_ACTION.right] = this.dispatchViewSlotsFocus, _a[main_1.SLOTS_FOCUS_ACTION.up] = this.dispatchViewSlotsFocus, _a[main_1.SLOTS_FOCUS_ACTION.down] = this.dispatchViewSlotsFocus, _a.null = function () {}, _a;
188
- }
189
- },
190
- // @ts-ignore
191
- setup: !isV3 ? undefined : function () {
192
- var v3 = !!isV3;
193
- return {
194
- v3: v3
195
- };
196
- },
197
- // @ts-ignore
198
- render: function render(createElement) {
199
- var _this = this;
200
- var h = gh || createElement;
201
- var defaultSlot = (0, kendo_vue_common_1.getDefaultSlots)(this);
202
- // tslint:enable:max-line-length
203
- var selected = Boolean(this.bv.selectedItems && this.bv.selectedItems.some(function (si) {
204
- return (0, main_2.compareItems)(si, _this, _this.ignoreIsAllDay);
205
- }));
206
- var itemRender;
207
- var itemRenderDefaultRendering =
208
- // @ts-ignore function children
209
- h(SchedulerViewItem_1.SchedulerViewItem, {
210
- ignoreIsAllDay: this.ignoreIsAllDay,
211
- attrs: this.v3 ? undefined : {
212
- ignoreIsAllDay: this.ignoreIsAllDay,
213
- item: this.item,
214
- uid: this.uid,
215
- start: this.start,
216
- end: this.end,
217
- originalStart: this.originalStart,
218
- startTimezone: this.startTimezone,
219
- endTimezone: this.endTimezone,
220
- isAllDay: this.isAllDay,
221
- title: this.title,
222
- description: this.description,
223
- occurrenceId: this.occurrenceId,
224
- recurrenceExceptions: this.recurrenceExceptions,
225
- recurrenceRule: this.recurrenceRule,
226
- recurrenceId: this.recurrenceId,
227
- dataItem: this.dataItem,
228
- head: this.head,
229
- tail: this.tail,
230
- order: this.order,
231
- zonedStart: this.zonedStart,
232
- zonedEnd: this.zonedEnd,
233
- slots: this.slots,
234
- group: this.group,
235
- range: this.range,
236
- isException: this.isException,
237
- isRecurring: this.isRecurring,
238
- id: this.id,
239
- className: this.className,
240
- itemStyle: this.itemStyle,
241
- editable: this.editable,
242
- vertical: this.vertical,
243
- dragHint: this.dragHint,
244
- resizeHint: this.resizeHint,
245
- format: this.format,
246
- showOccurrenceDialog: this.compShowOccurrenceDialog,
247
- showRemoveDialog: this.compShowRemoveDialog,
248
- formItem: this.compFormItem,
249
- dragItem: this.compDragItem,
250
- resizeItem: this.compResizeItem,
251
- removeItem: this.compRemoveItem,
252
- itemRef: this.item,
253
- selected: selected,
254
- tabIndex: this.currentTabIndex
255
- // Keyboard
256
- },
257
- item: this.item,
258
- uid: this.uid,
259
- start: this.start,
260
- end: this.end,
261
- originalStart: this.originalStart,
262
- startTimezone: this.startTimezone,
263
- endTimezone: this.endTimezone,
264
- isAllDay: this.isAllDay,
265
- title: this.title,
266
- description: this.description,
267
- occurrenceId: this.occurrenceId,
268
- recurrenceExceptions: this.recurrenceExceptions,
269
- recurrenceRule: this.recurrenceRule,
270
- recurrenceId: this.recurrenceId,
271
- dataItem: this.dataItem,
272
- head: this.head,
273
- tail: this.tail,
274
- order: this.order,
275
- zonedStart: this.zonedStart,
276
- zonedEnd: this.zonedEnd,
277
- slots: this.slots,
278
- group: this.group,
279
- range: this.range,
280
- isException: this.isException,
281
- isRecurring: this.isRecurring,
282
- id: this.id,
283
- className: this.className,
284
- itemStyle: this.itemStyle,
285
- editable: this.editable,
286
- vertical: this.vertical,
287
- dragHint: this.dragHint,
288
- resizeHint: this.resizeHint,
289
- format: this.format,
290
- showOccurrenceDialog: this.compShowOccurrenceDialog,
291
- showRemoveDialog: this.compShowRemoveDialog,
292
- formItem: this.compFormItem,
293
- dragItem: this.compDragItem,
294
- resizeItem: this.compResizeItem,
295
- removeItem: this.compRemoveItem,
296
- itemRef: this.item,
297
- selected: selected,
298
- tabIndex: this.currentTabIndex,
299
- onKeydown: this.handleKeyDown,
300
- on: this.v3 ? undefined : {
301
- "keydown": this.handleKeyDown,
302
- "keyup": this.handleKeyUp,
303
- "focus": this.handleFocus,
304
- "mouseup": this.handleMouseUp,
305
- "mousedown": this.handleMouseDown,
306
- "click": this.handleClick,
307
- "doubleclick": this.handleDoubleClick,
308
- "removeclick": this.handleRemoveClick,
309
- "press": this.handlePress,
310
- "drag": this.handleDrag,
311
- "release": this.handleRelease,
312
- "resizepress": this.handleResizePress,
313
- "resizeenddrag": this.handleResizeEndDrag,
314
- "resizestartdrag": this.handleResizeStartDrag,
315
- "resizerelease": this.handleResizeRelease
316
- },
317
- onKeyup: this.handleKeyUp
318
- // Focus
319
- ,
320
- onFocus: this.handleFocus
321
- // Mouse
322
- ,
323
- onMouseup: this.handleMouseUp,
324
- onMousedown: this.handleMouseDown,
325
- onClick: this.handleClick,
326
- onDoubleclick: this.handleDoubleClick,
327
- onRemoveclick: this.handleRemoveClick
328
- // Drag
329
- ,
330
- onPress: this.handlePress,
331
- onDrag: this.handleDrag,
332
- onRelease: this.handleRelease
333
- // Resize
334
- ,
335
- onResizepress: this.handleResizePress,
336
- onResizeenddrag: this.handleResizeEndDrag,
337
- onResizestartdrag: this.handleResizeStartDrag,
338
- onResizerelease: this.handleResizeRelease
339
- });
340
- itemRender = kendo_vue_common_1.getTemplate.call(this, {
341
- h: h,
342
- template: this.$props.viewItem,
343
- defaultRendering: itemRenderDefaultRendering,
344
- defaultSlots: defaultSlot,
345
- additionalListeners: {
346
- // keydown: this.handleKeyDown,
347
- // keyup: this.handleKeyUp,
348
- // Focus
349
- // focus: this.handleFocus,
350
- // Mouse
351
- // mouseup: this.handleMouseUp,
352
- // mousedown: this.handleMouseDown,
353
- // click: this.handleClick,
354
- doubleclick: this.handleDoubleClick,
355
- removeclick: this.handleRemoveClick,
356
- // Drag
357
- press: this.handlePress,
358
- drag: this.handleDrag,
359
- release: this.handleRelease,
360
- // Resize
361
- resizepress: this.handleResizePress,
362
- resizeenddrag: this.handleResizeEndDrag,
363
- resizestartdrag: this.handleResizeStartDrag,
364
- resizerelease: this.handleResizeRelease
365
- }
366
- });
367
- return itemRender;
368
- },
369
- methods: {
370
- dispatchSeries: function dispatchSeries(action, _event) {
371
- var newSeries = (0, use_series_1.seriesReducer)(this.compSeries, action);
372
- this.currentSeries = newSeries;
373
- this.$emit('serieschange', newSeries);
374
- },
375
- dispatchItemSelection: function dispatchItemSelection(action, event) {
376
- this.dispatchSelectedItems(action, event);
377
- },
378
- dispatchRemoveItem: function dispatchRemoveItem(action, _event) {
379
- var newRemoveItem;
380
- switch (action.type) {
381
- case use_remove_item_1.REMOVE_ITEM_ACTION.set:
382
- newRemoveItem = action.payload;
383
- break;
384
- case use_remove_item_1.REMOVE_ITEM_ACTION.reset:
385
- newRemoveItem = null;
386
- break;
387
- case use_remove_item_1.REMOVE_ITEM_ACTION.complete:
388
- if (this.compRemoveItem) {
389
- this.$emit('dataaction', {
390
- type: Scheduler_1.DATA_ACTION.remove,
391
- series: this.compSeries,
392
- dataItem: this.compRemoveItem
393
- });
394
- }
395
- newRemoveItem = null;
396
- break;
397
- default:
398
- newRemoveItem = this.compRemoveItem;
399
- break;
400
- }
401
- this.currentRemoveItem = newRemoveItem;
402
- this.$emit('removeitemchange', newRemoveItem);
403
- },
404
- dispatchShowOccurrenceDialog: function dispatchShowOccurrenceDialog(action, _event) {
405
- var newShowOccurrenceDialog = (0, use_show_occurrence_dialog_1.showOccurrenceDialogReducer)(this.compShowOccurrenceDialog, action);
406
- this.currentShowOccurrenceDialog = newShowOccurrenceDialog;
407
- this.$emit('showremovedialogchange', newShowOccurrenceDialog);
408
- },
409
- dispatchShowRemoveDialog: function dispatchShowRemoveDialog(action, _event) {
410
- var newShowRemoveDialog = (0, use_show_remove_item_dialog_1.showRemoveDialogReducer)(this.compShowRemoveDialog, action);
411
- this.currentShowRemoveDialog = newShowRemoveDialog;
412
- this.$emit('showremovedialogchange', newShowRemoveDialog);
413
- },
414
- dispatchDragItem: function dispatchDragItem(action, _event) {
415
- use_drag_item_1.useDragItem.call(this, action);
416
- },
417
- dispatchResizeItem: function dispatchResizeItem(action, event) {
418
- use_resize_item_1.useResizeItem.call(this, action, event);
419
- },
420
- dispatchViewSlotsFocus: function dispatchViewSlotsFocus(action, event) {
421
- this.dispatchFocusedSlots(action, event);
422
- },
423
- dispatchViewItemsFocus: function dispatchViewItemsFocus(action, event) {
424
- this.dispatchFocusedItems(action, event);
425
- },
426
- dispatchFormItem: function dispatchFormItem(action, _event) {
427
- var newFormItem;
428
- switch (action.type) {
429
- case use_form_item_1.FORM_ITEM_ACTION.set:
430
- newFormItem = action.payload;
431
- break;
432
- case use_form_item_1.FORM_ITEM_ACTION.reset:
433
- newFormItem = null;
434
- break;
435
- case use_form_item_1.FORM_ITEM_ACTION.setMaster:
436
- newFormItem = (0, kendo_vue_common_1.clone)((0, main_2.findMaster)(action.payload, this.ks.fields, this.ks.dataItems));
437
- break;
438
- case use_form_item_1.FORM_ITEM_ACTION.complete:
439
- if (this.compFormItem) {
440
- this.$emit('dataaction', {
441
- type: Scheduler_1.DATA_ACTION.update,
442
- series: this.compSeries,
443
- dataItem: action.payload
444
- });
445
- newFormItem = null;
446
- }
447
- break;
448
- default:
449
- newFormItem = this.compFormItem;
450
- break;
451
- }
452
- this.currentFormItem = newFormItem;
453
- this.$emit('formitemchange', newFormItem);
454
- },
455
- handleFocus: function handleFocus(event) {
456
- var _this = this;
457
- if (this.onFocusAction) {
458
- var actions = this.onFocusAction(event, this.$props);
459
- if (actions) {
460
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
461
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
462
- item: _this.dataItem
463
- }), event);
464
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
465
- item: this.dataItem
466
- }));
467
- }
468
- }
469
- this.$emit('focus', event);
470
- },
471
- handleMouseDown: function handleMouseDown(event) {
472
- var _this = this;
473
- if (this.onMouseDownAction) {
474
- var actions = this.onMouseDownAction(event, this.$props);
475
- if (actions) {
476
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
477
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
478
- item: _this.dataItem
479
- }), event);
480
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
481
- item: this.dataItem
482
- }));
483
- }
484
- }
485
- this.$emit('mousedown', event);
486
- },
487
- handleMouseUp: function handleMouseUp(event) {
488
- var _this = this;
489
- if (this.onMouseUpAction) {
490
- var actions = this.onMouseUpAction(event, this.$props);
491
- if (actions) {
492
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
493
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
494
- item: _this.dataItem
495
- }), event);
496
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
497
- item: this.dataItem
498
- }));
499
- }
500
- }
501
- this.$emit('mouseup', event);
502
- },
503
- handleClick: function handleClick(event) {
504
- var _this = this;
505
- if (this.onClickAction) {
506
- var actions = this.onClickAction(event, this.$props);
507
- if (actions) {
508
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
509
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
510
- item: _this.dataItem
511
- }), event);
512
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
513
- item: this.dataItem
514
- }));
515
- }
516
- }
517
- this.$emit('click', event);
518
- },
519
- handleDoubleClick: function handleDoubleClick(event) {
520
- if (this.onDoubleClickAction) {
521
- var actions = this.onDoubleClickAction(event, this.$props);
522
- var that_1 = this;
523
- if (actions) {
524
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
525
- return action && that_1.actionsReducerMap[action.type](__assign(__assign({}, action), {
526
- item: that_1.dataItem
527
- }), event);
528
- }) : that_1.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
529
- item: that_1.dataItem
530
- }));
531
- }
532
- }
533
- this.$emit('doubleclick', event);
534
- },
535
- handleRemoveClick: function handleRemoveClick(event) {
536
- var _this = this;
537
- if (this.onRemoveClickAction) {
538
- var actions = this.onRemoveClickAction(event, this.$props);
539
- if (actions) {
540
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
541
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
542
- item: _this.dataItem
543
- }), event);
544
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
545
- item: this.dataItem
546
- }));
547
- }
548
- }
549
- this.$emit('removeclick', event);
550
- },
551
- handlePress: function handlePress(event) {
552
- var _this = this;
553
- if (this.onPressAction) {
554
- var actions = this.onPressAction(event, this.$props);
555
- if (actions) {
556
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
557
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
558
- item: _this.dataItem
559
- }), event);
560
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
561
- item: this.dataItem
562
- }), event);
563
- }
564
- }
565
- this.$emit('press', event);
566
- },
567
- handleDrag: function handleDrag(event) {
568
- var _this = this;
569
- if (this.onDragAction) {
570
- var actions = this.onDragAction(event, this.$props);
571
- if (actions) {
572
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
573
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
574
- item: _this.dataItem
575
- }), event.dragEvent.originalEvent);
576
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
577
- item: this.dataItem
578
- }), event.dragEvent.originalEvent);
579
- }
580
- }
581
- this.$emit('drag', event);
582
- },
583
- handleRelease: function handleRelease(event) {
584
- var _this = this;
585
- if (this.onReleaseAction) {
586
- var actions = this.onReleaseAction(event, this.$props);
587
- if (actions) {
588
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
589
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
590
- item: _this.dataItem
591
- }), event.dragEvent.originalEvent);
592
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
593
- item: this.dataItem
594
- }), event.dragEvent.originalEvent);
595
- }
596
- }
597
- this.$emit('release', event);
598
- },
599
- handleResizePress: function handleResizePress(event) {
600
- var _this = this;
601
- if (this.onResizePressAction) {
602
- var actions = this.onResizePressAction(event, this.$props);
603
- if (actions) {
604
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
605
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
606
- item: _this.dataItem
607
- }), event.dragEvent.originalEvent);
608
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
609
- item: this.dataItem
610
- }), event.dragEvent.originalEvent);
611
- }
612
- }
613
- this.$emit('resizepress', event);
614
- },
615
- handleResizeStartDrag: function handleResizeStartDrag(event) {
616
- var _this = this;
617
- if (this.onResizeStartDragAction) {
618
- var actions = this.onResizeStartDragAction(event, this.$props);
619
- if (actions) {
620
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
621
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
622
- item: _this.dataItem
623
- }), event.dragEvent.originalEvent);
624
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
625
- item: this.dataItem
626
- }), event.dragEvent.originalEvent);
627
- }
628
- }
629
- this.$emit('resizestartdrag', event);
630
- },
631
- handleResizeEndDrag: function handleResizeEndDrag(event) {
632
- var _this = this;
633
- if (this.onResizeEndDragAction) {
634
- var actions = this.onResizeEndDragAction(event, this.$props);
635
- if (actions) {
636
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
637
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
638
- item: _this.dataItem
639
- }), event.dragEvent.originalEvent);
640
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
641
- item: this.dataItem
642
- }), event.dragEvent.originalEvent);
643
- }
644
- }
645
- this.$emit('resizeenddrag', event);
646
- },
647
- handleResizeRelease: function handleResizeRelease(event) {
648
- var _this = this;
649
- if (this.onResizeReleaseAction) {
650
- var actions = this.onResizeReleaseAction(event, this.$props);
651
- if (actions) {
652
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
653
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
654
- item: _this.dataItem
655
- }), event.dragEvent.originalEvent);
656
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
657
- item: this.dataItem
658
- }), event.dragEvent.originalEvent);
659
- }
660
- }
661
- this.$emit('resizerelease', event);
662
- },
663
- handleFormSubmit: function handleFormSubmit(event) {
664
- var _this = this;
665
- if (this.onFormSubmitAction) {
666
- var actions = this.onFormSubmitAction(event, this.$props);
667
- if (actions) {
668
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
669
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
670
- item: _this.dataItem
671
- }), event);
672
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
673
- item: this.dataItem
674
- }), event);
675
- }
676
- }
677
- this.$emit('formsubmit', event);
678
- },
679
- handleCancel: function handleCancel(event) {
680
- var _this = this;
681
- if (this.onCancelAction) {
682
- var actions = this.onCancelAction(event, this.$props);
683
- if (actions) {
684
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
685
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
686
- item: _this.dataItem
687
- }), event);
688
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
689
- item: this.dataItem
690
- }), event);
691
- }
692
- }
693
- this.$emit('cancel', event);
694
- },
695
- handleOccurrenceClick: function handleOccurrenceClick(event) {
696
- var _this = this;
697
- if (this.onOccurrenceClickAction) {
698
- var actions = this.onOccurrenceClickAction(event, this.$props);
699
- if (actions) {
700
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
701
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
702
- item: _this.dataItem
703
- }), event);
704
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
705
- item: this.dataItem
706
- }), event);
707
- }
708
- }
709
- this.$emit('occurrenceclick', event);
710
- },
711
- handleSeriesClick: function handleSeriesClick(event) {
712
- var _this = this;
713
- if (this.onSeriesClickAction) {
714
- var actions = this.onSeriesClickAction(event, this.$props);
715
- if (actions) {
716
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
717
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
718
- item: _this.dataItem
719
- }), event);
720
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
721
- item: this.dataItem
722
- }), event);
723
- }
724
- }
725
- this.$emit('seriesclick', event);
726
- },
727
- handleKeyDown: function handleKeyDown(event) {
728
- var _this = this;
729
- if (this.onKeyDownAction) {
730
- var actions = this.onKeyDownAction(event, this.$props);
731
- if (actions) {
732
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
733
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
734
- item: _this
735
- }), event.event);
736
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
737
- item: this
738
- }), event.event);
739
- }
740
- }
741
- this.$emit('keydown', event);
742
- },
743
- handleKeyUp: function handleKeyUp(event) {
744
- var _this = this;
745
- if (this.onKeyUpAction) {
746
- var actions = this.onKeyUpAction(event, this.$props);
747
- if (actions) {
748
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
749
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
750
- item: _this.dataItem
751
- }), event.event);
752
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
753
- item: this.dataItem
754
- }), event.event);
755
- }
756
- }
757
- this.$emit('keyup', event);
758
- },
759
- handleRemoveConfirm: function handleRemoveConfirm(event) {
760
- var _this = this;
761
- if (this.onRemoveConfirmAction) {
762
- var actions = this.onRemoveConfirmAction(event, this.$props);
763
- if (actions) {
764
- Array.isArray(actions) ? actions.filter(Boolean).map(function (action) {
765
- return action && _this.actionsReducerMap[action.type](__assign(__assign({}, action), {
766
- item: _this.dataItem
767
- }), event.event);
768
- }) : this.actionsReducerMap[actions.type](__assign(__assign({}, actions), {
769
- item: this.dataItem
770
- }), event.event);
771
- }
772
- }
773
- this.$emit('removeconfirm', event);
774
- },
775
- onClickAction: function onClickAction(event, _) {
776
- return [{
777
- type: event.event.metaKey || event.event.ctrlKey ? this.compSelected && !this.compDragItem && !this.compResizeItem ? use_items_selection_1.ITEMS_SELECT_ACTION.remove : use_items_selection_1.ITEMS_SELECT_ACTION.add : use_items_selection_1.ITEMS_SELECT_ACTION.select
778
- }];
779
- },
780
- onDoubleClickAction: function onDoubleClickAction(_, props) {
781
- return props.editable ? [{
782
- type: use_form_item_1.FORM_ITEM_ACTION.set,
783
- payload: props.dataItem
784
- }, props.isRecurring && {
785
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.open
786
- }].filter(Boolean) : [];
787
- },
788
- onRemoveClickAction: function onRemoveClickAction(_, props) {
789
- return props.editable ? [{
790
- type: use_remove_item_1.REMOVE_ITEM_ACTION.set,
791
- payload: props.dataItem
792
- }, props.isRecurring ? {
793
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.open
794
- } : {
795
- type: use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.open
796
- }] : [];
797
- },
798
- onPressAction: function onPressAction(event, props) {
799
- return props.editable ? {
800
- type: use_drag_item_1.DRAG_ITEM_ACTION.start,
801
- payload: {
802
- x: event.dragEvent.clientX,
803
- y: event.dragEvent.clientY
804
- }
805
- } : [];
806
- },
807
- onDragAction: function onDragAction(event, props) {
808
- return props.editable ? {
809
- type: event.dragEvent.originalEvent.metaKey || event.dragEvent.originalEvent.ctrlKey ? use_drag_item_1.DRAG_ITEM_ACTION.dragSelected : use_drag_item_1.DRAG_ITEM_ACTION.drag,
810
- payload: {
811
- x: event.dragEvent.clientX,
812
- y: event.dragEvent.clientY
813
- }
814
- } : [];
815
- },
816
- onReleaseAction: function onReleaseAction(event, props) {
817
- return props.editable && this.compDragItem ? props.isRecurring && !props.isException && this.compSeries === null ? {
818
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.open
819
- } : {
820
- type: props.isRecurring ? this.compSeries ? use_drag_item_1.DRAG_ITEM_ACTION.completeSeries : use_drag_item_1.DRAG_ITEM_ACTION.completeOccurrence : use_drag_item_1.DRAG_ITEM_ACTION.complete,
821
- payload: {
822
- x: event.dragEvent.clientX,
823
- y: event.dragEvent.clientY
824
- }
825
- } : [];
826
- },
827
- onResizePressAction: function onResizePressAction(event, props) {
828
- return props.editable ? {
829
- type: use_resize_item_1.RESIZE_ITEM_ACTION.start,
830
- payload: {
831
- x: event.dragEvent.clientX,
832
- y: event.dragEvent.clientY
833
- }
834
- } : [];
835
- },
836
- onResizeStartDragAction: function onResizeStartDragAction(event, props) {
837
- return props.editable ? {
838
- type: event.dragEvent.originalEvent.metaKey || event.dragEvent.originalEvent.ctrlKey ? use_resize_item_1.RESIZE_ITEM_ACTION.startDragSelected : use_resize_item_1.RESIZE_ITEM_ACTION.startDrag,
839
- payload: {
840
- x: event.dragEvent.clientX,
841
- y: event.dragEvent.clientY
842
- }
843
- } : [];
844
- },
845
- onResizeEndDragAction: function onResizeEndDragAction(event, props) {
846
- return props.editable ? {
847
- type: event.dragEvent.originalEvent.metaKey || event.dragEvent.originalEvent.ctrlKey ? use_resize_item_1.RESIZE_ITEM_ACTION.endDragSelected : use_resize_item_1.RESIZE_ITEM_ACTION.endDrag,
848
- payload: {
849
- x: event.dragEvent.clientX,
850
- y: event.dragEvent.clientY
851
- }
852
- } : [];
853
- },
854
- onResizeReleaseAction: function onResizeReleaseAction(event, props) {
855
- return props.editable && this.compResizeItem ? props.isRecurring && !props.isException && this.compSeries === null ? {
856
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.open
857
- } : {
858
- type: props.isRecurring ? this.compSeries ? use_resize_item_1.RESIZE_ITEM_ACTION.completeSeries : use_resize_item_1.RESIZE_ITEM_ACTION.completeOccurrence : use_resize_item_1.RESIZE_ITEM_ACTION.complete,
859
- payload: {
860
- x: event.dragEvent.clientX,
861
- y: event.dragEvent.clientY
862
- }
863
- } : [];
864
- },
865
- onOccurrenceClickAction: function onOccurrenceClickAction(_event, props) {
866
- if (this.compDragItem) {
867
- return [{
868
- type: use_drag_item_1.DRAG_ITEM_ACTION.completeOccurrence
869
- }, {
870
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close
871
- }];
872
- }
873
- if (this.compResizeItem) {
874
- return [{
875
- type: use_resize_item_1.RESIZE_ITEM_ACTION.completeOccurrence
876
- }, {
877
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close
878
- }];
879
- }
880
- if (this.compFormItem) {
881
- return [{
882
- type: use_series_1.SERIES_ACTION.set,
883
- payload: false
884
- }, {
885
- type: use_form_item_1.FORM_ITEM_ACTION.set,
886
- payload: props.dataItem
887
- }, {
888
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close
889
- }];
890
- }
891
- if (this.compRemoveItem) {
892
- return [{
893
- type: use_series_1.SERIES_ACTION.set,
894
- payload: false
895
- }, {
896
- type: use_remove_item_1.REMOVE_ITEM_ACTION.set,
897
- payload: props.dataItem
898
- }, {
899
- type: use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.open
900
- }, {
901
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close
902
- }];
903
- }
904
- },
905
- onSeriesClickAction: function onSeriesClickAction(_event, props) {
906
- if (this.compDragItem) {
907
- return [{
908
- type: use_drag_item_1.DRAG_ITEM_ACTION.completeSeries
909
- }, {
910
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close
911
- }];
912
- }
913
- if (this.compResizeItem) {
914
- return [{
915
- type: use_resize_item_1.RESIZE_ITEM_ACTION.completeSeries
916
- }, {
917
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close
918
- }];
919
- }
920
- if (this.compFormItem) {
921
- return [{
922
- type: use_series_1.SERIES_ACTION.set,
923
- payload: true
924
- }, {
925
- type: use_form_item_1.FORM_ITEM_ACTION.setMaster,
926
- payload: props.dataItem
927
- }, {
928
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close
929
- }];
930
- }
931
- if (this.compRemoveItem) {
932
- return [{
933
- type: use_series_1.SERIES_ACTION.set,
934
- payload: true
935
- }, {
936
- type: use_remove_item_1.REMOVE_ITEM_ACTION.set,
937
- payload: props.dataItem
938
- }, {
939
- type: use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.open
940
- }, {
941
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close
942
- }];
943
- }
944
- },
945
- onKeyDownAction: function onKeyDownAction(event, props) {
946
- var nextSlot;
947
- switch (event.event.keyCode) {
948
- case kendo_vue_common_1.Keys.enter:
949
- return [{
950
- type: use_form_item_1.FORM_ITEM_ACTION.set,
951
- payload: props.dataItem
952
- }, props.isRecurring && {
953
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.open
954
- }];
955
- case kendo_vue_common_1.Keys.tab:
956
- return [{
957
- type: event.event.shiftKey ? main_1.ITEMS_FOCUS_ACTION.prev : main_1.ITEMS_FOCUS_ACTION.next,
958
- ignoreIsAllDay: props.ignoreIsAllDay
959
- }, {
960
- type: event.event.shiftKey ? use_items_selection_1.ITEMS_SELECT_ACTION.selectPrev : use_items_selection_1.ITEMS_SELECT_ACTION.selectNext,
961
- ignoreIsAllDay: props.ignoreIsAllDay
962
- }];
963
- case kendo_vue_common_1.Keys.up:
964
- nextSlot = this.bv.slots.find(function (s) {
965
- return (0, main_2.compareSlots)(s.cSlot, props.slots[0]);
966
- });
967
- return [Boolean(props.slots.length && nextSlot) && {
968
- type: main_1.SLOTS_FOCUS_ACTION.up,
969
- slot: nextSlot
970
- }];
971
- case kendo_vue_common_1.Keys.right:
972
- nextSlot = this.bv.slots.find(function (s) {
973
- return (0, main_2.compareSlots)(s.cSlot, props.slots[0]);
974
- });
975
- return [Boolean(props.slots.length && nextSlot) && {
976
- type: main_1.SLOTS_FOCUS_ACTION.right,
977
- slot: nextSlot
978
- }];
979
- case kendo_vue_common_1.Keys.down:
980
- nextSlot = this.bv.slots.find(function (s) {
981
- return (0, main_2.compareSlots)(s.cSlot, props.slots[props.slots.length - 1]);
982
- });
983
- return [Boolean(props.slots.length && nextSlot) && {
984
- type: main_1.SLOTS_FOCUS_ACTION.down,
985
- slot: nextSlot
986
- }];
987
- case kendo_vue_common_1.Keys.left:
988
- nextSlot = this.bv.slots.find(function (s) {
989
- return (0, main_2.compareSlots)(s.cSlot.cSlot, props.slots[0]);
990
- });
991
- return [Boolean(props.slots.length && nextSlot) && {
992
- type: main_1.SLOTS_FOCUS_ACTION.left,
993
- slot: nextSlot
994
- }];
995
- case kendo_vue_common_1.Keys.delete:
996
- case kendo_vue_common_1.Keys.backspace:
997
- return [{
998
- type: use_remove_item_1.REMOVE_ITEM_ACTION.set,
999
- payload: props.dataItem
1000
- }, props.isRecurring ? {
1001
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.open
1002
- } : {
1003
- type: use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.open
1004
- }];
1005
- default:
1006
- return;
1007
- }
1008
- },
1009
- onFormSubmitAction: function onFormSubmitAction(event) {
1010
- return {
1011
- type: use_form_item_1.FORM_ITEM_ACTION.complete,
1012
- payload: event.value
1013
- };
1014
- },
1015
- onRemoveConfirmAction: function onRemoveConfirmAction() {
1016
- return [{
1017
- type: use_remove_item_1.REMOVE_ITEM_ACTION.complete
1018
- }, {
1019
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.close
1020
- }];
1021
- },
1022
- onCancelAction: function onCancelAction() {
1023
- return [{
1024
- type: use_series_1.SERIES_ACTION.reset
1025
- }, {
1026
- type: use_remove_item_1.REMOVE_ITEM_ACTION.reset
1027
- }, {
1028
- type: use_form_item_1.FORM_ITEM_ACTION.reset
1029
- }, {
1030
- type: use_drag_item_1.DRAG_ITEM_ACTION.reset
1031
- }, {
1032
- type: use_resize_item_1.RESIZE_ITEM_ACTION.reset
1033
- }, {
1034
- type: use_show_remove_item_dialog_1.SHOW_REMOVE_DIALOG_ACTION.reset
1035
- }, {
1036
- type: use_show_occurrence_dialog_1.SHOW_OCCURRENCE_DIALOG_ACTION.reset
1037
- }];
1038
- }
1039
- }
1040
- };
1041
- exports.SchedulerEditItemVue2 = SchedulerEditItemVue2;
1042
- /**
1043
- * @hidden
1044
- */
1045
- var SchedulerEditItem = SchedulerEditItemVue2;
1046
- exports.SchedulerEditItem = SchedulerEditItem;