@cwellt_software/cwellt-reactjs-lib 1.0.8 → 1.1.0

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 (715) hide show
  1. package/dist/content/icons/new-cw-icons/NewCwIcons.html +14 -6
  2. package/dist/content/icons/new-cw-icons/NewCwIcons.json +195 -1
  3. package/dist/content/icons/new-cw-icons/css/new-cw-icons.css +783 -198
  4. package/dist/content/icons/new-cw-icons/fonts/NewCwIcons.woff +0 -0
  5. package/dist/index.cjs.js +1629 -645
  6. package/dist/index.css +2 -2
  7. package/dist/index.d.ts +379 -106
  8. package/dist/index.es.js +1622 -647
  9. package/dist/playground/main.d.ts +4 -0
  10. package/dist/playground/main.d.ts.map +1 -0
  11. package/dist/src/common/classes/CwSelectList.js +12 -0
  12. package/dist/src/common/classes/CwSelectListItems.js +14 -0
  13. package/dist/src/common/functions/collections.js +18 -0
  14. package/dist/src/common/functions/colorManipulation.js +76 -0
  15. package/dist/src/common/functions/dsl/UiEventDSL.js +20 -0
  16. package/dist/src/common/functions/useSingleAndDoubleClicks.js +28 -0
  17. package/dist/src/common/interfaces/CwSelectListProps.js +1 -0
  18. package/dist/src/components/control/action/button/CwButton.js +13 -0
  19. package/dist/src/components/control/action/buttons/CwButtons.js +188 -0
  20. package/dist/src/components/control/action/contextmenu/CwContextMenu.js +43 -0
  21. package/dist/src/components/control/action/contextual-menu/CwContextualMenu.js +55 -0
  22. package/dist/src/components/control/action/search/CwSearch.d.ts +1 -1
  23. package/dist/src/components/control/action/search/CwSearch.d.ts.map +1 -1
  24. package/dist/src/components/control/action/search/CwSearch.js +67 -0
  25. package/dist/src/components/control/action/tooltip-dialog/CwTooltipDialog.js +11 -0
  26. package/dist/src/components/control/choice/checkbox/CwCheckbox.d.ts +1 -1
  27. package/dist/src/components/control/choice/checkbox/CwCheckbox.d.ts.map +1 -1
  28. package/dist/src/components/control/choice/checkbox/CwCheckbox.js +15 -0
  29. package/dist/src/components/control/choice/deprecated/MultiSelect_deprecated_.js +99 -0
  30. package/dist/src/components/control/choice/dropdown/CwDropdown.js +27 -0
  31. package/dist/src/components/control/choice/dropdown/CwDropdownContainer.d.ts.map +1 -1
  32. package/dist/src/components/control/choice/dropdown/CwDropdownContainer.js +30 -0
  33. package/dist/src/components/control/choice/dropdown/CwDropdownFilter.d.ts +10 -20
  34. package/dist/src/components/control/choice/dropdown/CwDropdownFilter.d.ts.map +1 -1
  35. package/dist/src/components/control/choice/dropdown/CwDropdownFilter.js +10 -0
  36. package/dist/src/components/control/choice/multi-filter/CwMultiFilter.js +298 -0
  37. package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.js +17 -0
  38. package/dist/src/components/control/choice/multiselect/CwHeadFilter.d.ts +1 -0
  39. package/dist/src/components/control/choice/multiselect/CwHeadFilter.d.ts.map +1 -1
  40. package/dist/src/components/control/choice/multiselect/CwHeadFilter.js +80 -0
  41. package/dist/src/components/control/choice/multiselect/CwMultiselect.d.ts.map +1 -1
  42. package/dist/src/components/control/choice/multiselect/CwMultiselect.js +393 -0
  43. package/dist/src/components/control/choice/multiselect/CwOptionList.d.ts +0 -1
  44. package/dist/src/components/control/choice/multiselect/CwOptionList.d.ts.map +1 -1
  45. package/dist/src/components/control/choice/multiselect/CwOptionList.js +36 -0
  46. package/dist/src/components/control/choice/option/CwOption.js +16 -0
  47. package/dist/src/components/control/choice/select/CwSelect.js +36 -0
  48. package/dist/src/components/control/choice/toggle/CwToggle.d.ts +8 -21
  49. package/dist/src/components/control/choice/toggle/CwToggle.d.ts.map +1 -1
  50. package/dist/src/components/control/choice/toggle/CwToggle.js +9 -0
  51. package/dist/src/components/control/choice/tree-view/CwTreeView.d.ts +15 -0
  52. package/dist/src/components/control/choice/tree-view/CwTreeView.d.ts.map +1 -0
  53. package/dist/src/components/control/input/any/CwInput.js +16 -0
  54. package/dist/src/components/control/input/color/CwColorPicker.d.ts +17 -0
  55. package/dist/src/components/control/input/color/CwColorPicker.d.ts.map +1 -0
  56. package/dist/src/components/control/input/color/CwColorPicker.js +210 -0
  57. package/dist/src/components/control/input/color/CwInputColor.d.ts +12 -0
  58. package/dist/src/components/control/input/color/CwInputColor.d.ts.map +1 -0
  59. package/dist/src/components/control/input/color/CwInputColor.js +142 -0
  60. package/dist/src/components/control/input/date/CwInputDate.js +29 -0
  61. package/dist/src/components/control/input/date-picker/CwInputDatePicker.js +109 -0
  62. package/dist/src/components/control/input/date-text/CwInputDateText.js +90 -0
  63. package/dist/src/components/control/input/datetime/CwInputDatetime.js +29 -0
  64. package/dist/src/components/control/input/digit/CwDigit.js +28 -0
  65. package/dist/src/components/control/input/file/CwFileUpload.d.ts.map +1 -1
  66. package/dist/src/components/control/input/file/CwFileUpload.js +52 -0
  67. package/dist/src/components/control/input/file/CwFileUploadMultiple.d.ts +15 -0
  68. package/dist/src/components/control/input/file/CwFileUploadMultiple.d.ts.map +1 -0
  69. package/dist/src/components/control/input/file/CwFileUploadMultiple.js +148 -0
  70. package/dist/src/components/control/input/image/CwInputImage.js +52 -0
  71. package/dist/src/components/control/input/image-area/CwImageArea.js +113 -0
  72. package/dist/src/components/control/input/number/CwInputNumber.js +11 -0
  73. package/dist/src/components/control/input/phone/CwInputPhone.js +24 -0
  74. package/dist/src/components/control/input/text/CwInputText.d.ts +1 -1
  75. package/dist/src/components/control/input/text/CwInputText.d.ts.map +1 -1
  76. package/dist/src/components/control/input/text/CwInputText.js +31 -0
  77. package/dist/src/components/control/input/text-area/CwTextArea.js +9 -0
  78. package/dist/src/components/control/input/time/CwTime.js +29 -0
  79. package/dist/src/components/control/input/weekday/CwWeekdaySelector.js +143 -0
  80. package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts +7 -24
  81. package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts.map +1 -1
  82. package/dist/src/components/custom/find-airport/CwFindAirportComp.js +240 -0
  83. package/dist/src/components/custom/scheduler/CwSchedulerComp.js +211 -0
  84. package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.d.ts.map +1 -1
  85. package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.js +269 -0
  86. package/dist/src/components/custom/scheduler/components/EventRender.js +142 -0
  87. package/dist/src/components/custom/scheduler/components/ResourceListRender.js +12 -0
  88. package/dist/src/components/custom/scheduler/components/ResourceRender.js +26 -0
  89. package/dist/src/components/custom/scheduler/components/day_headers/DayHeader.js +13 -0
  90. package/dist/src/components/custom/scheduler/components/day_headers/MonthHeader.js +12 -0
  91. package/dist/src/components/custom/scheduler/components/day_headers/MyDaysHeader.js +62 -0
  92. package/dist/src/components/custom/scheduler/components/day_headers/WeekHeader.js +13 -0
  93. package/dist/src/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.js +24 -0
  94. package/dist/src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.js +17 -0
  95. package/dist/src/components/custom/scheduler/components/scheduler_header/SchedulerHeader.js +26 -0
  96. package/dist/src/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
  97. package/dist/src/components/custom/scheduler/components/time_headers/TimeHeader.js +31 -0
  98. package/dist/src/components/custom/scheduler/components/time_headers/TimeHeaderRow.js +16 -0
  99. package/dist/src/components/custom/scheduler/components/time_line/TimeLine.js +12 -0
  100. package/dist/src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.js +5 -0
  101. package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.js +15 -0
  102. package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
  103. package/dist/src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.js +43 -0
  104. package/dist/src/components/custom/scheduler/logic/dates/getMonthHeaderData.js +35 -0
  105. package/dist/src/components/custom/scheduler/logic/dates/getUtcToday.js +6 -0
  106. package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
  107. package/dist/src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.js +55 -0
  108. package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisionType.js +13 -0
  109. package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisions.js +16 -0
  110. package/dist/src/components/custom/scheduler/logic/filtering/filterEvents.js +33 -0
  111. package/dist/src/components/custom/scheduler/logic/filtering/filterResources.js +14 -0
  112. package/dist/src/components/custom/scheduler/logic/filtering/hasSameProperties.js +10 -0
  113. package/dist/src/components/custom/scheduler/logic/onDrop/OnDrop.js +45 -0
  114. package/dist/src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.js +14 -0
  115. package/dist/src/components/custom/scheduler/logic/pixels/getPixelsForEvent.js +32 -0
  116. package/dist/src/components/custom/scheduler/logic/pixels/heightScheduler.js +14 -0
  117. package/dist/src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.js +9 -0
  118. package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.js +5 -0
  119. package/dist/src/components/custom/scheduler/logic/state_handle/handleResourceChange.js +11 -0
  120. package/dist/src/components/custom/scheduler/logic/state_handle/onDragOver.js +9 -0
  121. package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.js +3 -0
  122. package/dist/src/components/custom/scheduler/logic/strings/compareStrings.js +7 -0
  123. package/dist/src/components/custom/scheduler/logic/strings/getGUID.js +7 -0
  124. package/dist/src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.js +8 -0
  125. package/dist/src/components/custom/scheduler/logic/ui/getEventsOfResource.js +45 -0
  126. package/dist/src/components/custom/scheduler/logic/ui/getTimeHeaders.js +35 -0
  127. package/dist/src/components/custom/scheduler/logic/ui/isAllowedToMove.js +19 -0
  128. package/dist/src/components/custom/scheduler/logic/ui/updateResourceVisibility.js +15 -0
  129. package/dist/src/components/custom/scheduler/state/CblDragAndDrop.js +18 -0
  130. package/dist/src/components/custom/scheduler/state/CwSchedulerProps.js +1 -0
  131. package/dist/src/components/custom/scheduler/state/Resource.js +18 -0
  132. package/dist/src/components/custom/scheduler/state/State.js +1 -0
  133. package/dist/src/components/custom/scheduler/state/cblEvent.js +28 -0
  134. package/dist/src/components/custom/scheduler/state/cblEventCompProps.js +1 -0
  135. package/dist/src/components/custom/scheduler/state/resourceCompProps2.js +1 -0
  136. package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.d.ts.map +1 -1
  137. package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.js +123 -0
  138. package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.js +118 -0
  139. package/dist/src/components/custom/scheduler-new/presentation/SchedulerPresenter.js +166 -0
  140. package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderDivision.js +26 -0
  141. package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderTitle.js +8 -0
  142. package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.js +86 -0
  143. package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.js +1 -0
  144. package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.js +60 -0
  145. package/dist/src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.js +24 -0
  146. package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.d.ts.map +1 -1
  147. package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.js +150 -0
  148. package/dist/src/components/custom/scheduler-new/presentation/components/row/EventSideDrag.js +11 -0
  149. package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts.map +1 -1
  150. package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.js +176 -0
  151. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.js +8 -0
  152. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/TimeLine.js +39 -0
  153. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.js +8 -0
  154. package/dist/src/components/custom/scheduler-new/presentation/helpers.js +43 -0
  155. package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts.map +1 -1
  156. package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.js +24 -0
  157. package/dist/src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.js +7 -0
  158. package/dist/src/components/custom/scheduler-new/presentation/logic/eventIsVisible.js +7 -0
  159. package/dist/src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.js +113 -0
  160. package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.js +21 -0
  161. package/dist/src/components/custom/scheduler-new/presentation/logic/getEventSizes.js +30 -0
  162. package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.js +13 -0
  163. package/dist/src/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.js +7 -0
  164. package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.js +32 -0
  165. package/dist/src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.js +12 -0
  166. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.js +1 -0
  167. package/dist/src/components/custom/scheduler-new/presentation/state/ui/WeekRange.js +1 -0
  168. package/dist/src/components/custom/scheduler-temporal/CwSchedulerComp2.js +267 -0
  169. package/dist/src/components/custom/scheduler-temporal/CwSuperSchedulerComp.d.ts.map +1 -1
  170. package/dist/src/components/custom/scheduler-temporal/CwSuperSchedulerComp.js +269 -0
  171. package/dist/src/components/custom/scheduler-temporal/components/EventRender.js +142 -0
  172. package/dist/src/components/custom/scheduler-temporal/components/ResourceListRender.js +12 -0
  173. package/dist/src/components/custom/scheduler-temporal/components/ResourceRender.js +26 -0
  174. package/dist/src/components/custom/scheduler-temporal/components/day_headers/DayHeader.js +13 -0
  175. package/dist/src/components/custom/scheduler-temporal/components/day_headers/MonthHeader.js +12 -0
  176. package/dist/src/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.js +62 -0
  177. package/dist/src/components/custom/scheduler-temporal/components/day_headers/WeekHeader.js +13 -0
  178. package/dist/src/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.js +22 -0
  179. package/dist/src/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.js +17 -0
  180. package/dist/src/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.js +26 -0
  181. package/dist/src/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
  182. package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeader.js +31 -0
  183. package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.js +16 -0
  184. package/dist/src/components/custom/scheduler-temporal/components/time_line/TimeLine.js +12 -0
  185. package/dist/src/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.js +5 -0
  186. package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.js +15 -0
  187. package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
  188. package/dist/src/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.js +43 -0
  189. package/dist/src/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.js +35 -0
  190. package/dist/src/components/custom/scheduler-temporal/logic/dates/getUtcToday.js +6 -0
  191. package/dist/src/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
  192. package/dist/src/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.js +55 -0
  193. package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.js +13 -0
  194. package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.js +16 -0
  195. package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.js +10 -0
  196. package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterEvents.js +34 -0
  197. package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterResources.js +14 -0
  198. package/dist/src/components/custom/scheduler-temporal/logic/filtering/hasSameProperties.js +10 -0
  199. package/dist/src/components/custom/scheduler-temporal/logic/onDrop/OnDrop.js +36 -0
  200. package/dist/src/components/custom/scheduler-temporal/logic/pixels/getHeightLineScheduler.js +14 -0
  201. package/dist/src/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.js +32 -0
  202. package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightScheduler.js +14 -0
  203. package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightSchedulerPinned.js +9 -0
  204. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.js +5 -0
  205. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handlePropChanges.js +178 -0
  206. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handleResourceChange.js +11 -0
  207. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDragOver.js +9 -0
  208. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.js +3 -0
  209. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.js +3 -0
  210. package/dist/src/components/custom/scheduler-temporal/logic/strings/compareStrings.js +7 -0
  211. package/dist/src/components/custom/scheduler-temporal/logic/strings/getGUID.js +7 -0
  212. package/dist/src/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.js +9 -0
  213. package/dist/src/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.js +92 -0
  214. package/dist/src/components/custom/scheduler-temporal/logic/ui/getHasPropsChanged.js +242 -0
  215. package/dist/src/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.js +35 -0
  216. package/dist/src/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.js +19 -0
  217. package/dist/src/components/custom/scheduler-temporal/logic/ui/shouldTriggerScroll.js +241 -0
  218. package/dist/src/components/custom/scheduler-temporal/logic/ui/updateResourceVisibility.js +15 -0
  219. package/dist/src/components/custom/scheduler-temporal/state/CblDragAndDrop.js +18 -0
  220. package/dist/src/components/custom/scheduler-temporal/state/CwSchedulerProps.js +1 -0
  221. package/dist/src/components/custom/scheduler-temporal/state/Resource.js +18 -0
  222. package/dist/src/components/custom/scheduler-temporal/state/State.js +1 -0
  223. package/dist/src/components/custom/scheduler-temporal/state/cblEvent.js +28 -0
  224. package/dist/src/components/custom/scheduler-temporal/state/cblEventCompProps.js +1 -0
  225. package/dist/src/components/custom/scheduler-temporal/state/resourceCompProps2.js +1 -0
  226. package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts.map +1 -1
  227. package/dist/src/components/custom/super-scheduler/PinRowHeader.js +53 -0
  228. package/dist/src/components/custom/super-scheduler/SuperScheduler.js +23 -0
  229. package/dist/src/components/custom/super-scheduler/SuperSchedulerEvents.js +15 -0
  230. package/dist/src/components/custom/super-scheduler/SuperSchedulerPresenter.js +45 -0
  231. package/dist/src/components/display/data/accordion/CwAccordionContainer.js +20 -0
  232. package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.js +138 -0
  233. package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
  234. package/dist/src/components/display/data/table/CwTable.js +203 -0
  235. package/dist/src/components/display/graphics/icon/CwIcon.d.ts +5 -1
  236. package/dist/src/components/display/graphics/icon/CwIcon.d.ts.map +1 -1
  237. package/dist/src/components/display/graphics/icon/CwIcon.js +23 -0
  238. package/dist/src/components/display/graphics/image-gallery/CwImageGallery.d.ts +30 -0
  239. package/dist/src/components/display/graphics/image-gallery/CwImageGallery.d.ts.map +1 -0
  240. package/dist/src/components/display/graphics/image-zoom/CwImageZoom.d.ts +21 -0
  241. package/dist/src/components/display/graphics/image-zoom/CwImageZoom.d.ts.map +1 -0
  242. package/dist/src/components/display/graphics/loading/CwLoading.d.ts.map +1 -1
  243. package/dist/src/components/display/graphics/loading/CwLoading.js +27 -0
  244. package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.js +20 -0
  245. package/dist/src/components/display/text/heading/CwHeadingMain.js +5 -0
  246. package/dist/src/components/display/text/heading/CwHeadingSecond.js +5 -0
  247. package/dist/src/components/display/text/label/CwLabel.js +13 -0
  248. package/dist/src/components/display/text/message/CwMessage.d.ts +49 -2
  249. package/dist/src/components/display/text/message/CwMessage.d.ts.map +1 -1
  250. package/dist/src/components/display/text/message/CwMessage.js +75 -0
  251. package/dist/src/components/display/text/note/CwNote.d.ts +48 -0
  252. package/dist/src/components/display/text/note/CwNote.d.ts.map +1 -0
  253. package/dist/src/components/display/text/note/CwNote.js +78 -0
  254. package/dist/src/components/display/text/tag/CwChip.d.ts +1 -1
  255. package/dist/src/components/display/text/tag/CwChip.d.ts.map +1 -1
  256. package/dist/src/components/display/text/tag/CwChip.js +57 -0
  257. package/dist/src/components/display/text/tag/CwTag.d.ts +0 -1
  258. package/dist/src/components/display/text/tag/CwTag.d.ts.map +1 -1
  259. package/dist/src/components/display/text/tag/CwTag.js +21 -0
  260. package/dist/src/components/display/text/tooltip/CwTooltip.js +4 -0
  261. package/dist/src/components/layout/align/CwAlign.js +54 -0
  262. package/dist/src/components/layout/card/CwCard.js +55 -0
  263. package/dist/src/components/layout/card/CwCardList.d.ts +3 -5
  264. package/dist/src/components/layout/card/CwCardList.d.ts.map +1 -1
  265. package/dist/src/components/layout/card/CwCardList.js +38 -0
  266. package/dist/src/components/layout/confirmation-popup/CwConfirmationPopup.d.ts +18 -0
  267. package/dist/src/components/layout/confirmation-popup/CwConfirmationPopup.d.ts.map +1 -0
  268. package/dist/src/components/layout/dialog/CwDialog.d.ts +3 -1
  269. package/dist/src/components/layout/dialog/CwDialog.d.ts.map +1 -1
  270. package/dist/src/components/layout/dialog/CwDialog.js +255 -0
  271. package/dist/src/components/layout/dialog/CwDialogManager.js +44 -0
  272. package/dist/src/components/layout/list/details/CwExpandable.js +28 -0
  273. package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts +1 -0
  274. package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts.map +1 -1
  275. package/dist/src/components/layout/list/key-value/CwKeyValueList.js +23 -0
  276. package/dist/src/components/layout/list/sortable/CwSortableList.d.ts +60 -0
  277. package/dist/src/components/layout/list/sortable/CwSortableList.d.ts.map +1 -0
  278. package/dist/src/components/layout/list/sortable/CwSortableList.js +73 -0
  279. package/dist/src/components/layout/list/sortable/useSortableList.d.ts +58 -0
  280. package/dist/src/components/layout/list/sortable/useSortableList.d.ts.map +1 -0
  281. package/dist/src/components/layout/list/sortable/useSortableList.js +53 -0
  282. package/dist/src/components/layout/modal/CwModalReportFunctional.js +23 -0
  283. package/dist/src/components/layout/modal/hover/CwModalHover.js +61 -0
  284. package/dist/src/components/layout/modal/legacy/cw_modal.d.ts.map +1 -1
  285. package/dist/src/components/layout/modal/legacy/cw_modal.js +44 -0
  286. package/dist/src/components/layout/modal/legacy/cw_modal_confirm.js +39 -0
  287. package/dist/src/components/layout/modal/legacy/cw_modal_iframe.js +44 -0
  288. package/dist/src/components/layout/modal/legacy/cw_modal_report.js +26 -0
  289. package/dist/{components/layout/table/grouped/CwTableGrouped.d.ts → src/components/layout/table/grouped/CwTableGrouped.js} +13 -23
  290. package/dist/src/components/layout/tabs/CwTabs.d.ts +1 -2
  291. package/dist/src/components/layout/tabs/CwTabs.d.ts.map +1 -1
  292. package/dist/src/components/layout/tabs/CwTabs.js +53 -0
  293. package/dist/src/dev/index.d.ts +5 -0
  294. package/dist/src/dev/index.d.ts.map +1 -0
  295. package/dist/src/dev/palette.d.ts +4 -0
  296. package/dist/src/dev/palette.d.ts.map +1 -0
  297. package/dist/src/dev/previews.d.ts +3 -0
  298. package/dist/src/dev/previews.d.ts.map +1 -0
  299. package/dist/src/dev/useInitial.d.ts +3 -0
  300. package/dist/src/dev/useInitial.d.ts.map +1 -0
  301. package/dist/src/index.d.ts +11 -2
  302. package/dist/src/index.d.ts.map +1 -1
  303. package/dist/src/index.js +187 -0
  304. package/dist/test/components/custom/new-scheduler/presentation/logic/getDefaultDivisions.test.js +48 -0
  305. package/dist/test/components/custom/new-scheduler/presentation/logic/getEventSizes.test.d.ts +2 -0
  306. package/dist/test/components/custom/new-scheduler/presentation/logic/getEventSizes.test.d.ts.map +1 -0
  307. package/dist/test/components/custom/new-scheduler/presentation/logic/hoursBetween.test.js +15 -0
  308. package/dist/test/components/custom/new-scheduler/presentation/logic/monthDivisions.test.js +42 -0
  309. package/dist/test/components/custom/new-scheduler/presentation/logic/weekendCalc.test.js +30 -0
  310. package/dist/test/components/custom/scheduler/addMinutesToDateFromPx.test.js +43 -0
  311. package/dist/test/components/custom/scheduler/checkIfSlotAvailable.test.js +30 -0
  312. package/dist/test/components/custom/scheduler/daysBetweenTwoDates.test.js +61 -0
  313. package/dist/test/components/custom/scheduler/daysBetweenTwoDatesWithoutCeilForEvent.test.js +27 -0
  314. package/dist/test/components/custom/scheduler/getGUID.test.js +30 -0
  315. package/dist/test/components/custom/scheduler/getPixelsForEvent.test.js +38 -0
  316. package/dist/test/components/custom/scheduler/getTimeHeaders.test.js +35 -0
  317. package/dist/test/components/custom/scheduler/hasSameProperties.test.js +51 -0
  318. package/dist/test/components/custom/scheduler/isAllowedToMove.test.js +28 -0
  319. package/dist/test/components/custom/scheduler/listOfDatesToWeeks.test.js +72 -0
  320. package/dist/test/jest.setup.js +1 -0
  321. package/package.json +12 -5
  322. package/dist/common/classes/CwSelectList.d.ts +0 -8
  323. package/dist/common/classes/CwSelectList.d.ts.map +0 -1
  324. package/dist/common/classes/CwSelectListItems.d.ts +0 -9
  325. package/dist/common/classes/CwSelectListItems.d.ts.map +0 -1
  326. package/dist/common/functions/collections.d.ts +0 -15
  327. package/dist/common/functions/collections.d.ts.map +0 -1
  328. package/dist/common/functions/colorManipulation.d.ts +0 -6
  329. package/dist/common/functions/colorManipulation.d.ts.map +0 -1
  330. package/dist/common/functions/dsl/UiEventDSL.d.ts +0 -9
  331. package/dist/common/functions/dsl/UiEventDSL.d.ts.map +0 -1
  332. package/dist/common/functions/useSingleAndDoubleClicks.d.ts +0 -7
  333. package/dist/common/functions/useSingleAndDoubleClicks.d.ts.map +0 -1
  334. package/dist/common/interfaces/CwSelectListProps.d.ts +0 -9
  335. package/dist/common/interfaces/CwSelectListProps.d.ts.map +0 -1
  336. package/dist/components/control/action/button/CwButton.d.ts +0 -26
  337. package/dist/components/control/action/button/CwButton.d.ts.map +0 -1
  338. package/dist/components/control/action/buttons/CwButtons.d.ts +0 -59
  339. package/dist/components/control/action/buttons/CwButtons.d.ts.map +0 -1
  340. package/dist/components/control/action/contextmenu/CwContextMenu.d.ts +0 -23
  341. package/dist/components/control/action/contextmenu/CwContextMenu.d.ts.map +0 -1
  342. package/dist/components/control/action/contextual-menu/CwContextualMenu.d.ts +0 -29
  343. package/dist/components/control/action/contextual-menu/CwContextualMenu.d.ts.map +0 -1
  344. package/dist/components/control/action/search/CwSearch.d.ts +0 -16
  345. package/dist/components/control/action/search/CwSearch.d.ts.map +0 -1
  346. package/dist/components/control/choice/checkbox/CwCheckbox.d.ts +0 -17
  347. package/dist/components/control/choice/checkbox/CwCheckbox.d.ts.map +0 -1
  348. package/dist/components/control/choice/deprecated/MultiSelect_deprecated_.d.ts +0 -24
  349. package/dist/components/control/choice/deprecated/MultiSelect_deprecated_.d.ts.map +0 -1
  350. package/dist/components/control/choice/dropdown/CwDropdown.d.ts +0 -19
  351. package/dist/components/control/choice/dropdown/CwDropdown.d.ts.map +0 -1
  352. package/dist/components/control/choice/dropdown/CwDropdownContainer.d.ts +0 -17
  353. package/dist/components/control/choice/dropdown/CwDropdownContainer.d.ts.map +0 -1
  354. package/dist/components/control/choice/dropdown/CwDropdownFilter.d.ts +0 -28
  355. package/dist/components/control/choice/dropdown/CwDropdownFilter.d.ts.map +0 -1
  356. package/dist/components/control/choice/dropdown/CwDropdownNavigation.d.ts +0 -21
  357. package/dist/components/control/choice/dropdown/CwDropdownNavigation.d.ts.map +0 -1
  358. package/dist/components/control/choice/multi-filter/CwMultiFilter.d.ts +0 -158
  359. package/dist/components/control/choice/multi-filter/CwMultiFilter.d.ts.map +0 -1
  360. package/dist/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts +0 -33
  361. package/dist/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts.map +0 -1
  362. package/dist/components/control/choice/multiselect/CwHeadFilter.d.ts +0 -16
  363. package/dist/components/control/choice/multiselect/CwHeadFilter.d.ts.map +0 -1
  364. package/dist/components/control/choice/multiselect/CwMultiselect.d.ts +0 -13
  365. package/dist/components/control/choice/multiselect/CwMultiselect.d.ts.map +0 -1
  366. package/dist/components/control/choice/multiselect/CwOptionList.d.ts +0 -15
  367. package/dist/components/control/choice/multiselect/CwOptionList.d.ts.map +0 -1
  368. package/dist/components/control/choice/option/CwOption.d.ts +0 -17
  369. package/dist/components/control/choice/option/CwOption.d.ts.map +0 -1
  370. package/dist/components/control/choice/select/CwSelect.d.ts +0 -48
  371. package/dist/components/control/choice/select/CwSelect.d.ts.map +0 -1
  372. package/dist/components/control/choice/toggle/CwToggle.d.ts +0 -28
  373. package/dist/components/control/choice/toggle/CwToggle.d.ts.map +0 -1
  374. package/dist/components/control/input/any/CwInput.d.ts +0 -17
  375. package/dist/components/control/input/any/CwInput.d.ts.map +0 -1
  376. package/dist/components/control/input/date/CwInputDate.d.ts +0 -40
  377. package/dist/components/control/input/date/CwInputDate.d.ts.map +0 -1
  378. package/dist/components/control/input/date-picker/CwInputDatePicker.d.ts +0 -7
  379. package/dist/components/control/input/date-picker/CwInputDatePicker.d.ts.map +0 -1
  380. package/dist/components/control/input/date-text/CwInputDateText.d.ts +0 -38
  381. package/dist/components/control/input/date-text/CwInputDateText.d.ts.map +0 -1
  382. package/dist/components/control/input/datetime/CwInputDatetime.d.ts +0 -40
  383. package/dist/components/control/input/datetime/CwInputDatetime.d.ts.map +0 -1
  384. package/dist/components/control/input/digit/CwDigit.d.ts +0 -40
  385. package/dist/components/control/input/digit/CwDigit.d.ts.map +0 -1
  386. package/dist/components/control/input/file/CwFileUpload.d.ts +0 -18
  387. package/dist/components/control/input/file/CwFileUpload.d.ts.map +0 -1
  388. package/dist/components/control/input/image/CwInputImage.d.ts +0 -7
  389. package/dist/components/control/input/image/CwInputImage.d.ts.map +0 -1
  390. package/dist/components/control/input/image-area/CwImageArea.d.ts +0 -53
  391. package/dist/components/control/input/image-area/CwImageArea.d.ts.map +0 -1
  392. package/dist/components/control/input/number/CwInputNumber.d.ts +0 -20
  393. package/dist/components/control/input/number/CwInputNumber.d.ts.map +0 -1
  394. package/dist/components/control/input/phone/CwInputPhone.d.ts +0 -36
  395. package/dist/components/control/input/phone/CwInputPhone.d.ts.map +0 -1
  396. package/dist/components/control/input/text/CwInputText.d.ts +0 -40
  397. package/dist/components/control/input/text/CwInputText.d.ts.map +0 -1
  398. package/dist/components/control/input/text-area/CwTextArea.d.ts +0 -24
  399. package/dist/components/control/input/text-area/CwTextArea.d.ts.map +0 -1
  400. package/dist/components/control/input/time/CwTime.d.ts +0 -40
  401. package/dist/components/control/input/time/CwTime.d.ts.map +0 -1
  402. package/dist/components/control/input/weekday/CwWeekdaySelector.d.ts +0 -53
  403. package/dist/components/control/input/weekday/CwWeekdaySelector.d.ts.map +0 -1
  404. package/dist/components/custom/find-airport/CwFindAirportComp.d.ts +0 -35
  405. package/dist/components/custom/find-airport/CwFindAirportComp.d.ts.map +0 -1
  406. package/dist/components/custom/scheduler/CwSchedulerComp.d.ts +0 -19
  407. package/dist/components/custom/scheduler/CwSchedulerComp.d.ts.map +0 -1
  408. package/dist/components/custom/scheduler/CwSuperSchedulerComp.d.ts +0 -86
  409. package/dist/components/custom/scheduler/CwSuperSchedulerComp.d.ts.map +0 -1
  410. package/dist/components/custom/scheduler/components/EventRender.d.ts +0 -10
  411. package/dist/components/custom/scheduler/components/EventRender.d.ts.map +0 -1
  412. package/dist/components/custom/scheduler/components/ResourceListRender.d.ts +0 -20
  413. package/dist/components/custom/scheduler/components/ResourceListRender.d.ts.map +0 -1
  414. package/dist/components/custom/scheduler/components/ResourceRender.d.ts +0 -14
  415. package/dist/components/custom/scheduler/components/ResourceRender.d.ts.map +0 -1
  416. package/dist/components/custom/scheduler/components/day_headers/DayHeader.d.ts +0 -11
  417. package/dist/components/custom/scheduler/components/day_headers/DayHeader.d.ts.map +0 -1
  418. package/dist/components/custom/scheduler/components/day_headers/MonthHeader.d.ts +0 -11
  419. package/dist/components/custom/scheduler/components/day_headers/MonthHeader.d.ts.map +0 -1
  420. package/dist/components/custom/scheduler/components/day_headers/MyDaysHeader.d.ts +0 -13
  421. package/dist/components/custom/scheduler/components/day_headers/MyDaysHeader.d.ts.map +0 -1
  422. package/dist/components/custom/scheduler/components/day_headers/WeekHeader.d.ts +0 -11
  423. package/dist/components/custom/scheduler/components/day_headers/WeekHeader.d.ts.map +0 -1
  424. package/dist/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.d.ts +0 -14
  425. package/dist/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.d.ts.map +0 -1
  426. package/dist/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.d.ts +0 -23
  427. package/dist/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.d.ts.map +0 -1
  428. package/dist/components/custom/scheduler/components/scheduler_header/SchedulerHeader.d.ts +0 -8
  429. package/dist/components/custom/scheduler/components/scheduler_header/SchedulerHeader.d.ts.map +0 -1
  430. package/dist/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.d.ts +0 -12
  431. package/dist/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.d.ts.map +0 -1
  432. package/dist/components/custom/scheduler/components/time_headers/TimeHeader.d.ts +0 -12
  433. package/dist/components/custom/scheduler/components/time_headers/TimeHeader.d.ts.map +0 -1
  434. package/dist/components/custom/scheduler/components/time_headers/TimeHeaderRow.d.ts +0 -10
  435. package/dist/components/custom/scheduler/components/time_headers/TimeHeaderRow.d.ts.map +0 -1
  436. package/dist/components/custom/scheduler/components/time_line/TimeLine.d.ts +0 -12
  437. package/dist/components/custom/scheduler/components/time_line/TimeLine.d.ts.map +0 -1
  438. package/dist/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.d.ts +0 -2
  439. package/dist/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.d.ts.map +0 -1
  440. package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDates.d.ts +0 -2
  441. package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDates.d.ts.map +0 -1
  442. package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts +0 -2
  443. package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map +0 -1
  444. package/dist/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.d.ts +0 -7
  445. package/dist/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.d.ts.map +0 -1
  446. package/dist/components/custom/scheduler/logic/dates/getMonthHeaderData.d.ts +0 -10
  447. package/dist/components/custom/scheduler/logic/dates/getMonthHeaderData.d.ts.map +0 -1
  448. package/dist/components/custom/scheduler/logic/dates/getUtcToday.d.ts +0 -2
  449. package/dist/components/custom/scheduler/logic/dates/getUtcToday.d.ts.map +0 -1
  450. package/dist/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts +0 -7
  451. package/dist/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map +0 -1
  452. package/dist/components/custom/scheduler/logic/dates/listOfDatesToWeeks.d.ts +0 -8
  453. package/dist/components/custom/scheduler/logic/dates/listOfDatesToWeeks.d.ts.map +0 -1
  454. package/dist/components/custom/scheduler/logic/divisions/calculateDivisionType.d.ts +0 -2
  455. package/dist/components/custom/scheduler/logic/divisions/calculateDivisionType.d.ts.map +0 -1
  456. package/dist/components/custom/scheduler/logic/divisions/calculateDivisions.d.ts +0 -2
  457. package/dist/components/custom/scheduler/logic/divisions/calculateDivisions.d.ts.map +0 -1
  458. package/dist/components/custom/scheduler/logic/filtering/filterEvents.d.ts +0 -3
  459. package/dist/components/custom/scheduler/logic/filtering/filterEvents.d.ts.map +0 -1
  460. package/dist/components/custom/scheduler/logic/filtering/filterResources.d.ts +0 -3
  461. package/dist/components/custom/scheduler/logic/filtering/filterResources.d.ts.map +0 -1
  462. package/dist/components/custom/scheduler/logic/onDrop/OnDrop.d.ts +0 -13
  463. package/dist/components/custom/scheduler/logic/onDrop/OnDrop.d.ts.map +0 -1
  464. package/dist/components/custom/scheduler/logic/pixels/getPixelsForEvent.d.ts +0 -17
  465. package/dist/components/custom/scheduler/logic/pixels/getPixelsForEvent.d.ts.map +0 -1
  466. package/dist/components/custom/scheduler/logic/pixels/heightScheduler.d.ts +0 -3
  467. package/dist/components/custom/scheduler/logic/pixels/heightScheduler.d.ts.map +0 -1
  468. package/dist/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts +0 -4
  469. package/dist/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts.map +0 -1
  470. package/dist/components/custom/scheduler/logic/state_handle/onDragOver.d.ts +0 -2
  471. package/dist/components/custom/scheduler/logic/state_handle/onDragOver.d.ts.map +0 -1
  472. package/dist/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts +0 -5
  473. package/dist/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts.map +0 -1
  474. package/dist/components/custom/scheduler/logic/strings/compareStrings.d.ts +0 -2
  475. package/dist/components/custom/scheduler/logic/strings/compareStrings.d.ts.map +0 -1
  476. package/dist/components/custom/scheduler/logic/strings/getGUID.d.ts +0 -2
  477. package/dist/components/custom/scheduler/logic/strings/getGUID.d.ts.map +0 -1
  478. package/dist/components/custom/scheduler/logic/ui/checkIfSlotAvailable.d.ts +0 -3
  479. package/dist/components/custom/scheduler/logic/ui/checkIfSlotAvailable.d.ts.map +0 -1
  480. package/dist/components/custom/scheduler/logic/ui/getEventsOfResource.d.ts +0 -4
  481. package/dist/components/custom/scheduler/logic/ui/getEventsOfResource.d.ts.map +0 -1
  482. package/dist/components/custom/scheduler/logic/ui/getTimeHeaders.d.ts +0 -2
  483. package/dist/components/custom/scheduler/logic/ui/getTimeHeaders.d.ts.map +0 -1
  484. package/dist/components/custom/scheduler/logic/ui/isAllowedToMove.d.ts +0 -3
  485. package/dist/components/custom/scheduler/logic/ui/isAllowedToMove.d.ts.map +0 -1
  486. package/dist/components/custom/scheduler/state/CblDragAndDrop.d.ts +0 -11
  487. package/dist/components/custom/scheduler/state/CblDragAndDrop.d.ts.map +0 -1
  488. package/dist/components/custom/scheduler/state/CwSchedulerProps.d.ts +0 -43
  489. package/dist/components/custom/scheduler/state/CwSchedulerProps.d.ts.map +0 -1
  490. package/dist/components/custom/scheduler/state/Resource.d.ts +0 -14
  491. package/dist/components/custom/scheduler/state/Resource.d.ts.map +0 -1
  492. package/dist/components/custom/scheduler/state/State.d.ts +0 -19
  493. package/dist/components/custom/scheduler/state/State.d.ts.map +0 -1
  494. package/dist/components/custom/scheduler/state/cblEvent.d.ts +0 -18
  495. package/dist/components/custom/scheduler/state/cblEvent.d.ts.map +0 -1
  496. package/dist/components/custom/scheduler/state/cblEventCompProps.d.ts +0 -7
  497. package/dist/components/custom/scheduler/state/cblEventCompProps.d.ts.map +0 -1
  498. package/dist/components/custom/scheduler/state/resourceCompProps2.d.ts +0 -6
  499. package/dist/components/custom/scheduler/state/resourceCompProps2.d.ts.map +0 -1
  500. package/dist/components/custom/scheduler-new/presentation/NewScheduler.d.ts +0 -29
  501. package/dist/components/custom/scheduler-new/presentation/NewScheduler.d.ts.map +0 -1
  502. package/dist/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts +0 -80
  503. package/dist/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts.map +0 -1
  504. package/dist/components/custom/scheduler-new/presentation/SchedulerPresenter.d.ts +0 -27
  505. package/dist/components/custom/scheduler-new/presentation/SchedulerPresenter.d.ts.map +0 -1
  506. package/dist/components/custom/scheduler-new/presentation/components/header/HeaderDivision.d.ts +0 -19
  507. package/dist/components/custom/scheduler-new/presentation/components/header/HeaderDivision.d.ts.map +0 -1
  508. package/dist/components/custom/scheduler-new/presentation/components/header/HeaderTitle.d.ts +0 -10
  509. package/dist/components/custom/scheduler-new/presentation/components/header/HeaderTitle.d.ts.map +0 -1
  510. package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.d.ts +0 -5
  511. package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.d.ts.map +0 -1
  512. package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.d.ts +0 -17
  513. package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.d.ts.map +0 -1
  514. package/dist/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts +0 -8
  515. package/dist/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts.map +0 -1
  516. package/dist/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.d.ts +0 -17
  517. package/dist/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.d.ts.map +0 -1
  518. package/dist/components/custom/scheduler-new/presentation/components/row/Event.d.ts +0 -34
  519. package/dist/components/custom/scheduler-new/presentation/components/row/Event.d.ts.map +0 -1
  520. package/dist/components/custom/scheduler-new/presentation/components/row/EventSideDrag.d.ts +0 -8
  521. package/dist/components/custom/scheduler-new/presentation/components/row/EventSideDrag.d.ts.map +0 -1
  522. package/dist/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts +0 -27
  523. package/dist/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts.map +0 -1
  524. package/dist/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts +0 -10
  525. package/dist/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts.map +0 -1
  526. package/dist/components/custom/scheduler-new/presentation/components/timeline/TimeLine.d.ts +0 -15
  527. package/dist/components/custom/scheduler-new/presentation/components/timeline/TimeLine.d.ts.map +0 -1
  528. package/dist/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.d.ts +0 -11
  529. package/dist/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.d.ts.map +0 -1
  530. package/dist/components/custom/scheduler-new/presentation/helpers.d.ts +0 -19
  531. package/dist/components/custom/scheduler-new/presentation/helpers.d.ts.map +0 -1
  532. package/dist/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts +0 -4
  533. package/dist/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts.map +0 -1
  534. package/dist/components/custom/scheduler-new/presentation/logic/dateFromPercentage.d.ts +0 -2
  535. package/dist/components/custom/scheduler-new/presentation/logic/dateFromPercentage.d.ts.map +0 -1
  536. package/dist/components/custom/scheduler-new/presentation/logic/eventIsVisible.d.ts +0 -2
  537. package/dist/components/custom/scheduler-new/presentation/logic/eventIsVisible.d.ts.map +0 -1
  538. package/dist/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.d.ts +0 -6
  539. package/dist/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.d.ts.map +0 -1
  540. package/dist/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts +0 -3
  541. package/dist/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts.map +0 -1
  542. package/dist/components/custom/scheduler-new/presentation/logic/getEventSizes.d.ts +0 -6
  543. package/dist/components/custom/scheduler-new/presentation/logic/getEventSizes.d.ts.map +0 -1
  544. package/dist/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts +0 -4
  545. package/dist/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts.map +0 -1
  546. package/dist/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.d.ts +0 -2
  547. package/dist/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.d.ts.map +0 -1
  548. package/dist/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.d.ts +0 -3
  549. package/dist/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.d.ts.map +0 -1
  550. package/dist/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.d.ts +0 -4
  551. package/dist/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.d.ts.map +0 -1
  552. package/dist/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts +0 -12
  553. package/dist/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts.map +0 -1
  554. package/dist/components/custom/scheduler-new/presentation/state/ui/WeekRange.d.ts +0 -5
  555. package/dist/components/custom/scheduler-new/presentation/state/ui/WeekRange.d.ts.map +0 -1
  556. package/dist/components/custom/scheduler-temporal/CwSchedulerComp2.d.ts +0 -24
  557. package/dist/components/custom/scheduler-temporal/CwSchedulerComp2.d.ts.map +0 -1
  558. package/dist/components/custom/scheduler-temporal/CwSuperSchedulerComp.d.ts +0 -86
  559. package/dist/components/custom/scheduler-temporal/CwSuperSchedulerComp.d.ts.map +0 -1
  560. package/dist/components/custom/scheduler-temporal/components/EventRender.d.ts +0 -10
  561. package/dist/components/custom/scheduler-temporal/components/EventRender.d.ts.map +0 -1
  562. package/dist/components/custom/scheduler-temporal/components/ResourceListRender.d.ts +0 -20
  563. package/dist/components/custom/scheduler-temporal/components/ResourceListRender.d.ts.map +0 -1
  564. package/dist/components/custom/scheduler-temporal/components/ResourceRender.d.ts +0 -14
  565. package/dist/components/custom/scheduler-temporal/components/ResourceRender.d.ts.map +0 -1
  566. package/dist/components/custom/scheduler-temporal/components/day_headers/DayHeader.d.ts +0 -11
  567. package/dist/components/custom/scheduler-temporal/components/day_headers/DayHeader.d.ts.map +0 -1
  568. package/dist/components/custom/scheduler-temporal/components/day_headers/MonthHeader.d.ts +0 -11
  569. package/dist/components/custom/scheduler-temporal/components/day_headers/MonthHeader.d.ts.map +0 -1
  570. package/dist/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.d.ts +0 -13
  571. package/dist/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.d.ts.map +0 -1
  572. package/dist/components/custom/scheduler-temporal/components/day_headers/WeekHeader.d.ts +0 -11
  573. package/dist/components/custom/scheduler-temporal/components/day_headers/WeekHeader.d.ts.map +0 -1
  574. package/dist/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.d.ts +0 -14
  575. package/dist/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.d.ts.map +0 -1
  576. package/dist/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.d.ts +0 -23
  577. package/dist/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.d.ts.map +0 -1
  578. package/dist/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.d.ts +0 -8
  579. package/dist/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.d.ts.map +0 -1
  580. package/dist/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.d.ts +0 -12
  581. package/dist/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.d.ts.map +0 -1
  582. package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeader.d.ts +0 -12
  583. package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeader.d.ts.map +0 -1
  584. package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.d.ts +0 -10
  585. package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.d.ts.map +0 -1
  586. package/dist/components/custom/scheduler-temporal/components/time_line/TimeLine.d.ts +0 -12
  587. package/dist/components/custom/scheduler-temporal/components/time_line/TimeLine.d.ts.map +0 -1
  588. package/dist/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.d.ts +0 -2
  589. package/dist/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.d.ts.map +0 -1
  590. package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.d.ts +0 -2
  591. package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.d.ts.map +0 -1
  592. package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts +0 -2
  593. package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map +0 -1
  594. package/dist/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.d.ts +0 -7
  595. package/dist/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.d.ts.map +0 -1
  596. package/dist/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.d.ts +0 -10
  597. package/dist/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.d.ts.map +0 -1
  598. package/dist/components/custom/scheduler-temporal/logic/dates/getUtcToday.d.ts +0 -2
  599. package/dist/components/custom/scheduler-temporal/logic/dates/getUtcToday.d.ts.map +0 -1
  600. package/dist/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.d.ts +0 -7
  601. package/dist/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map +0 -1
  602. package/dist/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.d.ts +0 -8
  603. package/dist/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.d.ts.map +0 -1
  604. package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.d.ts +0 -2
  605. package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.d.ts.map +0 -1
  606. package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.d.ts +0 -2
  607. package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.d.ts.map +0 -1
  608. package/dist/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.d.ts +0 -15
  609. package/dist/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.d.ts.map +0 -1
  610. package/dist/components/custom/scheduler-temporal/logic/filtering/filterEvents.d.ts +0 -3
  611. package/dist/components/custom/scheduler-temporal/logic/filtering/filterEvents.d.ts.map +0 -1
  612. package/dist/components/custom/scheduler-temporal/logic/filtering/filterResources.d.ts +0 -3
  613. package/dist/components/custom/scheduler-temporal/logic/filtering/filterResources.d.ts.map +0 -1
  614. package/dist/components/custom/scheduler-temporal/logic/onDrop/OnDrop.d.ts +0 -13
  615. package/dist/components/custom/scheduler-temporal/logic/onDrop/OnDrop.d.ts.map +0 -1
  616. package/dist/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.d.ts +0 -17
  617. package/dist/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.d.ts.map +0 -1
  618. package/dist/components/custom/scheduler-temporal/logic/pixels/heightScheduler.d.ts +0 -3
  619. package/dist/components/custom/scheduler-temporal/logic/pixels/heightScheduler.d.ts.map +0 -1
  620. package/dist/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.d.ts +0 -4
  621. package/dist/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.d.ts.map +0 -1
  622. package/dist/components/custom/scheduler-temporal/logic/state_handle/onDragOver.d.ts +0 -2
  623. package/dist/components/custom/scheduler-temporal/logic/state_handle/onDragOver.d.ts.map +0 -1
  624. package/dist/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.d.ts +0 -5
  625. package/dist/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.d.ts.map +0 -1
  626. package/dist/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.d.ts +0 -4
  627. package/dist/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.d.ts.map +0 -1
  628. package/dist/components/custom/scheduler-temporal/logic/strings/compareStrings.d.ts +0 -2
  629. package/dist/components/custom/scheduler-temporal/logic/strings/compareStrings.d.ts.map +0 -1
  630. package/dist/components/custom/scheduler-temporal/logic/strings/getGUID.d.ts +0 -2
  631. package/dist/components/custom/scheduler-temporal/logic/strings/getGUID.d.ts.map +0 -1
  632. package/dist/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.d.ts +0 -3
  633. package/dist/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.d.ts.map +0 -1
  634. package/dist/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.d.ts +0 -6
  635. package/dist/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.d.ts.map +0 -1
  636. package/dist/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.d.ts +0 -2
  637. package/dist/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.d.ts.map +0 -1
  638. package/dist/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.d.ts +0 -3
  639. package/dist/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.d.ts.map +0 -1
  640. package/dist/components/custom/scheduler-temporal/state/CblDragAndDrop.d.ts +0 -11
  641. package/dist/components/custom/scheduler-temporal/state/CblDragAndDrop.d.ts.map +0 -1
  642. package/dist/components/custom/scheduler-temporal/state/CwSchedulerProps.d.ts +0 -43
  643. package/dist/components/custom/scheduler-temporal/state/CwSchedulerProps.d.ts.map +0 -1
  644. package/dist/components/custom/scheduler-temporal/state/Resource.d.ts +0 -14
  645. package/dist/components/custom/scheduler-temporal/state/Resource.d.ts.map +0 -1
  646. package/dist/components/custom/scheduler-temporal/state/State.d.ts +0 -25
  647. package/dist/components/custom/scheduler-temporal/state/State.d.ts.map +0 -1
  648. package/dist/components/custom/scheduler-temporal/state/cblEvent.d.ts +0 -18
  649. package/dist/components/custom/scheduler-temporal/state/cblEvent.d.ts.map +0 -1
  650. package/dist/components/custom/scheduler-temporal/state/cblEventCompProps.d.ts +0 -7
  651. package/dist/components/custom/scheduler-temporal/state/cblEventCompProps.d.ts.map +0 -1
  652. package/dist/components/custom/super-scheduler/PinRowHeader.d.ts +0 -15
  653. package/dist/components/custom/super-scheduler/PinRowHeader.d.ts.map +0 -1
  654. package/dist/components/custom/super-scheduler/SuperScheduler.d.ts +0 -25
  655. package/dist/components/custom/super-scheduler/SuperScheduler.d.ts.map +0 -1
  656. package/dist/components/custom/super-scheduler/SuperSchedulerEvents.d.ts +0 -13
  657. package/dist/components/custom/super-scheduler/SuperSchedulerEvents.d.ts.map +0 -1
  658. package/dist/components/custom/super-scheduler/SuperSchedulerPresenter.d.ts +0 -9
  659. package/dist/components/custom/super-scheduler/SuperSchedulerPresenter.d.ts.map +0 -1
  660. package/dist/components/display/data/accordion/CwAccordionContainer.d.ts +0 -14
  661. package/dist/components/display/data/accordion/CwAccordionContainer.d.ts.map +0 -1
  662. package/dist/components/display/data/generic_tooltip/CwGenericTooltip.d.ts +0 -15
  663. package/dist/components/display/data/generic_tooltip/CwGenericTooltip.d.ts.map +0 -1
  664. package/dist/components/display/data/table/CwTable.d.ts +0 -102
  665. package/dist/components/display/data/table/CwTable.d.ts.map +0 -1
  666. package/dist/components/display/graphics/icon/CwIcon.d.ts +0 -15
  667. package/dist/components/display/graphics/icon/CwIcon.d.ts.map +0 -1
  668. package/dist/components/display/graphics/loading/CwLoading.d.ts +0 -42
  669. package/dist/components/display/graphics/loading/CwLoading.d.ts.map +0 -1
  670. package/dist/components/display/graphics/loading-small/CwLoadingSmall.d.ts +0 -18
  671. package/dist/components/display/graphics/loading-small/CwLoadingSmall.d.ts.map +0 -1
  672. package/dist/components/display/text/heading/CwHeadingMain.d.ts +0 -3
  673. package/dist/components/display/text/heading/CwHeadingMain.d.ts.map +0 -1
  674. package/dist/components/display/text/heading/CwHeadingSecond.d.ts +0 -3
  675. package/dist/components/display/text/heading/CwHeadingSecond.d.ts.map +0 -1
  676. package/dist/components/display/text/label/CwLabel.d.ts +0 -28
  677. package/dist/components/display/text/label/CwLabel.d.ts.map +0 -1
  678. package/dist/components/display/text/message/CwMessage.d.ts +0 -31
  679. package/dist/components/display/text/message/CwMessage.d.ts.map +0 -1
  680. package/dist/components/display/text/tag/CwChip.d.ts +0 -36
  681. package/dist/components/display/text/tag/CwChip.d.ts.map +0 -1
  682. package/dist/components/display/text/tag/CwTag.d.ts +0 -16
  683. package/dist/components/display/text/tag/CwTag.d.ts.map +0 -1
  684. package/dist/components/display/text/tooltip/CwTooltip.d.ts +0 -8
  685. package/dist/components/display/text/tooltip/CwTooltip.d.ts.map +0 -1
  686. package/dist/components/layout/align/CwAlign.d.ts +0 -54
  687. package/dist/components/layout/align/CwAlign.d.ts.map +0 -1
  688. package/dist/components/layout/card/CwCard.d.ts +0 -61
  689. package/dist/components/layout/card/CwCard.d.ts.map +0 -1
  690. package/dist/components/layout/card/CwCardList.d.ts +0 -32
  691. package/dist/components/layout/card/CwCardList.d.ts.map +0 -1
  692. package/dist/components/layout/dialog/CwDialog.d.ts +0 -28
  693. package/dist/components/layout/dialog/CwDialog.d.ts.map +0 -1
  694. package/dist/components/layout/dialog/CwDialogManager.d.ts +0 -11
  695. package/dist/components/layout/dialog/CwDialogManager.d.ts.map +0 -1
  696. package/dist/components/layout/list/details/CwExpandable.d.ts +0 -23
  697. package/dist/components/layout/list/details/CwExpandable.d.ts.map +0 -1
  698. package/dist/components/layout/list/key-value/CwKeyValueList.d.ts +0 -33
  699. package/dist/components/layout/list/key-value/CwKeyValueList.d.ts.map +0 -1
  700. package/dist/components/layout/modal/CwModalReportFunctional.d.ts +0 -15
  701. package/dist/components/layout/modal/CwModalReportFunctional.d.ts.map +0 -1
  702. package/dist/components/layout/modal/hover/CwModalHover.d.ts +0 -19
  703. package/dist/components/layout/modal/hover/CwModalHover.d.ts.map +0 -1
  704. package/dist/components/layout/modal/legacy/cw_modal.d.ts +0 -22
  705. package/dist/components/layout/modal/legacy/cw_modal.d.ts.map +0 -1
  706. package/dist/components/layout/modal/legacy/cw_modal_confirm.d.ts +0 -16
  707. package/dist/components/layout/modal/legacy/cw_modal_confirm.d.ts.map +0 -1
  708. package/dist/components/layout/modal/legacy/cw_modal_iframe.d.ts +0 -21
  709. package/dist/components/layout/modal/legacy/cw_modal_iframe.d.ts.map +0 -1
  710. package/dist/components/layout/modal/legacy/cw_modal_report.d.ts +0 -32
  711. package/dist/components/layout/modal/legacy/cw_modal_report.d.ts.map +0 -1
  712. package/dist/components/layout/table/grouped/CwTableGrouped.d.ts.map +0 -1
  713. package/dist/components/layout/tabs/CwTabs.d.ts +0 -46
  714. package/dist/components/layout/tabs/CwTabs.d.ts.map +0 -1
  715. package/dist/index.d.ts.map +0 -1
