@cwellt_software/cwellt-reactjs-lib 1.2.13 → 1.2.14

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 (774) hide show
  1. package/dist/content/icons/new-cw-icons/NewCwIcons.json +1 -204
  2. package/dist/content/icons/new-cw-icons/css/new-cw-icons.css +9 -1
  3. package/dist/content/icons/new-cw-icons/fonts/NewCwIcons.woff +0 -0
  4. package/dist/index.cjs.js +1170 -1592
  5. package/dist/index.css +1 -1
  6. package/dist/index.d.ts +323 -154
  7. package/dist/index.es.js +1165 -1592
  8. package/dist/playground/main.d.ts +4 -0
  9. package/dist/playground/main.d.ts.map +1 -0
  10. package/dist/src/common/classes/CwSelectList.js +12 -0
  11. package/dist/src/common/classes/CwSelectListItems.js +14 -0
  12. package/dist/src/common/functions/collections.d.ts.map +1 -1
  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.d.ts +1 -1
  16. package/dist/src/common/functions/dsl/UiEventDSL.js +20 -0
  17. package/dist/src/common/functions/useSingleAndDoubleClicks.js +28 -0
  18. package/dist/src/common/interfaces/CwFormTypes.d.ts +5 -0
  19. package/dist/src/common/interfaces/CwFormTypes.d.ts.map +1 -0
  20. package/dist/src/common/interfaces/CwSelectListProps.js +1 -0
  21. package/dist/src/components/control/action/button/CwButton.js +13 -0
  22. package/dist/src/components/control/action/buttons/CwButtons.js +188 -0
  23. package/dist/src/components/control/action/contextmenu/CwContextMenu.js +43 -0
  24. package/dist/src/components/control/action/contextual-menu/CwContextualMenu.js +55 -0
  25. package/dist/src/components/control/action/search/CwSearch.js +67 -0
  26. package/dist/src/components/control/action/tooltip-dialog/CwTooltipDialog.js +11 -0
  27. package/dist/src/components/control/choice/checkbox/CwCheck.d.ts +15 -0
  28. package/dist/src/components/control/choice/checkbox/CwCheck.d.ts.map +1 -0
  29. package/dist/src/components/control/choice/checkbox/CwCheckbox.d.ts +4 -0
  30. package/dist/src/components/control/choice/checkbox/CwCheckbox.d.ts.map +1 -1
  31. package/dist/src/components/control/choice/checkbox/CwCheckbox.js +15 -0
  32. package/dist/src/components/control/choice/checkbox/CwCheckboxGroup.d.ts +35 -0
  33. package/dist/src/components/control/choice/checkbox/CwCheckboxGroup.d.ts.map +1 -0
  34. package/dist/src/components/control/choice/deprecated/MultiSelect_deprecated_.js +99 -0
  35. package/dist/src/components/control/choice/dropdown/CwDropdown.js +27 -0
  36. package/dist/src/components/control/choice/dropdown/CwDropdownContainer.js +30 -0
  37. package/dist/src/components/control/choice/dropdown/CwDropdownFilter.js +10 -0
  38. package/dist/src/components/control/choice/multi-filter/CwMultiFilter.d.ts.map +1 -1
  39. package/dist/src/components/control/choice/multi-filter/CwMultiFilter.js +298 -0
  40. package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts +1 -0
  41. package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts.map +1 -1
  42. package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.js +17 -0
  43. package/dist/src/components/control/choice/multiselect/CwHeadFilter.js +80 -0
  44. package/dist/src/components/control/choice/multiselect/CwMultiselect.js +393 -0
  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.d.ts +7 -1
  48. package/dist/src/components/control/choice/select/CwSelect.d.ts.map +1 -1
  49. package/dist/src/components/control/choice/select/CwSelect.js +36 -0
  50. package/dist/src/components/control/choice/toggle/CwToggle.d.ts +1 -1
  51. package/dist/src/components/control/choice/toggle/CwToggle.d.ts.map +1 -1
  52. package/dist/src/components/control/choice/toggle/CwToggle.js +9 -0
  53. package/dist/src/components/control/input/any/CwInput.js +16 -0
  54. package/dist/src/components/control/input/color/CwColorPicker.js +210 -0
  55. package/dist/src/components/control/input/color/CwInputColor.d.ts +30 -0
  56. package/dist/src/components/control/input/color/CwInputColor.d.ts.map +1 -1
  57. package/dist/src/components/control/input/color/CwInputColor.js +142 -0
  58. package/dist/src/components/control/input/date/CwInputDate.js +29 -0
  59. package/dist/src/components/control/input/date-picker/CwInputDatePicker.js +109 -0
  60. package/dist/src/components/control/input/date-text/CwInputDateText.js +90 -0
  61. package/dist/src/components/control/input/datetime/CwInputDatetime.js +29 -0
  62. package/dist/src/components/control/input/digit/CwDigit.js +28 -0
  63. package/dist/src/components/control/input/file/CwFileUpload.js +52 -0
  64. package/dist/src/components/control/input/file/CwFileUploadMultiple.js +148 -0
  65. package/dist/src/components/control/input/image/CwInputImage.js +52 -0
  66. package/dist/src/components/control/input/image-area/CwImageArea.js +113 -0
  67. package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts.map +1 -1
  68. package/dist/src/components/control/input/new-dates/CwDateRangePicker.d.ts.map +1 -1
  69. package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts +3 -1
  70. package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts.map +1 -1
  71. package/dist/src/components/control/input/new-dates/CwDateTimePickerCompact.d.ts.map +1 -1
  72. package/dist/src/components/control/input/new-dates/CwTimePicker.d.ts.map +1 -1
  73. package/dist/src/components/control/input/new-dates/dateRangePresets.d.ts.map +1 -1
  74. package/dist/src/components/control/input/new-dates/example.d.ts +2 -0
  75. package/dist/src/components/control/input/new-dates/example.d.ts.map +1 -0
  76. package/dist/src/components/control/input/new-dates/usePickerPopup.d.ts +24 -0
  77. package/dist/src/components/control/input/new-dates/usePickerPopup.d.ts.map +1 -0
  78. package/dist/src/components/control/input/new-dates/utils/timezoneHelpers.d.ts +22 -0
  79. package/dist/src/components/control/input/new-dates/utils/timezoneHelpers.d.ts.map +1 -0
  80. package/dist/src/components/control/input/number/CwInputNumber.js +11 -0
  81. package/dist/src/components/control/input/phone/CwInputPhone.js +24 -0
  82. package/dist/src/components/control/input/text/CwInputText.d.ts +7 -0
  83. package/dist/src/components/control/input/text/CwInputText.d.ts.map +1 -1
  84. package/dist/src/components/control/input/text/CwInputText.js +31 -0
  85. package/dist/src/components/control/input/text-area/CwTextArea.d.ts +6 -0
  86. package/dist/src/components/control/input/text-area/CwTextArea.d.ts.map +1 -1
  87. package/dist/src/components/control/input/text-area/CwTextArea.js +9 -0
  88. package/dist/src/components/control/input/time/CwTime.js +29 -0
  89. package/dist/src/components/control/input/weekday/CwWeekdaySelector.js +143 -0
  90. package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts +1 -0
  91. package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts.map +1 -1
  92. package/dist/src/components/custom/find-airport/CwFindAirportComp.js +240 -0
  93. package/dist/src/components/custom/scheduler/CwSchedulerComp.d.ts.map +1 -1
  94. package/dist/src/components/custom/scheduler/CwSchedulerComp.js +211 -0
  95. package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.d.ts.map +1 -1
  96. package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.js +269 -0
  97. package/dist/src/components/custom/scheduler/components/EventRender.js +142 -0
  98. package/dist/src/components/custom/scheduler/components/ResourceListRender.js +12 -0
  99. package/dist/src/components/custom/scheduler/components/ResourceRender.js +26 -0
  100. package/dist/src/components/custom/scheduler/components/day_headers/DayHeader.js +13 -0
  101. package/dist/src/components/custom/scheduler/components/day_headers/MonthHeader.js +12 -0
  102. package/dist/src/components/custom/scheduler/components/day_headers/MyDaysHeader.js +62 -0
  103. package/dist/src/components/custom/scheduler/components/day_headers/WeekHeader.js +13 -0
  104. package/dist/src/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.js +24 -0
  105. package/dist/src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.js +17 -0
  106. package/dist/src/components/custom/scheduler/components/scheduler_header/SchedulerHeader.js +26 -0
  107. package/dist/src/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
  108. package/dist/src/components/custom/scheduler/components/time_headers/TimeHeader.js +31 -0
  109. package/dist/src/components/custom/scheduler/components/time_headers/TimeHeaderRow.js +16 -0
  110. package/dist/src/components/custom/scheduler/components/time_line/TimeLine.d.ts.map +1 -1
  111. package/dist/src/components/custom/scheduler/components/time_line/TimeLine.js +12 -0
  112. package/dist/src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.d.ts.map +1 -1
  113. package/dist/src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.js +5 -0
  114. package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.d.ts.map +1 -1
  115. package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.js +15 -0
  116. package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map +1 -1
  117. package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
  118. package/dist/src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.d.ts.map +1 -1
  119. package/dist/src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.js +43 -0
  120. package/dist/src/components/custom/scheduler/logic/dates/getMonthHeaderData.d.ts.map +1 -1
  121. package/dist/src/components/custom/scheduler/logic/dates/getMonthHeaderData.js +35 -0
  122. package/dist/src/components/custom/scheduler/logic/dates/getUtcToday.js +6 -0
  123. package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map +1 -1
  124. package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
  125. package/dist/src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.d.ts.map +1 -1
  126. package/dist/src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.js +55 -0
  127. package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisionType.d.ts.map +1 -1
  128. package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisionType.js +13 -0
  129. package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisions.d.ts.map +1 -1
  130. package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisions.js +16 -0
  131. package/dist/src/components/custom/scheduler/logic/filtering/filterEvents.d.ts.map +1 -1
  132. package/dist/src/components/custom/scheduler/logic/filtering/filterEvents.js +33 -0
  133. package/dist/src/components/custom/scheduler/logic/filtering/filterResources.d.ts.map +1 -1
  134. package/dist/src/components/custom/scheduler/logic/filtering/filterResources.js +14 -0
  135. package/dist/src/components/custom/scheduler/logic/filtering/hasSameProperties.d.ts.map +1 -1
  136. package/dist/src/components/custom/scheduler/logic/filtering/hasSameProperties.js +10 -0
  137. package/dist/src/components/custom/scheduler/logic/onDrop/OnDrop.js +45 -0
  138. package/dist/src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.d.ts.map +1 -1
  139. package/dist/src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.js +14 -0
  140. package/dist/src/components/custom/scheduler/logic/pixels/getPixelsForEvent.d.ts.map +1 -1
  141. package/dist/src/components/custom/scheduler/logic/pixels/getPixelsForEvent.js +32 -0
  142. package/dist/src/components/custom/scheduler/logic/pixels/heightScheduler.d.ts.map +1 -1
  143. package/dist/src/components/custom/scheduler/logic/pixels/heightScheduler.js +14 -0
  144. package/dist/src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.d.ts.map +1 -1
  145. package/dist/src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.js +9 -0
  146. package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts.map +1 -1
  147. package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.js +5 -0
  148. package/dist/src/components/custom/scheduler/logic/state_handle/handleResourceChange.d.ts.map +1 -1
  149. package/dist/src/components/custom/scheduler/logic/state_handle/handleResourceChange.js +11 -0
  150. package/dist/src/components/custom/scheduler/logic/state_handle/onDragOver.d.ts.map +1 -1
  151. package/dist/src/components/custom/scheduler/logic/state_handle/onDragOver.js +9 -0
  152. package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts.map +1 -1
  153. package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.js +3 -0
  154. package/dist/src/components/custom/scheduler/logic/strings/compareStrings.d.ts.map +1 -1
  155. package/dist/src/components/custom/scheduler/logic/strings/compareStrings.js +7 -0
  156. package/dist/src/components/custom/scheduler/logic/strings/getGUID.js +7 -0
  157. package/dist/src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.d.ts.map +1 -1
  158. package/dist/src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.js +8 -0
  159. package/dist/src/components/custom/scheduler/logic/ui/getEventsOfResource.d.ts.map +1 -1
  160. package/dist/src/components/custom/scheduler/logic/ui/getEventsOfResource.js +45 -0
  161. package/dist/src/components/custom/scheduler/logic/ui/getTimeHeaders.d.ts.map +1 -1
  162. package/dist/src/components/custom/scheduler/logic/ui/getTimeHeaders.js +35 -0
  163. package/dist/src/components/custom/scheduler/logic/ui/isAllowedToMove.d.ts.map +1 -1
  164. package/dist/src/components/custom/scheduler/logic/ui/isAllowedToMove.js +19 -0
  165. package/dist/src/components/custom/scheduler/logic/ui/updateResourceVisibility.d.ts.map +1 -1
  166. package/dist/src/components/custom/scheduler/logic/ui/updateResourceVisibility.js +15 -0
  167. package/dist/src/components/custom/scheduler/state/CblDragAndDrop.js +18 -0
  168. package/dist/src/components/custom/scheduler/state/CwSchedulerProps.js +1 -0
  169. package/dist/src/components/custom/scheduler/state/Resource.js +18 -0
  170. package/dist/src/components/custom/scheduler/state/State.js +1 -0
  171. package/dist/src/components/custom/scheduler/state/cblEvent.js +28 -0
  172. package/dist/src/components/custom/scheduler/state/cblEventCompProps.js +1 -0
  173. package/dist/src/components/custom/scheduler/state/resourceCompProps2.js +1 -0
  174. package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.d.ts +2 -1
  175. package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.d.ts.map +1 -1
  176. package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.js +123 -0
  177. package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.js +118 -0
  178. package/dist/src/components/custom/scheduler-new/presentation/SchedulerPresenter.d.ts.map +1 -1
  179. package/dist/src/components/custom/scheduler-new/presentation/SchedulerPresenter.js +166 -0
  180. package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderDivision.js +26 -0
  181. package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderTitle.js +8 -0
  182. package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.js +86 -0
  183. package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.js +1 -0
  184. package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.js +60 -0
  185. package/dist/src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.js +24 -0
  186. package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.d.ts.map +1 -1
  187. package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.js +150 -0
  188. package/dist/src/components/custom/scheduler-new/presentation/components/row/EventSideDrag.js +11 -0
  189. package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts +1 -1
  190. package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts.map +1 -1
  191. package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.js +176 -0
  192. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts +1 -0
  193. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts.map +1 -1
  194. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.js +8 -0
  195. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/TimeLine.js +39 -0
  196. package/dist/src/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.js +8 -0
  197. package/dist/src/components/custom/scheduler-new/presentation/helpers.d.ts.map +1 -1
  198. package/dist/src/components/custom/scheduler-new/presentation/helpers.js +43 -0
  199. package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts.map +1 -1
  200. package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.js +24 -0
  201. package/dist/src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.js +7 -0
  202. package/dist/src/components/custom/scheduler-new/presentation/logic/eventIsVisible.d.ts.map +1 -1
  203. package/dist/src/components/custom/scheduler-new/presentation/logic/eventIsVisible.js +7 -0
  204. package/dist/src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.d.ts.map +1 -1
  205. package/dist/src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.js +113 -0
  206. package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts +1 -1
  207. package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts.map +1 -1
  208. package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.js +21 -0
  209. package/dist/src/components/custom/scheduler-new/presentation/logic/getEventSizes.d.ts.map +1 -1
  210. package/dist/src/components/custom/scheduler-new/presentation/logic/getEventSizes.js +30 -0
  211. package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts.map +1 -1
  212. package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.js +13 -0
  213. package/dist/src/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.js +7 -0
  214. package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.d.ts.map +1 -1
  215. package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.js +32 -0
  216. package/dist/src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.d.ts.map +1 -1
  217. package/dist/src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.js +12 -0
  218. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts +1 -0
  219. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts.map +1 -1
  220. package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.js +1 -0
  221. package/dist/src/components/custom/scheduler-new/presentation/state/ui/WeekRange.js +1 -0
  222. package/dist/src/components/custom/scheduler-temporal/CwSchedulerComp2.js +267 -0
  223. package/dist/src/components/custom/scheduler-temporal/CwSuperSchedulerComp.js +269 -0
  224. package/dist/src/components/custom/scheduler-temporal/components/EventRender.js +142 -0
  225. package/dist/src/components/custom/scheduler-temporal/components/ResourceListRender.js +12 -0
  226. package/dist/src/components/custom/scheduler-temporal/components/ResourceRender.js +26 -0
  227. package/dist/src/components/custom/scheduler-temporal/components/day_headers/DayHeader.js +13 -0
  228. package/dist/src/components/custom/scheduler-temporal/components/day_headers/MonthHeader.js +12 -0
  229. package/dist/src/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.js +62 -0
  230. package/dist/src/components/custom/scheduler-temporal/components/day_headers/WeekHeader.js +13 -0
  231. package/dist/src/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.js +22 -0
  232. package/dist/src/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.js +17 -0
  233. package/dist/src/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.js +26 -0
  234. package/dist/src/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
  235. package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeader.js +31 -0
  236. package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.js +16 -0
  237. package/dist/src/components/custom/scheduler-temporal/components/time_line/TimeLine.js +12 -0
  238. package/dist/src/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.js +5 -0
  239. package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.js +15 -0
  240. package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
  241. package/dist/src/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.js +43 -0
  242. package/dist/src/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.js +35 -0
  243. package/dist/src/components/custom/scheduler-temporal/logic/dates/getUtcToday.js +6 -0
  244. package/dist/src/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
  245. package/dist/src/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.js +55 -0
  246. package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.js +13 -0
  247. package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.js +16 -0
  248. package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.js +10 -0
  249. package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterEvents.js +34 -0
  250. package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterResources.js +14 -0
  251. package/dist/src/components/custom/scheduler-temporal/logic/filtering/hasSameProperties.js +10 -0
  252. package/dist/src/components/custom/scheduler-temporal/logic/onDrop/OnDrop.js +36 -0
  253. package/dist/src/components/custom/scheduler-temporal/logic/pixels/getHeightLineScheduler.js +14 -0
  254. package/dist/src/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.js +32 -0
  255. package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightScheduler.js +14 -0
  256. package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightSchedulerPinned.js +9 -0
  257. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.js +5 -0
  258. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handlePropChanges.js +178 -0
  259. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handleResourceChange.js +11 -0
  260. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDragOver.js +9 -0
  261. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.js +3 -0
  262. package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.js +3 -0
  263. package/dist/src/components/custom/scheduler-temporal/logic/strings/compareStrings.js +7 -0
  264. package/dist/src/components/custom/scheduler-temporal/logic/strings/getGUID.js +7 -0
  265. package/dist/src/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.js +9 -0
  266. package/dist/src/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.js +92 -0
  267. package/dist/src/components/custom/scheduler-temporal/logic/ui/getHasPropsChanged.js +242 -0
  268. package/dist/src/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.js +35 -0
  269. package/dist/src/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.js +19 -0
  270. package/dist/src/components/custom/scheduler-temporal/logic/ui/shouldTriggerScroll.js +241 -0
  271. package/dist/src/components/custom/scheduler-temporal/logic/ui/updateResourceVisibility.js +15 -0
  272. package/dist/src/components/custom/scheduler-temporal/state/CblDragAndDrop.js +18 -0
  273. package/dist/src/components/custom/scheduler-temporal/state/CwSchedulerProps.js +1 -0
  274. package/dist/src/components/custom/scheduler-temporal/state/Resource.js +18 -0
  275. package/dist/src/components/custom/scheduler-temporal/state/State.js +1 -0
  276. package/dist/src/components/custom/scheduler-temporal/state/cblEvent.js +28 -0
  277. package/dist/src/components/custom/scheduler-temporal/state/cblEventCompProps.js +1 -0
  278. package/dist/src/components/custom/scheduler-temporal/state/resourceCompProps2.js +1 -0
  279. package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts +1 -2
  280. package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts.map +1 -1
  281. package/dist/src/components/custom/super-scheduler/PinRowHeader.js +53 -0
  282. package/dist/src/components/custom/super-scheduler/SuperScheduler.d.ts +1 -0
  283. package/dist/src/components/custom/super-scheduler/SuperScheduler.d.ts.map +1 -1
  284. package/dist/src/components/custom/super-scheduler/SuperScheduler.js +23 -0
  285. package/dist/src/components/custom/super-scheduler/SuperSchedulerEvents.js +15 -0
  286. package/dist/src/components/custom/super-scheduler/SuperSchedulerPresenter.js +45 -0
  287. package/dist/src/components/display/data/accordion/CwAccordionContainer.js +20 -0
  288. package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.d.ts +13 -0
  289. package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.d.ts.map +1 -1
  290. package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.js +138 -0
  291. package/dist/src/components/display/data/table/CwTable.d.ts +1 -1
  292. package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
  293. package/dist/src/components/display/data/table/CwTable.js +203 -0
  294. package/dist/src/components/display/data/table_sortable/CwSortableTable.d.ts +74 -0
  295. package/dist/src/components/display/data/table_sortable/CwSortableTable.d.ts.map +1 -0
  296. package/dist/src/components/display/data/table_sortable/useSortableTable.d.ts +42 -0
  297. package/dist/src/components/display/data/table_sortable/useSortableTable.d.ts.map +1 -0
  298. package/dist/src/components/display/data/tooltip_manager/CwTooltip.d.ts +25 -0
  299. package/dist/src/components/display/data/tooltip_manager/CwTooltip.d.ts.map +1 -0
  300. package/dist/src/components/display/data/tooltip_manager/CwTooltipManager.d.ts +19 -0
  301. package/dist/src/components/display/data/tooltip_manager/CwTooltipManager.d.ts.map +1 -0
  302. package/dist/src/components/display/graphics/icon/CwIcon.js +23 -0
  303. package/dist/src/components/display/graphics/loading/CwLoading.js +27 -0
  304. package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.js +20 -0
  305. package/dist/src/components/display/text/heading/CwHeadingMain.js +5 -0
  306. package/dist/src/components/display/text/heading/CwHeadingSecond.js +5 -0
  307. package/dist/src/components/display/text/label/CwLabel.js +13 -0
  308. package/dist/src/components/display/text/message/CwMessage.js +75 -0
  309. package/dist/src/components/display/text/note/CwNote.d.ts +1 -1
  310. package/dist/src/components/display/text/note/CwNote.d.ts.map +1 -1
  311. package/dist/src/components/display/text/note/CwNote.js +78 -0
  312. package/dist/src/components/display/text/tag/CwChip.d.ts +1 -1
  313. package/dist/src/components/display/text/tag/CwChip.d.ts.map +1 -1
  314. package/dist/src/components/display/text/tag/CwChip.js +57 -0
  315. package/dist/src/components/display/text/tag/CwTag.js +21 -0
  316. package/dist/src/components/display/text/tooltip/CwTooltip.d.ts +4 -1
  317. package/dist/src/components/display/text/tooltip/CwTooltip.d.ts.map +1 -1
  318. package/dist/src/components/display/text/tooltip/CwTooltip.js +4 -0
  319. package/dist/src/components/layout/align/CwAlign.js +54 -0
  320. package/dist/src/components/layout/card/CwCard.js +55 -0
  321. package/dist/src/components/layout/card/CwCardList.js +38 -0
  322. package/dist/src/components/layout/dialog/CwDialog.d.ts +2 -0
  323. package/dist/src/components/layout/dialog/CwDialog.d.ts.map +1 -1
  324. package/dist/src/components/layout/dialog/CwDialog.js +255 -0
  325. package/dist/src/components/layout/dialog/CwDialogManager.d.ts.map +1 -1
  326. package/dist/src/components/layout/dialog/CwDialogManager.js +44 -0
  327. package/dist/src/components/layout/list/details/CwExpandable.js +28 -0
  328. package/dist/src/components/layout/list/key-value/CwKeyValueList.js +23 -0
  329. package/dist/src/components/layout/list/sortable/CwSortableList.d.ts +2 -1
  330. package/dist/src/components/layout/list/sortable/CwSortableList.d.ts.map +1 -1
  331. package/dist/src/components/layout/list/sortable/CwSortableList.js +73 -0
  332. package/dist/src/components/layout/list/sortable/useSortableList.js +53 -0
  333. package/dist/src/components/layout/master-detail/CwMasterDetail.d.ts +41 -0
  334. package/dist/src/components/layout/master-detail/CwMasterDetail.d.ts.map +1 -0
  335. package/dist/src/components/layout/modal/CwModalReportFunctional.js +23 -0
  336. package/dist/src/components/layout/modal/hover/CwModalHover.js +61 -0
  337. package/dist/src/components/layout/modal/legacy/cw_modal.d.ts.map +1 -1
  338. package/dist/src/components/layout/modal/legacy/cw_modal.js +44 -0
  339. package/dist/src/components/layout/modal/legacy/cw_modal_confirm.js +39 -0
  340. package/dist/src/components/layout/modal/legacy/cw_modal_iframe.js +44 -0
  341. package/dist/src/components/layout/modal/legacy/cw_modal_report.d.ts +0 -2
  342. package/dist/src/components/layout/modal/legacy/cw_modal_report.d.ts.map +1 -1
  343. package/dist/src/components/layout/modal/legacy/cw_modal_report.js +26 -0
  344. package/dist/{components/layout/table/grouped/CwTableGrouped.d.ts → src/components/layout/table/grouped/CwTableGrouped.js} +13 -23
  345. package/dist/src/components/layout/tabs/CwTabs.js +53 -0
  346. package/dist/src/dev/index.d.ts +5 -0
  347. package/dist/src/dev/index.d.ts.map +1 -0
  348. package/dist/src/dev/palette.d.ts +3 -0
  349. package/dist/src/dev/palette.d.ts.map +1 -0
  350. package/dist/src/dev/previews.d.ts +3 -0
  351. package/dist/src/dev/previews.d.ts.map +1 -0
  352. package/dist/src/dev/useInitial.d.ts +3 -0
  353. package/dist/src/dev/useInitial.d.ts.map +1 -0
  354. package/dist/src/index.d.ts +8 -3
  355. package/dist/src/index.d.ts.map +1 -1
  356. package/dist/src/index.js +187 -0
  357. package/dist/src/main.d.ts +3 -0
  358. package/dist/src/main.d.ts.map +1 -0
  359. package/dist/test/components/control/input/new-dates/timezoneHelpers.test.d.ts +2 -0
  360. package/dist/test/components/control/input/new-dates/timezoneHelpers.test.d.ts.map +1 -0
  361. package/dist/test/components/custom/new-scheduler/presentation/logic/getDefaultDivisions.test.js +48 -0
  362. package/dist/test/components/custom/new-scheduler/presentation/logic/hoursBetween.test.js +15 -0
  363. package/dist/test/components/custom/new-scheduler/presentation/logic/monthDivisions.test.js +42 -0
  364. package/dist/test/components/custom/new-scheduler/presentation/logic/weekendCalc.test.js +30 -0
  365. package/dist/test/components/custom/scheduler/addMinutesToDateFromPx.test.js +43 -0
  366. package/dist/test/components/custom/scheduler/checkIfSlotAvailable.test.js +30 -0
  367. package/dist/test/components/custom/scheduler/daysBetweenTwoDates.test.js +61 -0
  368. package/dist/test/components/custom/scheduler/daysBetweenTwoDatesWithoutCeilForEvent.test.js +27 -0
  369. package/dist/test/components/custom/scheduler/getGUID.test.js +30 -0
  370. package/dist/test/components/custom/scheduler/getPixelsForEvent.test.js +38 -0
  371. package/dist/test/components/custom/scheduler/getTimeHeaders.test.js +35 -0
  372. package/dist/test/components/custom/scheduler/hasSameProperties.test.js +51 -0
  373. package/dist/test/components/custom/scheduler/isAllowedToMove.test.js +28 -0
  374. package/dist/test/components/custom/scheduler/listOfDatesToWeeks.test.js +72 -0
  375. package/dist/test/jest.setup.js +1 -0
  376. package/dist/test/vitest.setup.d.ts +2 -0
  377. package/dist/test/vitest.setup.d.ts.map +1 -0
  378. package/package.json +19 -21
  379. package/dist/common/classes/CwSelectList.d.ts +0 -8
  380. package/dist/common/classes/CwSelectList.d.ts.map +0 -1
  381. package/dist/common/classes/CwSelectListItems.d.ts +0 -9
  382. package/dist/common/classes/CwSelectListItems.d.ts.map +0 -1
  383. package/dist/common/functions/collections.d.ts +0 -15
  384. package/dist/common/functions/collections.d.ts.map +0 -1
  385. package/dist/common/functions/colorManipulation.d.ts +0 -6
  386. package/dist/common/functions/colorManipulation.d.ts.map +0 -1
  387. package/dist/common/functions/dsl/UiEventDSL.d.ts +0 -9
  388. package/dist/common/functions/dsl/UiEventDSL.d.ts.map +0 -1
  389. package/dist/common/functions/useSingleAndDoubleClicks.d.ts +0 -7
  390. package/dist/common/functions/useSingleAndDoubleClicks.d.ts.map +0 -1
  391. package/dist/common/interfaces/CwSelectListProps.d.ts +0 -9
  392. package/dist/common/interfaces/CwSelectListProps.d.ts.map +0 -1
  393. package/dist/components/control/action/button/CwButton.d.ts +0 -26
  394. package/dist/components/control/action/button/CwButton.d.ts.map +0 -1
  395. package/dist/components/control/action/buttons/CwButtons.d.ts +0 -59
  396. package/dist/components/control/action/buttons/CwButtons.d.ts.map +0 -1
  397. package/dist/components/control/action/contextmenu/CwContextMenu.d.ts +0 -23
  398. package/dist/components/control/action/contextmenu/CwContextMenu.d.ts.map +0 -1
  399. package/dist/components/control/action/contextual-menu/CwContextualMenu.d.ts +0 -29
  400. package/dist/components/control/action/contextual-menu/CwContextualMenu.d.ts.map +0 -1
  401. package/dist/components/control/action/search/CwSearch.d.ts +0 -16
  402. package/dist/components/control/action/search/CwSearch.d.ts.map +0 -1
  403. package/dist/components/control/choice/checkbox/CwCheckbox.d.ts +0 -17
  404. package/dist/components/control/choice/checkbox/CwCheckbox.d.ts.map +0 -1
  405. package/dist/components/control/choice/deprecated/MultiSelect_deprecated_.d.ts +0 -24
  406. package/dist/components/control/choice/deprecated/MultiSelect_deprecated_.d.ts.map +0 -1
  407. package/dist/components/control/choice/dropdown/CwDropdown.d.ts +0 -19
  408. package/dist/components/control/choice/dropdown/CwDropdown.d.ts.map +0 -1
  409. package/dist/components/control/choice/dropdown/CwDropdownContainer.d.ts +0 -17
  410. package/dist/components/control/choice/dropdown/CwDropdownContainer.d.ts.map +0 -1
  411. package/dist/components/control/choice/dropdown/CwDropdownFilter.d.ts +0 -28
  412. package/dist/components/control/choice/dropdown/CwDropdownFilter.d.ts.map +0 -1
  413. package/dist/components/control/choice/dropdown/CwDropdownNavigation.d.ts +0 -21
  414. package/dist/components/control/choice/dropdown/CwDropdownNavigation.d.ts.map +0 -1
  415. package/dist/components/control/choice/multi-filter/CwMultiFilter.d.ts +0 -158
  416. package/dist/components/control/choice/multi-filter/CwMultiFilter.d.ts.map +0 -1
  417. package/dist/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts +0 -33
  418. package/dist/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts.map +0 -1
  419. package/dist/components/control/choice/multiselect/CwHeadFilter.d.ts +0 -16
  420. package/dist/components/control/choice/multiselect/CwHeadFilter.d.ts.map +0 -1
  421. package/dist/components/control/choice/multiselect/CwMultiselect.d.ts +0 -13
  422. package/dist/components/control/choice/multiselect/CwMultiselect.d.ts.map +0 -1
  423. package/dist/components/control/choice/multiselect/CwOptionList.d.ts +0 -15
  424. package/dist/components/control/choice/multiselect/CwOptionList.d.ts.map +0 -1
  425. package/dist/components/control/choice/option/CwOption.d.ts +0 -17
  426. package/dist/components/control/choice/option/CwOption.d.ts.map +0 -1
  427. package/dist/components/control/choice/select/CwSelect.d.ts +0 -48
  428. package/dist/components/control/choice/select/CwSelect.d.ts.map +0 -1
  429. package/dist/components/control/choice/toggle/CwToggle.d.ts +0 -28
  430. package/dist/components/control/choice/toggle/CwToggle.d.ts.map +0 -1
  431. package/dist/components/control/input/any/CwInput.d.ts +0 -17
  432. package/dist/components/control/input/any/CwInput.d.ts.map +0 -1
  433. package/dist/components/control/input/date/CwInputDate.d.ts +0 -40
  434. package/dist/components/control/input/date/CwInputDate.d.ts.map +0 -1
  435. package/dist/components/control/input/date-picker/CwInputDatePicker.d.ts +0 -7
  436. package/dist/components/control/input/date-picker/CwInputDatePicker.d.ts.map +0 -1
  437. package/dist/components/control/input/date-text/CwInputDateText.d.ts +0 -38
  438. package/dist/components/control/input/date-text/CwInputDateText.d.ts.map +0 -1
  439. package/dist/components/control/input/datetime/CwInputDatetime.d.ts +0 -40
  440. package/dist/components/control/input/datetime/CwInputDatetime.d.ts.map +0 -1
  441. package/dist/components/control/input/digit/CwDigit.d.ts +0 -40
  442. package/dist/components/control/input/digit/CwDigit.d.ts.map +0 -1
  443. package/dist/components/control/input/file/CwFileUpload.d.ts +0 -18
  444. package/dist/components/control/input/file/CwFileUpload.d.ts.map +0 -1
  445. package/dist/components/control/input/file/CwFileUploadMultiple.d.ts +0 -15
  446. package/dist/components/control/input/file/CwFileUploadMultiple.d.ts.map +0 -1
  447. package/dist/components/control/input/image/CwInputImage.d.ts +0 -7
  448. package/dist/components/control/input/image/CwInputImage.d.ts.map +0 -1
  449. package/dist/components/control/input/image-area/CwImageArea.d.ts +0 -53
  450. package/dist/components/control/input/image-area/CwImageArea.d.ts.map +0 -1
  451. package/dist/components/control/input/number/CwInputNumber.d.ts +0 -20
  452. package/dist/components/control/input/number/CwInputNumber.d.ts.map +0 -1
  453. package/dist/components/control/input/phone/CwInputPhone.d.ts +0 -36
  454. package/dist/components/control/input/phone/CwInputPhone.d.ts.map +0 -1
  455. package/dist/components/control/input/text/CwInputText.d.ts +0 -40
  456. package/dist/components/control/input/text/CwInputText.d.ts.map +0 -1
  457. package/dist/components/control/input/text-area/CwTextArea.d.ts +0 -24
  458. package/dist/components/control/input/text-area/CwTextArea.d.ts.map +0 -1
  459. package/dist/components/control/input/time/CwTime.d.ts +0 -40
  460. package/dist/components/control/input/time/CwTime.d.ts.map +0 -1
  461. package/dist/components/control/input/weekday/CwWeekdaySelector.d.ts +0 -53
  462. package/dist/components/control/input/weekday/CwWeekdaySelector.d.ts.map +0 -1
  463. package/dist/components/custom/find-airport/CwFindAirportComp.d.ts +0 -35
  464. package/dist/components/custom/find-airport/CwFindAirportComp.d.ts.map +0 -1
  465. package/dist/components/custom/scheduler/CwSchedulerComp.d.ts +0 -19
  466. package/dist/components/custom/scheduler/CwSchedulerComp.d.ts.map +0 -1
  467. package/dist/components/custom/scheduler/CwSuperSchedulerComp.d.ts +0 -86
  468. package/dist/components/custom/scheduler/CwSuperSchedulerComp.d.ts.map +0 -1
  469. package/dist/components/custom/scheduler/components/EventRender.d.ts +0 -10
  470. package/dist/components/custom/scheduler/components/EventRender.d.ts.map +0 -1
  471. package/dist/components/custom/scheduler/components/ResourceListRender.d.ts +0 -20
  472. package/dist/components/custom/scheduler/components/ResourceListRender.d.ts.map +0 -1
  473. package/dist/components/custom/scheduler/components/ResourceRender.d.ts +0 -14
  474. package/dist/components/custom/scheduler/components/ResourceRender.d.ts.map +0 -1
  475. package/dist/components/custom/scheduler/components/day_headers/DayHeader.d.ts +0 -11
  476. package/dist/components/custom/scheduler/components/day_headers/DayHeader.d.ts.map +0 -1
  477. package/dist/components/custom/scheduler/components/day_headers/MonthHeader.d.ts +0 -11
  478. package/dist/components/custom/scheduler/components/day_headers/MonthHeader.d.ts.map +0 -1
  479. package/dist/components/custom/scheduler/components/day_headers/MyDaysHeader.d.ts +0 -13
  480. package/dist/components/custom/scheduler/components/day_headers/MyDaysHeader.d.ts.map +0 -1
  481. package/dist/components/custom/scheduler/components/day_headers/WeekHeader.d.ts +0 -11
  482. package/dist/components/custom/scheduler/components/day_headers/WeekHeader.d.ts.map +0 -1
  483. package/dist/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.d.ts +0 -14
  484. package/dist/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.d.ts.map +0 -1
  485. package/dist/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.d.ts +0 -23
  486. package/dist/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.d.ts.map +0 -1
  487. package/dist/components/custom/scheduler/components/scheduler_header/SchedulerHeader.d.ts +0 -8
  488. package/dist/components/custom/scheduler/components/scheduler_header/SchedulerHeader.d.ts.map +0 -1
  489. package/dist/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.d.ts +0 -12
  490. package/dist/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.d.ts.map +0 -1
  491. package/dist/components/custom/scheduler/components/time_headers/TimeHeader.d.ts +0 -12
  492. package/dist/components/custom/scheduler/components/time_headers/TimeHeader.d.ts.map +0 -1
  493. package/dist/components/custom/scheduler/components/time_headers/TimeHeaderRow.d.ts +0 -10
  494. package/dist/components/custom/scheduler/components/time_headers/TimeHeaderRow.d.ts.map +0 -1
  495. package/dist/components/custom/scheduler/components/time_line/TimeLine.d.ts +0 -12
  496. package/dist/components/custom/scheduler/components/time_line/TimeLine.d.ts.map +0 -1
  497. package/dist/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.d.ts +0 -2
  498. package/dist/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.d.ts.map +0 -1
  499. package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDates.d.ts +0 -2
  500. package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDates.d.ts.map +0 -1
  501. package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts +0 -2
  502. package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map +0 -1
  503. package/dist/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.d.ts +0 -7
  504. package/dist/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.d.ts.map +0 -1
  505. package/dist/components/custom/scheduler/logic/dates/getMonthHeaderData.d.ts +0 -10
  506. package/dist/components/custom/scheduler/logic/dates/getMonthHeaderData.d.ts.map +0 -1
  507. package/dist/components/custom/scheduler/logic/dates/getUtcToday.d.ts +0 -2
  508. package/dist/components/custom/scheduler/logic/dates/getUtcToday.d.ts.map +0 -1
  509. package/dist/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts +0 -7
  510. package/dist/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map +0 -1
  511. package/dist/components/custom/scheduler/logic/dates/listOfDatesToWeeks.d.ts +0 -8
  512. package/dist/components/custom/scheduler/logic/dates/listOfDatesToWeeks.d.ts.map +0 -1
  513. package/dist/components/custom/scheduler/logic/divisions/calculateDivisionType.d.ts +0 -2
  514. package/dist/components/custom/scheduler/logic/divisions/calculateDivisionType.d.ts.map +0 -1
  515. package/dist/components/custom/scheduler/logic/divisions/calculateDivisions.d.ts +0 -2
  516. package/dist/components/custom/scheduler/logic/divisions/calculateDivisions.d.ts.map +0 -1
  517. package/dist/components/custom/scheduler/logic/filtering/filterEvents.d.ts +0 -3
  518. package/dist/components/custom/scheduler/logic/filtering/filterEvents.d.ts.map +0 -1
  519. package/dist/components/custom/scheduler/logic/filtering/filterResources.d.ts +0 -3
  520. package/dist/components/custom/scheduler/logic/filtering/filterResources.d.ts.map +0 -1
  521. package/dist/components/custom/scheduler/logic/onDrop/OnDrop.d.ts +0 -13
  522. package/dist/components/custom/scheduler/logic/onDrop/OnDrop.d.ts.map +0 -1
  523. package/dist/components/custom/scheduler/logic/pixels/getPixelsForEvent.d.ts +0 -17
  524. package/dist/components/custom/scheduler/logic/pixels/getPixelsForEvent.d.ts.map +0 -1
  525. package/dist/components/custom/scheduler/logic/pixels/heightScheduler.d.ts +0 -3
  526. package/dist/components/custom/scheduler/logic/pixels/heightScheduler.d.ts.map +0 -1
  527. package/dist/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts +0 -4
  528. package/dist/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts.map +0 -1
  529. package/dist/components/custom/scheduler/logic/state_handle/onDragOver.d.ts +0 -2
  530. package/dist/components/custom/scheduler/logic/state_handle/onDragOver.d.ts.map +0 -1
  531. package/dist/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts +0 -5
  532. package/dist/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts.map +0 -1
  533. package/dist/components/custom/scheduler/logic/strings/compareStrings.d.ts +0 -2
  534. package/dist/components/custom/scheduler/logic/strings/compareStrings.d.ts.map +0 -1
  535. package/dist/components/custom/scheduler/logic/strings/getGUID.d.ts +0 -2
  536. package/dist/components/custom/scheduler/logic/strings/getGUID.d.ts.map +0 -1
  537. package/dist/components/custom/scheduler/logic/ui/checkIfSlotAvailable.d.ts +0 -3
  538. package/dist/components/custom/scheduler/logic/ui/checkIfSlotAvailable.d.ts.map +0 -1
  539. package/dist/components/custom/scheduler/logic/ui/getEventsOfResource.d.ts +0 -4
  540. package/dist/components/custom/scheduler/logic/ui/getEventsOfResource.d.ts.map +0 -1
  541. package/dist/components/custom/scheduler/logic/ui/getTimeHeaders.d.ts +0 -2
  542. package/dist/components/custom/scheduler/logic/ui/getTimeHeaders.d.ts.map +0 -1
  543. package/dist/components/custom/scheduler/logic/ui/isAllowedToMove.d.ts +0 -3
  544. package/dist/components/custom/scheduler/logic/ui/isAllowedToMove.d.ts.map +0 -1
  545. package/dist/components/custom/scheduler/state/CblDragAndDrop.d.ts +0 -11
  546. package/dist/components/custom/scheduler/state/CblDragAndDrop.d.ts.map +0 -1
  547. package/dist/components/custom/scheduler/state/CwSchedulerProps.d.ts +0 -43
  548. package/dist/components/custom/scheduler/state/CwSchedulerProps.d.ts.map +0 -1
  549. package/dist/components/custom/scheduler/state/Resource.d.ts +0 -14
  550. package/dist/components/custom/scheduler/state/Resource.d.ts.map +0 -1
  551. package/dist/components/custom/scheduler/state/State.d.ts +0 -19
  552. package/dist/components/custom/scheduler/state/State.d.ts.map +0 -1
  553. package/dist/components/custom/scheduler/state/cblEvent.d.ts +0 -18
  554. package/dist/components/custom/scheduler/state/cblEvent.d.ts.map +0 -1
  555. package/dist/components/custom/scheduler/state/cblEventCompProps.d.ts +0 -7
  556. package/dist/components/custom/scheduler/state/cblEventCompProps.d.ts.map +0 -1
  557. package/dist/components/custom/scheduler/state/resourceCompProps2.d.ts +0 -6
  558. package/dist/components/custom/scheduler/state/resourceCompProps2.d.ts.map +0 -1
  559. package/dist/components/custom/scheduler-new/presentation/NewScheduler.d.ts +0 -29
  560. package/dist/components/custom/scheduler-new/presentation/NewScheduler.d.ts.map +0 -1
  561. package/dist/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts +0 -80
  562. package/dist/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts.map +0 -1
  563. package/dist/components/custom/scheduler-new/presentation/SchedulerPresenter.d.ts +0 -27
  564. package/dist/components/custom/scheduler-new/presentation/SchedulerPresenter.d.ts.map +0 -1
  565. package/dist/components/custom/scheduler-new/presentation/components/header/HeaderDivision.d.ts +0 -19
  566. package/dist/components/custom/scheduler-new/presentation/components/header/HeaderDivision.d.ts.map +0 -1
  567. package/dist/components/custom/scheduler-new/presentation/components/header/HeaderTitle.d.ts +0 -10
  568. package/dist/components/custom/scheduler-new/presentation/components/header/HeaderTitle.d.ts.map +0 -1
  569. package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.d.ts +0 -5
  570. package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.d.ts.map +0 -1
  571. package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.d.ts +0 -17
  572. package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.d.ts.map +0 -1
  573. package/dist/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts +0 -8
  574. package/dist/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts.map +0 -1
  575. package/dist/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.d.ts +0 -17
  576. package/dist/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.d.ts.map +0 -1
  577. package/dist/components/custom/scheduler-new/presentation/components/row/Event.d.ts +0 -34
  578. package/dist/components/custom/scheduler-new/presentation/components/row/Event.d.ts.map +0 -1
  579. package/dist/components/custom/scheduler-new/presentation/components/row/EventSideDrag.d.ts +0 -8
  580. package/dist/components/custom/scheduler-new/presentation/components/row/EventSideDrag.d.ts.map +0 -1
  581. package/dist/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts +0 -27
  582. package/dist/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts.map +0 -1
  583. package/dist/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts +0 -10
  584. package/dist/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts.map +0 -1
  585. package/dist/components/custom/scheduler-new/presentation/components/timeline/TimeLine.d.ts +0 -15
  586. package/dist/components/custom/scheduler-new/presentation/components/timeline/TimeLine.d.ts.map +0 -1
  587. package/dist/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.d.ts +0 -11
  588. package/dist/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.d.ts.map +0 -1
  589. package/dist/components/custom/scheduler-new/presentation/helpers.d.ts +0 -19
  590. package/dist/components/custom/scheduler-new/presentation/helpers.d.ts.map +0 -1
  591. package/dist/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts +0 -4
  592. package/dist/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts.map +0 -1
  593. package/dist/components/custom/scheduler-new/presentation/logic/dateFromPercentage.d.ts +0 -2
  594. package/dist/components/custom/scheduler-new/presentation/logic/dateFromPercentage.d.ts.map +0 -1
  595. package/dist/components/custom/scheduler-new/presentation/logic/eventIsVisible.d.ts +0 -2
  596. package/dist/components/custom/scheduler-new/presentation/logic/eventIsVisible.d.ts.map +0 -1
  597. package/dist/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.d.ts +0 -6
  598. package/dist/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.d.ts.map +0 -1
  599. package/dist/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts +0 -3
  600. package/dist/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts.map +0 -1
  601. package/dist/components/custom/scheduler-new/presentation/logic/getEventSizes.d.ts +0 -6
  602. package/dist/components/custom/scheduler-new/presentation/logic/getEventSizes.d.ts.map +0 -1
  603. package/dist/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts +0 -4
  604. package/dist/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts.map +0 -1
  605. package/dist/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.d.ts +0 -2
  606. package/dist/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.d.ts.map +0 -1
  607. package/dist/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.d.ts +0 -3
  608. package/dist/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.d.ts.map +0 -1
  609. package/dist/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.d.ts +0 -4
  610. package/dist/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.d.ts.map +0 -1
  611. package/dist/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts +0 -12
  612. package/dist/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts.map +0 -1
  613. package/dist/components/custom/scheduler-new/presentation/state/ui/WeekRange.d.ts +0 -5
  614. package/dist/components/custom/scheduler-new/presentation/state/ui/WeekRange.d.ts.map +0 -1
  615. package/dist/components/custom/scheduler-temporal/CwSchedulerComp2.d.ts +0 -24
  616. package/dist/components/custom/scheduler-temporal/CwSchedulerComp2.d.ts.map +0 -1
  617. package/dist/components/custom/scheduler-temporal/CwSuperSchedulerComp.d.ts +0 -86
  618. package/dist/components/custom/scheduler-temporal/CwSuperSchedulerComp.d.ts.map +0 -1
  619. package/dist/components/custom/scheduler-temporal/components/EventRender.d.ts +0 -10
  620. package/dist/components/custom/scheduler-temporal/components/EventRender.d.ts.map +0 -1
  621. package/dist/components/custom/scheduler-temporal/components/ResourceListRender.d.ts +0 -20
  622. package/dist/components/custom/scheduler-temporal/components/ResourceListRender.d.ts.map +0 -1
  623. package/dist/components/custom/scheduler-temporal/components/ResourceRender.d.ts +0 -14
  624. package/dist/components/custom/scheduler-temporal/components/ResourceRender.d.ts.map +0 -1
  625. package/dist/components/custom/scheduler-temporal/components/day_headers/DayHeader.d.ts +0 -11
  626. package/dist/components/custom/scheduler-temporal/components/day_headers/DayHeader.d.ts.map +0 -1
  627. package/dist/components/custom/scheduler-temporal/components/day_headers/MonthHeader.d.ts +0 -11
  628. package/dist/components/custom/scheduler-temporal/components/day_headers/MonthHeader.d.ts.map +0 -1
  629. package/dist/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.d.ts +0 -13
  630. package/dist/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.d.ts.map +0 -1
  631. package/dist/components/custom/scheduler-temporal/components/day_headers/WeekHeader.d.ts +0 -11
  632. package/dist/components/custom/scheduler-temporal/components/day_headers/WeekHeader.d.ts.map +0 -1
  633. package/dist/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.d.ts +0 -14
  634. package/dist/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.d.ts.map +0 -1
  635. package/dist/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.d.ts +0 -23
  636. package/dist/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.d.ts.map +0 -1
  637. package/dist/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.d.ts +0 -8
  638. package/dist/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.d.ts.map +0 -1
  639. package/dist/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.d.ts +0 -12
  640. package/dist/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.d.ts.map +0 -1
  641. package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeader.d.ts +0 -12
  642. package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeader.d.ts.map +0 -1
  643. package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.d.ts +0 -10
  644. package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.d.ts.map +0 -1
  645. package/dist/components/custom/scheduler-temporal/components/time_line/TimeLine.d.ts +0 -12
  646. package/dist/components/custom/scheduler-temporal/components/time_line/TimeLine.d.ts.map +0 -1
  647. package/dist/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.d.ts +0 -2
  648. package/dist/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.d.ts.map +0 -1
  649. package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.d.ts +0 -2
  650. package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.d.ts.map +0 -1
  651. package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts +0 -2
  652. package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map +0 -1
  653. package/dist/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.d.ts +0 -7
  654. package/dist/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.d.ts.map +0 -1
  655. package/dist/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.d.ts +0 -10
  656. package/dist/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.d.ts.map +0 -1
  657. package/dist/components/custom/scheduler-temporal/logic/dates/getUtcToday.d.ts +0 -2
  658. package/dist/components/custom/scheduler-temporal/logic/dates/getUtcToday.d.ts.map +0 -1
  659. package/dist/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.d.ts +0 -7
  660. package/dist/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map +0 -1
  661. package/dist/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.d.ts +0 -8
  662. package/dist/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.d.ts.map +0 -1
  663. package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.d.ts +0 -2
  664. package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.d.ts.map +0 -1
  665. package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.d.ts +0 -2
  666. package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.d.ts.map +0 -1
  667. package/dist/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.d.ts +0 -15
  668. package/dist/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.d.ts.map +0 -1
  669. package/dist/components/custom/scheduler-temporal/logic/filtering/filterEvents.d.ts +0 -3
  670. package/dist/components/custom/scheduler-temporal/logic/filtering/filterEvents.d.ts.map +0 -1
  671. package/dist/components/custom/scheduler-temporal/logic/filtering/filterResources.d.ts +0 -3
  672. package/dist/components/custom/scheduler-temporal/logic/filtering/filterResources.d.ts.map +0 -1
  673. package/dist/components/custom/scheduler-temporal/logic/onDrop/OnDrop.d.ts +0 -13
  674. package/dist/components/custom/scheduler-temporal/logic/onDrop/OnDrop.d.ts.map +0 -1
  675. package/dist/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.d.ts +0 -17
  676. package/dist/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.d.ts.map +0 -1
  677. package/dist/components/custom/scheduler-temporal/logic/pixels/heightScheduler.d.ts +0 -3
  678. package/dist/components/custom/scheduler-temporal/logic/pixels/heightScheduler.d.ts.map +0 -1
  679. package/dist/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.d.ts +0 -4
  680. package/dist/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.d.ts.map +0 -1
  681. package/dist/components/custom/scheduler-temporal/logic/state_handle/onDragOver.d.ts +0 -2
  682. package/dist/components/custom/scheduler-temporal/logic/state_handle/onDragOver.d.ts.map +0 -1
  683. package/dist/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.d.ts +0 -5
  684. package/dist/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.d.ts.map +0 -1
  685. package/dist/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.d.ts +0 -4
  686. package/dist/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.d.ts.map +0 -1
  687. package/dist/components/custom/scheduler-temporal/logic/strings/compareStrings.d.ts +0 -2
  688. package/dist/components/custom/scheduler-temporal/logic/strings/compareStrings.d.ts.map +0 -1
  689. package/dist/components/custom/scheduler-temporal/logic/strings/getGUID.d.ts +0 -2
  690. package/dist/components/custom/scheduler-temporal/logic/strings/getGUID.d.ts.map +0 -1
  691. package/dist/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.d.ts +0 -3
  692. package/dist/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.d.ts.map +0 -1
  693. package/dist/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.d.ts +0 -6
  694. package/dist/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.d.ts.map +0 -1
  695. package/dist/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.d.ts +0 -2
  696. package/dist/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.d.ts.map +0 -1
  697. package/dist/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.d.ts +0 -3
  698. package/dist/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.d.ts.map +0 -1
  699. package/dist/components/custom/scheduler-temporal/state/CblDragAndDrop.d.ts +0 -11
  700. package/dist/components/custom/scheduler-temporal/state/CblDragAndDrop.d.ts.map +0 -1
  701. package/dist/components/custom/scheduler-temporal/state/CwSchedulerProps.d.ts +0 -43
  702. package/dist/components/custom/scheduler-temporal/state/CwSchedulerProps.d.ts.map +0 -1
  703. package/dist/components/custom/scheduler-temporal/state/Resource.d.ts +0 -14
  704. package/dist/components/custom/scheduler-temporal/state/Resource.d.ts.map +0 -1
  705. package/dist/components/custom/scheduler-temporal/state/State.d.ts +0 -25
  706. package/dist/components/custom/scheduler-temporal/state/State.d.ts.map +0 -1
  707. package/dist/components/custom/scheduler-temporal/state/cblEvent.d.ts +0 -18
  708. package/dist/components/custom/scheduler-temporal/state/cblEvent.d.ts.map +0 -1
  709. package/dist/components/custom/scheduler-temporal/state/cblEventCompProps.d.ts +0 -7
  710. package/dist/components/custom/scheduler-temporal/state/cblEventCompProps.d.ts.map +0 -1
  711. package/dist/components/custom/super-scheduler/PinRowHeader.d.ts +0 -15
  712. package/dist/components/custom/super-scheduler/PinRowHeader.d.ts.map +0 -1
  713. package/dist/components/custom/super-scheduler/SuperScheduler.d.ts +0 -25
  714. package/dist/components/custom/super-scheduler/SuperScheduler.d.ts.map +0 -1
  715. package/dist/components/custom/super-scheduler/SuperSchedulerEvents.d.ts +0 -13
  716. package/dist/components/custom/super-scheduler/SuperSchedulerEvents.d.ts.map +0 -1
  717. package/dist/components/custom/super-scheduler/SuperSchedulerPresenter.d.ts +0 -9
  718. package/dist/components/custom/super-scheduler/SuperSchedulerPresenter.d.ts.map +0 -1
  719. package/dist/components/display/data/accordion/CwAccordionContainer.d.ts +0 -14
  720. package/dist/components/display/data/accordion/CwAccordionContainer.d.ts.map +0 -1
  721. package/dist/components/display/data/generic_tooltip/CwGenericTooltip.d.ts +0 -15
  722. package/dist/components/display/data/generic_tooltip/CwGenericTooltip.d.ts.map +0 -1
  723. package/dist/components/display/data/table/CwTable.d.ts +0 -102
  724. package/dist/components/display/data/table/CwTable.d.ts.map +0 -1
  725. package/dist/components/display/graphics/icon/CwIcon.d.ts +0 -15
  726. package/dist/components/display/graphics/icon/CwIcon.d.ts.map +0 -1
  727. package/dist/components/display/graphics/loading/CwLoading.d.ts +0 -42
  728. package/dist/components/display/graphics/loading/CwLoading.d.ts.map +0 -1
  729. package/dist/components/display/graphics/loading-small/CwLoadingSmall.d.ts +0 -18
  730. package/dist/components/display/graphics/loading-small/CwLoadingSmall.d.ts.map +0 -1
  731. package/dist/components/display/text/heading/CwHeadingMain.d.ts +0 -3
  732. package/dist/components/display/text/heading/CwHeadingMain.d.ts.map +0 -1
  733. package/dist/components/display/text/heading/CwHeadingSecond.d.ts +0 -3
  734. package/dist/components/display/text/heading/CwHeadingSecond.d.ts.map +0 -1
  735. package/dist/components/display/text/label/CwLabel.d.ts +0 -28
  736. package/dist/components/display/text/label/CwLabel.d.ts.map +0 -1
  737. package/dist/components/display/text/message/CwMessage.d.ts +0 -31
  738. package/dist/components/display/text/message/CwMessage.d.ts.map +0 -1
  739. package/dist/components/display/text/tag/CwChip.d.ts +0 -36
  740. package/dist/components/display/text/tag/CwChip.d.ts.map +0 -1
  741. package/dist/components/display/text/tag/CwTag.d.ts +0 -16
  742. package/dist/components/display/text/tag/CwTag.d.ts.map +0 -1
  743. package/dist/components/display/text/tooltip/CwTooltip.d.ts +0 -8
  744. package/dist/components/display/text/tooltip/CwTooltip.d.ts.map +0 -1
  745. package/dist/components/layout/align/CwAlign.d.ts +0 -54
  746. package/dist/components/layout/align/CwAlign.d.ts.map +0 -1
  747. package/dist/components/layout/card/CwCard.d.ts +0 -61
  748. package/dist/components/layout/card/CwCard.d.ts.map +0 -1
  749. package/dist/components/layout/card/CwCardList.d.ts +0 -32
  750. package/dist/components/layout/card/CwCardList.d.ts.map +0 -1
  751. package/dist/components/layout/dialog/CwDialog.d.ts +0 -28
  752. package/dist/components/layout/dialog/CwDialog.d.ts.map +0 -1
  753. package/dist/components/layout/dialog/CwDialogManager.d.ts +0 -11
  754. package/dist/components/layout/dialog/CwDialogManager.d.ts.map +0 -1
  755. package/dist/components/layout/list/details/CwExpandable.d.ts +0 -23
  756. package/dist/components/layout/list/details/CwExpandable.d.ts.map +0 -1
  757. package/dist/components/layout/list/key-value/CwKeyValueList.d.ts +0 -33
  758. package/dist/components/layout/list/key-value/CwKeyValueList.d.ts.map +0 -1
  759. package/dist/components/layout/modal/CwModalReportFunctional.d.ts +0 -15
  760. package/dist/components/layout/modal/CwModalReportFunctional.d.ts.map +0 -1
  761. package/dist/components/layout/modal/hover/CwModalHover.d.ts +0 -19
  762. package/dist/components/layout/modal/hover/CwModalHover.d.ts.map +0 -1
  763. package/dist/components/layout/modal/legacy/cw_modal.d.ts +0 -22
  764. package/dist/components/layout/modal/legacy/cw_modal.d.ts.map +0 -1
  765. package/dist/components/layout/modal/legacy/cw_modal_confirm.d.ts +0 -16
  766. package/dist/components/layout/modal/legacy/cw_modal_confirm.d.ts.map +0 -1
  767. package/dist/components/layout/modal/legacy/cw_modal_iframe.d.ts +0 -21
  768. package/dist/components/layout/modal/legacy/cw_modal_iframe.d.ts.map +0 -1
  769. package/dist/components/layout/modal/legacy/cw_modal_report.d.ts +0 -32
  770. package/dist/components/layout/modal/legacy/cw_modal_report.d.ts.map +0 -1
  771. package/dist/components/layout/table/grouped/CwTableGrouped.d.ts.map +0 -1
  772. package/dist/components/layout/tabs/CwTabs.d.ts +0 -46
  773. package/dist/components/layout/tabs/CwTabs.d.ts.map +0 -1
  774. package/dist/index.d.ts.map +0 -1
