@cwellt_software/cwellt-reactjs-lib 1.1.5 → 1.1.7

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 (583) hide show
  1. package/dist/index.cjs.js +1314 -70
  2. package/dist/index.css +2 -2
  3. package/dist/index.d.ts +235 -4
  4. package/dist/index.es.js +1310 -71
  5. package/dist/playground/main.d.ts.map +1 -1
  6. package/dist/src/common/classes/CwSelectList.js +12 -0
  7. package/dist/src/common/classes/CwSelectListItems.js +14 -0
  8. package/dist/src/common/functions/collections.js +18 -0
  9. package/dist/src/common/functions/colorManipulation.js +76 -0
  10. package/dist/src/common/functions/dsl/UiEventDSL.js +20 -0
  11. package/dist/src/common/functions/useSingleAndDoubleClicks.js +28 -0
  12. package/dist/src/components/control/action/button/CwButton.js +13 -0
  13. package/dist/src/components/control/action/buttons/CwButtons.js +188 -0
  14. package/dist/src/components/control/action/contextmenu/CwContextMenu.js +43 -0
  15. package/dist/src/components/control/action/contextual-menu/CwContextualMenu.js +55 -0
  16. package/dist/src/components/control/action/search/CwSearch.js +67 -0
  17. package/dist/src/components/control/action/tooltip-dialog/CwTooltipDialog.js +11 -0
  18. package/dist/src/components/control/choice/checkbox/CwCheckbox.js +15 -0
  19. package/dist/src/components/control/choice/deprecated/MultiSelect_deprecated_.js +99 -0
  20. package/dist/src/components/control/choice/dropdown/CwDropdown.js +27 -0
  21. package/dist/src/components/control/choice/dropdown/CwDropdownContainer.js +30 -0
  22. package/dist/src/components/control/choice/dropdown/CwDropdownFilter.js +10 -0
  23. package/dist/src/components/control/choice/multi-filter/CwMultiFilter.js +298 -0
  24. package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.js +17 -0
  25. package/dist/src/components/control/choice/multiselect/CwHeadFilter.js +80 -0
  26. package/dist/src/components/control/choice/multiselect/CwMultiselect.js +393 -0
  27. package/dist/src/components/control/choice/multiselect/CwOptionList.js +36 -0
  28. package/dist/src/components/control/choice/option/CwOption.js +16 -0
  29. package/dist/src/components/control/choice/select/CwSelect.js +36 -0
  30. package/dist/src/components/control/choice/toggle/CwToggle.js +9 -0
  31. package/dist/src/components/control/input/any/CwInput.js +16 -0
  32. package/dist/src/components/control/input/color/CwColorPicker.js +210 -0
  33. package/dist/src/components/control/input/color/CwInputColor.js +142 -0
  34. package/dist/src/components/control/input/date/CwInputDate.js +29 -0
  35. package/dist/src/components/control/input/date-picker/CwInputDatePicker.js +109 -0
  36. package/dist/src/components/control/input/date-text/CwInputDateText.js +90 -0
  37. package/dist/src/components/control/input/datetime/CwInputDatetime.js +29 -0
  38. package/dist/src/components/control/input/digit/CwDigit.js +28 -0
  39. package/dist/src/components/control/input/file/CwFileUpload.js +52 -0
  40. package/dist/src/components/control/input/file/CwFileUploadMultiple.js +148 -0
  41. package/dist/src/components/control/input/image/CwInputImage.js +52 -0
  42. package/dist/src/components/control/input/image-area/CwImageArea.js +113 -0
  43. package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts +42 -0
  44. package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts.map +1 -0
  45. package/dist/src/components/control/input/new-dates/CwDateRangePicker.d.ts +63 -0
  46. package/dist/src/components/control/input/new-dates/CwDateRangePicker.d.ts.map +1 -0
  47. package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts +47 -0
  48. package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts.map +1 -0
  49. package/dist/src/components/control/input/new-dates/CwDateTimePickerCompact.d.ts +46 -0
  50. package/dist/src/components/control/input/new-dates/CwDateTimePickerCompact.d.ts.map +1 -0
  51. package/dist/src/components/control/input/new-dates/CwTimePicker.d.ts +38 -0
  52. package/dist/src/components/control/input/new-dates/CwTimePicker.d.ts.map +1 -0
  53. package/dist/src/components/control/input/new-dates/dateRangePresets.d.ts +19 -0
  54. package/dist/src/components/control/input/new-dates/dateRangePresets.d.ts.map +1 -0
  55. package/dist/src/components/control/input/number/CwInputNumber.js +11 -0
  56. package/dist/src/components/control/input/phone/CwInputPhone.js +24 -0
  57. package/dist/src/components/control/input/text/CwInputText.js +31 -0
  58. package/dist/src/components/control/input/text-area/CwTextArea.js +9 -0
  59. package/dist/src/components/control/input/time/CwTime.js +29 -0
  60. package/dist/src/components/control/input/weekday/CwWeekdaySelector.js +143 -0
  61. package/dist/src/components/custom/find-airport/CwFindAirportComp.js +240 -0
  62. package/dist/src/components/custom/scheduler/CwSchedulerComp.js +211 -0
  63. package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.js +269 -0
  64. package/dist/src/components/custom/scheduler/components/EventRender.js +142 -0
  65. package/dist/src/components/custom/scheduler/components/ResourceListRender.js +12 -0
  66. package/dist/src/components/custom/scheduler/components/ResourceRender.js +26 -0
  67. package/dist/src/components/custom/scheduler/components/day_headers/DayHeader.js +13 -0
  68. package/dist/src/components/custom/scheduler/components/day_headers/MonthHeader.js +12 -0
  69. package/dist/src/components/custom/scheduler/components/day_headers/MyDaysHeader.js +62 -0
  70. package/dist/src/components/custom/scheduler/components/day_headers/WeekHeader.js +13 -0
  71. package/dist/src/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.js +24 -0
  72. package/dist/src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.js +17 -0
  73. package/dist/src/components/custom/scheduler/components/scheduler_header/SchedulerHeader.js +26 -0
  74. package/dist/src/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
  75. package/dist/src/components/custom/scheduler/components/time_headers/TimeHeader.js +31 -0
  76. package/dist/src/components/custom/scheduler/components/time_headers/TimeHeaderRow.js +16 -0
  77. package/dist/src/components/custom/scheduler/components/time_line/TimeLine.js +12 -0
  78. package/dist/src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.js +5 -0
  79. package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.js +15 -0
  80. package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
  81. package/dist/src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.js +43 -0
  82. package/dist/src/components/custom/scheduler/logic/dates/getMonthHeaderData.js +35 -0
  83. package/dist/src/components/custom/scheduler/logic/dates/getUtcToday.js +6 -0
  84. package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
  85. package/dist/src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.js +55 -0
  86. package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisionType.js +13 -0
  87. package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisions.js +16 -0
  88. package/dist/src/components/custom/scheduler/logic/filtering/filterEvents.js +33 -0
  89. package/dist/src/components/custom/scheduler/logic/filtering/filterResources.js +14 -0
  90. package/dist/src/components/custom/scheduler/logic/filtering/hasSameProperties.js +10 -0
  91. package/dist/src/components/custom/scheduler/logic/onDrop/OnDrop.js +45 -0
  92. package/dist/src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.js +14 -0
  93. package/dist/src/components/custom/scheduler/logic/pixels/getPixelsForEvent.js +32 -0
  94. package/dist/src/components/custom/scheduler/logic/pixels/heightScheduler.js +14 -0
  95. package/dist/src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.js +9 -0
  96. package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.js +5 -0
  97. package/dist/src/components/custom/scheduler/logic/state_handle/handleResourceChange.js +11 -0
  98. package/dist/src/components/custom/scheduler/logic/state_handle/onDragOver.js +9 -0
  99. package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.js +3 -0
  100. package/dist/src/components/custom/scheduler/logic/strings/compareStrings.js +7 -0
  101. package/dist/src/components/custom/scheduler/logic/strings/getGUID.js +7 -0
  102. package/dist/src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.js +8 -0
  103. package/dist/src/components/custom/scheduler/logic/ui/getEventsOfResource.js +45 -0
  104. package/dist/src/components/custom/scheduler/logic/ui/getTimeHeaders.js +35 -0
  105. package/dist/src/components/custom/scheduler/logic/ui/isAllowedToMove.js +19 -0
  106. package/dist/src/components/custom/scheduler/logic/ui/updateResourceVisibility.js +15 -0
  107. package/dist/src/components/custom/scheduler/state/CblDragAndDrop.js +18 -0
  108. package/dist/src/components/custom/scheduler/state/CwSchedulerProps.js +1 -0
  109. package/dist/src/components/custom/scheduler/state/Resource.js +18 -0
  110. package/dist/src/components/custom/scheduler/state/State.js +1 -0
  111. package/dist/src/components/custom/scheduler/state/cblEvent.js +28 -0
  112. package/dist/src/components/custom/scheduler/state/cblEventCompProps.js +1 -0
  113. package/dist/src/components/custom/scheduler/state/resourceCompProps2.js +1 -0
  114. package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.js +123 -0
  115. package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts +2 -1
  116. package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts.map +1 -1
  117. package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.js +118 -0
  118. package/dist/src/components/custom/scheduler-new/presentation/SchedulerPresenter.js +166 -0
  119. package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderDivision.js +26 -0
  120. package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderTitle.js +8 -0
  121. package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.js +86 -0
  122. package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.js +60 -0
  123. package/dist/src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.js +24 -0
  124. package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.js +150 -0
  125. package/dist/src/components/custom/scheduler-new/presentation/components/row/EventSideDrag.js +11 -0
  126. package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.js +176 -0
  127. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.js +8 -0
  128. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/TimeLine.js +39 -0
  129. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.js +8 -0
  130. package/dist/src/components/custom/scheduler-new/presentation/helpers.js +43 -0
  131. package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.js +24 -0
  132. package/dist/src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.js +7 -0
  133. package/dist/src/components/custom/scheduler-new/presentation/logic/eventIsVisible.js +7 -0
  134. package/dist/src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.js +113 -0
  135. package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.js +21 -0
  136. package/dist/src/components/custom/scheduler-new/presentation/logic/getEventSizes.js +30 -0
  137. package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.js +13 -0
  138. package/dist/src/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.js +7 -0
  139. package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.js +32 -0
  140. package/dist/src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.js +12 -0
  141. package/dist/src/components/custom/scheduler-temporal/CwSchedulerComp2.js +267 -0
  142. package/dist/src/components/custom/scheduler-temporal/CwSuperSchedulerComp.js +269 -0
  143. package/dist/src/components/custom/scheduler-temporal/components/EventRender.js +142 -0
  144. package/dist/src/components/custom/scheduler-temporal/components/ResourceListRender.js +12 -0
  145. package/dist/src/components/custom/scheduler-temporal/components/ResourceRender.js +26 -0
  146. package/dist/src/components/custom/scheduler-temporal/components/day_headers/DayHeader.js +13 -0
  147. package/dist/src/components/custom/scheduler-temporal/components/day_headers/MonthHeader.js +12 -0
  148. package/dist/src/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.js +62 -0
  149. package/dist/src/components/custom/scheduler-temporal/components/day_headers/WeekHeader.js +13 -0
  150. package/dist/src/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.js +22 -0
  151. package/dist/src/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.js +17 -0
  152. package/dist/src/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.js +26 -0
  153. package/dist/src/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
  154. package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeader.js +31 -0
  155. package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.js +16 -0
  156. package/dist/src/components/custom/scheduler-temporal/components/time_line/TimeLine.js +12 -0
  157. package/dist/src/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.js +5 -0
  158. package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.js +15 -0
  159. package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
  160. package/dist/src/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.js +43 -0
  161. package/dist/src/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.js +35 -0
  162. package/dist/src/components/custom/scheduler-temporal/logic/dates/getUtcToday.js +6 -0
  163. package/dist/src/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
  164. package/dist/src/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.js +55 -0
  165. package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.js +13 -0
  166. package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.js +16 -0
  167. package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.js +10 -0
  168. package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterEvents.js +34 -0
  169. package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterResources.js +14 -0
  170. package/dist/src/components/custom/scheduler-temporal/logic/filtering/hasSameProperties.js +10 -0
  171. package/dist/src/components/custom/scheduler-temporal/logic/onDrop/OnDrop.js +36 -0
  172. package/dist/src/components/custom/scheduler-temporal/logic/pixels/getHeightLineScheduler.js +14 -0
  173. package/dist/src/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.js +32 -0
  174. package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightScheduler.js +14 -0
  175. package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightSchedulerPinned.js +9 -0
  176. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.js +5 -0
  177. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handlePropChanges.js +178 -0
  178. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handleResourceChange.js +11 -0
  179. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDragOver.js +9 -0
  180. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.js +3 -0
  181. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.js +3 -0
  182. package/dist/src/components/custom/scheduler-temporal/logic/strings/compareStrings.js +7 -0
  183. package/dist/src/components/custom/scheduler-temporal/logic/strings/getGUID.js +7 -0
  184. package/dist/src/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.js +9 -0
  185. package/dist/src/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.js +92 -0
  186. package/dist/src/components/custom/scheduler-temporal/logic/ui/getHasPropsChanged.js +242 -0
  187. package/dist/src/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.js +35 -0
  188. package/dist/src/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.js +19 -0
  189. package/dist/src/components/custom/scheduler-temporal/logic/ui/shouldTriggerScroll.js +241 -0
  190. package/dist/src/components/custom/scheduler-temporal/logic/ui/updateResourceVisibility.js +15 -0
  191. package/dist/src/components/custom/scheduler-temporal/state/CblDragAndDrop.js +18 -0
  192. package/dist/src/components/custom/scheduler-temporal/state/Resource.js +18 -0
  193. package/dist/src/components/custom/scheduler-temporal/state/cblEvent.js +28 -0
  194. package/dist/src/components/custom/scheduler-temporal/state/cblEventCompProps.js +1 -0
  195. package/dist/src/components/custom/scheduler-temporal/state/resourceCompProps2.js +1 -0
  196. package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts.map +1 -1
  197. package/dist/src/components/custom/super-scheduler/PinRowHeader.js +53 -0
  198. package/dist/src/components/custom/super-scheduler/SuperScheduler.js +23 -0
  199. package/dist/src/components/custom/super-scheduler/SuperSchedulerEvents.js +15 -0
  200. package/dist/src/components/custom/super-scheduler/SuperSchedulerPresenter.js +45 -0
  201. package/dist/src/components/display/data/accordion/CwAccordionContainer.js +20 -0
  202. package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.js +138 -0
  203. package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
  204. package/dist/src/components/display/data/table/CwTable.js +203 -0
  205. package/dist/src/components/display/graphics/icon/CwIcon.js +23 -0
  206. package/dist/src/components/display/graphics/loading/CwLoading.js +27 -0
  207. package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.js +20 -0
  208. package/dist/src/components/display/text/heading/CwHeadingMain.js +5 -0
  209. package/dist/src/components/display/text/heading/CwHeadingSecond.js +5 -0
  210. package/dist/src/components/display/text/label/CwLabel.js +13 -0
  211. package/dist/src/components/display/text/message/CwMessage.js +75 -0
  212. package/dist/src/components/display/text/note/CwNote.js +78 -0
  213. package/dist/src/components/display/text/tag/CwChip.js +57 -0
  214. package/dist/src/components/display/text/tag/CwTag.js +21 -0
  215. package/dist/src/components/display/text/tooltip/CwTooltip.js +4 -0
  216. package/dist/src/components/layout/align/CwAlign.js +54 -0
  217. package/dist/src/components/layout/card/CwCard.js +55 -0
  218. package/dist/src/components/layout/card/CwCardList.js +38 -0
  219. package/dist/src/components/layout/dialog/CwDialog.js +255 -0
  220. package/dist/src/components/layout/dialog/CwDialogManager.js +44 -0
  221. package/dist/src/components/layout/list/details/CwExpandable.js +28 -0
  222. package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts +2 -3
  223. package/dist/src/components/layout/list/key-value/CwKeyValueList.d.ts.map +1 -1
  224. package/dist/src/components/layout/list/key-value/CwKeyValueList.js +23 -0
  225. package/dist/src/components/layout/list/sortable/CwSortableList.js +73 -0
  226. package/dist/src/components/layout/list/sortable/useSortableList.js +53 -0
  227. package/dist/src/components/layout/modal/CwModalReportFunctional.js +23 -0
  228. package/dist/src/components/layout/modal/hover/CwModalHover.js +61 -0
  229. package/dist/src/components/layout/modal/legacy/cw_modal.js +44 -0
  230. package/dist/src/components/layout/modal/legacy/cw_modal_confirm.js +39 -0
  231. package/dist/src/components/layout/modal/legacy/cw_modal_iframe.js +44 -0
  232. package/dist/src/components/layout/modal/legacy/cw_modal_report.js +26 -0
  233. package/dist/src/components/layout/table/grouped/CwTableGrouped.js +70 -0
  234. package/dist/src/components/layout/tabs/CwTabs.js +53 -0
  235. package/dist/src/index.d.ts +6 -0
  236. package/dist/src/index.d.ts.map +1 -1
  237. package/dist/src/index.js +187 -0
  238. package/dist/test/components/custom/new-scheduler/presentation/logic/getDefaultDivisions.test.js +48 -0
  239. package/dist/test/components/custom/new-scheduler/presentation/logic/hoursBetween.test.js +15 -0
  240. package/dist/test/components/custom/new-scheduler/presentation/logic/monthDivisions.test.js +42 -0
  241. package/dist/test/components/custom/new-scheduler/presentation/logic/weekendCalc.test.js +30 -0
  242. package/dist/test/components/custom/scheduler/addMinutesToDateFromPx.test.js +43 -0
  243. package/dist/test/components/custom/scheduler/checkIfSlotAvailable.test.js +30 -0
  244. package/dist/test/components/custom/scheduler/daysBetweenTwoDates.test.js +61 -0
  245. package/dist/test/components/custom/scheduler/daysBetweenTwoDatesWithoutCeilForEvent.test.js +27 -0
  246. package/dist/test/components/custom/scheduler/getGUID.test.js +30 -0
  247. package/dist/test/components/custom/scheduler/getPixelsForEvent.test.js +38 -0
  248. package/dist/test/components/custom/scheduler/getTimeHeaders.test.js +35 -0
  249. package/dist/test/components/custom/scheduler/hasSameProperties.test.js +51 -0
  250. package/dist/test/components/custom/scheduler/isAllowedToMove.test.js +28 -0
  251. package/dist/test/components/custom/scheduler/listOfDatesToWeeks.test.js +72 -0
  252. package/dist/test/jest.setup.js +1 -0
  253. package/package.json +6 -2
  254. package/dist/assets/asset-DnHaq7m- +0 -50
  255. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-full-normal.woff2 +0 -0
  256. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-grad-normal.woff2 +0 -0
  257. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-opsz-normal.woff2 +0 -0
  258. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-slnt-normal.woff2 +0 -0
  259. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-standard-normal.woff2 +0 -0
  260. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-wdth-normal.woff2 +0 -0
  261. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-wght-normal.woff2 +0 -0
  262. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-xopq-normal.woff2 +0 -0
  263. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-xtra-normal.woff2 +0 -0
  264. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-yopq-normal.woff2 +0 -0
  265. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytas-normal.woff2 +0 -0
  266. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytde-normal.woff2 +0 -0
  267. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytfi-normal.woff2 +0 -0
  268. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytlc-normal.woff2 +0 -0
  269. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ext-ytuc-normal.woff2 +0 -0
  270. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-full-normal.woff2 +0 -0
  271. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-grad-normal.woff2 +0 -0
  272. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-opsz-normal.woff2 +0 -0
  273. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-slnt-normal.woff2 +0 -0
  274. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-standard-normal.woff2 +0 -0
  275. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-wdth-normal.woff2 +0 -0
  276. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-wght-normal.woff2 +0 -0
  277. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-xopq-normal.woff2 +0 -0
  278. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-xtra-normal.woff2 +0 -0
  279. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-yopq-normal.woff2 +0 -0
  280. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytas-normal.woff2 +0 -0
  281. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytde-normal.woff2 +0 -0
  282. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytfi-normal.woff2 +0 -0
  283. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytlc-normal.woff2 +0 -0
  284. package/dist/content/fonts/roboto-flex/files/roboto-flex-cyrillic-ytuc-normal.woff2 +0 -0
  285. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-full-normal.woff2 +0 -0
  286. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-grad-normal.woff2 +0 -0
  287. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-opsz-normal.woff2 +0 -0
  288. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-slnt-normal.woff2 +0 -0
  289. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-standard-normal.woff2 +0 -0
  290. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-wdth-normal.woff2 +0 -0
  291. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-wght-normal.woff2 +0 -0
  292. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-xopq-normal.woff2 +0 -0
  293. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-xtra-normal.woff2 +0 -0
  294. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-yopq-normal.woff2 +0 -0
  295. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytas-normal.woff2 +0 -0
  296. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytde-normal.woff2 +0 -0
  297. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytfi-normal.woff2 +0 -0
  298. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytlc-normal.woff2 +0 -0
  299. package/dist/content/fonts/roboto-flex/files/roboto-flex-greek-ytuc-normal.woff2 +0 -0
  300. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-full-normal.woff2 +0 -0
  301. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-grad-normal.woff2 +0 -0
  302. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-opsz-normal.woff2 +0 -0
  303. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-slnt-normal.woff2 +0 -0
  304. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-standard-normal.woff2 +0 -0
  305. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-wdth-normal.woff2 +0 -0
  306. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-wght-normal.woff2 +0 -0
  307. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-xopq-normal.woff2 +0 -0
  308. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-xtra-normal.woff2 +0 -0
  309. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-yopq-normal.woff2 +0 -0
  310. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytas-normal.woff2 +0 -0
  311. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytde-normal.woff2 +0 -0
  312. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytfi-normal.woff2 +0 -0
  313. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytlc-normal.woff2 +0 -0
  314. package/dist/content/fonts/roboto-flex/files/roboto-flex-vietnamese-ytuc-normal.woff2 +0 -0
  315. package/dist/content/icons/cw-icons/css/cw-icons.css +0 -2784
  316. package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.eot +0 -0
  317. package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.svg +0 -11
  318. package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.ttf +0 -0
  319. package/dist/content/icons/cw-icons/fonts/cwAvinodeFont/CblAvinodeIcon.woff +0 -0
  320. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.eot +0 -0
  321. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.svg +0 -38
  322. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.ttf +0 -0
  323. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.woff +0 -0
  324. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/CblCrewControl.woff2 +0 -0
  325. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.eot +0 -0
  326. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.svg +0 -29
  327. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.ttf +0 -0
  328. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.woff +0 -0
  329. package/dist/content/icons/cw-icons/fonts/cwCrewControlFont/Crew Control.woff2 +0 -0
  330. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.eot +0 -0
  331. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.svg +0 -12
  332. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.ttf +0 -0
  333. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblCrewControlReact.woff +0 -0
  334. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.eot +0 -0
  335. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.svg +0 -11
  336. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.ttf +0 -0
  337. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/CblDutyIcon.woff +0 -0
  338. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.eot +0 -0
  339. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.svg +0 -12
  340. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.ttf +0 -0
  341. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/SessionWarning.woff +0 -0
  342. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.eot +0 -0
  343. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.svg +0 -26
  344. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.ttf +0 -0
  345. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.woff +0 -0
  346. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblDuty.woff2 +0 -0
  347. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.eot +0 -0
  348. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.svg +0 -13
  349. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.ttf +0 -0
  350. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrol.woff +0 -0
  351. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.eot +0 -0
  352. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.svg +0 -29
  353. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.ttf +0 -0
  354. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.woff +0 -0
  355. package/dist/content/icons/cw-icons/fonts/cwCrewControlNewIcon/cblcrewcontrolfont.woff2 +0 -0
  356. package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.eot +0 -0
  357. package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.svg +0 -29
  358. package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.ttf +0 -0
  359. package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.woff +0 -0
  360. package/dist/content/icons/cw-icons/fonts/cwCrewFont/Crew.woff2 +0 -0
  361. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.eot +0 -0
  362. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.svg +0 -17
  363. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.ttf +0 -0
  364. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.woff +0 -0
  365. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/Crew Planning.woff2 +0 -0
  366. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.eot +0 -0
  367. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.svg +0 -20
  368. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.ttf +0 -0
  369. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.woff +0 -0
  370. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewPlanningFont.woff2 +0 -0
  371. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.eot +0 -0
  372. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.svg +0 -12
  373. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.ttf +0 -0
  374. package/dist/content/icons/cw-icons/fonts/cwCrewPlanningFont/CrewSchedulingFont.woff +0 -0
  375. package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.eot +0 -0
  376. package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.svg +0 -20
  377. package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.ttf +0 -0
  378. package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.woff +0 -0
  379. package/dist/content/icons/cw-icons/fonts/cwDispatchFont/Dispatch.woff2 +0 -0
  380. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.eot +0 -0
  381. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.svg +0 -12
  382. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.ttf +0 -0
  383. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/ArchiveEmanual.woff +0 -0
  384. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.eot +0 -0
  385. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.svg +0 -14
  386. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.ttf +0 -0
  387. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/CblEmanualNewIcons.woff +0 -0
  388. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.eot +0 -0
  389. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.svg +0 -38
  390. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.ttf +0 -0
  391. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.woff +0 -0
  392. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/Emanual.woff2 +0 -0
  393. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.eot +0 -0
  394. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.svg +0 -11
  395. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.ttf +0 -0
  396. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualApprovedFile.woff +0 -0
  397. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.eot +0 -0
  398. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.svg +0 -17
  399. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.ttf +0 -0
  400. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.woff +0 -0
  401. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMark.woff2 +0 -0
  402. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.eot +0 -0
  403. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.svg +0 -11
  404. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.ttf +0 -0
  405. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualBookMarkLink.woff +0 -0
  406. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.eot +0 -0
  407. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.svg +0 -11
  408. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.ttf +0 -0
  409. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFolder.woff +0 -0
  410. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.eot +0 -0
  411. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.svg +0 -13
  412. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.ttf +0 -0
  413. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFont.woff +0 -0
  414. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.eot +0 -0
  415. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.svg +0 -32
  416. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.ttf +0 -0
  417. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.woff +0 -0
  418. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualFontNew.woff2 +0 -0
  419. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.eot +0 -0
  420. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.svg +0 -11
  421. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.ttf +0 -0
  422. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPendingIcon.woff +0 -0
  423. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.eot +0 -0
  424. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.svg +0 -11
  425. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.ttf +0 -0
  426. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishFile.woff +0 -0
  427. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.eot +0 -0
  428. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.svg +0 -11
  429. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.ttf +0 -0
  430. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualPublishIconFile.woff +0 -0
  431. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.eot +0 -0
  432. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.svg +0 -11
  433. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.ttf +0 -0
  434. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrash.woff +0 -0
  435. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.eot +0 -0
  436. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.svg +0 -11
  437. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.ttf +0 -0
  438. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/EmanualRestoreTrashRight.woff +0 -0
  439. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.eot +0 -0
  440. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.svg +0 -12
  441. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.ttf +0 -0
  442. package/dist/content/icons/cw-icons/fonts/cwEmanualFont/LibraryIcon.woff +0 -0
  443. package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.eot +0 -0
  444. package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.svg +0 -158
  445. package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.ttf +0 -0
  446. package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.woff +0 -0
  447. package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/Favorites.woff2 +0 -0
  448. package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.eot +0 -0
  449. package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.svg +0 -18
  450. package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.ttf +0 -0
  451. package/dist/content/icons/cw-icons/fonts/cwFavoritesElement/cwellt_icon.woff +0 -0
  452. package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.eot +0 -0
  453. package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.svg +0 -62
  454. package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.ttf +0 -0
  455. package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.woff +0 -0
  456. package/dist/content/icons/cw-icons/fonts/cwFavoritesFont/Favorites.woff2 +0 -0
  457. package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.eot +0 -0
  458. package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.svg +0 -43
  459. package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.ttf +0 -0
  460. package/dist/content/icons/cw-icons/fonts/cwFavoritesIcons/CblFavoritesIcons.woff +0 -0
  461. package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.eot +0 -0
  462. package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.svg +0 -49
  463. package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.ttf +0 -0
  464. package/dist/content/icons/cw-icons/fonts/cwFgIconsFonts/CblFigIcons.woff +0 -0
  465. package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.eot +0 -0
  466. package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.svg +0 -41
  467. package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.ttf +0 -0
  468. package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.woff +0 -0
  469. package/dist/content/icons/cw-icons/fonts/cwFlightOpsFont/FlightOps.woff2 +0 -0
  470. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.eot +0 -0
  471. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.svg +0 -11
  472. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.ttf +0 -0
  473. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/CblUndoIcon.woff +0 -0
  474. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.eot +0 -0
  475. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.svg +0 -11
  476. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.ttf +0 -0
  477. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/FlightWatchOnTimeIcon.woff +0 -0
  478. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.eot +0 -0
  479. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.svg +0 -41
  480. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.ttf +0 -0
  481. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.woff +0 -0
  482. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/General.woff2 +0 -0
  483. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.eot +0 -0
  484. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.svg +0 -12
  485. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.ttf +0 -0
  486. package/dist/content/icons/cw-icons/fonts/cwGeneralFont/IDCardStatusIcon.woff +0 -0
  487. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.eot +0 -0
  488. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.svg +0 -17
  489. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.ttf +0 -0
  490. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.woff +0 -0
  491. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/Favorites.woff2 +0 -0
  492. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.eot +0 -0
  493. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.svg +0 -11
  494. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.ttf +0 -0
  495. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/calculator.woff +0 -0
  496. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.eot +0 -0
  497. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.svg +0 -11
  498. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.ttf +0 -0
  499. package/dist/content/icons/cw-icons/fonts/cwNewGeneralFontIcon/icons_cwellt.woff +0 -0
  500. package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.eot +0 -0
  501. package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.svg +0 -12
  502. package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.ttf +0 -0
  503. package/dist/content/icons/cw-icons/fonts/cwOpstoolReactFont/opstoolReactIcons.woff +0 -0
  504. package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.eot +0 -0
  505. package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.svg +0 -17
  506. package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.ttf +0 -0
  507. package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.woff +0 -0
  508. package/dist/content/icons/cw-icons/fonts/cwPaxRelationsFont/Pax Relations.woff2 +0 -0
  509. package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.eot +0 -0
  510. package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.svg +0 -50
  511. package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.ttf +0 -0
  512. package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.woff +0 -0
  513. package/dist/content/icons/cw-icons/fonts/cwSalesFont/Sales.woff2 +0 -0
  514. package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.eot +0 -0
  515. package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.svg +0 -17
  516. package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.ttf +0 -0
  517. package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.woff +0 -0
  518. package/dist/content/icons/cw-icons/fonts/cwTrainingFont/Training.woff2 +0 -0
  519. package/dist/content/icons/font-awesome/webfonts/fa-brands-400.ttf +0 -0
  520. package/dist/content/icons/font-awesome/webfonts/fa-regular-400.ttf +0 -0
  521. package/dist/content/icons/font-awesome/webfonts/fa-solid-900.ttf +0 -0
  522. package/dist/content/icons/font-awesome/webfonts/fa-v4compatibility.ttf +0 -0
  523. package/dist/index.cjs.js.map +0 -1
  524. package/dist/index.css.map +0 -1
  525. package/dist/index.d.ts.map +0 -1
  526. package/dist/index.esm.js +0 -4836
  527. package/dist/src/common/functions/reactor.d.ts +0 -2
  528. package/dist/src/common/functions/reactor.d.ts.map +0 -1
  529. package/dist/src/components/control/input/chipper/CwChip.d.ts +0 -12
  530. package/dist/src/components/control/input/chipper/CwChip.d.ts.map +0 -1
  531. package/dist/src/components/custom/scheduler/components/ClearSchedulerButton.d.ts +0 -8
  532. package/dist/src/components/custom/scheduler/components/ClearSchedulerButton.d.ts.map +0 -1
  533. package/dist/src/components/custom/scheduler/logic/filtering/filterAndProcessResources.d.ts +0 -14
  534. package/dist/src/components/custom/scheduler/logic/filtering/filterAndProcessResources.d.ts.map +0 -1
  535. package/dist/src/components/custom/scheduler/logic/pixels/calculateMaxPxFromDateRange.d.ts +0 -2
  536. package/dist/src/components/custom/scheduler/logic/pixels/calculateMaxPxFromDateRange.d.ts.map +0 -1
  537. package/dist/src/components/custom/scheduler/logic/state_handle/handleDateChange.d.ts +0 -5
  538. package/dist/src/components/custom/scheduler/logic/state_handle/handleDateChange.d.ts.map +0 -1
  539. package/dist/src/components/custom/scheduler/logic/state_handle/handlePropChanges.d.ts +0 -5
  540. package/dist/src/components/custom/scheduler/logic/state_handle/handlePropChanges.d.ts.map +0 -1
  541. package/dist/src/components/custom/scheduler/logic/state_handle/onResizeEvent.d.ts +0 -3
  542. package/dist/src/components/custom/scheduler/logic/state_handle/onResizeEvent.d.ts.map +0 -1
  543. package/dist/src/components/custom/scheduler/logic/ui/getHasPropsChanged.d.ts +0 -3
  544. package/dist/src/components/custom/scheduler/logic/ui/getHasPropsChanged.d.ts.map +0 -1
  545. package/dist/src/components/custom/scheduler/logic/ui/shouldTriggerScroll.d.ts +0 -3
  546. package/dist/src/components/custom/scheduler/logic/ui/shouldTriggerScroll.d.ts.map +0 -1
  547. package/dist/src/components/custom/scheduler/state/EventProps.d.ts +0 -7
  548. package/dist/src/components/custom/scheduler/state/EventProps.d.ts.map +0 -1
  549. package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgrounEvent.d.ts +0 -1
  550. package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgrounEvent.d.ts.map +0 -1
  551. package/dist/src/components/custom/scheduler-new/presentation/components/row/cancellablePromise.d.ts +0 -7
  552. package/dist/src/components/custom/scheduler-new/presentation/components/row/cancellablePromise.d.ts.map +0 -1
  553. package/dist/src/components/custom/scheduler-new/presentation/components/row/useCancellablePromise.d.ts +0 -7
  554. package/dist/src/components/custom/scheduler-new/presentation/components/row/useCancellablePromise.d.ts.map +0 -1
  555. package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsByResource.d.ts +0 -5
  556. package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsByResource.d.ts.map +0 -1
  557. package/dist/src/components/custom/scheduler-new/presentation/state/external/Event.d.ts +0 -9
  558. package/dist/src/components/custom/scheduler-new/presentation/state/external/Event.d.ts.map +0 -1
  559. package/dist/src/components/custom/scheduler-new/presentation/state/external/Row.d.ts +0 -5
  560. package/dist/src/components/custom/scheduler-new/presentation/state/external/Row.d.ts.map +0 -1
  561. package/dist/src/components/custom/scheduler-new/presentation/state/ui/EventSideDragState.d.ts +0 -6
  562. package/dist/src/components/custom/scheduler-new/presentation/state/ui/EventSideDragState.d.ts.map +0 -1
  563. package/dist/src/components/custom/scheduler-new/presentation/state/ui/HeaderDivision.d.ts +0 -5
  564. package/dist/src/components/custom/scheduler-new/presentation/state/ui/HeaderDivision.d.ts.map +0 -1
  565. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerEventState.d.ts +0 -14
  566. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerEventState.d.ts.map +0 -1
  567. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerHeaderState.d.ts +0 -11
  568. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerHeaderState.d.ts.map +0 -1
  569. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerRow.d.ts +0 -8
  570. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerRow.d.ts.map +0 -1
  571. package/dist/test/components/custom/newScheduler/presentation/logic/getDefaultDivisions.test.d.ts.map +0 -1
  572. package/dist/test/components/custom/scheduler/calculateMaxPxFromDateRange.test.d.ts +0 -2
  573. package/dist/test/components/custom/scheduler/calculateMaxPxFromDateRange.test.d.ts.map +0 -1
  574. package/dist/test/components/custom/scheduler/filterEvents.test.d.ts.map +0 -1
  575. package/dist/test/components/custom/scheduler/shouldTriggerScroll.test.d.ts.map +0 -1
  576. package/dist/test/example.test.d.ts +0 -1
  577. package/dist/test/example.test.d.ts.map +0 -1
  578. /package/dist/src/{components/custom/scheduler-new/presentation/TestScheduler.d.ts → common/interfaces/CwSelectListProps.js} +0 -0
  579. /package/dist/{test/components/custom/newScheduler/presentation/logic/getDefaultDivisions.test.d.ts → src/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.js} +0 -0
  580. /package/dist/{test/components/custom/newScheduler/presentation/logic/hoursBetween.test.d.ts → src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.js} +0 -0
  581. /package/dist/{test/components/custom/newScheduler/presentation/logic/weekendCalc.test.d.ts → src/components/custom/scheduler-new/presentation/state/ui/WeekRange.js} +0 -0
  582. /package/dist/{test/components/custom/scheduler/filterEvents.test.d.ts → src/components/custom/scheduler-temporal/state/CwSchedulerProps.js} +0 -0
  583. /package/dist/{test/components/custom/scheduler/shouldTriggerScroll.test.d.ts → src/components/custom/scheduler-temporal/state/State.js} +0 -0
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,187 @@
1
+ /*
2
+ * This file is RESERVED for import/export ONLY
3
+ - You can find all the exported react components in here
4
+ ? For exported styles go to "./index.css"
5
+ ! ALWAYS put a './' at the start of import paths
6
+ */
7
+ import "./index.css";
8
+ // ================================ COMMON ================================== \\
9
+ // Select List
10
+ export { CwSelectList } from "./common/classes/CwSelectList";
11
+ export { CwSelectListItems } from "./common/classes/CwSelectListItems";
12
+ // ================================ DISPLAY ===================================\\
13
+ // TEXT
14
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
15
+ // Headings
16
+ export { CwHeadingMain } from "./components/display/text/heading/CwHeadingMain";
17
+ export { CwHeadingSecond } from "./components/display/text/heading/CwHeadingSecond";
18
+ // Label
19
+ export { CwLabel } from "./components/display/text/label/CwLabel";
20
+ // Tooltip
21
+ export { CwTooltip } from "./components/display/text/tooltip/CwTooltip";
22
+ // Tag
23
+ export { CwChip } from "./components/display/text/tag/CwChip";
24
+ export { CwTag } from "./components/display/text/tag/CwTag";
25
+ // Message
26
+ export { CwDisplayMessage, CwMessage, CwMessageManager, CwMessageType, useCwMessage } from "./components/display/text/message/CwMessage";
27
+ // Note
28
+ export { CwNote } from "./components/display/text/note/CwNote";
29
+ // GRAPHIC
30
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
31
+ // Icon
32
+ export { CwIcon } from "./components/display/graphics/icon/CwIcon";
33
+ // Loading
34
+ export { CwLoading } from "./components/display/graphics/loading/CwLoading";
35
+ // Loading/Small
36
+ export { CwLoadingSmall } from "./components/display/graphics/loading-small/CwLoadingSmall";
37
+ // DATA
38
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
39
+ export { CwGenericTooltip } from "./components/display/data/generic_tooltip/CwGenericTooltip";
40
+ // ================================ LAYOUT ================================== \\
41
+ // MODAL
42
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
43
+ // Modal
44
+ export { CwModal } from "./components/layout/modal/legacy/cw_modal";
45
+ // Modal/Confirm
46
+ export { CwModalConfirm } from "./components/layout/modal/legacy/cw_modal_confirm";
47
+ // Modal/Iframe
48
+ export { CwModalIframe } from "./components/layout/modal/legacy/cw_modal_iframe";
49
+ // Modal/Report
50
+ export { CwModalReportFunctional } from "./components/layout/modal/CwModalReportFunctional";
51
+ export { CwReportModal } from "./components/layout/modal/legacy/cw_modal_report";
52
+ // Modal/hover
53
+ export { CwModalHover } from "./components/layout/modal/hover/CwModalHover";
54
+ // Dialog
55
+ export { CwDialog } from "./components/layout/dialog/CwDialog";
56
+ // Notification
57
+ export { CwDialogManager } from "./components/layout/dialog/CwDialogManager";
58
+ // Align
59
+ export { CwAlign } from "./components/layout/align/CwAlign";
60
+ // Card
61
+ export { CwCard } from "./components/layout/card/CwCard";
62
+ export { CwCardList } from "./components/layout/card/CwCardList";
63
+ // LIST
64
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
65
+ // Container/Accordion
66
+ export { CwAccordionContainer } from "./components/display/data/accordion/CwAccordionContainer";
67
+ // Table
68
+ export { CwTable } from "./components/display/data/table/CwTable";
69
+ // Tabs
70
+ export { CwTabs } from "./components/layout/tabs/CwTabs";
71
+ // Expandable
72
+ export { CwExpandable } from "./components/layout/list/details/CwExpandable";
73
+ // KeyValueList
74
+ export { CwKeyValueList } from "./components/layout/list/key-value/CwKeyValueList";
75
+ // Sortable
76
+ export { CwSortableList } from "./components/layout/list/sortable/CwSortableList";
77
+ export { useSortableList } from "./components/layout/list/sortable/useSortableList";
78
+ // TABLE
79
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
80
+ // GroupedTable
81
+ export { CwTableGrouped } from "./components/layout/table/grouped/CwTableGrouped";
82
+ // =============================== CONTROL ================================== \\
83
+ // INPUT
84
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
85
+ // File
86
+ export { CwFileUpload } from "./components/control/input/file/CwFileUpload";
87
+ export { CwFileUploadMultiple } from "./components/control/input/file/CwFileUploadMultiple";
88
+ // Input
89
+ export { CwInput } from "./components/control/input/any/CwInput";
90
+ // Input number (digit) new one
91
+ export { CwDigit } from "./components/control/input/digit/CwDigit";
92
+ // Input color
93
+ export { CwColorPicker } from "./components/control/input/color/CwColorPicker";
94
+ export { CwInputColor } from "./components/control/input/color/CwInputColor";
95
+ // Text
96
+ export { CwInputText } from "./components/control/input/text/CwInputText";
97
+ // Phone
98
+ export { CwInputPhone } from "./components/control/input/phone/CwInputPhone";
99
+ // Number
100
+ export { CwInputNumber } from "./components/control/input/number/CwInputNumber";
101
+ // Textarea
102
+ export { CwTextArea } from "./components/control/input/text-area/CwTextArea";
103
+ // Date
104
+ export { CwInputDate } from "./components/control/input/date/CwInputDate";
105
+ // Date picker
106
+ export { CwInputDatePicker } from "./components/control/input/date-picker/CwInputDatePicker";
107
+ // Datetime
108
+ export { CwInputDatetime } from "./components/control/input/datetime/CwInputDatetime";
109
+ // Input time
110
+ export { CwTime } from "./components/control/input/time/CwTime";
111
+ // Date text
112
+ export { CwInputDateText } from "./components/control/input/date-text/CwInputDateText";
113
+ // Image
114
+ export { CwInputImage } from "./components/control/input/image/CwInputImage";
115
+ // Image area
116
+ export { CwImageArea } from "./components/control/input/image-area/CwImageArea";
117
+ // Weekday
118
+ export { CwWeekdaySelector, Weekdays } from "./components/control/input/weekday/CwWeekdaySelector";
119
+ // CHOICE
120
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
121
+ // Checkbox
122
+ export { CwCheckbox } from "./components/control/choice/checkbox/CwCheckbox";
123
+ // Toggle
124
+ export { CwToggle } from "./components/control/choice/toggle/CwToggle";
125
+ // Select
126
+ export { CwSelect } from "./components/control/choice/select/CwSelect";
127
+ // Option
128
+ export { CwOption } from "./components/control/choice/option/CwOption";
129
+ // Dropdown
130
+ export { CwDropdown } from "./components/control/choice/dropdown/CwDropdown";
131
+ export { CwDropdownContainer } from "./components/control/choice/dropdown/CwDropdownContainer";
132
+ export { CwDropdownFilter } from "./components/control/choice/dropdown/CwDropdownFilter";
133
+ // Multiselect - old/deprecated
134
+ export { MultiSelect } from "./components/control/choice/deprecated/MultiSelect_deprecated_";
135
+ // Multiselect
136
+ export { itemsToMultiFilterTags } from "./common/functions/collections";
137
+ export { CwHeadFilter } from "./components/control/choice/multiselect/CwHeadFilter";
138
+ export { CwMultiselect } from "./components/control/choice/multiselect/CwMultiselect";
139
+ export { CwOptionList } from "./components/control/choice/multiselect/CwOptionList";
140
+ // MultiFilter - new!
141
+ export { CwMultiFilterTag } from "./components/control/choice/multi-filter/components/tag/CwMultiFilterTag";
142
+ export { CwMultiFilter } from "./components/control/choice/multi-filter/CwMultiFilter";
143
+ // ACTION
144
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
145
+ // Search
146
+ export { CwSearchInput } from "./components/control/action/search/CwSearch";
147
+ // Context menu
148
+ export { CwContextMenu } from "./components/control/action/contextmenu/CwContextMenu";
149
+ // Contextual menu, scientists have not yet found the difference between this and CwContextMenu
150
+ export { CwContextualMenu } from "./components/control/action/contextual-menu/CwContextualMenu";
151
+ // Button
152
+ export { CwButton } from "./components/control/action/button/CwButton";
153
+ // Buttons
154
+ export { CwBtnAdd, CwBtnAddFolder, CwBtnAirport, CwBtnAlert, CwBtnApprove, CwBtnBookMark, CwBtnBulkDuty, CwBtnCancel, CwBtnCrewPlanning, CwBtnDelay, CwBtnDelete, CwBtnDownload, CwBtnDownLoadAllInfo, CwBtnDropDownMenu, CwBtnEdit, CwBtnEditFolder, CwBtnFiles, CwBtnGeneratePairing, CwBtnGoBackFolder, CwBtnHide, CwBtnImportRequests, CwBtnMVT, CwBtnNavFirstItemView, CwBtnNavLastItemView, CwBtnNavNextDay, CwBtnNavPreviewItem, CwBtnPairing, CwBtnPrint, CwBtnPropertyFolder, CwBtnPublish, CwBtnRefresh, CwBtnReleasePeriod, CwBtnSave, CwBtnSearch, CwBtnSelect, CwBtnShare, CwBtnStatistic, CwBtnUploadFiles, CwBtnVacations, CwBtnView, CwButtonDef, CwFloatingButton } from "./components/control/action/buttons/CwButtons";
155
+ // ========================== CLIENT COMPONENTS ============================= \\
156
+ import { CwScheduler2 } from "./components/custom/scheduler-temporal/CwSchedulerComp2";
157
+ import { CwScheduler } from "./components/custom/scheduler/CwSchedulerComp";
158
+ export { CwScheduler, CwScheduler2 };
159
+ // NEW SCHEDULER
160
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
161
+ export { Scheduler } from "./components/custom/scheduler-new/presentation/NewScheduler";
162
+ // Components
163
+ export { DefaultRowHeader } from "./components/custom/scheduler-new/presentation/components/row/DefaultRowHeader";
164
+ export { SchedulerEvent } from "./components/custom/scheduler-new/presentation/components/row/Event";
165
+ // Helpers
166
+ export { eventIsVisible } from "../src/components/custom/scheduler-new/presentation/logic/eventIsVisible";
167
+ export { getDefaultDivisions } from "./components/custom/scheduler-new/presentation/logic/getDefaultDivisions";
168
+ export { getEventSizes } from "./components/custom/scheduler-new/presentation/logic/getEventSizes";
169
+ // Events
170
+ export { UiEvent } from "./common/functions/dsl/UiEventDSL";
171
+ // OLD SCHEDULER
172
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
173
+ // Components
174
+ export { CwSuperScheduler } from "./components/custom/scheduler/CwSuperSchedulerComp";
175
+ // State
176
+ export { cblEvent } from "./components/custom/scheduler/state/cblEvent";
177
+ export { Resource } from "./components/custom/scheduler/state/Resource";
178
+ // Types
179
+ export { CblDragAndDrop } from "./components/custom/scheduler/CwSuperSchedulerComp";
180
+ import { PinRowHeader } from "./components/custom/super-scheduler/PinRowHeader";
181
+ import { SuperScheduler } from "./components/custom/super-scheduler/SuperScheduler";
182
+ import { OnClearPinned, OnPinRow, OnUnpinRow } from "./components/custom/super-scheduler/SuperSchedulerEvents";
183
+ // OTHER
184
+ // '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
185
+ export { CwFindAirport } from "./components/custom/find-airport/CwFindAirportComp";
186
+ export { OnClearPinned, OnPinRow, OnUnpinRow, PinRowHeader, SuperScheduler };
187
+ export { OnClickContextMenu, OnClickEvent, OnClickRowEvent, OnClickRowHeader, OnClickUtc, OnDoubleClickEvent, OnDoubleClickRowEvent, OnDragEvent, OnDropCtrlEvent, OnDropEvent, OnEndClickHeaderEvent, OnLeftDragStart, OnMultiClickEvent, OnRangeClickEvent, OnRightClickEvent, OnRightClickRow, OnRightDragStart, OnStartClickHeaderEvent } from "./components/custom/scheduler-new/presentation/NewSchedulerUiEvents";
@@ -0,0 +1,48 @@
1
+ import { getWeeksByDays } from "../../../../../../src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions";
2
+ describe("getWeeksByDays", () => {
3
+ test("should return empty list if 0 days", () => {
4
+ expect(getWeeksByDays(0, new Date("2024-10-13"))).toStrictEqual([]);
5
+ });
6
+ test("should return empty list if negative days", () => {
7
+ expect(getWeeksByDays(-20, new Date("2024-10-13"))).toStrictEqual([]);
8
+ });
9
+ test("if 1 day should return 1 WeekRange", () => {
10
+ const weekRanges = getWeeksByDays(1, new Date("2024-10-13"));
11
+ expect(weekRanges.length).toBe(1);
12
+ });
13
+ test("if 2 days should return 2 days in same weekRange ", () => {
14
+ const weekRanges = getWeeksByDays(2, new Date("2024-10-14"));
15
+ const first = weekRanges[0];
16
+ expect(first.days).toBe(2);
17
+ });
18
+ test("if 2 days first sunday should return 2 weekRanges", () => {
19
+ const weekRanges = getWeeksByDays(2, new Date("2024-10-13"));
20
+ expect(weekRanges.length).toBe(2);
21
+ const first = weekRanges[0];
22
+ expect(first.days).toBe(1);
23
+ });
24
+ test("when first day is monday and 8 days first should return 7 days", () => {
25
+ const weekRanges = getWeeksByDays(8, new Date("2024-09-02"));
26
+ const first = weekRanges[0];
27
+ expect(first.days).toBe(7);
28
+ });
29
+ test("When first day is sunday first should return 1 day", () => {
30
+ const weekRanges = getWeeksByDays(2, new Date("2024-09-01"));
31
+ const first = weekRanges[0];
32
+ expect(first.days).toBe(1);
33
+ });
34
+ test("When last day is monday last should return 1 day", () => {
35
+ const weekRanges = getWeeksByDays(2, new Date("2024-09-08"));
36
+ const last = weekRanges[weekRanges.length - 1];
37
+ expect(weekRanges.length).toBe(2);
38
+ expect(last.days).toBe(1);
39
+ });
40
+ test("when 29 days and stars sunday should return 5 weeks ", () => {
41
+ const weekRanges = getWeeksByDays(29, new Date("2024-09-01"));
42
+ const last = weekRanges[weekRanges.length - 1];
43
+ const first = weekRanges[0];
44
+ expect(weekRanges.length).toBe(5);
45
+ expect(last.days).toBe(7);
46
+ expect(first.days).toBe(1);
47
+ });
48
+ });
@@ -0,0 +1,15 @@
1
+ import { hoursBetween } from "../../../../../../src/components/custom/scheduler-new/presentation/logic/getEventSizes";
2
+ describe("hoursbetween", () => {
3
+ test("from hour to 1 more expect 1", () => {
4
+ const hours = hoursBetween(new Date("2024-10-14"), new Date("2024-10-14T01:00:00.000Z"));
5
+ expect(hours).toBe(1);
6
+ });
7
+ test("from hour to 30m more expect 0.5", () => {
8
+ const hours = hoursBetween(new Date("2024-10-14"), new Date("2024-10-14T00:30:00.000Z"));
9
+ expect(hours).toBe(0.5);
10
+ });
11
+ test("from hour to 30m more expect 0.5", () => {
12
+ const hours = hoursBetween(new Date("2024-10-14"), new Date("2024-10-13T23:30:00.000Z"));
13
+ expect(hours).toBe(-0.5);
14
+ });
15
+ });
@@ -0,0 +1,42 @@
1
+ import { getMonthsByDays, } from "../../../../../../src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions";
2
+ describe("getMonthdivisions", () => {
3
+ test("should return empty list if 0 days", () => {
4
+ expect(getMonthsByDays(0, new Date("2024-10-13"))).toStrictEqual([]);
5
+ });
6
+ test("should return empty list if 0 days", () => {
7
+ expect(getMonthsByDays(1, new Date("2024-10-13"))).toStrictEqual([
8
+ {
9
+ start: new Date("2024-10-13"),
10
+ days: 1
11
+ }
12
+ ]);
13
+ });
14
+ test("should return 2 divisions 31 days", () => {
15
+ expect(getMonthsByDays(31, new Date("2024-12-30"))).toStrictEqual([
16
+ {
17
+ start: new Date("2024-12-30"),
18
+ days: 2
19
+ },
20
+ {
21
+ start: new Date("2025-01-01"),
22
+ days: 29
23
+ }
24
+ ]);
25
+ });
26
+ test("should return 3 divisions 45 days", () => {
27
+ expect(getMonthsByDays(45, new Date("2024-12-30"))).toStrictEqual([
28
+ {
29
+ start: new Date("2024-12-30"),
30
+ days: 2
31
+ },
32
+ {
33
+ start: new Date("2025-01-01"),
34
+ days: 31
35
+ },
36
+ {
37
+ start: new Date("2025-02-01"),
38
+ days: 12
39
+ }
40
+ ]);
41
+ });
42
+ });
@@ -0,0 +1,30 @@
1
+ import { getWeekendLinesByDatesVisible, getWeekendsDaysInDateRange } from "../../../../../../src/components/custom/scheduler-new/presentation/logic/WeekendCalc";
2
+ describe("getWeekendsDaysInDateRange", () => {
3
+ test("from monday to friday should return 0 days", () => {
4
+ const days = getWeekendsDaysInDateRange(new Date("2004-03-22"), 5);
5
+ expect(days.length).toBe(0);
6
+ });
7
+ test("from monday to sunday should return 2 days", () => {
8
+ const days = getWeekendsDaysInDateRange(new Date("2004-03-22"), 7);
9
+ expect(days.length).toBe(2);
10
+ });
11
+ test("from monday to sunday should return saturday and sunday of the week", () => {
12
+ const days = getWeekendsDaysInDateRange(new Date("2004-03-22"), 7);
13
+ expect(days[0].toString()).toStrictEqual(new Date("2004-03-27").toString());
14
+ expect(days[1].toString()).toStrictEqual(new Date("2004-03-28").toString());
15
+ });
16
+ test("from monday to sunday in two weeks should return 4 days", () => {
17
+ const days = getWeekendsDaysInDateRange(new Date("2004-03-22"), 14);
18
+ expect(days.length).toBe(4);
19
+ });
20
+ test("from sunday to sunday in two weeks should return 3 days", () => {
21
+ const days = getWeekendsDaysInDateRange(new Date("2004-03-28"), 8);
22
+ expect(days.length).toBe(3);
23
+ });
24
+ });
25
+ describe("getWeekendLinesByDatesVisible", () => {
26
+ test("from day 28-11-24 to 5 days show return 2 positive widths", () => {
27
+ const days = getWeekendLinesByDatesVisible(new Date("2024-11-28"), 5);
28
+ expect(days[1].width).toBeGreaterThan(0);
29
+ });
30
+ });
@@ -0,0 +1,43 @@
1
+ import { addMinutesToDateFromPx } from "../../../../src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx";
2
+ describe("addMinutesToDateFromPx", () => {
3
+ it("should correctly add minutes to the original date", () => {
4
+ const originalDate = new Date("2023-01-01T00:00:00Z");
5
+ const leftPx = 100;
6
+ const minutesPerPx = 10;
7
+ const expectedDate = new Date("2023-01-01T00:10:00Z");
8
+ const result = addMinutesToDateFromPx(originalDate, leftPx, minutesPerPx);
9
+ expect(result).toEqual(expectedDate);
10
+ });
11
+ it("should handle zero pixels correctly", () => {
12
+ const originalDate = new Date("2023-01-01T00:00:00Z");
13
+ const leftPx = 0;
14
+ const minutesPerPx = 10;
15
+ const expectedDate = new Date("2023-01-01T00:00:00Z");
16
+ const result = addMinutesToDateFromPx(originalDate, leftPx, minutesPerPx);
17
+ expect(result).toEqual(expectedDate);
18
+ });
19
+ it("should handle negative pixel values correctly", () => {
20
+ const originalDate = new Date("2023-01-01T00:00:00Z");
21
+ const leftPx = -50;
22
+ const minutesPerPx = 10;
23
+ const expectedDate = new Date("2022-12-31T23:55:00Z");
24
+ const result = addMinutesToDateFromPx(originalDate, leftPx, minutesPerPx);
25
+ expect(result).toEqual(expectedDate);
26
+ });
27
+ it("should handle non-integer minutes per pixel correctly", () => {
28
+ const originalDate = new Date("2023-01-01T00:00:00Z");
29
+ const leftPx = 46.5;
30
+ const minutesPerPx = 15.5;
31
+ const expectedDate = new Date("2023-01-01T00:03:00Z");
32
+ const result = addMinutesToDateFromPx(originalDate, leftPx, minutesPerPx);
33
+ expect(result).toEqual(expectedDate);
34
+ });
35
+ it("should handle non-integer pixel values correctly", () => {
36
+ const originalDate = new Date("2023-01-01T00:00:00Z");
37
+ const leftPx = 75.5;
38
+ const minutesPerPx = 10;
39
+ const expectedDate = new Date("2023-01-01T00:07:33Z");
40
+ const result = addMinutesToDateFromPx(originalDate, leftPx, minutesPerPx);
41
+ expect(result).toEqual(expectedDate);
42
+ });
43
+ });
@@ -0,0 +1,30 @@
1
+ import { checkIfSlotAvailable } from "../../../../src/components/custom/scheduler/logic/ui/checkIfSlotAvailable";
2
+ import { cblEvent } from "../../../../src/components/custom/scheduler/state/cblEvent";
3
+ describe("checkIfSlotAvailable", () => {
4
+ const baseDate = new Date("2023-01-01T00:00:00");
5
+ test("returns true when event starts after the last event ends", () => {
6
+ const events = [new cblEvent(new Date(baseDate.getTime()), new Date(baseDate.getTime() + 3600000), 1)];
7
+ const newEvent = new cblEvent(new Date(baseDate.getTime() + 3600001), new Date(baseDate.getTime() + 7200000), 1);
8
+ expect(checkIfSlotAvailable(events, newEvent)).toBe(true);
9
+ });
10
+ test("returns false when event starts before the last event ends", () => {
11
+ const events = [new cblEvent(new Date(baseDate.getTime()), new Date(baseDate.getTime() + 3600000), 1)];
12
+ const newEvent = new cblEvent(new Date(baseDate.getTime() + 3599999), new Date(baseDate.getTime() + 7200000), 1);
13
+ expect(checkIfSlotAvailable(events, newEvent)).toBe(false);
14
+ });
15
+ test("returns true when the last event is full height, regardless of timing", () => {
16
+ const events = [new cblEvent(new Date(baseDate.getTime()), new Date(baseDate.getTime() + 3600000), 1, null, true)];
17
+ const newEvent = new cblEvent(new Date(baseDate.getTime() + 1800000), new Date(baseDate.getTime() + 5400000), 1);
18
+ expect(checkIfSlotAvailable(events, newEvent)).toBe(true);
19
+ });
20
+ test("returns true when events array is empty", () => {
21
+ const events = [];
22
+ const newEvent = new cblEvent(new Date(baseDate.getTime()), new Date(baseDate.getTime() + 3600000), 1);
23
+ expect(checkIfSlotAvailable(events, newEvent)).toBe(true);
24
+ });
25
+ test("returns true when new event starts exactly when last event ends", () => {
26
+ const events = [new cblEvent(new Date(baseDate.getTime()), new Date(baseDate.getTime() + 3600000), 1)];
27
+ const newEvent = new cblEvent(new Date(baseDate.getTime() + 3600000), new Date(baseDate.getTime() + 7200000), 1);
28
+ expect(checkIfSlotAvailable(events, newEvent)).toBe(true);
29
+ });
30
+ });
@@ -0,0 +1,61 @@
1
+ import { daysBetweenTwoDates } from "../../../../src/components/custom/scheduler/logic/dates/daysBetweenTwoDates";
2
+ describe("daysBetweenTwoDates", () => {
3
+ test("should return 0 for the same dates", () => {
4
+ const date1 = new Date("2024-07-19");
5
+ const date2 = new Date("2024-07-19");
6
+ const result = daysBetweenTwoDates(date1, date2);
7
+ expect(result).toBe(0);
8
+ });
9
+ test("should return 1 for dates one day apart", () => {
10
+ const date1 = new Date("2024-07-18");
11
+ const date2 = new Date("2024-07-19");
12
+ const result = daysBetweenTwoDates(date1, date2);
13
+ expect(result).toBe(1);
14
+ });
15
+ test("handles reverse order of dates", () => {
16
+ const date1 = new Date("2023-01-01");
17
+ const date2 = new Date("2023-01-05");
18
+ expect(daysBetweenTwoDates(date2, date1)).toBe(4);
19
+ });
20
+ test("handles dates across months", () => {
21
+ const date1 = new Date("2023-01-31");
22
+ const date2 = new Date("2023-02-02");
23
+ expect(daysBetweenTwoDates(date1, date2)).toBe(2);
24
+ });
25
+ test("handles dates across years", () => {
26
+ const date1 = new Date("2022-12-31");
27
+ const date2 = new Date("2023-01-01");
28
+ expect(daysBetweenTwoDates(date1, date2)).toBe(1);
29
+ });
30
+ test("handles leap year", () => {
31
+ const date1 = new Date("2024-02-28");
32
+ const date2 = new Date("2024-03-01");
33
+ expect(daysBetweenTwoDates(date1, date2)).toBe(2);
34
+ });
35
+ test("should return 1 for dates hours apart", () => {
36
+ const date1 = new Date("2024-07-19T00:00:00");
37
+ const date2 = new Date("2024-07-19T01:00:00");
38
+ const result = daysBetweenTwoDates(date1, date2);
39
+ expect(result).toBe(1);
40
+ });
41
+ test("doesn't handles daylight saving time change (spring forward)", () => {
42
+ // Note: This test assumes a timezone that observes DST
43
+ const date1 = new Date("2023-03-12T01:59:59-05:00");
44
+ const date2 = new Date("2023-03-12T03:00:00-04:00");
45
+ // TODO: should be 0 change after the refactor
46
+ expect(daysBetweenTwoDates(date1, date2)).toBe(1);
47
+ });
48
+ test("handles daylight saving time change (fall back)", () => {
49
+ // Using America/New_York timezone for this test
50
+ const date1 = new Date("2023-11-05T01:59:59-04:00");
51
+ const date2 = new Date("2023-11-05T01:00:00-05:00");
52
+ // TODO: should be 0 change after the refactor
53
+ expect(daysBetweenTwoDates(date1, date2)).toBe(1);
54
+ });
55
+ test("should return 30 for dates one month apart (June to July)", () => {
56
+ const date1 = new Date("2024-06-19");
57
+ const date2 = new Date("2024-07-19");
58
+ const result = daysBetweenTwoDates(date1, date2);
59
+ expect(result).toBe(30);
60
+ });
61
+ });
@@ -0,0 +1,27 @@
1
+ import { daysBetweenTwoDatesIncludingBoth } from "../../../../src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil";
2
+ describe("daysBetweenTwoDatesWithoutCeilForEvent", () => {
3
+ test("should return 0 for the same dates", () => {
4
+ const date1 = new Date("2024-07-19");
5
+ const date2 = new Date("2024-07-19");
6
+ const result = daysBetweenTwoDatesIncludingBoth(date1, date2);
7
+ expect(result).toBe(0);
8
+ });
9
+ test("should return 1 for dates one day apart", () => {
10
+ const date1 = new Date("2024-07-18");
11
+ const date2 = new Date("2024-07-19");
12
+ const result = daysBetweenTwoDatesIncludingBoth(date1, date2);
13
+ expect(result).toBe(1);
14
+ });
15
+ test("should return 0.5 for dates 12 hours apart", () => {
16
+ const date1 = new Date("2024-07-19T00:00:00");
17
+ const date2 = new Date("2024-07-19T12:00:00");
18
+ const result = daysBetweenTwoDatesIncludingBoth(date1, date2);
19
+ expect(result).toBe(0.5);
20
+ });
21
+ test("should return 30 for dates one month apart (June to July)", () => {
22
+ const date1 = new Date("2024-06-19");
23
+ const date2 = new Date("2024-07-19");
24
+ const result = daysBetweenTwoDatesIncludingBoth(date1, date2);
25
+ expect(result).toBe(30);
26
+ });
27
+ });
@@ -0,0 +1,30 @@
1
+ import { getGUID } from "../../../../src/components/custom/scheduler/logic/strings/getGUID";
2
+ describe("getGUID", () => {
3
+ it("should return a string", () => {
4
+ const result = getGUID();
5
+ expect(typeof result).toBe("string");
6
+ });
7
+ it("should return a string of length 36", () => {
8
+ const result = getGUID();
9
+ expect(result.length).toBe(36);
10
+ });
11
+ it("should return a string with four hyphens", () => {
12
+ const result = getGUID();
13
+ const hyphens = result.match(/-/g);
14
+ expect(hyphens).toHaveLength(4);
15
+ });
16
+ it("should return a string with hyphens at positions 8 and 13", () => {
17
+ const result = getGUID();
18
+ expect(result.charAt(8)).toBe("-");
19
+ expect(result.charAt(13)).toBe("-");
20
+ });
21
+ it("should return a string with only hexadecimal characters and hyphens", () => {
22
+ const result = getGUID();
23
+ expect(result).toMatch(/^[0-9a-f-]+$/i);
24
+ });
25
+ it("should return different GUIDs on subsequent calls", () => {
26
+ const guid1 = getGUID();
27
+ const guid2 = getGUID();
28
+ expect(guid1).not.toBe(guid2);
29
+ });
30
+ });
@@ -0,0 +1,38 @@
1
+ import { getLeftPixels, } from "../../../../src/components/custom/scheduler/logic/pixels/getPixelsForEvent";
2
+ describe("getLeftPixels", () => {
3
+ it("should calculate pixels correctly when stateStart is after eventStart", () => {
4
+ const stateStart = new Date("2024-01-10");
5
+ const eventStart = new Date("2024-01-01");
6
+ const dayPx = 10;
7
+ const result = getLeftPixels(stateStart, eventStart, dayPx);
8
+ expect(result).toBe(90);
9
+ });
10
+ it("should return 0 if eventStart is before newStart", () => {
11
+ const eventStart = new Date("2024-01-01");
12
+ const newStart = new Date("2024-01-10");
13
+ const dayPx = 10;
14
+ const result = getLeftPixels(eventStart, newStart, dayPx);
15
+ expect(result).toBe(0);
16
+ });
17
+ it("should return good if eventStart is 16.10.2024 12:00 and start is 14-10-2024", () => {
18
+ const eventStart = new Date("2024-10-16T12:00:00Z");
19
+ const newStart = new Date("2024-10-14");
20
+ const dayPx = 10;
21
+ const result = getLeftPixels(eventStart, newStart, dayPx);
22
+ expect(result).toBe(25);
23
+ });
24
+ it("should return", () => {
25
+ const eventStart = new Date("2024-11-04T04:10:00Z");
26
+ const newStart = new Date("2024-11-04");
27
+ const dayPx = 1;
28
+ const result = getLeftPixels(eventStart, newStart, dayPx);
29
+ expect(result).toBeCloseTo(0.173);
30
+ });
31
+ it("should return", () => {
32
+ const eventStart = new Date("2024-11-04T15:05:00Z");
33
+ const newStart = new Date("2024-11-04");
34
+ const dayPx = 1;
35
+ const result = getLeftPixels(eventStart, newStart, dayPx);
36
+ expect(result).toBeCloseTo(0.628);
37
+ });
38
+ });
@@ -0,0 +1,35 @@
1
+ import { getTimeHeaders } from "../../../../src/components/custom/scheduler/logic/ui/getTimeHeaders";
2
+ describe("getTimeHeaders", () => {
3
+ it("should return correct array of dates for summer offset", () => {
4
+ const startDate = new Date("2024-07-01T00:00:00Z");
5
+ const endDate = new Date("2024-07-01T02:00:00Z");
6
+ const result = getTimeHeaders(startDate, endDate);
7
+ expect(result).toEqual([new Date("2024-07-01T00:00:00Z"), new Date("2024-07-01T01:00:00Z")]);
8
+ });
9
+ it("should handle empty range", () => {
10
+ const startDate = new Date("2024-07-01T00:00:00Z");
11
+ const endDate = new Date("2024-07-01T00:00:00Z");
12
+ const result = getTimeHeaders(startDate, endDate);
13
+ expect(result).toEqual([]);
14
+ });
15
+ it("should handle different time zones correctly", () => {
16
+ const startDate = new Date("2024-07-01T00:00:00+02:00");
17
+ const endDate = new Date("2024-07-01T03:00:00+02:00");
18
+ const result = getTimeHeaders(startDate, endDate);
19
+ expect(result).toEqual([
20
+ new Date("2024-07-01T00:00:00+02:00"),
21
+ new Date("2024-07-01T01:00:00+02:00"),
22
+ new Date("2024-07-01T02:00:00+02:00")
23
+ ]);
24
+ });
25
+ it("should handle date ranges spanning multiple days", () => {
26
+ const startDate = new Date("2024-07-01T23:00:00Z");
27
+ const endDate = new Date("2024-07-02T02:00:00Z");
28
+ const result = getTimeHeaders(startDate, endDate);
29
+ expect(result).toEqual([
30
+ new Date("2024-07-01T23:00:00Z"),
31
+ new Date("2024-07-02T00:00:00Z"),
32
+ new Date("2024-07-02T01:00:00Z")
33
+ ]);
34
+ });
35
+ });