@@ -1 +0,0 @@
1
- {"version":3,"file":"DayHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/day_headers/DayHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAEhC,UAAU,cAAc;IACvB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,SAAS,EAAE,EAAE,CAAC,cAAc,CAexC,CAAC;AAEF,eAAO,MAAM,QAAQ,+CAWpB,CAAC"}
@@ -1,11 +0,0 @@
1
- import type { FC } from "react";
2
- interface WeekHeaderProps {
3
- index: number;
4
- text: string;
5
- width: number;
6
- headerType: string;
7
- }
8
- export declare const MonthHeader: FC<WeekHeaderProps>;
9
- export declare const _preview: () => import("react/jsx-runtime").JSX.Element;
10
- export {};
11
- //# sourceMappingURL=MonthHeader.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MonthHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/day_headers/MonthHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAEhC,UAAU,eAAe;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,eAAe,CAc3C,CAAC;AAEF,eAAO,MAAM,QAAQ,+CAuBpB,CAAC"}
@@ -1,13 +0,0 @@
1
- import type { FC } from "react";
2
- interface DaysHeaderProps {
3
- days: Date[];
4
- divisionType: "d" | "w" | "m";
5
- maxWidth: number;
6
- headerType: string;
7
- }
8
- export declare const DaysHeader: FC<DaysHeaderProps>;
9
- export declare const _DaysPreview: () => import("react/jsx-runtime").JSX.Element;
10
- export declare const _WeeksPreview: () => import("react/jsx-runtime").JSX.Element;
11
- export declare const _MonthsPreview: () => import("react/jsx-runtime").JSX.Element;
12
- export {};
13
- //# sourceMappingURL=MyDaysHeader.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"MyDaysHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/day_headers/MyDaysHeader.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAShC,UAAU,eAAe;IACxB,IAAI,EAAE,IAAI,EAAE,CAAC;IACb,YAAY,EAAE,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IAC9B,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CAqD1C,CAAC;AAEF,eAAO,MAAM,YAAY,+CAaxB,CAAC;AAEF,eAAO,MAAM,aAAa,+CAazB,CAAC;AAEF,eAAO,MAAM,cAAc,+CAa1B,CAAC"}
@@ -1,11 +0,0 @@
1
- import type { FC } from "react";
2
- interface WeekHeaderProps {
3
- index: number;
4
- text: string;
5
- width: number;
6
- headerType: string;
7
- }
8
- export declare const WeekHeader: FC<WeekHeaderProps>;
9
- export declare const _preview: () => import("react/jsx-runtime").JSX.Element;
10
- export {};
11
- //# sourceMappingURL=WeekHeader.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"WeekHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/day_headers/WeekHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAEhC,UAAU,eAAe;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CAiB1C,CAAC;AAEF,eAAO,MAAM,QAAQ,+CAWpB,CAAC"}
@@ -1,14 +0,0 @@
1
- import { type FC } from "react";
2
- import type { resourceCompProps2 } from "../../CwSuperSchedulerComp";
3
- import type { Resource } from "../../state/Resource";
4
- interface ResourcesTitleListProps {
5
- resources: Resource[];
6
- canBePinned: boolean;
7
- includesPinned: boolean;
8
- onCrewPinning: (resource: Resource, text: string) => void;
9
- onClickResourceContextMenu: (event: any, resource: Resource) => void;
10
- ResourceTitleComponent: FC<resourceCompProps2>;
11
- }
12
- export declare const ResourcesTitleList: FC<ResourcesTitleListProps>;
13
- export {};
14
- //# sourceMappingURL=ResourcesTitleList.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ResourcesTitleList.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAe,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,4BAA4B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,UAAU,uBAAuB;IAChC,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,WAAW,EAAE,OAAO,CAAC;IACrB,cAAc,EAAE,OAAO,CAAC;IACxB,aAAa,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,KAAK,IAAI,CAAC;IAC1D,0BAA0B,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,KAAK,IAAI,CAAC;IACrE,sBAAsB,EAAE,EAAE,CAAC,kBAAkB,CAAC,CAAC;CAC/C;AAED,eAAO,MAAM,kBAAkB,EAAE,EAAE,CAAC,uBAAuB,CAgC1D,CAAC"}
@@ -1,23 +0,0 @@
1
- import type { FC } from "react";
2
- import type { CwScheduler } from "../../CwSchedulerComp";
3
- import type { Resource } from "../../state/Resource";
4
- interface SchedulerContentAreaProps {
5
- now: Date;
6
- showTimeline: boolean;
7
- timeLineLeftPx: number;
8
- timeSeparatorLeftPx: number[];
9
- resources: Resource[];
10
- contextMenuContents?: Array<{
11
- key: string;
12
- text: string;
13
- icon: string;
14
- color: string;
15
- }>;
16
- scheduler: CwScheduler;
17
- onEmptyClick: ((schedulerId: string) => void) | undefined;
18
- setContentArea: (reference: HTMLTableDataCellElement) => void;
19
- onClickContextMenu: (_clickEvent: any, _resource: Resource) => void;
20
- }
21
- export declare const SchedulerContentArea: FC<SchedulerContentAreaProps>;
22
- export {};
23
- //# sourceMappingURL=SchedulerContentArea.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SchedulerContentArea.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAIrD,UAAU,yBAAyB;IAClC,GAAG,EAAE,IAAI,CAAC;IACV,YAAY,EAAE,OAAO,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,mBAAmB,CAAC,EAAE,KAAK,CAAC;QAC3B,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;KACd,CAAC,CAAC;IACH,SAAS,EAAE,WAAW,CAAC;IACvB,YAAY,EAAE,CAAC,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC;IAC1D,cAAc,EAAE,CAAC,SAAS,EAAE,wBAAwB,KAAK,IAAI,CAAC;IAC9D,kBAAkB,EAAE,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,QAAQ,KAAK,IAAI,CAAC;CACpE;AACD,eAAO,MAAM,oBAAoB,EAAE,EAAE,CAAC,yBAAyB,CAoD9D,CAAC"}
@@ -1,8 +0,0 @@
1
- import type { FC } from "react";
2
- import { type SchedulerTimeLineProps } from "../scheduler_timeline/SchedulerTimeLine";
3
- export interface SchedulerHeaderProps {
4
- timelineProps: SchedulerTimeLineProps;
5
- descriptionColumn: string | undefined;
6
- }
7
- export declare const SchedulerHeader: FC<SchedulerHeaderProps>;
8
- //# sourceMappingURL=SchedulerHeader.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SchedulerHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/scheduler_header/SchedulerHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,EAAqB,KAAK,sBAAsB,EAAE,MAAM,yCAAyC,CAAC;AAEzG,MAAM,WAAW,oBAAoB;IACpC,aAAa,EAAE,sBAAsB,CAAC;IACtC,iBAAiB,EAAE,MAAM,GAAG,SAAS,CAAC;CACtC;AAED,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,oBAAoB,CAyDpD,CAAC"}
@@ -1,12 +0,0 @@
1
- import type { FC } from "react";
2
- export interface SchedulerTimeLineProps {
3
- maxPx: number | string;
4
- hoursList: Date[];
5
- startDate: Date;
6
- endDate: Date;
7
- pxPerHour: number;
8
- headerName: string | undefined;
9
- }
10
- export declare const SchedulerTimeLine: FC<SchedulerTimeLineProps>;
11
- export declare const _preview: () => import("react/jsx-runtime").JSX.Element;
12
- //# sourceMappingURL=SchedulerTimeLine.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"SchedulerTimeLine.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAKhC,MAAM,WAAW,sBAAsB;IACtC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;IACvB,SAAS,EAAE,IAAI,EAAE,CAAC;IAClB,SAAS,EAAE,IAAI,CAAC;IAChB,OAAO,EAAE,IAAI,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;CAC/B;AAED,eAAO,MAAM,iBAAiB,EAAE,EAAE,CAAC,sBAAsB,CA4BxD,CAAC;AAEF,eAAO,MAAM,QAAQ,+CAcpB,CAAC"}
@@ -1,12 +0,0 @@
1
- import type { FC } from "react";
2
- interface TimeHeaderProps {
3
- index: number;
4
- isWeekend: boolean;
5
- text: string;
6
- width: number;
7
- header: string;
8
- }
9
- export declare const TimeHeader: FC<TimeHeaderProps>;
10
- export declare const _preview: () => import("react/jsx-runtime").JSX.Element;
11
- export {};
12
- //# sourceMappingURL=TimeHeader.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TimeHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/time_headers/TimeHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAKhC,UAAU,eAAe;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,OAAO,CAAC;IACnB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CAwB1C,CAAC;AAEF,eAAO,MAAM,QAAQ,+CAQpB,CAAC"}
@@ -1,10 +0,0 @@
1
- import { type FC } from "react";
2
- export interface TimeHeaderRowProps {
3
- timeHeaders: Date[];
4
- startDate: Date;
5
- endDate: Date;
6
- maxWidth: number;
7
- header: string;
8
- }
9
- export declare const TimeHeaderRow: FC<TimeHeaderRowProps>;
10
- //# sourceMappingURL=TimeHeaderRow.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TimeHeaderRow.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/time_headers/TimeHeaderRow.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,EAAE,MAAM,OAAO,CAAC;AAMhC,MAAM,WAAW,kBAAkB;IAClC,WAAW,EAAE,IAAI,EAAE,CAAC;IACpB,SAAS,EAAE,IAAI,CAAC;IAChB,OAAO,EAAE,IAAI,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CACf;AACD,eAAO,MAAM,aAAa,EAAE,EAAE,CAAC,kBAAkB,CAuBhD,CAAC"}
@@ -1,12 +0,0 @@
1
- import type { FC } from "react";
2
- export interface TimeLineProps {
3
- toolTipTitle?: string;
4
- marginLeft: number;
5
- id?: string;
6
- height?: string;
7
- color?: string;
8
- pixels?: number;
9
- zIndex?: number;
10
- }
11
- export declare const TimeLine: FC<TimeLineProps>;
12
- //# sourceMappingURL=TimeLine.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"TimeLine.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/components/time_line/TimeLine.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAEhC,MAAM,WAAW,aAAa;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,aAAa,CAwBtC,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const addMinutesToDateFromPx: (originalDate: Date, leftPx: number, minutesPerPx: number) => Date;
2
- //# sourceMappingURL=addMinutesToDateFromPx.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"addMinutesToDateFromPx.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,iBAAkB,IAAI,UAAU,MAAM,gBAAgB,MAAM,KAAG,IAKjG,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const daysBetweenTwoDates: (date1: Date, date2: Date) => number;
2
- //# sourceMappingURL=daysBetweenTwoDates.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"daysBetweenTwoDates.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,UAAW,IAAI,SAAS,IAAI,KAAG,MAgB9D,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const daysBetweenTwoDatesIncludingBoth: (date1: Date, date2: Date) => number;
2
- //# sourceMappingURL=daysBetweenTwoDatesWithoutCeil.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"daysBetweenTwoDatesWithoutCeil.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gCAAgC,UAAW,IAAI,SAAS,IAAI,KAAG,MAI3E,CAAC"}
@@ -1,7 +0,0 @@
1
- interface TimeHeaderData {
2
- text: string;
3
- isWeekend: boolean;
4
- }
5
- export declare const getFormattedTimeForHeader: (calculatedDivType: "d" | "w" | "m", calculatedDivision: 8 | 3 | 2 | 1, timeHeader: Date) => TimeHeaderData;
6
- export {};
7
- //# sourceMappingURL=getFormatedTimeForHeader.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getFormatedTimeForHeader.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.ts"],"names":[],"mappings":"AAEA,UAAU,cAAc;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,yBAAyB,sBAClB,GAAG,GAAG,GAAG,GAAG,GAAG,sBACd,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,cACrB,IAAI,KACd,cA0CF,CAAC"}
@@ -1,10 +0,0 @@
1
- export interface MonthHeaderData {
2
- monthFormatted: string;
3
- width: number;
4
- }
5
- export interface DateRange {
6
- start: Date;
7
- daysLong: number;
8
- }
9
- export declare const getMonthHeaderData: (dates: Date[], maxWidth: number) => MonthHeaderData[];
10
- //# sourceMappingURL=getMonthHeaderData.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getMonthHeaderData.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/dates/getMonthHeaderData.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC/B,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,SAAS;IACzB,KAAK,EAAE,IAAI,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,kBAAkB,UAAW,IAAI,EAAE,YAAY,MAAM,KAAG,eAAe,EAWnF,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const getUtcToday: () => Date;
2
- //# sourceMappingURL=getUtcToday.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getUtcToday.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/dates/getUtcToday.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,WAAW,QAAO,IAO9B,CAAC"}
@@ -1,7 +0,0 @@
1
- import type { WeekRange } from "./listOfDatesToWeeks";
2
- export interface WeekHeaderData {
3
- formattedString: string;
4
- width: number;
5
- }
6
- export declare const getWeekHeaderDataFromWeekRange: (weekRange: WeekRange[], maxWidth: number, dateFormatter: (date: Date) => string) => WeekHeaderData[];
7
- //# sourceMappingURL=getWeekHeaderDataFromWeekRange.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getWeekHeaderDataFromWeekRange.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEtD,MAAM,WAAW,cAAc;IAC9B,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,EAAE,MAAM,CAAC;CACd;AAED,eAAO,MAAM,8BAA8B,cAC/B,SAAS,EAAE,YACZ,MAAM,iBACD,CAAC,IAAI,EAAE,IAAI,KAAK,MAAM,KACnC,cAAc,EAad,CAAC"}
@@ -1,8 +0,0 @@
1
- export interface WeekRange {
2
- days: number;
3
- start: Date;
4
- end: Date;
5
- isShortWeek: boolean;
6
- }
7
- export declare const listOfDatesToWeekRangeList: (dates: Date[]) => WeekRange[];
8
- //# sourceMappingURL=listOfDatesToWeeks.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"listOfDatesToWeeks.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,SAAS;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,IAAI,CAAC;IACZ,GAAG,EAAE,IAAI,CAAC;IACV,WAAW,EAAE,OAAO,CAAC;CACrB;AAED,eAAO,MAAM,0BAA0B,UAAW,IAAI,EAAE,KAAG,SAAS,EAwCnE,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const calculateDivisionType: (start: Date, end: Date) => "w" | "m" | "d";
2
- //# sourceMappingURL=calculateDivisionType.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"calculateDivisionType.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/divisions/calculateDivisionType.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,UAAW,IAAI,OAAO,IAAI,oBAU3D,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const calculateDivisions: (start: Date, end: Date) => 1 | 2 | 3 | 8;
2
- //# sourceMappingURL=calculateDivisions.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"calculateDivisions.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/divisions/calculateDivisions.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB,UAAW,IAAI,OAAO,IAAI,kBAYxD,CAAC"}
@@ -1,3 +0,0 @@
1
- import type { cblEvent } from "../../state/cblEvent";
2
- export declare const filterEvents: (events: cblEvent[], start: Date, end: Date, id: string, module?: string | undefined) => cblEvent[];
3
- //# sourceMappingURL=filterEvents.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"filterEvents.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/filtering/filterEvents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,YAAY,WAChB,QAAQ,EAAE,SACX,IAAI,OACN,IAAI,MACL,MAAM,WACF,MAAM,GAAG,SAAS,eA4B1B,CAAC"}
@@ -1,3 +0,0 @@
1
- import type { Resource } from "../../state/Resource";
2
- export declare const filterResources: (module: string | undefined, resourceName: string | undefined, resources: Resource[], groupByFunction: boolean, endDate: Date, startDate: Date, scheduleName: string) => Resource[];
3
- //# sourceMappingURL=filterResources.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"filterResources.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/filtering/filterResources.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGrD,eAAO,MAAM,eAAe,WACnB,MAAM,GAAG,SAAS,gBACZ,MAAM,GAAG,SAAS,aACrB,QAAQ,EAAE,mBACJ,OAAO,WACf,IAAI,aACF,IAAI,gBACD,MAAM,KAClB,QAAQ,EAiBV,CAAC"}
@@ -1,13 +0,0 @@
1
- import type { CwSchedulerProps } from "../../state/CwSchedulerProps";
2
- import type { Resource } from "../../state/Resource";
3
- import type { State } from "../../state/State";
4
- export interface OnDropProps {
5
- e: React.DragEvent;
6
- resource: Resource;
7
- id: string;
8
- contentArea?: HTMLTableDataCellElement;
9
- state: State;
10
- schedulerProps: CwSchedulerProps;
11
- }
12
- export declare const OnDrop: (props: OnDropProps) => void;
13
- //# sourceMappingURL=OnDrop.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"OnDrop.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/onDrop/OnDrop.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAK/C,MAAM,WAAW,WAAW;IAC3B,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;IACnB,QAAQ,EAAE,QAAQ,CAAC;IACnB,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,CAAC,EAAE,wBAAwB,CAAC;IACvC,KAAK,EAAE,KAAK,CAAC;IACb,cAAc,EAAE,gBAAgB,CAAC;CACjC;AACD,eAAO,MAAM,MAAM,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,IAmD5C,CAAC"}
@@ -1,17 +0,0 @@
1
- import type { cblEvent } from "../../state/cblEvent";
2
- import type { CwSchedulerProps } from "../../state/CwSchedulerProps";
3
- import type { Resource } from "../../state/Resource";
4
- export declare const getLeftPixels: (eventStart: Date, scheduleStart: Date, dayPx: number) => number;
5
- export declare const getResourcesWithPixels: (resources: Resource[], _nextProps: CwSchedulerProps, dayPx: number) => {
6
- events: cblEvent[];
7
- uid: string;
8
- id: number;
9
- name: string;
10
- maxTop: number;
11
- isInViewport: boolean;
12
- schedulerResourceDisplay: string | null;
13
- isLoading: boolean;
14
- data: any;
15
- }[];
16
- export declare const getEventWithSize: (event: cblEvent, schedulerStart: Date, dayPx: number) => cblEvent;
17
- //# sourceMappingURL=getPixelsForEvent.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getPixelsForEvent.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/pixels/getPixelsForEvent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGrD,eAAO,MAAM,aAAa,eAAgB,IAAI,iBAAiB,IAAI,SAAS,MAAM,KAAG,MAGpF,CAAC;AAEF,eAAO,MAAM,sBAAsB,cAAe,QAAQ,EAAE,cAAc,gBAAgB,SAAS,MAAM;;;;;;;;;;GAWxG,CAAC;AAEF,eAAO,MAAM,gBAAgB,UAAW,QAAQ,kBAAkB,IAAI,SAAS,MAAM,KAAG,QAevF,CAAC"}
@@ -1,3 +0,0 @@
1
- import type { Resource } from "../../state/Resource";
2
- export declare const heightScheduler: (resources: Resource[], visibleRows: number, isPinnerScheduler: boolean) => number;
3
- //# sourceMappingURL=heightScheduler.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"heightScheduler.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/pixels/heightScheduler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,eAAe,cAAe,QAAQ,EAAE,eAAe,MAAM,qBAAqB,OAAO,WAerG,CAAC"}
@@ -1,4 +0,0 @@
1
- import type { CwSchedulerProps } from "../../state/CwSchedulerProps";
2
- import type { Resource } from "../../state/Resource";
3
- export declare const doubleClickOnResource: (props: CwSchedulerProps, resource: Resource) => void;
4
- //# sourceMappingURL=doubleClickOnResource.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"doubleClickOnResource.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,qBAAqB,UAAW,gBAAgB,YAAY,QAAQ,SAIhF,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const onDragOver: (e: React.DragEvent) => void;
2
- //# sourceMappingURL=onDragOver.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"onDragOver.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/state_handle/onDragOver.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,MAAO,KAAK,CAAC,SAAS,SAQ5C,CAAC"}
@@ -1,5 +0,0 @@
1
- import type { CblDragAndDrop } from "../../state/CblDragAndDrop";
2
- import type { CwSchedulerProps } from "../../state/CwSchedulerProps";
3
- import type { Resource } from "../../state/Resource";
4
- export declare const onDropEventToResource: (props: CwSchedulerProps, cblDragNDrop: CblDragAndDrop, resource: Resource) => void;
5
- //# sourceMappingURL=onDropEventToResource.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"onDropEventToResource.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/state_handle/onDropEventToResource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,qBAAqB,UAAW,gBAAgB,gBAAgB,cAAc,YAAY,QAAQ,SAE9G,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const compareStrings: (str1: string, str2: string) => number;
2
- //# sourceMappingURL=compareStrings.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"compareStrings.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/strings/compareStrings.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,SAAU,MAAM,QAAQ,MAAM,KAAG,MAI3D,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const getGUID: () => string;
2
- //# sourceMappingURL=getGUID.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getGUID.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/strings/getGUID.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,QAAO,MAE1B,CAAC"}
@@ -1,3 +0,0 @@
1
- import type { cblEvent } from "../../state/cblEvent";
2
- export declare const checkIfSlotAvailable: (events: Array<cblEvent>, event: cblEvent) => boolean;
3
- //# sourceMappingURL=checkIfSlotAvailable.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"checkIfSlotAvailable.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,oBAAoB,WAAY,KAAK,CAAC,QAAQ,CAAC,SAAS,QAAQ,YAO5E,CAAC"}
@@ -1,4 +0,0 @@
1
- import type { cblEvent } from "../../state/cblEvent";
2
- import type { Resource } from "../../state/Resource";
3
- export declare const getEventsInInnerRows: (res: Resource, eventHeight: number, dayPx: number, start: Date) => cblEvent[][];
4
- //# sourceMappingURL=getEventsOfResource.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getEventsOfResource.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/ui/getEventsOfResource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGrD,eAAO,MAAM,oBAAoB,QAAS,QAAQ,eAAe,MAAM,SAAS,MAAM,SAAS,IAAI,iBA4ClG,CAAC"}
@@ -1,2 +0,0 @@
1
- export declare const getTimeHeaders: (startDate: Date, endDate: Date) => Array<Date>;
2
- //# sourceMappingURL=getTimeHeaders.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"getTimeHeaders.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/ui/getTimeHeaders.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,cAAe,IAAI,WAAW,IAAI,KAAG,KAAK,CAAC,IAAI,CAsCzE,CAAC"}
@@ -1,3 +0,0 @@
1
- import type { CblDragAndDrop } from "../../CwSuperSchedulerComp";
2
- export declare const isAllowedToMove: (data: any, resData: any, cblDragNDrop: CblDragAndDrop) => boolean;
3
- //# sourceMappingURL=isAllowedToMove.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"isAllowedToMove.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler/logic/ui/isAllowedToMove.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAEjE,eAAO,MAAM,eAAe,SAAU,GAAG,WAAW,GAAG,gBAAgB,cAAc,KAAG,OAuBvF,CAAC"}
@@ -1,11 +0,0 @@
1
- export declare class CblDragAndDrop {
2
- fromId: string | null;
3
- toId: string | null;
4
- data: Array<any> | null;
5
- droppedOnDate: Date | null;
6
- resizeFromStart: boolean | null;
7
- resizeFromEnd: boolean | null;
8
- isCtrlKey: boolean | null;
9
- constructor(fromId: string | null, toId: string | null, data: Array<any> | null, droppedOnDate?: Date | null, resizeFromStart?: boolean | null, resizeFromEnd?: boolean | null, isCtrlKey?: boolean | null);
10
- }
11
- //# sourceMappingURL=CblDragAndDrop.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CblDragAndDrop.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/scheduler/state/CblDragAndDrop.ts"],"names":[],"mappings":"AAAA,qBAAa,cAAc;IAC1B,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IACpB,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC;IACxB,aAAa,EAAE,IAAI,GAAG,IAAI,CAAC;IAC3B,eAAe,EAAE,OAAO,GAAG,IAAI,CAAC;IAChC,aAAa,EAAE,OAAO,GAAG,IAAI,CAAC;IAC9B,SAAS,EAAE,OAAO,GAAG,IAAI,CAAC;gBAGzB,MAAM,EAAE,MAAM,GAAG,IAAI,EACrB,IAAI,EAAE,MAAM,GAAG,IAAI,EACnB,IAAI,EAAE,KAAK,CAAC,GAAG,CAAC,GAAG,IAAI,EACvB,aAAa,GAAE,IAAI,GAAG,IAAW,EACjC,eAAe,GAAE,OAAO,GAAG,IAAW,EACtC,aAAa,GAAE,OAAO,GAAG,IAAW,EACpC,SAAS,GAAE,OAAO,GAAG,IAAW;CAUjC"}
@@ -1,43 +0,0 @@
1
- import type { resourceCompProps2 } from "../CwSuperSchedulerComp";
2
- import type { CblDragAndDrop } from "./CblDragAndDrop";
3
- import type { cblEvent } from "./cblEvent";
4
- import type { cblEventCompProps } from "./cblEventCompProps";
5
- import type { Resource } from "./Resource";
6
- export interface CwSchedulerProps {
7
- airportSelected?: number;
8
- canBePinned?: boolean;
9
- cblEventComp: React.FC<cblEventCompProps>;
10
- descriptionColumn?: string;
11
- endDate: Date;
12
- events: cblEvent[];
13
- groupByFunction: boolean;
14
- height: number;
15
- id: string;
16
- module?: string;
17
- parent: any;
18
- pinnedResources?: number[];
19
- resourceComp: React.FC<resourceCompProps2>;
20
- resourceName?: string;
21
- resources: Resource[];
22
- resourceContextMenuContents?: Array<{
23
- key: string;
24
- text: string;
25
- icon: string;
26
- color: string;
27
- }>;
28
- startDate: Date;
29
- scheduler_clearPinned?: (id: any) => void;
30
- scheduler_handleCblEventClick: (cblEvent: cblEvent, schedulerId: string) => void;
31
- scheduler_handleCblEventClickRight?: (cblEvent: cblEvent, schedulerId: string) => void;
32
- scheduler_handleCblEventDoubleClick: (cblEvent: cblEvent, schedulerId: string) => void;
33
- scheduler_handleCblEventResize?: (cblDragNDrop: CblDragAndDrop) => void;
34
- scheduler_handleDblClickOnResourceInScheduler?: (resource: Resource) => void;
35
- scheduler_handleEmptyClick?: (schedulerId: string) => void;
36
- scheduler_handleMultiselectChange?: (value: any, selectedObjectsArray: any) => void;
37
- scheduler_handleOnClickEventContextMenu?: (e: any, cblEvent: cblEvent) => void;
38
- scheduler_handleOnClickResourceContextMenu?: (e: any, resource: Resource) => void;
39
- scheduler_handleOnDropCblEventsOnResource: (cblDragNDrop: CblDragAndDrop, resource: Resource) => void;
40
- scheduler_handlePinned?: (resourceId: number, type: string, schedulerId: string) => void;
41
- scheduler_handleOnClickContextMenuResource?: (date: Date, resource: Resource, key: string, schedulerId: string) => void;
42
- }
43
- //# sourceMappingURL=CwSchedulerProps.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"CwSchedulerProps.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/scheduler/state/CwSchedulerProps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAClE,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAC3C,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAC7D,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,WAAW,gBAAgB;IAChC,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,iBAAiB,CAAC,CAAC;IAC1C,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,OAAO,EAAE,IAAI,CAAC;IACd,MAAM,EAAE,QAAQ,EAAE,CAAC;IACnB,eAAe,EAAE,OAAO,CAAC;IACzB,MAAM,EAAE,MAAM,CAAC;IACf,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,GAAG,CAAC;IACZ,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,YAAY,EAAE,KAAK,CAAC,EAAE,CAAC,kBAAkB,CAAC,CAAC;IAC3C,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,2BAA2B,CAAC,EAAE,KAAK,CAAC;QACnC,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;KACd,CAAC,CAAC;IACH,SAAS,EAAE,IAAI,CAAC;IAChB,qBAAqB,CAAC,EAAE,CAAC,EAAE,EAAE,GAAG,KAAK,IAAI,CAAC;IAC1C,6BAA6B,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IACjF,kCAAkC,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IACvF,mCAAmC,EAAE,CAAC,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IACvF,8BAA8B,CAAC,EAAE,CAAC,YAAY,EAAE,cAAc,KAAK,IAAI,CAAC;IACxE,6CAA6C,CAAC,EAAE,CAAC,QAAQ,EAAE,QAAQ,KAAK,IAAI,CAAC;IAC7E,0BAA0B,CAAC,EAAE,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IAC3D,iCAAiC,CAAC,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,oBAAoB,EAAE,GAAG,KAAK,IAAI,CAAC;IACpF,uCAAuC,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,KAAK,IAAI,CAAC;IAC/E,0CAA0C,CAAC,EAAE,CAAC,CAAC,EAAE,GAAG,EAAE,QAAQ,EAAE,QAAQ,KAAK,IAAI,CAAC;IAClF,yCAAyC,EAAE,CAAC,YAAY,EAAE,cAAc,EAAE,QAAQ,EAAE,QAAQ,KAAK,IAAI,CAAC;IACtG,sBAAsB,CAAC,EAAE,CAAC,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC;IACzF,0CAA0C,CAAC,EAAE,CAC5C,IAAI,EAAE,IAAI,EACV,QAAQ,EAAE,QAAQ,EAClB,GAAG,EAAE,MAAM,EACX,WAAW,EAAE,MAAM,KACf,IAAI,CAAC;CACV"}
@@ -1,14 +0,0 @@
1
- import type { cblEvent } from "./cblEvent";
2
- export declare class Resource {
3
- uid: string;
4
- id: number;
5
- name: string;
6
- maxTop: number;
7
- events: cblEvent[];
8
- isInViewport: boolean;
9
- schedulerResourceDisplay: string | null;
10
- isLoading: boolean;
11
- data: any;
12
- constructor(id: number, name: string, eventHeight: number, data?: any, schedulerResourceDisplay?: string | null);
13
- }
14
- //# sourceMappingURL=Resource.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"Resource.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/scheduler/state/Resource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAE3C,qBAAa,QAAQ;IACpB,GAAG,EAAE,MAAM,CAAM;IACjB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,MAAM,EAAE,QAAQ,EAAE,CAAM;IACxB,YAAY,EAAE,OAAO,CAAS;IAC9B,wBAAwB,EAAE,MAAM,GAAG,IAAI,CAAC;IACxC,SAAS,EAAE,OAAO,CAAS;IAC3B,IAAI,EAAE,GAAG,CAAQ;gBAGhB,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,MAAM,EACZ,WAAW,EAAE,MAAM,EACnB,IAAI,GAAE,GAAU,EAChB,wBAAwB,GAAE,MAAM,GAAG,IAAW;CAQ/C"}
@@ -1,19 +0,0 @@
1
- import type { Resource } from "./Resource";
2
- export interface State {
3
- dayPx: number;
4
- division: number;
5
- divisionType: string;
6
- divisionsLeftPx: number[];
7
- eventHeight: number;
8
- hourPx: number;
9
- lineStyle: number;
10
- maxPx: number;
11
- minutePx: number;
12
- nowUtc: Date;
13
- pinnedResources: Array<number>;
14
- resources: Resource[];
15
- selectedEvents: Array<number>;
16
- showConsoleLogs: boolean;
17
- timeHeaders: Array<Date>;
18
- }
19
- //# sourceMappingURL=State.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"State.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/scheduler/state/State.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAC;AAE3C,MAAM,WAAW,KAAK;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,EAAC,MAAM,EAAE,CAAC;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,IAAI,CAAC;IACb,eAAe,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC/B,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,cAAc,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAC9B,eAAe,EAAE,OAAO,CAAC;IACzB,WAAW,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;CACzB"}
@@ -1,18 +0,0 @@
1
- export declare class cblEvent {
2
- id: string;
3
- start: Date;
4
- end: Date;
5
- resourceId: number;
6
- selected: boolean;
7
- top: number;
8
- leftPx: number;
9
- rightPx: number;
10
- width: number;
11
- isFullHeight: boolean;
12
- isReadOnly: boolean;
13
- isResizable: boolean;
14
- isDraggable: boolean;
15
- data: any;
16
- constructor(start: Date, end: Date, resourceId: number, data?: any, isFullHeight?: boolean, isReadOnly?: boolean, isResizable?: boolean, isDraggable?: boolean);
17
- }
18
- //# sourceMappingURL=cblEvent.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cblEvent.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/scheduler/state/cblEvent.ts"],"names":[],"mappings":"AAEA,qBAAa,QAAQ;IACpB,EAAE,EAAE,MAAM,CAAM;IAChB,KAAK,EAAE,IAAI,CAAC;IACZ,GAAG,EAAE,IAAI,CAAC;IACV,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,OAAO,CAAS;IAE1B,GAAG,EAAE,MAAM,CAAK;IAChB,MAAM,EAAE,MAAM,CAAK;IACnB,OAAO,EAAE,MAAM,CAAK;IACpB,KAAK,EAAE,MAAM,CAAK;IAElB,YAAY,EAAE,OAAO,CAAS;IAC9B,UAAU,EAAE,OAAO,CAAS;IAC5B,WAAW,EAAE,OAAO,CAAS;IAC7B,WAAW,EAAE,OAAO,CAAS;IAE7B,IAAI,EAAE,GAAG,CAAQ;gBAGhB,KAAK,EAAE,IAAI,EACX,GAAG,EAAE,IAAI,EACT,UAAU,EAAE,MAAM,EAClB,IAAI,GAAE,GAAU,EAChB,YAAY,GAAE,OAAe,EAC7B,UAAU,GAAE,OAAe,EAC3B,WAAW,GAAE,OAAe,EAC5B,WAAW,GAAE,OAAe;CAc7B"}