@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.
- package/dist/content/icons/new-cw-icons/NewCwIcons.json +1 -204
- package/dist/content/icons/new-cw-icons/css/new-cw-icons.css +9 -1
- package/dist/content/icons/new-cw-icons/fonts/NewCwIcons.woff +0 -0
- package/dist/index.cjs.js +1170 -1592
- package/dist/index.css +1 -1
- package/dist/index.d.ts +323 -154
- package/dist/index.es.js +1165 -1592
- package/dist/playground/main.d.ts +4 -0
- package/dist/playground/main.d.ts.map +1 -0
- package/dist/src/common/classes/CwSelectList.js +12 -0
- package/dist/src/common/classes/CwSelectListItems.js +14 -0
- package/dist/src/common/functions/collections.d.ts.map +1 -1
- package/dist/src/common/functions/collections.js +18 -0
- package/dist/src/common/functions/colorManipulation.js +76 -0
- package/dist/src/common/functions/dsl/UiEventDSL.d.ts +1 -1
- package/dist/src/common/functions/dsl/UiEventDSL.js +20 -0
- package/dist/src/common/functions/useSingleAndDoubleClicks.js +28 -0
- package/dist/src/common/interfaces/CwFormTypes.d.ts +5 -0
- package/dist/src/common/interfaces/CwFormTypes.d.ts.map +1 -0
- package/dist/src/common/interfaces/CwSelectListProps.js +1 -0
- package/dist/src/components/control/action/button/CwButton.js +13 -0
- package/dist/src/components/control/action/buttons/CwButtons.js +188 -0
- package/dist/src/components/control/action/contextmenu/CwContextMenu.js +43 -0
- package/dist/src/components/control/action/contextual-menu/CwContextualMenu.js +55 -0
- package/dist/src/components/control/action/search/CwSearch.js +67 -0
- package/dist/src/components/control/action/tooltip-dialog/CwTooltipDialog.js +11 -0
- package/dist/src/components/control/choice/checkbox/CwCheck.d.ts +15 -0
- package/dist/src/components/control/choice/checkbox/CwCheck.d.ts.map +1 -0
- package/dist/src/components/control/choice/checkbox/CwCheckbox.d.ts +4 -0
- package/dist/src/components/control/choice/checkbox/CwCheckbox.d.ts.map +1 -1
- package/dist/src/components/control/choice/checkbox/CwCheckbox.js +15 -0
- package/dist/src/components/control/choice/checkbox/CwCheckboxGroup.d.ts +35 -0
- package/dist/src/components/control/choice/checkbox/CwCheckboxGroup.d.ts.map +1 -0
- package/dist/src/components/control/choice/deprecated/MultiSelect_deprecated_.js +99 -0
- package/dist/src/components/control/choice/dropdown/CwDropdown.js +27 -0
- package/dist/src/components/control/choice/dropdown/CwDropdownContainer.js +30 -0
- package/dist/src/components/control/choice/dropdown/CwDropdownFilter.js +10 -0
- package/dist/src/components/control/choice/multi-filter/CwMultiFilter.d.ts.map +1 -1
- package/dist/src/components/control/choice/multi-filter/CwMultiFilter.js +298 -0
- package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts +1 -0
- package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts.map +1 -1
- package/dist/src/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.js +17 -0
- package/dist/src/components/control/choice/multiselect/CwHeadFilter.js +80 -0
- package/dist/src/components/control/choice/multiselect/CwMultiselect.js +393 -0
- package/dist/src/components/control/choice/multiselect/CwOptionList.js +36 -0
- package/dist/src/components/control/choice/option/CwOption.js +16 -0
- package/dist/src/components/control/choice/select/CwSelect.d.ts +7 -1
- package/dist/src/components/control/choice/select/CwSelect.d.ts.map +1 -1
- package/dist/src/components/control/choice/select/CwSelect.js +36 -0
- package/dist/src/components/control/choice/toggle/CwToggle.d.ts +1 -1
- package/dist/src/components/control/choice/toggle/CwToggle.d.ts.map +1 -1
- package/dist/src/components/control/choice/toggle/CwToggle.js +9 -0
- package/dist/src/components/control/input/any/CwInput.js +16 -0
- package/dist/src/components/control/input/color/CwColorPicker.js +210 -0
- package/dist/src/components/control/input/color/CwInputColor.d.ts +30 -0
- package/dist/src/components/control/input/color/CwInputColor.d.ts.map +1 -1
- package/dist/src/components/control/input/color/CwInputColor.js +142 -0
- package/dist/src/components/control/input/date/CwInputDate.js +29 -0
- package/dist/src/components/control/input/date-picker/CwInputDatePicker.js +109 -0
- package/dist/src/components/control/input/date-text/CwInputDateText.js +90 -0
- package/dist/src/components/control/input/datetime/CwInputDatetime.js +29 -0
- package/dist/src/components/control/input/digit/CwDigit.js +28 -0
- package/dist/src/components/control/input/file/CwFileUpload.js +52 -0
- package/dist/src/components/control/input/file/CwFileUploadMultiple.js +148 -0
- package/dist/src/components/control/input/image/CwInputImage.js +52 -0
- package/dist/src/components/control/input/image-area/CwImageArea.js +113 -0
- package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/CwDateRangePicker.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts +3 -1
- package/dist/src/components/control/input/new-dates/CwDateTimePicker.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/CwDateTimePickerCompact.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/CwTimePicker.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/dateRangePresets.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/example.d.ts +2 -0
- package/dist/src/components/control/input/new-dates/example.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/usePickerPopup.d.ts +24 -0
- package/dist/src/components/control/input/new-dates/usePickerPopup.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/utils/timezoneHelpers.d.ts +22 -0
- package/dist/src/components/control/input/new-dates/utils/timezoneHelpers.d.ts.map +1 -0
- package/dist/src/components/control/input/number/CwInputNumber.js +11 -0
- package/dist/src/components/control/input/phone/CwInputPhone.js +24 -0
- package/dist/src/components/control/input/text/CwInputText.d.ts +7 -0
- package/dist/src/components/control/input/text/CwInputText.d.ts.map +1 -1
- package/dist/src/components/control/input/text/CwInputText.js +31 -0
- package/dist/src/components/control/input/text-area/CwTextArea.d.ts +6 -0
- package/dist/src/components/control/input/text-area/CwTextArea.d.ts.map +1 -1
- package/dist/src/components/control/input/text-area/CwTextArea.js +9 -0
- package/dist/src/components/control/input/time/CwTime.js +29 -0
- package/dist/src/components/control/input/weekday/CwWeekdaySelector.js +143 -0
- package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts +1 -0
- package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts.map +1 -1
- package/dist/src/components/custom/find-airport/CwFindAirportComp.js +240 -0
- package/dist/src/components/custom/scheduler/CwSchedulerComp.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/CwSchedulerComp.js +211 -0
- package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.js +269 -0
- package/dist/src/components/custom/scheduler/components/EventRender.js +142 -0
- package/dist/src/components/custom/scheduler/components/ResourceListRender.js +12 -0
- package/dist/src/components/custom/scheduler/components/ResourceRender.js +26 -0
- package/dist/src/components/custom/scheduler/components/day_headers/DayHeader.js +13 -0
- package/dist/src/components/custom/scheduler/components/day_headers/MonthHeader.js +12 -0
- package/dist/src/components/custom/scheduler/components/day_headers/MyDaysHeader.js +62 -0
- package/dist/src/components/custom/scheduler/components/day_headers/WeekHeader.js +13 -0
- package/dist/src/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.js +24 -0
- package/dist/src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.js +17 -0
- package/dist/src/components/custom/scheduler/components/scheduler_header/SchedulerHeader.js +26 -0
- package/dist/src/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
- package/dist/src/components/custom/scheduler/components/time_headers/TimeHeader.js +31 -0
- package/dist/src/components/custom/scheduler/components/time_headers/TimeHeaderRow.js +16 -0
- package/dist/src/components/custom/scheduler/components/time_line/TimeLine.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/components/time_line/TimeLine.js +12 -0
- package/dist/src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.js +5 -0
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.js +15 -0
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
- package/dist/src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.js +43 -0
- package/dist/src/components/custom/scheduler/logic/dates/getMonthHeaderData.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/getMonthHeaderData.js +35 -0
- package/dist/src/components/custom/scheduler/logic/dates/getUtcToday.js +6 -0
- package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
- package/dist/src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.js +55 -0
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisionType.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisionType.js +13 -0
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisions.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisions.js +16 -0
- package/dist/src/components/custom/scheduler/logic/filtering/filterEvents.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/filtering/filterEvents.js +33 -0
- package/dist/src/components/custom/scheduler/logic/filtering/filterResources.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/filtering/filterResources.js +14 -0
- package/dist/src/components/custom/scheduler/logic/filtering/hasSameProperties.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/filtering/hasSameProperties.js +10 -0
- package/dist/src/components/custom/scheduler/logic/onDrop/OnDrop.js +45 -0
- package/dist/src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.js +14 -0
- package/dist/src/components/custom/scheduler/logic/pixels/getPixelsForEvent.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/pixels/getPixelsForEvent.js +32 -0
- package/dist/src/components/custom/scheduler/logic/pixels/heightScheduler.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/pixels/heightScheduler.js +14 -0
- package/dist/src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.js +9 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.js +5 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/handleResourceChange.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/handleResourceChange.js +11 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/onDragOver.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/onDragOver.js +9 -0
- package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.js +3 -0
- package/dist/src/components/custom/scheduler/logic/strings/compareStrings.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/strings/compareStrings.js +7 -0
- package/dist/src/components/custom/scheduler/logic/strings/getGUID.js +7 -0
- package/dist/src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.js +8 -0
- package/dist/src/components/custom/scheduler/logic/ui/getEventsOfResource.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/getEventsOfResource.js +45 -0
- package/dist/src/components/custom/scheduler/logic/ui/getTimeHeaders.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/getTimeHeaders.js +35 -0
- package/dist/src/components/custom/scheduler/logic/ui/isAllowedToMove.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/isAllowedToMove.js +19 -0
- package/dist/src/components/custom/scheduler/logic/ui/updateResourceVisibility.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/updateResourceVisibility.js +15 -0
- package/dist/src/components/custom/scheduler/state/CblDragAndDrop.js +18 -0
- package/dist/src/components/custom/scheduler/state/CwSchedulerProps.js +1 -0
- package/dist/src/components/custom/scheduler/state/Resource.js +18 -0
- package/dist/src/components/custom/scheduler/state/State.js +1 -0
- package/dist/src/components/custom/scheduler/state/cblEvent.js +28 -0
- package/dist/src/components/custom/scheduler/state/cblEventCompProps.js +1 -0
- package/dist/src/components/custom/scheduler/state/resourceCompProps2.js +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.d.ts +2 -1
- package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.js +123 -0
- package/dist/src/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.js +118 -0
- package/dist/src/components/custom/scheduler-new/presentation/SchedulerPresenter.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/SchedulerPresenter.js +166 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderDivision.js +26 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderTitle.js +8 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.js +86 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.js +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.js +60 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.js +24 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/Event.js +150 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/EventSideDrag.js +11 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.js +176 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.js +8 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/TimeLine.js +39 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.js +8 -0
- package/dist/src/components/custom/scheduler-new/presentation/helpers.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/helpers.js +43 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.js +24 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.js +7 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/eventIsVisible.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/eventIsVisible.js +7 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.js +113 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/getDivisions.js +21 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getEventSizes.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/getEventSizes.js +30 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.js +13 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.js +7 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.js +32 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.js +12 -0
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.js +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/state/ui/WeekRange.js +1 -0
- package/dist/src/components/custom/scheduler-temporal/CwSchedulerComp2.js +267 -0
- package/dist/src/components/custom/scheduler-temporal/CwSuperSchedulerComp.js +269 -0
- package/dist/src/components/custom/scheduler-temporal/components/EventRender.js +142 -0
- package/dist/src/components/custom/scheduler-temporal/components/ResourceListRender.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/components/ResourceRender.js +26 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/DayHeader.js +13 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/MonthHeader.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.js +62 -0
- package/dist/src/components/custom/scheduler-temporal/components/day_headers/WeekHeader.js +13 -0
- package/dist/src/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.js +22 -0
- package/dist/src/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.js +17 -0
- package/dist/src/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.js +26 -0
- package/dist/src/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.js +23 -0
- package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeader.js +31 -0
- package/dist/src/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.js +16 -0
- package/dist/src/components/custom/scheduler-temporal/components/time_line/TimeLine.js +12 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.js +5 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.js +15 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.js +5 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.js +43 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.js +35 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getUtcToday.js +6 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.js +20 -0
- package/dist/src/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.js +55 -0
- package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.js +13 -0
- package/dist/src/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.js +16 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.js +10 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterEvents.js +34 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/filterResources.js +14 -0
- package/dist/src/components/custom/scheduler-temporal/logic/filtering/hasSameProperties.js +10 -0
- package/dist/src/components/custom/scheduler-temporal/logic/onDrop/OnDrop.js +36 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/getHeightLineScheduler.js +14 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.js +32 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightScheduler.js +14 -0
- package/dist/src/components/custom/scheduler-temporal/logic/pixels/heightSchedulerPinned.js +9 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.js +5 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handlePropChanges.js +178 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/handleResourceChange.js +11 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDragOver.js +9 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.js +3 -0
- package/dist/src/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.js +3 -0
- package/dist/src/components/custom/scheduler-temporal/logic/strings/compareStrings.js +7 -0
- package/dist/src/components/custom/scheduler-temporal/logic/strings/getGUID.js +7 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.js +9 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.js +92 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/getHasPropsChanged.js +242 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.js +35 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.js +19 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/shouldTriggerScroll.js +241 -0
- package/dist/src/components/custom/scheduler-temporal/logic/ui/updateResourceVisibility.js +15 -0
- package/dist/src/components/custom/scheduler-temporal/state/CblDragAndDrop.js +18 -0
- package/dist/src/components/custom/scheduler-temporal/state/CwSchedulerProps.js +1 -0
- package/dist/src/components/custom/scheduler-temporal/state/Resource.js +18 -0
- package/dist/src/components/custom/scheduler-temporal/state/State.js +1 -0
- package/dist/src/components/custom/scheduler-temporal/state/cblEvent.js +28 -0
- package/dist/src/components/custom/scheduler-temporal/state/cblEventCompProps.js +1 -0
- package/dist/src/components/custom/scheduler-temporal/state/resourceCompProps2.js +1 -0
- package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts +1 -2
- package/dist/src/components/custom/super-scheduler/PinRowHeader.d.ts.map +1 -1
- package/dist/src/components/custom/super-scheduler/PinRowHeader.js +53 -0
- package/dist/src/components/custom/super-scheduler/SuperScheduler.d.ts +1 -0
- package/dist/src/components/custom/super-scheduler/SuperScheduler.d.ts.map +1 -1
- package/dist/src/components/custom/super-scheduler/SuperScheduler.js +23 -0
- package/dist/src/components/custom/super-scheduler/SuperSchedulerEvents.js +15 -0
- package/dist/src/components/custom/super-scheduler/SuperSchedulerPresenter.js +45 -0
- package/dist/src/components/display/data/accordion/CwAccordionContainer.js +20 -0
- package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.d.ts +13 -0
- package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.d.ts.map +1 -1
- package/dist/src/components/display/data/generic_tooltip/CwGenericTooltip.js +138 -0
- package/dist/src/components/display/data/table/CwTable.d.ts +1 -1
- package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
- package/dist/src/components/display/data/table/CwTable.js +203 -0
- package/dist/src/components/display/data/table_sortable/CwSortableTable.d.ts +74 -0
- package/dist/src/components/display/data/table_sortable/CwSortableTable.d.ts.map +1 -0
- package/dist/src/components/display/data/table_sortable/useSortableTable.d.ts +42 -0
- package/dist/src/components/display/data/table_sortable/useSortableTable.d.ts.map +1 -0
- package/dist/src/components/display/data/tooltip_manager/CwTooltip.d.ts +25 -0
- package/dist/src/components/display/data/tooltip_manager/CwTooltip.d.ts.map +1 -0
- package/dist/src/components/display/data/tooltip_manager/CwTooltipManager.d.ts +19 -0
- package/dist/src/components/display/data/tooltip_manager/CwTooltipManager.d.ts.map +1 -0
- package/dist/src/components/display/graphics/icon/CwIcon.js +23 -0
- package/dist/src/components/display/graphics/loading/CwLoading.js +27 -0
- package/dist/src/components/display/graphics/loading-small/CwLoadingSmall.js +20 -0
- package/dist/src/components/display/text/heading/CwHeadingMain.js +5 -0
- package/dist/src/components/display/text/heading/CwHeadingSecond.js +5 -0
- package/dist/src/components/display/text/label/CwLabel.js +13 -0
- package/dist/src/components/display/text/message/CwMessage.js +75 -0
- package/dist/src/components/display/text/note/CwNote.d.ts +1 -1
- package/dist/src/components/display/text/note/CwNote.d.ts.map +1 -1
- package/dist/src/components/display/text/note/CwNote.js +78 -0
- package/dist/src/components/display/text/tag/CwChip.d.ts +1 -1
- package/dist/src/components/display/text/tag/CwChip.d.ts.map +1 -1
- package/dist/src/components/display/text/tag/CwChip.js +57 -0
- package/dist/src/components/display/text/tag/CwTag.js +21 -0
- package/dist/src/components/display/text/tooltip/CwTooltip.d.ts +4 -1
- package/dist/src/components/display/text/tooltip/CwTooltip.d.ts.map +1 -1
- package/dist/src/components/display/text/tooltip/CwTooltip.js +4 -0
- package/dist/src/components/layout/align/CwAlign.js +54 -0
- package/dist/src/components/layout/card/CwCard.js +55 -0
- package/dist/src/components/layout/card/CwCardList.js +38 -0
- package/dist/src/components/layout/dialog/CwDialog.d.ts +2 -0
- package/dist/src/components/layout/dialog/CwDialog.d.ts.map +1 -1
- package/dist/src/components/layout/dialog/CwDialog.js +255 -0
- package/dist/src/components/layout/dialog/CwDialogManager.d.ts.map +1 -1
- package/dist/src/components/layout/dialog/CwDialogManager.js +44 -0
- package/dist/src/components/layout/list/details/CwExpandable.js +28 -0
- package/dist/src/components/layout/list/key-value/CwKeyValueList.js +23 -0
- package/dist/src/components/layout/list/sortable/CwSortableList.d.ts +2 -1
- package/dist/src/components/layout/list/sortable/CwSortableList.d.ts.map +1 -1
- package/dist/src/components/layout/list/sortable/CwSortableList.js +73 -0
- package/dist/src/components/layout/list/sortable/useSortableList.js +53 -0
- package/dist/src/components/layout/master-detail/CwMasterDetail.d.ts +41 -0
- package/dist/src/components/layout/master-detail/CwMasterDetail.d.ts.map +1 -0
- package/dist/src/components/layout/modal/CwModalReportFunctional.js +23 -0
- package/dist/src/components/layout/modal/hover/CwModalHover.js +61 -0
- package/dist/src/components/layout/modal/legacy/cw_modal.d.ts.map +1 -1
- package/dist/src/components/layout/modal/legacy/cw_modal.js +44 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_confirm.js +39 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_iframe.js +44 -0
- package/dist/src/components/layout/modal/legacy/cw_modal_report.d.ts +0 -2
- package/dist/src/components/layout/modal/legacy/cw_modal_report.d.ts.map +1 -1
- package/dist/src/components/layout/modal/legacy/cw_modal_report.js +26 -0
- package/dist/{components/layout/table/grouped/CwTableGrouped.d.ts → src/components/layout/table/grouped/CwTableGrouped.js} +13 -23
- package/dist/src/components/layout/tabs/CwTabs.js +53 -0
- package/dist/src/dev/index.d.ts +5 -0
- package/dist/src/dev/index.d.ts.map +1 -0
- package/dist/src/dev/palette.d.ts +3 -0
- package/dist/src/dev/palette.d.ts.map +1 -0
- package/dist/src/dev/previews.d.ts +3 -0
- package/dist/src/dev/previews.d.ts.map +1 -0
- package/dist/src/dev/useInitial.d.ts +3 -0
- package/dist/src/dev/useInitial.d.ts.map +1 -0
- package/dist/src/index.d.ts +8 -3
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +187 -0
- package/dist/src/main.d.ts +3 -0
- package/dist/src/main.d.ts.map +1 -0
- package/dist/test/components/control/input/new-dates/timezoneHelpers.test.d.ts +2 -0
- package/dist/test/components/control/input/new-dates/timezoneHelpers.test.d.ts.map +1 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/getDefaultDivisions.test.js +48 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/hoursBetween.test.js +15 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/monthDivisions.test.js +42 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/weekendCalc.test.js +30 -0
- package/dist/test/components/custom/scheduler/addMinutesToDateFromPx.test.js +43 -0
- package/dist/test/components/custom/scheduler/checkIfSlotAvailable.test.js +30 -0
- package/dist/test/components/custom/scheduler/daysBetweenTwoDates.test.js +61 -0
- package/dist/test/components/custom/scheduler/daysBetweenTwoDatesWithoutCeilForEvent.test.js +27 -0
- package/dist/test/components/custom/scheduler/getGUID.test.js +30 -0
- package/dist/test/components/custom/scheduler/getPixelsForEvent.test.js +38 -0
- package/dist/test/components/custom/scheduler/getTimeHeaders.test.js +35 -0
- package/dist/test/components/custom/scheduler/hasSameProperties.test.js +51 -0
- package/dist/test/components/custom/scheduler/isAllowedToMove.test.js +28 -0
- package/dist/test/components/custom/scheduler/listOfDatesToWeeks.test.js +72 -0
- package/dist/test/jest.setup.js +1 -0
- package/dist/test/vitest.setup.d.ts +2 -0
- package/dist/test/vitest.setup.d.ts.map +1 -0
- package/package.json +19 -21
- package/dist/common/classes/CwSelectList.d.ts +0 -8
- package/dist/common/classes/CwSelectList.d.ts.map +0 -1
- package/dist/common/classes/CwSelectListItems.d.ts +0 -9
- package/dist/common/classes/CwSelectListItems.d.ts.map +0 -1
- package/dist/common/functions/collections.d.ts +0 -15
- package/dist/common/functions/collections.d.ts.map +0 -1
- package/dist/common/functions/colorManipulation.d.ts +0 -6
- package/dist/common/functions/colorManipulation.d.ts.map +0 -1
- package/dist/common/functions/dsl/UiEventDSL.d.ts +0 -9
- package/dist/common/functions/dsl/UiEventDSL.d.ts.map +0 -1
- package/dist/common/functions/useSingleAndDoubleClicks.d.ts +0 -7
- package/dist/common/functions/useSingleAndDoubleClicks.d.ts.map +0 -1
- package/dist/common/interfaces/CwSelectListProps.d.ts +0 -9
- package/dist/common/interfaces/CwSelectListProps.d.ts.map +0 -1
- package/dist/components/control/action/button/CwButton.d.ts +0 -26
- package/dist/components/control/action/button/CwButton.d.ts.map +0 -1
- package/dist/components/control/action/buttons/CwButtons.d.ts +0 -59
- package/dist/components/control/action/buttons/CwButtons.d.ts.map +0 -1
- package/dist/components/control/action/contextmenu/CwContextMenu.d.ts +0 -23
- package/dist/components/control/action/contextmenu/CwContextMenu.d.ts.map +0 -1
- package/dist/components/control/action/contextual-menu/CwContextualMenu.d.ts +0 -29
- package/dist/components/control/action/contextual-menu/CwContextualMenu.d.ts.map +0 -1
- package/dist/components/control/action/search/CwSearch.d.ts +0 -16
- package/dist/components/control/action/search/CwSearch.d.ts.map +0 -1
- package/dist/components/control/choice/checkbox/CwCheckbox.d.ts +0 -17
- package/dist/components/control/choice/checkbox/CwCheckbox.d.ts.map +0 -1
- package/dist/components/control/choice/deprecated/MultiSelect_deprecated_.d.ts +0 -24
- package/dist/components/control/choice/deprecated/MultiSelect_deprecated_.d.ts.map +0 -1
- package/dist/components/control/choice/dropdown/CwDropdown.d.ts +0 -19
- package/dist/components/control/choice/dropdown/CwDropdown.d.ts.map +0 -1
- package/dist/components/control/choice/dropdown/CwDropdownContainer.d.ts +0 -17
- package/dist/components/control/choice/dropdown/CwDropdownContainer.d.ts.map +0 -1
- package/dist/components/control/choice/dropdown/CwDropdownFilter.d.ts +0 -28
- package/dist/components/control/choice/dropdown/CwDropdownFilter.d.ts.map +0 -1
- package/dist/components/control/choice/dropdown/CwDropdownNavigation.d.ts +0 -21
- package/dist/components/control/choice/dropdown/CwDropdownNavigation.d.ts.map +0 -1
- package/dist/components/control/choice/multi-filter/CwMultiFilter.d.ts +0 -158
- package/dist/components/control/choice/multi-filter/CwMultiFilter.d.ts.map +0 -1
- package/dist/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts +0 -33
- package/dist/components/control/choice/multi-filter/components/tag/CwMultiFilterTag.d.ts.map +0 -1
- package/dist/components/control/choice/multiselect/CwHeadFilter.d.ts +0 -16
- package/dist/components/control/choice/multiselect/CwHeadFilter.d.ts.map +0 -1
- package/dist/components/control/choice/multiselect/CwMultiselect.d.ts +0 -13
- package/dist/components/control/choice/multiselect/CwMultiselect.d.ts.map +0 -1
- package/dist/components/control/choice/multiselect/CwOptionList.d.ts +0 -15
- package/dist/components/control/choice/multiselect/CwOptionList.d.ts.map +0 -1
- package/dist/components/control/choice/option/CwOption.d.ts +0 -17
- package/dist/components/control/choice/option/CwOption.d.ts.map +0 -1
- package/dist/components/control/choice/select/CwSelect.d.ts +0 -48
- package/dist/components/control/choice/select/CwSelect.d.ts.map +0 -1
- package/dist/components/control/choice/toggle/CwToggle.d.ts +0 -28
- package/dist/components/control/choice/toggle/CwToggle.d.ts.map +0 -1
- package/dist/components/control/input/any/CwInput.d.ts +0 -17
- package/dist/components/control/input/any/CwInput.d.ts.map +0 -1
- package/dist/components/control/input/date/CwInputDate.d.ts +0 -40
- package/dist/components/control/input/date/CwInputDate.d.ts.map +0 -1
- package/dist/components/control/input/date-picker/CwInputDatePicker.d.ts +0 -7
- package/dist/components/control/input/date-picker/CwInputDatePicker.d.ts.map +0 -1
- package/dist/components/control/input/date-text/CwInputDateText.d.ts +0 -38
- package/dist/components/control/input/date-text/CwInputDateText.d.ts.map +0 -1
- package/dist/components/control/input/datetime/CwInputDatetime.d.ts +0 -40
- package/dist/components/control/input/datetime/CwInputDatetime.d.ts.map +0 -1
- package/dist/components/control/input/digit/CwDigit.d.ts +0 -40
- package/dist/components/control/input/digit/CwDigit.d.ts.map +0 -1
- package/dist/components/control/input/file/CwFileUpload.d.ts +0 -18
- package/dist/components/control/input/file/CwFileUpload.d.ts.map +0 -1
- package/dist/components/control/input/file/CwFileUploadMultiple.d.ts +0 -15
- package/dist/components/control/input/file/CwFileUploadMultiple.d.ts.map +0 -1
- package/dist/components/control/input/image/CwInputImage.d.ts +0 -7
- package/dist/components/control/input/image/CwInputImage.d.ts.map +0 -1
- package/dist/components/control/input/image-area/CwImageArea.d.ts +0 -53
- package/dist/components/control/input/image-area/CwImageArea.d.ts.map +0 -1
- package/dist/components/control/input/number/CwInputNumber.d.ts +0 -20
- package/dist/components/control/input/number/CwInputNumber.d.ts.map +0 -1
- package/dist/components/control/input/phone/CwInputPhone.d.ts +0 -36
- package/dist/components/control/input/phone/CwInputPhone.d.ts.map +0 -1
- package/dist/components/control/input/text/CwInputText.d.ts +0 -40
- package/dist/components/control/input/text/CwInputText.d.ts.map +0 -1
- package/dist/components/control/input/text-area/CwTextArea.d.ts +0 -24
- package/dist/components/control/input/text-area/CwTextArea.d.ts.map +0 -1
- package/dist/components/control/input/time/CwTime.d.ts +0 -40
- package/dist/components/control/input/time/CwTime.d.ts.map +0 -1
- package/dist/components/control/input/weekday/CwWeekdaySelector.d.ts +0 -53
- package/dist/components/control/input/weekday/CwWeekdaySelector.d.ts.map +0 -1
- package/dist/components/custom/find-airport/CwFindAirportComp.d.ts +0 -35
- package/dist/components/custom/find-airport/CwFindAirportComp.d.ts.map +0 -1
- package/dist/components/custom/scheduler/CwSchedulerComp.d.ts +0 -19
- package/dist/components/custom/scheduler/CwSchedulerComp.d.ts.map +0 -1
- package/dist/components/custom/scheduler/CwSuperSchedulerComp.d.ts +0 -86
- package/dist/components/custom/scheduler/CwSuperSchedulerComp.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/EventRender.d.ts +0 -10
- package/dist/components/custom/scheduler/components/EventRender.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/ResourceListRender.d.ts +0 -20
- package/dist/components/custom/scheduler/components/ResourceListRender.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/ResourceRender.d.ts +0 -14
- package/dist/components/custom/scheduler/components/ResourceRender.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/day_headers/DayHeader.d.ts +0 -11
- package/dist/components/custom/scheduler/components/day_headers/DayHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/day_headers/MonthHeader.d.ts +0 -11
- package/dist/components/custom/scheduler/components/day_headers/MonthHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/day_headers/MyDaysHeader.d.ts +0 -13
- package/dist/components/custom/scheduler/components/day_headers/MyDaysHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/day_headers/WeekHeader.d.ts +0 -11
- package/dist/components/custom/scheduler/components/day_headers/WeekHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.d.ts +0 -14
- package/dist/components/custom/scheduler/components/resources_title_list/ResourcesTitleList.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.d.ts +0 -23
- package/dist/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/scheduler_header/SchedulerHeader.d.ts +0 -8
- package/dist/components/custom/scheduler/components/scheduler_header/SchedulerHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.d.ts +0 -12
- package/dist/components/custom/scheduler/components/scheduler_timeline/SchedulerTimeLine.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/time_headers/TimeHeader.d.ts +0 -12
- package/dist/components/custom/scheduler/components/time_headers/TimeHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/time_headers/TimeHeaderRow.d.ts +0 -10
- package/dist/components/custom/scheduler/components/time_headers/TimeHeaderRow.d.ts.map +0 -1
- package/dist/components/custom/scheduler/components/time_line/TimeLine.d.ts +0 -12
- package/dist/components/custom/scheduler/components/time_line/TimeLine.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDates.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDates.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.d.ts +0 -7
- package/dist/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/dates/getMonthHeaderData.d.ts +0 -10
- package/dist/components/custom/scheduler/logic/dates/getMonthHeaderData.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/dates/getUtcToday.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/dates/getUtcToday.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts +0 -7
- package/dist/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/dates/listOfDatesToWeeks.d.ts +0 -8
- package/dist/components/custom/scheduler/logic/dates/listOfDatesToWeeks.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/divisions/calculateDivisionType.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/divisions/calculateDivisionType.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/divisions/calculateDivisions.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/divisions/calculateDivisions.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/filtering/filterEvents.d.ts +0 -3
- package/dist/components/custom/scheduler/logic/filtering/filterEvents.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/filtering/filterResources.d.ts +0 -3
- package/dist/components/custom/scheduler/logic/filtering/filterResources.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/onDrop/OnDrop.d.ts +0 -13
- package/dist/components/custom/scheduler/logic/onDrop/OnDrop.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/pixels/getPixelsForEvent.d.ts +0 -17
- package/dist/components/custom/scheduler/logic/pixels/getPixelsForEvent.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/pixels/heightScheduler.d.ts +0 -3
- package/dist/components/custom/scheduler/logic/pixels/heightScheduler.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts +0 -4
- package/dist/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/state_handle/onDragOver.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/state_handle/onDragOver.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts +0 -5
- package/dist/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/strings/compareStrings.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/strings/compareStrings.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/strings/getGUID.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/strings/getGUID.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/ui/checkIfSlotAvailable.d.ts +0 -3
- package/dist/components/custom/scheduler/logic/ui/checkIfSlotAvailable.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/ui/getEventsOfResource.d.ts +0 -4
- package/dist/components/custom/scheduler/logic/ui/getEventsOfResource.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/ui/getTimeHeaders.d.ts +0 -2
- package/dist/components/custom/scheduler/logic/ui/getTimeHeaders.d.ts.map +0 -1
- package/dist/components/custom/scheduler/logic/ui/isAllowedToMove.d.ts +0 -3
- package/dist/components/custom/scheduler/logic/ui/isAllowedToMove.d.ts.map +0 -1
- package/dist/components/custom/scheduler/state/CblDragAndDrop.d.ts +0 -11
- package/dist/components/custom/scheduler/state/CblDragAndDrop.d.ts.map +0 -1
- package/dist/components/custom/scheduler/state/CwSchedulerProps.d.ts +0 -43
- package/dist/components/custom/scheduler/state/CwSchedulerProps.d.ts.map +0 -1
- package/dist/components/custom/scheduler/state/Resource.d.ts +0 -14
- package/dist/components/custom/scheduler/state/Resource.d.ts.map +0 -1
- package/dist/components/custom/scheduler/state/State.d.ts +0 -19
- package/dist/components/custom/scheduler/state/State.d.ts.map +0 -1
- package/dist/components/custom/scheduler/state/cblEvent.d.ts +0 -18
- package/dist/components/custom/scheduler/state/cblEvent.d.ts.map +0 -1
- package/dist/components/custom/scheduler/state/cblEventCompProps.d.ts +0 -7
- package/dist/components/custom/scheduler/state/cblEventCompProps.d.ts.map +0 -1
- package/dist/components/custom/scheduler/state/resourceCompProps2.d.ts +0 -6
- package/dist/components/custom/scheduler/state/resourceCompProps2.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/NewScheduler.d.ts +0 -29
- package/dist/components/custom/scheduler-new/presentation/NewScheduler.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts +0 -80
- package/dist/components/custom/scheduler-new/presentation/NewSchedulerUiEvents.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/SchedulerPresenter.d.ts +0 -27
- package/dist/components/custom/scheduler-new/presentation/SchedulerPresenter.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/header/HeaderDivision.d.ts +0 -19
- package/dist/components/custom/scheduler-new/presentation/components/header/HeaderDivision.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/header/HeaderTitle.d.ts +0 -10
- package/dist/components/custom/scheduler-new/presentation/components/header/HeaderTitle.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.d.ts +0 -5
- package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.d.ts +0 -17
- package/dist/components/custom/scheduler-new/presentation/components/header/SchedulerHeaderState.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts +0 -8
- package/dist/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.d.ts +0 -17
- package/dist/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/row/Event.d.ts +0 -34
- package/dist/components/custom/scheduler-new/presentation/components/row/Event.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/row/EventSideDrag.d.ts +0 -8
- package/dist/components/custom/scheduler-new/presentation/components/row/EventSideDrag.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts +0 -27
- package/dist/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts +0 -10
- package/dist/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/timeline/TimeLine.d.ts +0 -15
- package/dist/components/custom/scheduler-new/presentation/components/timeline/TimeLine.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.d.ts +0 -11
- package/dist/components/custom/scheduler-new/presentation/components/timeline/WeekEndLine.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/helpers.d.ts +0 -19
- package/dist/components/custom/scheduler-new/presentation/helpers.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts +0 -4
- package/dist/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/dateFromPercentage.d.ts +0 -2
- package/dist/components/custom/scheduler-new/presentation/logic/dateFromPercentage.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/eventIsVisible.d.ts +0 -2
- package/dist/components/custom/scheduler-new/presentation/logic/eventIsVisible.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.d.ts +0 -6
- package/dist/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts +0 -3
- package/dist/components/custom/scheduler-new/presentation/logic/getDivisions.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/getEventSizes.d.ts +0 -6
- package/dist/components/custom/scheduler-new/presentation/logic/getEventSizes.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts +0 -4
- package/dist/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.d.ts +0 -2
- package/dist/components/custom/scheduler-new/presentation/logic/getPercentageFromMouseEvent.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.d.ts +0 -3
- package/dist/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.d.ts +0 -4
- package/dist/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts +0 -12
- package/dist/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts.map +0 -1
- package/dist/components/custom/scheduler-new/presentation/state/ui/WeekRange.d.ts +0 -5
- package/dist/components/custom/scheduler-new/presentation/state/ui/WeekRange.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/CwSchedulerComp2.d.ts +0 -24
- package/dist/components/custom/scheduler-temporal/CwSchedulerComp2.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/CwSuperSchedulerComp.d.ts +0 -86
- package/dist/components/custom/scheduler-temporal/CwSuperSchedulerComp.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/EventRender.d.ts +0 -10
- package/dist/components/custom/scheduler-temporal/components/EventRender.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/ResourceListRender.d.ts +0 -20
- package/dist/components/custom/scheduler-temporal/components/ResourceListRender.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/ResourceRender.d.ts +0 -14
- package/dist/components/custom/scheduler-temporal/components/ResourceRender.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/day_headers/DayHeader.d.ts +0 -11
- package/dist/components/custom/scheduler-temporal/components/day_headers/DayHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/day_headers/MonthHeader.d.ts +0 -11
- package/dist/components/custom/scheduler-temporal/components/day_headers/MonthHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.d.ts +0 -13
- package/dist/components/custom/scheduler-temporal/components/day_headers/MyDaysHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/day_headers/WeekHeader.d.ts +0 -11
- package/dist/components/custom/scheduler-temporal/components/day_headers/WeekHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.d.ts +0 -14
- package/dist/components/custom/scheduler-temporal/components/resources_title_list/ResourcesTitleList.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.d.ts +0 -23
- package/dist/components/custom/scheduler-temporal/components/scheduler_content_area/SchedulerContentArea.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.d.ts +0 -8
- package/dist/components/custom/scheduler-temporal/components/scheduler_header/SchedulerHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.d.ts +0 -12
- package/dist/components/custom/scheduler-temporal/components/scheduler_timeline/SchedulerTimeLine.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeader.d.ts +0 -12
- package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.d.ts +0 -10
- package/dist/components/custom/scheduler-temporal/components/time_headers/TimeHeaderRow.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/components/time_line/TimeLine.d.ts +0 -12
- package/dist/components/custom/scheduler-temporal/components/time_line/TimeLine.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/dates/addMinutesToDateFromPx.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDates.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.d.ts +0 -7
- package/dist/components/custom/scheduler-temporal/logic/dates/getFormatedTimeForHeader.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.d.ts +0 -10
- package/dist/components/custom/scheduler-temporal/logic/dates/getMonthHeaderData.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/dates/getUtcToday.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/dates/getUtcToday.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.d.ts +0 -7
- package/dist/components/custom/scheduler-temporal/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.d.ts +0 -8
- package/dist/components/custom/scheduler-temporal/logic/dates/listOfDatesToWeeks.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisionType.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/divisions/calculateDivisions.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.d.ts +0 -15
- package/dist/components/custom/scheduler-temporal/logic/filtering/filterAndProcessResources.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/filtering/filterEvents.d.ts +0 -3
- package/dist/components/custom/scheduler-temporal/logic/filtering/filterEvents.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/filtering/filterResources.d.ts +0 -3
- package/dist/components/custom/scheduler-temporal/logic/filtering/filterResources.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/onDrop/OnDrop.d.ts +0 -13
- package/dist/components/custom/scheduler-temporal/logic/onDrop/OnDrop.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.d.ts +0 -17
- package/dist/components/custom/scheduler-temporal/logic/pixels/getPixelsForEvent.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/pixels/heightScheduler.d.ts +0 -3
- package/dist/components/custom/scheduler-temporal/logic/pixels/heightScheduler.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.d.ts +0 -4
- package/dist/components/custom/scheduler-temporal/logic/state_handle/doubleClickOnResource.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/state_handle/onDragOver.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/state_handle/onDragOver.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.d.ts +0 -5
- package/dist/components/custom/scheduler-temporal/logic/state_handle/onDropEventToResource.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.d.ts +0 -4
- package/dist/components/custom/scheduler-temporal/logic/state_handle/onResizeEvent.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/strings/compareStrings.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/strings/compareStrings.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/strings/getGUID.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/strings/getGUID.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.d.ts +0 -3
- package/dist/components/custom/scheduler-temporal/logic/ui/checkIfSlotAvailable.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.d.ts +0 -6
- package/dist/components/custom/scheduler-temporal/logic/ui/getEventsOfResource.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.d.ts +0 -2
- package/dist/components/custom/scheduler-temporal/logic/ui/getTimeHeaders.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.d.ts +0 -3
- package/dist/components/custom/scheduler-temporal/logic/ui/isAllowedToMove.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/state/CblDragAndDrop.d.ts +0 -11
- package/dist/components/custom/scheduler-temporal/state/CblDragAndDrop.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/state/CwSchedulerProps.d.ts +0 -43
- package/dist/components/custom/scheduler-temporal/state/CwSchedulerProps.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/state/Resource.d.ts +0 -14
- package/dist/components/custom/scheduler-temporal/state/Resource.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/state/State.d.ts +0 -25
- package/dist/components/custom/scheduler-temporal/state/State.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/state/cblEvent.d.ts +0 -18
- package/dist/components/custom/scheduler-temporal/state/cblEvent.d.ts.map +0 -1
- package/dist/components/custom/scheduler-temporal/state/cblEventCompProps.d.ts +0 -7
- package/dist/components/custom/scheduler-temporal/state/cblEventCompProps.d.ts.map +0 -1
- package/dist/components/custom/super-scheduler/PinRowHeader.d.ts +0 -15
- package/dist/components/custom/super-scheduler/PinRowHeader.d.ts.map +0 -1
- package/dist/components/custom/super-scheduler/SuperScheduler.d.ts +0 -25
- package/dist/components/custom/super-scheduler/SuperScheduler.d.ts.map +0 -1
- package/dist/components/custom/super-scheduler/SuperSchedulerEvents.d.ts +0 -13
- package/dist/components/custom/super-scheduler/SuperSchedulerEvents.d.ts.map +0 -1
- package/dist/components/custom/super-scheduler/SuperSchedulerPresenter.d.ts +0 -9
- package/dist/components/custom/super-scheduler/SuperSchedulerPresenter.d.ts.map +0 -1
- package/dist/components/display/data/accordion/CwAccordionContainer.d.ts +0 -14
- package/dist/components/display/data/accordion/CwAccordionContainer.d.ts.map +0 -1
- package/dist/components/display/data/generic_tooltip/CwGenericTooltip.d.ts +0 -15
- package/dist/components/display/data/generic_tooltip/CwGenericTooltip.d.ts.map +0 -1
- package/dist/components/display/data/table/CwTable.d.ts +0 -102
- package/dist/components/display/data/table/CwTable.d.ts.map +0 -1
- package/dist/components/display/graphics/icon/CwIcon.d.ts +0 -15
- package/dist/components/display/graphics/icon/CwIcon.d.ts.map +0 -1
- package/dist/components/display/graphics/loading/CwLoading.d.ts +0 -42
- package/dist/components/display/graphics/loading/CwLoading.d.ts.map +0 -1
- package/dist/components/display/graphics/loading-small/CwLoadingSmall.d.ts +0 -18
- package/dist/components/display/graphics/loading-small/CwLoadingSmall.d.ts.map +0 -1
- package/dist/components/display/text/heading/CwHeadingMain.d.ts +0 -3
- package/dist/components/display/text/heading/CwHeadingMain.d.ts.map +0 -1
- package/dist/components/display/text/heading/CwHeadingSecond.d.ts +0 -3
- package/dist/components/display/text/heading/CwHeadingSecond.d.ts.map +0 -1
- package/dist/components/display/text/label/CwLabel.d.ts +0 -28
- package/dist/components/display/text/label/CwLabel.d.ts.map +0 -1
- package/dist/components/display/text/message/CwMessage.d.ts +0 -31
- package/dist/components/display/text/message/CwMessage.d.ts.map +0 -1
- package/dist/components/display/text/tag/CwChip.d.ts +0 -36
- package/dist/components/display/text/tag/CwChip.d.ts.map +0 -1
- package/dist/components/display/text/tag/CwTag.d.ts +0 -16
- package/dist/components/display/text/tag/CwTag.d.ts.map +0 -1
- package/dist/components/display/text/tooltip/CwTooltip.d.ts +0 -8
- package/dist/components/display/text/tooltip/CwTooltip.d.ts.map +0 -1
- package/dist/components/layout/align/CwAlign.d.ts +0 -54
- package/dist/components/layout/align/CwAlign.d.ts.map +0 -1
- package/dist/components/layout/card/CwCard.d.ts +0 -61
- package/dist/components/layout/card/CwCard.d.ts.map +0 -1
- package/dist/components/layout/card/CwCardList.d.ts +0 -32
- package/dist/components/layout/card/CwCardList.d.ts.map +0 -1
- package/dist/components/layout/dialog/CwDialog.d.ts +0 -28
- package/dist/components/layout/dialog/CwDialog.d.ts.map +0 -1
- package/dist/components/layout/dialog/CwDialogManager.d.ts +0 -11
- package/dist/components/layout/dialog/CwDialogManager.d.ts.map +0 -1
- package/dist/components/layout/list/details/CwExpandable.d.ts +0 -23
- package/dist/components/layout/list/details/CwExpandable.d.ts.map +0 -1
- package/dist/components/layout/list/key-value/CwKeyValueList.d.ts +0 -33
- package/dist/components/layout/list/key-value/CwKeyValueList.d.ts.map +0 -1
- package/dist/components/layout/modal/CwModalReportFunctional.d.ts +0 -15
- package/dist/components/layout/modal/CwModalReportFunctional.d.ts.map +0 -1
- package/dist/components/layout/modal/hover/CwModalHover.d.ts +0 -19
- package/dist/components/layout/modal/hover/CwModalHover.d.ts.map +0 -1
- package/dist/components/layout/modal/legacy/cw_modal.d.ts +0 -22
- package/dist/components/layout/modal/legacy/cw_modal.d.ts.map +0 -1
- package/dist/components/layout/modal/legacy/cw_modal_confirm.d.ts +0 -16
- package/dist/components/layout/modal/legacy/cw_modal_confirm.d.ts.map +0 -1
- package/dist/components/layout/modal/legacy/cw_modal_iframe.d.ts +0 -21
- package/dist/components/layout/modal/legacy/cw_modal_iframe.d.ts.map +0 -1
- package/dist/components/layout/modal/legacy/cw_modal_report.d.ts +0 -32
- package/dist/components/layout/modal/legacy/cw_modal_report.d.ts.map +0 -1
- package/dist/components/layout/table/grouped/CwTableGrouped.d.ts.map +0 -1
- package/dist/components/layout/tabs/CwTabs.d.ts +0 -46
- package/dist/components/layout/tabs/CwTabs.d.ts.map +0 -1
- 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
|
|
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$
|
|
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$
|
|
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
|
|
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
|
|
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
|
|
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,
|
|
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 };
|