package/dist/index.d.ts CHANGED
@@ -2,7 +2,6 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
3
  import React__default, { HTMLProps, PropsWithChildren, FC, ReactNode, CSSProperties, ReactElement, HTMLAttributes, DetailedHTMLProps, TextareaHTMLAttributes, InputHTMLAttributes, SelectHTMLAttributes, Component, ComponentType } from 'react';
4
4
  import * as CSS from 'csstype';
5
- import { FormInstance } from 'antd/lib/form';
6
5
  import { Matcher } from 'react-day-picker';
7
6
 
8
7
  declare class CwSelectList {
@@ -58,18 +57,11 @@ interface CwLabelProps extends Omit<HTMLProps<PropsWithChildren<HTMLLabelElement
58
57
  */
59
58
  declare function CwLabel(props: CwLabelProps): react_jsx_runtime.JSX.Element;
60
59
 
61
- interface CwTooltipProps {
62
- children?: any;
63
- tooltipTitle?: any;
64
- tooltipTitleStyle?: React$1.CSSProperties;
65
- }
66
- declare function CwTooltip(CwelltTooltipProps: React$1.PropsWithChildren<CwTooltipProps>): react_jsx_runtime.JSX.Element;
67
-
68
60
  type ChipColorScheme = 'danger' | 'warning' | 'success' | 'info' | 'neutral' | 'custom';
69
61
  type ChipVariant = 'soft' | 'solid' | 'outline';
70
62
  interface CwChipProps {
71
63
  /*** Text content of the chip **/
72
- label: string;
64
+ label?: string;
73
65
  /*** Predefined color scheme of the chip **/
74
66
  colorScheme?: ChipColorScheme;
75
67
  /*** Custom color (only used when colorScheme is 'custom') **/
@@ -185,7 +177,7 @@ interface CwNoteProps {
185
177
  /** Custom color - if provided, overrides color prop */
186
178
  customColor?: string;
187
179
  /** Size of the message */
188
- fontSize?: 'small' | 'regular' | 'large';
180
+ fontSize?: 'small' | 'regular' | 'medium' | 'large' | 'huge';
189
181
  /** Optional icon from your custom font (always rendered if provided) */
190
182
  icon?: string;
191
183
  /** Whether the note can be dismissed manually (default: false) */
@@ -355,8 +347,57 @@ interface CwGenericTooltipProps {
355
347
  showDelay?: number;
356
348
  displayInline?: boolean;
357
349
  }
350
+ /**
351
+ * Standalone tooltip component. Each instance manages its own portal,
352
+ * requiring no external dependencies or global setup.
353
+ *
354
+ * Suitable for low-density use cases with few tooltip instances.
355
+ * For high-density scenarios (e.g. schedulers, tables, lists),
356
+ * prefer CwTooltipNew which shares a single DOM portal for better performance.
357
+ *
358
+ * @remarks Not formally deprecated, but CwTooltipNew is now the recommended
359
+ * approach for new implementations. Cannot be deprecated yet due to potential use on projects such as Operon and Improve.
360
+ *
361
+ * @see CwTooltipNew
362
+ */
358
363
  declare const CwGenericTooltip: FC<CwGenericTooltipProps>;
359
364
 
365
+ interface CwTooltipProps {
366
+ children: ReactNode;
367
+ content?: ReactNode;
368
+ dissapearsWhenHover?: boolean;
369
+ hide?: boolean;
370
+ position?: "top" | "bottom" | "left" | "right";
371
+ overlayStyle?: CSSProperties;
372
+ showDelay?: number;
373
+ displayInline?: boolean;
374
+ }
375
+ /**
376
+ * Tooltip component backed by the global CwTooltipManager singleton.
377
+ * More performant than CwGenericTooltip for high-density scenarios (e.g. schedulers)
378
+ * as it shares a single DOM portal across all instances.
379
+ *
380
+ * Self-initializes the Manager if not already mounted via ensureTooltipManager().
381
+ * Drop-in replacement for CwGenericTooltip with the same API.
382
+ *
383
+ * @see CwTooltipManager
384
+ * @see CwGenericTooltip
385
+ */
386
+ declare const CwTooltipNew: FC<CwTooltipProps>;
387
+
388
+ /**
389
+ * Global tooltip renderer. Manages a single portal instance in the DOM,
390
+ * shared across all CwTooltipNew instances for optimal performance.
391
+ *
392
+ * Mount once at the app root, or let CwTooltipNew handle it automatically
393
+ * via ensureTooltipManager().
394
+ *
395
+ * @see CwTooltipNew
396
+ * @see showTooltip
397
+ * @see hideTooltip
398
+ */
399
+ declare const CwTooltipManager: React__default.FC;
400
+
360
401
  interface CwModalProps {
361
402
  modalState?: boolean;
362
403
  classNameModalOverlay?: string;
@@ -421,7 +462,7 @@ interface CwReportModalProps {
421
462
  SET_MODAL_REPORT_VISIBLE: (visible: boolean) => void;
422
463
  isModal?: boolean;
423
464
  }
424
- interface State$3 {
465
+ interface State$2 {
425
466
  disabled: boolean;
426
467
  modalPosition: {
427
468
  top: number;
@@ -431,8 +472,7 @@ interface State$3 {
431
472
  };
432
473
  isModal: boolean;
433
474
  }
434
- declare class CwReportModal extends React$1.Component<CwReportModalProps, State$3> {
435
- formRef: React$1.RefObject<FormInstance<any>>;
475
+ declare class CwReportModal extends React$1.Component<CwReportModalProps, State$2> {
436
476
  constructor(props: Readonly<CwReportModalProps>);
437
477
  render(): react_jsx_runtime.JSX.Element;
438
478
  }
@@ -481,6 +521,8 @@ interface CwDialogProps extends HTMLProps<PropsWithChildren<HTMLDialogElement>>
481
521
  hideFooter?: boolean;
482
522
  /*** Reposition the dialog when content size changes after opening. For modals with slow loading content. Default: false **/
483
523
  autoReposition?: boolean;
524
+ /** If true, the save button will be disabled */
525
+ disableSave?: boolean;
484
526
  }
485
527
  declare const CwDialog: FC<CwDialogProps>;
486
528
 
@@ -751,7 +793,122 @@ interface CwTableProps<T = any> {
751
793
  *
752
794
  * @returns React component
753
795
  */
754
- declare function CwTable<T = any>({ columns, data, pagination, pageSizeOptions, expandedRowRender, onExpand, className, classNameRow, style, classNameContainer, id, textNoData, rowKey, loading, scrollHeight, stickyHeader, rowSelection, }: Readonly<CwTableProps<T>>): react_jsx_runtime.JSX.Element;
796
+ declare function CwTable<T = any>({ columns, data, pagination, pageSizeOptions, expandedRowRender, onExpand, className, classNameRow, style, classNameContainer, id, textNoData, rowKey, loading, scrollHeight, stickyHeader, rowSelection }: Readonly<CwTableProps<T>>): react_jsx_runtime.JSX.Element;
797
+
798
+ interface SortableColumn<T = any> {
799
+ /** Header label */
800
+ title: string;
801
+ /** Key of the data field to display (skipped when `render` is provided) */
802
+ dataIndex?: keyof T;
803
+ /** Unique column identifier */
804
+ key: string;
805
+ /** Custom cell renderer — receives the full row item */
806
+ render?: (item: T) => React__default.ReactNode;
807
+ /** Additional CSS class for <th> and <td> */
808
+ className?: string;
809
+ /** Fixed column width */
810
+ width?: number | string;
811
+ }
812
+ interface CwSortableTableProps<T = any> {
813
+ /** Column definitions */
814
+ columns: SortableColumn<T>[];
815
+ /** Data array — each item must have the field specified in `rowKey` */
816
+ data: T[];
817
+ /**
818
+ * Field used as unique row identifier.
819
+ * @default "key"
820
+ */
821
+ rowKey?: keyof T;
822
+ /**
823
+ * Async callback fired when the user clicks Save.
824
+ * Receives the full re-ordered array — persist it however you need.
825
+ *
826
+ * @example
827
+ * onReorder={async (newOrder) => {
828
+ * await Promise.all(newOrder.map((item, i) => api.updateOrder(item.id, i)));
829
+ * }}
830
+ */
831
+ onReorder: (newData: T[]) => Promise<void>;
832
+ /** Show a loading skeleton instead of rows */
833
+ loading?: boolean;
834
+ /** Message shown when data is empty */
835
+ textNoData?: string;
836
+ /** CSS class for the outer container */
837
+ className?: string;
838
+ /** CSS class for the <table> element */
839
+ tableClassName?: string;
840
+ /** Constrain height and enable vertical scroll */
841
+ maxHeight?: number | string;
842
+ /**
843
+ * Whether to show the drag handle column.
844
+ * @default true
845
+ */
846
+ showHandle?: boolean;
847
+ /** Optional inline styles for the outer container */
848
+ style?: React__default.CSSProperties;
849
+ /** Label for the Save button. @default "Save order" */
850
+ saveLabel?: string;
851
+ /** Label for the Discard button. @default "Discard" */
852
+ discardLabel?: string;
853
+ }
854
+ /**
855
+ * CwSortableTable
856
+ *
857
+ * A table with drag-and-drop row reordering and save/discard support.
858
+ * Shares visual styles with CwTable but is intentionally simpler:
859
+ * no column sorting, no pagination.
860
+ *
861
+ * When the user reorders rows, changes are held locally until they
862
+ * click Save. A save bar appears automatically when there are pending changes.
863
+ *
864
+ * Follows the same pattern as CwSortableList:
865
+ * - All rows are draggable — the handle is visual only
866
+ * - Reorder is calculated in onDragEnd using lastValidDropIndex
867
+ * - draggedItem is tracked in state, not via dataTransfer
868
+ */
869
+ declare function CwSortableTable<T = any>({ columns, data, rowKey, onReorder, loading, textNoData, className, tableClassName, maxHeight, showHandle, style, saveLabel, discardLabel, }: Readonly<CwSortableTableProps<T>>): react_jsx_runtime.JSX.Element;
870
+
871
+ interface SortableTableDragState {
872
+ /** Index of the row currently being dragged (-1 if none) */
873
+ dragSourceIndex: number;
874
+ /** Index where the drop indicator should appear (-1 if none) */
875
+ dropTargetIndex: number;
876
+ }
877
+ interface UseSortableTableReturn<T> {
878
+ /** Current ordered items */
879
+ items: T[];
880
+ /** Current drag state (for rendering drop indicators) */
881
+ dragState: SortableTableDragState;
882
+ /** Whether there are unsaved reorder changes */
883
+ hasChanges: boolean;
884
+ /**
885
+ * Call this after each drag-and-drop with the already-reordered array.
886
+ * The hook just stores it — reorder logic lives in the component, same pattern as useSortableList.
887
+ */
888
+ handleReorder: (newItems: T[]) => void;
889
+ /** Save current order — receives an async callback to persist the data */
890
+ handleSave: (onSave: (items: T[]) => Promise<void>) => Promise<void>;
891
+ /** Discard changes and restore original order */
892
+ handleDiscard: () => void;
893
+ }
894
+ /**
895
+ * Hook that provides state management for CwSortableTable.
896
+ *
897
+ * Follows the same pattern as useSortableList:
898
+ * - The hook only manages STATE (items, hasChanges, save, discard)
899
+ * - The component manages INTERACTION (drag, drop, calculating new order)
900
+ * - handleReorder receives the already-reordered array and just stores it
901
+ * - Changes are only persisted when handleSave is called
902
+ * - handleDiscard restores the original order
903
+ *
904
+ * @param initialItems - The initial array of items to display
905
+ *
906
+ * @example
907
+ * ```tsx
908
+ * const { items, hasChanges, handleReorder, handleSave, handleDiscard } = useSortableTable(data);
909
+ * ```
910
+ */
911
+ declare function useSortableTable<T>(initialItems: T[]): UseSortableTableReturn<T>;
755
912
 
756
913
  interface ServerSideTableState<T = any> {
757
914
  page: number;
@@ -916,6 +1073,46 @@ interface CwExpandableProps extends Omit<HTMLProps<PropsWithChildren<HTMLDetails
916
1073
  */
917
1074
  declare const CwExpandable: FC<CwExpandableProps>;
918
1075
 
1076
+ interface CwMasterDetailItem {
1077
+ key: string;
1078
+ content: ReactNode;
1079
+ disabled?: boolean;
1080
+ }
1081
+ interface CwMasterDetailProps {
1082
+ id?: string;
1083
+ className?: string;
1084
+ style?: React__default.CSSProperties;
1085
+ /** Items displayed in the master list */
1086
+ items: CwMasterDetailItem[];
1087
+ /** Key of the currently selected item */
1088
+ selectedKey?: string;
1089
+ /** Called when an item is selected */
1090
+ onSelect?: (key: string) => void;
1091
+ /** Content rendered in the detail panel for the selected item */
1092
+ detailContent?: ReactNode;
1093
+ /** Placeholder shown when no item is selected */
1094
+ emptyDetail?: ReactNode;
1095
+ /** Search placeholder text */
1096
+ searchPlaceholder?: string;
1097
+ /** Called when the search value changes */
1098
+ onSearch?: (value: string) => void;
1099
+ /** Optional header content rendered above the list (below search) */
1100
+ masterHeader?: ReactNode;
1101
+ /** Optional footer content at the bottom of the master panel */
1102
+ masterFooter?: ReactNode;
1103
+ /** Initial width of the master panel in pixels */
1104
+ masterWidth?: number;
1105
+ /** Minimum width of the master panel in pixels */
1106
+ minMasterWidth?: number;
1107
+ /** Maximum width of the master panel in pixels */
1108
+ maxMasterWidth?: number;
1109
+ /** Whether the master panel is resizable */
1110
+ resizable?: boolean;
1111
+ /** Whether to show the search input */
1112
+ showSearch?: boolean;
1113
+ }
1114
+ declare const CwMasterDetail: React__default.FC<CwMasterDetailProps>;
1115
+
919
1116
  /**
920
1117
  * Props for the CwKeyValueList component
921
1118
  */
@@ -1002,8 +1199,9 @@ interface CwSortableListProps<T extends SortableItem$1> {
1002
1199
  movedItems?: Set<string | number>;
1003
1200
  emptyMessage?: ReactNode;
1004
1201
  readOnly?: boolean;
1202
+ maxHeight?: number | string;
1005
1203
  }
1006
- declare function CwSortableList<T extends SortableItem$1>({ items, onReorder, renderItem, className, movedItems, emptyMessage, readOnly, }: CwSortableListProps<T>): react_jsx_runtime.JSX.Element;
1204
+ declare function CwSortableList<T extends SortableItem$1>({ items, onReorder, renderItem, className, movedItems, emptyMessage, readOnly, maxHeight, }: CwSortableListProps<T>): react_jsx_runtime.JSX.Element;
1007
1205
 
1008
1206
  /**
1009
1207
  * useSortableList
@@ -1267,16 +1465,50 @@ interface ColorPickerProps {
1267
1465
  }
1268
1466
  declare const CwColorPicker: React__default.FC<ColorPickerProps>;
1269
1467
 
1468
+ interface CwInputLayoutProps {
1469
+ direction?: "row" | "column";
1470
+ align?: "start" | "center" | "end";
1471
+ }
1472
+ /**
1473
+ * Color input that displays a swatch trigger and opens a color picker dropdown via portal.
1474
+ *
1475
+ * @param value - Current color value (hex, rgb, etc.)
1476
+ * @param onChange - Callback fired when the color changes
1477
+ * @param previewText - Text shown inside the color picker preview
1478
+ * @param disabled - Disables the trigger and prevents opening the picker
1479
+ * @param readOnly - Makes the input read-only: focusable and visible, but cannot open the picker
1480
+ * @param width - Width of the color swatch trigger (default: '4rem')
1481
+ * @param height - Height of the color swatch trigger (default: '2rem')
1482
+ * @param labelProps - Props for the optional label rendered above or beside the input (default: no label)
1483
+ * @param layoutProps - Controls label/input layout direction and alignment (default: row direction with center alignment)
1484
+ *
1485
+ * @example
1486
+ * // With label on the left
1487
+ * <CwInputColor
1488
+ * value={color}
1489
+ * onChange={setColor}
1490
+ * labelProps={{ text: "Background", labelWidth: "10rem" }}
1491
+ * layoutProps={{ direction: "row", align: "center" }}
1492
+ * />
1493
+ */
1270
1494
  interface CwInputColorProps {
1271
1495
  value: string;
1272
1496
  onChange: (color: string) => void;
1273
1497
  previewText?: string;
1274
1498
  disabled?: boolean;
1499
+ readOnly?: boolean;
1275
1500
  width?: string;
1276
1501
  height?: string;
1502
+ labelProps?: CwLabelProps;
1503
+ layoutProps?: CwInputLayoutProps;
1277
1504
  }
1278
1505
  declare const CwInputColor: React__default.FC<CwInputColorProps>;
1279
1506
 
1507
+ interface CwInputFeedback {
1508
+ type: "danger" | "warning" | "success" | "info" | "neutral";
1509
+ message: string;
1510
+ }
1511
+
1280
1512
  interface CwInputTextProps extends Omit<HTMLProps<HTMLInputElement>, never> {
1281
1513
  /** Props to define alignment and size; undefined == column
1282
1514
  * @example alignProps={{direction:"row"}} */
@@ -1290,6 +1522,11 @@ interface CwInputTextProps extends Omit<HTMLProps<HTMLInputElement>, never> {
1290
1522
  /** Props of the icon; undefined == no icon
1291
1523
  * @example iconProps={{iconId:"phone"}} */
1292
1524
  iconProps?: CwIconProps;
1525
+ /** Feedback messages shown below the input; accepts a single message or an array for multiple
1526
+ * @example feedback={{ type: "danger", message: "This field is required" }}
1527
+ * @example feedback={[{ type: "neutral", message: "Enter your full name" }, { type: "warning", message: "This name is already in use" }]}
1528
+ */
1529
+ feedback?: CwInputFeedback | CwInputFeedback[];
1293
1530
  }
1294
1531
  /**
1295
1532
  * Input for entering a string of text.
@@ -1307,6 +1544,7 @@ interface CwInputTextProps extends Omit<HTMLProps<HTMLInputElement>, never> {
1307
1544
  * iconProps={{ id: "home" }}
1308
1545
  * labelProps={{ children: "Name", width: "100px" }}
1309
1546
  * buttonProps={{ children: "Ok", onclick:()=>{alert("hi")} }}
1547
+ * feedback={{ type: "danger", message: "This field is required" }}
1310
1548
  * />
1311
1549
  * ```
1312
1550
  */
@@ -1377,6 +1615,11 @@ interface CwTextAreaProps extends Omit<DetailedHTMLProps<TextareaHTMLAttributes<
1377
1615
  /** Props of the icon; undefined == no icon
1378
1616
  * @example iconProps={{iconId:"phone"}} */
1379
1617
  iconProps?: CwIconProps;
1618
+ /** Feedback messages shown below the select; accepts a single message or an array for multiple
1619
+ * @example feedback={{ type: "neutral", message: "Select the cat breed that best matches your preference" }}
1620
+ * @example feedback={[{ type: "neutral", message: "Select a breed" }, { type: "danger", message: "This field is required" }]}
1621
+ */
1622
+ feedback?: CwInputFeedback | CwInputFeedback[];
1380
1623
  }
1381
1624
  declare function CwTextArea(props: CwTextAreaProps): react_jsx_runtime.JSX.Element;
1382
1625
 
@@ -1631,6 +1874,22 @@ declare class Weekdays {
1631
1874
  }
1632
1875
  declare const CwWeekdaySelector: FC<CwWeekdaySelectorProps>;
1633
1876
 
1877
+ interface CwCheckProps extends Omit<React__default.DetailedHTMLProps<React__default.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type"> {
1878
+ /** Props for the label component */
1879
+ labelProps?: CwLabelProps;
1880
+ /** Text content for the checkbox label */
1881
+ labelText?: string;
1882
+ /** Props for the icon component - iconId is required */
1883
+ iconProps?: CwIconProps;
1884
+ /** Layout alignment: "row" (side by side) | "column" (label above) @default "row" */
1885
+ alignment?: "row" | "column";
1886
+ }
1887
+ declare function CwCheck(props: CwCheckProps): react_jsx_runtime.JSX.Element;
1888
+
1889
+ /**
1890
+ * @deprecated Use {@link CwCheck} for single checkboxes or {@link CwCheckboxGroup} for multiple options.
1891
+ * This component will be removed in a future version.
1892
+ */
1634
1893
  interface CwCheckboxProps {
1635
1894
  id?: string;
1636
1895
  labelName?: string;
@@ -1647,8 +1906,40 @@ interface CwCheckboxProps {
1647
1906
  }
1648
1907
  declare function CwCheckbox(CwCheckboxProps: React__default.PropsWithChildren<CwCheckboxProps>): react_jsx_runtime.JSX.Element;
1649
1908
 
1909
+ interface CheckboxOption {
1910
+ /** Value sent to onChange */
1911
+ value: string;
1912
+ /** Text displayed next to the checkbox */
1913
+ label: string;
1914
+ /** Disables this specific option */
1915
+ disabled?: boolean;
1916
+ }
1917
+ interface CwCheckboxGroupProps {
1918
+ /** List of options to display */
1919
+ options: CheckboxOption[];
1920
+ /** Currently selected values */
1921
+ value?: string[];
1922
+ /** Callback when selection changes - returns full array of selected values */
1923
+ onChange: (selected: string[]) => void;
1924
+ /** Props for the label component */
1925
+ labelProps?: CwLabelProps;
1926
+ /** Props for alignment */
1927
+ alignProps?: CwAlignProps;
1928
+ /** Marks the group as required */
1929
+ required?: boolean;
1930
+ /** Disables all options */
1931
+ disabled?: boolean;
1932
+ /** Layout alignment of each individual checkbox: "row" (default) | "column" */
1933
+ optionsAlignment?: "row" | "column";
1934
+ /** Additional CSS class for the container */
1935
+ className?: string;
1936
+ /** Error or info messages below the group */
1937
+ feedback?: CwInputFeedback | CwInputFeedback[];
1938
+ }
1939
+ declare function CwCheckboxGroup({ options, value, onChange, labelProps, alignProps, required, disabled, optionsAlignment, className, feedback, }: CwCheckboxGroupProps): react_jsx_runtime.JSX.Element;
1940
+
1650
1941
  interface CwToggleProps extends Omit<React__default.DetailedHTMLProps<React__default.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "type"> {
1651
- /** Props for the label component @deprecated Use labelText instead */
1942
+ /** Props for the label component */
1652
1943
  labelProps?: CwLabelProps;
1653
1944
  /** Text content for the toggle label */
1654
1945
  labelText?: string;
@@ -1659,7 +1950,7 @@ interface CwToggleProps extends Omit<React__default.DetailedHTMLProps<React__def
1659
1950
  }
1660
1951
  declare function CwToggle(props: CwToggleProps): react_jsx_runtime.JSX.Element;
1661
1952
 
1662
- interface CwSelectProps extends Omit<DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>, "className"> {
1953
+ interface CwSelectProps extends DetailedHTMLProps<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement> {
1663
1954
  /** Props to define alignment and size; undefined == column
1664
1955
  * @example alignProps={{_direction:"row"}} */
1665
1956
  alignProps?: CwAlignProps;
@@ -1675,6 +1966,11 @@ interface CwSelectProps extends Omit<DetailedHTMLProps<SelectHTMLAttributes<HTML
1675
1966
  /** Default item
1676
1967
  * @example placeholder="Select something" */
1677
1968
  placeholder?: string;
1969
+ /** Feedback messages shown below the select; accepts a single message or an array for multiple
1970
+ * @example feedback={{ type: "neutral", message: "Select the cat breed that best matches your preference" }}
1971
+ * @example feedback={[{ type: "neutral", message: "Select a breed" }, { type: "danger", message: "This field is required" }]}
1972
+ */
1973
+ feedback?: CwInputFeedback | CwInputFeedback[];
1678
1974
  }
1679
1975
  /**
1680
1976
  * Input for selecting an option from a list
@@ -1760,6 +2056,7 @@ interface CwMultiFilterTagProps {
1760
2056
  Selected?: boolean;
1761
2057
  OnSelect?: (props: Omit<CwMultiFilterTagProps, "OnClick">) => void;
1762
2058
  OnRemove?: (props: Omit<CwMultiFilterTagProps, "OnRemove">) => void;
2059
+ tooltip?: string;
1763
2060
  }
1764
2061
  /** @inheritdoc */
1765
2062
  interface ICwMultiFilterTag extends Omit<CwMultiFilterTagProps, "Removable" | "Selectable" | "Selected" | "OnSelect" | "OnRemove"> {
@@ -2224,8 +2521,10 @@ interface CwDateTimePickerProps {
2224
2521
  numberOfMonths?: number;
2225
2522
  /** Show "Now" button to select current date and time */
2226
2523
  showNowButton?: boolean;
2524
+ /** Numeric timezone offset in hours (e.g., 1, 5.5, -3) */
2525
+ timezoneOffset?: number;
2227
2526
  }
2228
- declare function CwDateTimePicker({ value, onChange, minDateTime, maxDateTime, disabledDates, disabledMatcher, timeInterval, minTime, maxTime, labelProps, alignProps, datePlaceholder, timePlaceholder, disabled, required, className, showClear, popupPosition, numberOfMonths, showNowButton, }: Readonly<CwDateTimePickerProps>): react_jsx_runtime.JSX.Element;
2527
+ declare function CwDateTimePicker({ value, onChange, minDateTime, maxDateTime, disabledDates, disabledMatcher, timeInterval, minTime, maxTime, labelProps, alignProps, datePlaceholder, timePlaceholder, disabled, required, className, showClear, popupPosition, numberOfMonths, showNowButton, timezoneOffset, }: Readonly<CwDateTimePickerProps>): react_jsx_runtime.JSX.Element;
2229
2528
 
2230
2529
  type DateMatcher = Matcher;
2231
2530
  interface CwDateTimePickerCompactProps {
@@ -2305,139 +2604,6 @@ interface CwTimePickerProps {
2305
2604
  }
2306
2605
  declare function CwTimePicker({ value, onChange, interval, minTime, maxTime, labelProps, alignProps, placeholder, disabled, required, className, showClear, popupPosition, useNative, }: CwTimePickerProps): react_jsx_runtime.JSX.Element;
2307
2606
 
2308
- declare class cblEvent$1 {
2309
- id: string;
2310
- start: Date;
2311
- end: Date;
2312
- resourceId: number;
2313
- selected: boolean;
2314
- top: number;
2315
- leftPx: number;
2316
- rightPx: number;
2317
- width: number;
2318
- isFullHeight: boolean;
2319
- isReadOnly: boolean;
2320
- isResizable: boolean;
2321
- isDraggable: boolean;
2322
- data: any;
2323
- constructor(start: Date, end: Date, resourceId: number, data?: any, isFullHeight?: boolean, isReadOnly?: boolean, isResizable?: boolean, isDraggable?: boolean);
2324
- }
2325
-
2326
- declare class Resource$1 {
2327
- uid: string;
2328
- id: number;
2329
- name: string;
2330
- maxTop: number;
2331
- events: cblEvent$1[];
2332
- isInViewport: boolean;
2333
- schedulerResourceDisplay: string | null;
2334
- isLoading: boolean;
2335
- data: any;
2336
- constructor(id: number, name: string, eventHeight: number, data?: any, schedulerResourceDisplay?: string | null);
2337
- }
2338
-
2339
- type resourceCompProps2$2 = {
2340
- resource: Resource$1;
2341
- handleOnClickResourceContextMenu?: (key: string, resource: Resource$1) => void;
2342
- };
2343
-
2344
- declare class CblDragAndDrop$2 {
2345
- fromId: string | null;
2346
- toId: string | null;
2347
- data: Array<any> | null;
2348
- droppedOnDate: Date | null;
2349
- resizeFromStart: boolean | null;
2350
- resizeFromEnd: boolean | null;
2351
- isCtrlKey: boolean | null;
2352
- constructor(fromId: string | null, toId: string | null, data: Array<any> | null, droppedOnDate?: Date | null, resizeFromStart?: boolean | null, resizeFromEnd?: boolean | null, isCtrlKey?: boolean | null);
2353
- }
2354
-
2355
- type cblEventCompProps$2 = {
2356
- ref?: any;
2357
- cblEvent: cblEvent$1;
2358
- handleOnClickEventContextMenu?: (key: string, cblEvent: cblEvent$1) => void;
2359
- };
2360
-
2361
- interface CwSchedulerProps$1 {
2362
- airportSelected?: number;
2363
- canBePinned?: boolean;
2364
- cblEventComp: React.FC<cblEventCompProps$2>;
2365
- descriptionColumn?: string;
2366
- endDate: Date;
2367
- events: cblEvent$1[];
2368
- groupByFunction: boolean;
2369
- height: number;
2370
- id: string;
2371
- module?: string;
2372
- parent: any;
2373
- pinnedResources?: number[];
2374
- resourceComp: React.FC<resourceCompProps2$2>;
2375
- resourceName?: string;
2376
- resources: Resource$1[];
2377
- resourceContextMenuContents?: Array<{
2378
- key: string;
2379
- text: string;
2380
- icon: string;
2381
- color: string;
2382
- }>;
2383
- startDate: Date;
2384
- scheduler_clearPinned?: (id: any) => void;
2385
- scheduler_handleCblEventClick: (cblEvent: cblEvent$1, schedulerId: string) => void;
2386
- scheduler_handleCblEventClickRight?: (cblEvent: cblEvent$1, schedulerId: string) => void;
2387
- scheduler_handleCblEventDoubleClick: (cblEvent: cblEvent$1, schedulerId: string) => void;
2388
- scheduler_handleCblEventResize?: (cblDragNDrop: CblDragAndDrop$2) => void;
2389
- scheduler_handleDblClickOnResourceInScheduler?: (resource: Resource$1) => void;
2390
- scheduler_handleEmptyClick?: (schedulerId: string) => void;
2391
- scheduler_handleMultiselectChange?: (value: any, selectedObjectsArray: any) => void;
2392
- scheduler_handleOnClickEventContextMenu?: (e: any, cblEvent: cblEvent$1) => void;
2393
- scheduler_handleOnClickResourceContextMenu?: (e: any, resource: Resource$1) => void;
2394
- scheduler_handleOnDropCblEventsOnResource: (cblDragNDrop: CblDragAndDrop$2, resource: Resource$1) => void;
2395
- scheduler_handlePinned?: (resourceId: number, type: string, schedulerId: string) => void;
2396
- scheduler_handleOnClickContextMenuResource?: (date: Date, resource: Resource$1, key: string, schedulerId: string) => void;
2397
- }
2398
-
2399
- interface State$2 {
2400
- bottom: number;
2401
- dayPx: number;
2402
- division: number;
2403
- divisionType: string;
2404
- endDate: Date;
2405
- eventHeight: number;
2406
- events: cblEvent$1[];
2407
- groupByFunction: boolean;
2408
- hourPx: number;
2409
- lineStyle: number;
2410
- maxPx: number;
2411
- minutePx: number;
2412
- nowUtc: Date;
2413
- pinnedResources: Array<number>;
2414
- resources: Resource$1[];
2415
- selectedEvents: Array<number>;
2416
- showConsoleLogs: boolean;
2417
- startDate: Date;
2418
- timeHeaders: Array<Date>;
2419
- top: number;
2420
- }
2421
-
2422
- declare class CwScheduler2 extends Component<CwSchedulerProps$1, State$2> {
2423
- contentArea?: HTMLTableDataCellElement;
2424
- constructor(Props: CwSchedulerProps$1);
2425
- private resizeObserver?;
2426
- calculateMaxPx: () => number;
2427
- init: (props: CwSchedulerProps$1) => void;
2428
- initOutside: (events: Array<cblEvent$1>, resources: Array<Resource$1>, _nextProps: CwSchedulerProps$1, startDate: Date, endDate: Date) => void;
2429
- componentDidMount(): void;
2430
- componentWillUnmount(): void;
2431
- recalculateEventPositions: (events: Array<cblEvent$1>, dayPx: number, startDate: Date) => Array<cblEvent$1>;
2432
- updateResourcesWithEvents: (resources: Array<Resource$1>, events: Array<cblEvent$1>) => Array<Resource$1>;
2433
- handleResize: () => void;
2434
- componentWillReceiveProps(_nextProps: CwSchedulerProps$1): void;
2435
- handleOnClickContextMenuResourceScheduler: (_clickEvent: any, _resource: Resource$1) => void;
2436
- handleOnClickResourceContextMenu: (_e: any, resource: Resource$1) => void;
2437
- handleCrewPinning: (resource: Resource$1, text: string) => void;
2438
- render(): react_jsx_runtime.JSX.Element;
2439
- }
2440
-
2441
2607
  declare class cblEvent {
2442
2608
  id: string;
2443
2609
  start: Date;
@@ -2714,6 +2880,7 @@ interface SchedulerState {
2714
2880
  type LineState = {
2715
2881
  left: number;
2716
2882
  width: number;
2883
+ isDayBoundary?: boolean;
2717
2884
  };
2718
2885
 
2719
2886
  type OrderCategory<T> = keyof T & string;
@@ -2733,6 +2900,7 @@ interface SchedulerProps<T extends RowHeaderDm, P extends SchedulerEventDm> {
2733
2900
  onEvent: OnEvent;
2734
2901
  groupRowColors?: boolean;
2735
2902
  rowHeaderWidth?: number;
2903
+ rowHeightRem?: number;
2736
2904
  }
2737
2905
  declare const Scheduler: <T extends RowHeaderDm, P extends SchedulerEventDm>(props: SchedulerProps<T, P>) => react_jsx_runtime.JSX.Element;
2738
2906
 
@@ -2773,7 +2941,6 @@ interface PinRowHeaderProps extends RowHeaderDm {
2773
2941
  isLoading: boolean;
2774
2942
  highlightColor?: string;
2775
2943
  tooltip?: ReactNode;
2776
- overlayTooltipStyle?: CSSProperties;
2777
2944
  indicators?: ReactNode;
2778
2945
  }
2779
2946
  declare const PinRowHeader: FC<RowHeaderProps<PinRowHeaderProps>>;
@@ -2789,6 +2956,7 @@ interface SuperSchedulerProps {
2789
2956
  pinnedOrderCategory?: OrderCategory<PinRowHeaderProps>[];
2790
2957
  unPinnedOrderCategory?: OrderCategory<PinRowHeaderProps>[];
2791
2958
  onEvent: OnEvent;
2959
+ rowHeightRem?: number;
2792
2960
  }
2793
2961
  declare const SuperScheduler: FC<SuperSchedulerProps>;
2794
2962
 
@@ -2816,6 +2984,7 @@ interface CwFindAirportProps {
2816
2984
  disabled?: boolean;
2817
2985
  displayMode?: DisplayMode;
2818
2986
  width?: string;
2987
+ initialDisplayText?: string;
2819
2988
  labelProps?: CwLabelProps;
2820
2989
  alignProps?: CwAlignProps;
2821
2990
  }
@@ -2898,5 +3067,5 @@ declare class OnClickContextMenu implements UiEvent {
2898
3067
  constructor(id: string, clickedMenu: string);
2899
3068
  }
2900
3069
 
2901
- export { CblDragAndDrop$1 as CblDragAndDrop, CwAccordionContainer, CwAlign, CwAnchoredMenu, CwBtnDelete, CwBtnEdit, CwBtnSave, CwButton, CwCard, CwCardList, CwCheckbox, CwChip, CwColorPicker, CwConfirmationPopup, CwContextMenu, CwDatePicker, CwDateRangePicker, CwDateTimePicker, CwDateTimePickerCompact, CwDialog, CwDialogManager, CwDigit, CwDisplayMessage, CwDropdownFilter, CwExpandable, CwFileUpload, CwFileUploadMultiple, CwFindAirport, CwGenericTooltip, CwHeadingMain, CwHeadingSecond, CwIcon, CwImageArea, CwImageGallery, CwImageZoom, CwInput, CwInputColor, CwInputDate, CwInputDatePicker, CwInputDateText, CwInputDatetime, CwInputImage, CwInputNumber, CwInputPhone, CwInputText, CwKeyValueList, CwLabel, CwLoading, CwLoadingSmall, CwMessage, CwMessageManager, CwMessageType, CwModal, CwModalHover, CwModalReportFunctional, CwMultiFilter, CwMultiFilterTag, CwNote, CwOption, CwReportModal, CwScheduler, CwScheduler2, CwSearchInput, CwSelect, CwSelectList, CwSelectListItems, CwSortableList, CwSuperScheduler, CwTable, CwTableGrouped, CwTableServerSide, CwTabs, CwTextArea, CwTime, CwTimePicker, CwToggle, CwTooltip, CwTreeView, CwWeekdaySelector, DefaultRowHeader, OnClearPinned, OnClickContextMenu, OnClickEvent, OnClickRowEvent, OnClickRowHeader, OnClickUtc, OnDoubleClickEvent, OnDoubleClickRowEvent, OnDragEvent, OnDropCtrlEvent, OnDropEvent, OnEndClickHeaderEvent, OnLeftDragStart, OnMultiClickEvent, OnPinRow, OnRangeClickEvent, OnRightClickEvent, OnRightClickRow, OnRightDragStart, OnStartClickHeaderEvent, OnUnpinRow, PinRowHeader, Resource, Scheduler, SchedulerEvent, SuperScheduler, UiEvent, Weekdays, cblEvent, eventIsVisible, getDefaultDivisions, getEventSizes, itemsToMultiFilterTags, useCwMessage, useSortableList };
2902
- export type { BackgroundEventDm, CardChip, ChipColorScheme, ChipVariant, Column$1 as Column, ConfirmationPopupProps, CwAlignProps, CwCardListProps, CwCardProps, CwChipProps, CwDialogProps, CwExpandableProps, CwImageAreaMethods, CwImageAreaProps, CwInputDatePickerProps, CwInputDateProps, CwInputDateTextProps, CwInputDatetimeProps, CwInputImageProps, CwInputNumberProps, CwInputPhoneProps, CwInputTextProps, CwInputTimeProps, CwKeyValueListProps, CwLabelProps, CwMessageProps, CwModalHoverProps, CwMultiFilterProps, CwMultiFilterTagProps, CwNoteProps, CwReportModalFunctionalProps, CwSelectListProps, CwSortableListProps, CwTableGroupedData, CwTableGroupedData_Group, CwTableGroupedData_Row, CwTableGroupedProps, CwTextAreaProps, CwTreeNode, DataItem, DateRangeValue, ICwMultiFilterTag, ImageItem, MenuOption, OnEvent, PinRowHeaderProps, RowHeaderDm, RowHeaderProps, SchedulerEventDm, SchedulerEventState, SchedulerRowProps, SchedulerState, ServerSideTableState, SuperSchedulerProps, Tab, Weekday, ZoomImageItem, cblEventCompProps, resourceCompProps2 };
3070
+ export { CblDragAndDrop$1 as CblDragAndDrop, CwAccordionContainer, CwAlign, CwAnchoredMenu, CwBtnDelete, CwBtnEdit, CwBtnSave, CwButton, CwCard, CwCardList, CwCheck, CwCheckbox, CwCheckboxGroup, CwChip, CwColorPicker, CwConfirmationPopup, CwContextMenu, CwDatePicker, CwDateRangePicker, CwDateTimePicker, CwDateTimePickerCompact, CwDialog, CwDialogManager, CwDigit, CwDisplayMessage, CwDropdownFilter, CwExpandable, CwFileUpload, CwFileUploadMultiple, CwFindAirport, CwGenericTooltip, CwHeadingMain, CwHeadingSecond, CwIcon, CwImageArea, CwImageGallery, CwImageZoom, CwInput, CwInputColor, CwInputDate, CwInputDatePicker, CwInputDateText, CwInputDatetime, CwInputImage, CwInputNumber, CwInputPhone, CwInputText, CwKeyValueList, CwLabel, CwLoading, CwLoadingSmall, CwMasterDetail, CwMessage, CwMessageManager, CwMessageType, CwModal, CwModalHover, CwModalReportFunctional, CwMultiFilter, CwMultiFilterTag, CwNote, CwOption, CwReportModal, CwScheduler, CwSearchInput, CwSelect, CwSelectList, CwSelectListItems, CwSortableList, CwSortableTable, CwSuperScheduler, CwTable, CwTableGrouped, CwTableServerSide, CwTabs, CwTextArea, CwTime, CwTimePicker, CwToggle, CwTooltipManager, CwTooltipNew, CwTreeView, CwWeekdaySelector, DefaultRowHeader, OnClearPinned, OnClickContextMenu, OnClickEvent, OnClickRowEvent, OnClickRowHeader, OnClickUtc, OnDoubleClickEvent, OnDoubleClickRowEvent, OnDragEvent, OnDropCtrlEvent, OnDropEvent, OnEndClickHeaderEvent, OnLeftDragStart, OnMultiClickEvent, OnPinRow, OnRangeClickEvent, OnRightClickEvent, OnRightClickRow, OnRightDragStart, OnStartClickHeaderEvent, OnUnpinRow, PinRowHeader, Resource, Scheduler, SchedulerEvent, SuperScheduler, UiEvent, Weekdays, cblEvent, eventIsVisible, getDefaultDivisions, getEventSizes, itemsToMultiFilterTags, useCwMessage, useSortableList, useSortableTable };
3071
+ export type { BackgroundEventDm, CardChip, ChipColorScheme, ChipVariant, Column$1 as Column, ConfirmationPopupProps, CwAlignProps, CwCardListProps, CwCardProps, CwChipProps, CwDialogProps, CwExpandableProps, CwImageAreaMethods, CwImageAreaProps, CwInputDatePickerProps, CwInputDateProps, CwInputDateTextProps, CwInputDatetimeProps, CwInputImageProps, CwInputNumberProps, CwInputPhoneProps, CwInputTextProps, CwInputTimeProps, CwKeyValueListProps, CwLabelProps, CwMasterDetailItem, CwMasterDetailProps, CwMessageProps, CwModalHoverProps, CwMultiFilterProps, CwMultiFilterTagProps, CwNoteProps, CwReportModalFunctionalProps, CwSelectListProps, CwSortableListProps, CwSortableTableProps, CwTableGroupedData, CwTableGroupedData_Group, CwTableGroupedData_Row, CwTableGroupedProps, CwTextAreaProps, CwTreeNode, DataItem, DateRangeValue, ICwMultiFilterTag, ImageItem, MenuOption, OnEvent, PinRowHeaderProps, RowHeaderDm, RowHeaderProps, SchedulerEventDm, SchedulerEventState, SchedulerRowProps, SchedulerState, ServerSideTableState, SortableColumn, SortableTableDragState, SuperSchedulerProps, Tab, UseSortableTableReturn, Weekday, ZoomImageItem, cblEventCompProps, resourceCompProps2 };