@cwellt_software/cwellt-reactjs-lib 1.4.4 → 1.4.5
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 +2809 -738
- package/dist/index.css +3 -1
- package/dist/index.d.ts +790 -33
- package/dist/index.es.js +2797 -739
- package/dist/src/common/functions/collections.d.ts.map +1 -1
- package/dist/src/common/functions/colorManipulation.d.ts.map +1 -1
- package/dist/src/common/functions/dsl/UiEventDSL.d.ts +1 -1
- package/dist/src/common/functions/useSingleAndDoubleClicks.d.ts.map +1 -1
- package/dist/src/common/hooks/useDropdownPortal.d.ts +86 -0
- package/dist/src/common/hooks/useDropdownPortal.d.ts.map +1 -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/components/control/action/search/CwSearch.d.ts +22 -0
- package/dist/src/components/control/action/search/CwSearch.d.ts.map +1 -1
- 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/CwCheckboxGroup.d.ts +35 -0
- package/dist/src/components/control/choice/checkbox/CwCheckboxGroup.d.ts.map +1 -0
- package/dist/src/components/control/choice/dropdown/CwPopoverButton.d.ts +35 -0
- package/dist/src/components/control/choice/dropdown/CwPopoverButton.d.ts.map +1 -0
- package/dist/src/components/control/choice/multi-filter/CwMultiFilter.d.ts +6 -0
- package/dist/src/components/control/choice/multi-filter/CwMultiFilter.d.ts.map +1 -1
- 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/option/CwOption.d.ts +3 -1
- package/dist/src/components/control/choice/option/CwOption.d.ts.map +1 -1
- package/dist/src/components/control/choice/select/CwDropdown.d.ts +56 -0
- package/dist/src/components/control/choice/select/CwDropdown.d.ts.map +1 -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/tag-selector/CwTagSelector.d.ts +68 -0
- package/dist/src/components/control/choice/tag-selector/CwTagSelector.d.ts.map +1 -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/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/date-picker/CwInputDatePicker.d.ts.map +1 -1
- package/dist/src/components/control/input/date-picker/datePickerUtils.d.ts +38 -0
- package/dist/src/components/control/input/date-picker/datePickerUtils.d.ts.map +1 -0
- package/dist/src/components/control/input/date-text/CwInputDateText.d.ts +4 -4
- package/dist/src/components/control/input/date-text/CwInputDateText.d.ts.map +1 -1
- package/dist/src/components/control/input/file/CwFileUploadMultiple.d.ts +17 -0
- package/dist/src/components/control/input/file/CwFileUploadMultiple.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts +10 -1
- package/dist/src/components/control/input/new-dates/CwDatePicker.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/CwDatePickerTemporal.d.ts +48 -0
- package/dist/src/components/control/input/new-dates/CwDatePickerTemporal.d.ts.map +1 -0
- 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 +8 -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 +8 -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/datePickerHelpers.d.ts +20 -0
- package/dist/src/components/control/input/new-dates/datePickerHelpers.d.ts.map +1 -0
- package/dist/src/components/control/input/new-dates/dateRangePresets.d.ts.map +1 -1
- package/dist/src/components/control/input/new-dates/usePickerPopup.d.ts +23 -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 +38 -0
- package/dist/src/components/control/input/new-dates/utils/timezoneHelpers.d.ts.map +1 -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-area/CwTextArea.d.ts +6 -0
- package/dist/src/components/control/input/text-area/CwTextArea.d.ts.map +1 -1
- package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts +37 -1
- package/dist/src/components/custom/find-airport/CwFindAirportComp.d.ts.map +1 -1
- package/dist/src/components/custom/find-crewmember/CwFindCrewmemberComp.d.ts +44 -0
- package/dist/src/components/custom/find-crewmember/CwFindCrewmemberComp.d.ts.map +1 -0
- package/dist/src/components/custom/scheduler/CwSchedulerComp.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/CwSuperSchedulerComp.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/components/day_headers/MyDaysHeader.d.ts +0 -3
- package/dist/src/components/custom/scheduler/components/day_headers/MyDaysHeader.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/components/time_line/TimeLine.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/getMonthHeaderData.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisionType.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/divisions/calculateDivisions.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/filtering/filterEvents.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/filtering/filterResources.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/filtering/hasSameProperties.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/pixels/getPixelsForEvent.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/pixels/heightScheduler.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/onDragOver.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/strings/compareStrings.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/getEventsOfResource.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/getTimeHeaders.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/isAllowedToMove.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler/logic/ui/updateResourceVisibility.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.d.ts +4 -1
- package/dist/src/components/custom/scheduler-new/presentation/NewScheduler.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/SchedulerPresenter.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/header/HeaderDivision.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.d.ts +6 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.d.ts +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.d.ts.map +1 -1
- 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/IndicatorRow.d.ts +18 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/IndicatorRow.d.ts.map +1 -0
- package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts +3 -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/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/helpers.d.ts +0 -9
- package/dist/src/components/custom/scheduler-new/presentation/helpers.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/WeekendCalc.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/eventIsVisible.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/filterVisibleEvents.d.ts +3 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/filterVisibleEvents.d.ts.map +1 -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/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/getEventSizes.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts.map +1 -1
- package/dist/src/components/custom/scheduler-new/presentation/logic/isToday.d.ts +2 -0
- package/dist/src/components/custom/scheduler-new/presentation/logic/isToday.d.ts.map +1 -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/sortByCategoryAndTitle.d.ts.map +1 -1
- 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/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/SuperScheduler.d.ts +3 -0
- package/dist/src/components/custom/super-scheduler/SuperScheduler.d.ts.map +1 -1
- package/dist/src/components/custom/super-scheduler/SuperSchedulerPresenter.d.ts.map +1 -1
- 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/table/CwTable.d.ts +4 -1
- package/dist/src/components/display/data/table/CwTable.d.ts.map +1 -1
- package/dist/src/components/display/data/table-serverside/CwTableServerSide.d.ts +4 -1
- package/dist/src/components/display/data/table-serverside/CwTableServerSide.d.ts.map +1 -1
- 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/text/message/CwMessage.d.ts +3 -2
- package/dist/src/components/display/text/message/CwMessage.d.ts.map +1 -1
- 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/tag/CwChip.d.ts +1 -1
- package/dist/src/components/display/text/tag/CwChip.d.ts.map +1 -1
- 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/CwDialogManager.d.ts.map +1 -1
- 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/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/legacy/cw_modal.d.ts.map +1 -1
- package/dist/src/components/layout/modal/legacy/cw_modal_report.d.ts +0 -1
- package/dist/src/components/layout/modal/legacy/cw_modal_report.d.ts.map +1 -1
- package/dist/src/components/layout/table/grouped/CwTableGrouped.d.ts +2 -0
- package/dist/src/components/layout/table/grouped/CwTableGrouped.d.ts.map +1 -1
- package/dist/src/components/layout/tabs/CwTabs.d.ts +2 -0
- package/dist/src/components/layout/tabs/CwTabs.d.ts.map +1 -1
- 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 +15 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/main.d.ts +2 -0
- package/dist/src/main.d.ts.map +1 -0
- package/dist/src/playground/PlaygroundApp.d.ts +4 -0
- package/dist/src/playground/PlaygroundApp.d.ts.map +1 -0
- package/dist/src/playground/pages/ColorContrastPage.d.ts +3 -0
- package/dist/src/playground/pages/ColorContrastPage.d.ts.map +1 -0
- package/dist/src/playground/pages/DatePickerLocalePage.d.ts +3 -0
- package/dist/src/playground/pages/DatePickerLocalePage.d.ts.map +1 -0
- package/dist/src/playground/pages/DatePickerTemporalPage.d.ts +3 -0
- package/dist/src/playground/pages/DatePickerTemporalPage.d.ts.map +1 -0
- package/dist/src/playground/pages/SelectorsPage.d.ts +3 -0
- package/dist/src/playground/pages/SelectorsPage.d.ts.map +1 -0
- package/dist/src/playground/pages/TablePaginationPage.d.ts +3 -0
- package/dist/src/playground/pages/TablePaginationPage.d.ts.map +1 -0
- package/dist/src/playground/pages/TableServerSideComparePage.d.ts +3 -0
- package/dist/src/playground/pages/TableServerSideComparePage.d.ts.map +1 -0
- package/dist/test/components/control/input/date-picker/datePickerUtils.test.d.ts +2 -0
- package/dist/test/components/control/input/date-picker/datePickerUtils.test.d.ts.map +1 -0
- package/dist/test/components/control/input/new-dates/datePickerHelpers.test.d.ts +2 -0
- package/dist/test/components/control/input/new-dates/datePickerHelpers.test.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/header/getStartEnd.test.d.ts +2 -0
- package/dist/test/components/custom/new-scheduler/presentation/header/getStartEnd.test.d.ts.map +1 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/dateFromPercentage.test.d.ts +2 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/dateFromPercentage.test.d.ts.map +1 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/eventIsVisible.test.d.ts +2 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/eventIsVisible.test.d.ts.map +1 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/filterVisibleEvents.test.d.ts +2 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/filterVisibleEvents.test.d.ts.map +1 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/isToday.test.d.ts +2 -0
- package/dist/test/components/custom/new-scheduler/presentation/logic/isToday.test.d.ts.map +1 -0
- package/dist/test/components/custom/scheduler/getFormattedTimeForHeader.test.d.ts +2 -0
- package/dist/test/components/custom/scheduler/getFormattedTimeForHeader.test.d.ts.map +1 -0
- package/dist/test/vitest.setup.d.ts +2 -0
- package/dist/test/vitest.setup.d.ts.map +1 -0
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MyDaysHeader.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/components/day_headers/MyDaysHeader.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"MyDaysHeader.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/components/day_headers/MyDaysHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,EAAE,EAAC,MAAM,OAAO,CAAC;AAS9B,UAAU,eAAe;IACxB,IAAI,EAAE,IAAI,EAAE,CAAC;IACb,YAAY,EAAE,GAAG,GAAG,GAAG,GAAG,GAAG,CAAC;IAC9B,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;CACnB;AAED,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,eAAe,CAqD1C,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchedulerContentArea.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SchedulerContentArea.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/components/scheduler_content_area/SchedulerContentArea.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACzD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAIrD,UAAU,yBAAyB;IAClC,GAAG,EAAE,IAAI,CAAC;IACV,YAAY,EAAE,OAAO,CAAC;IACtB,cAAc,EAAE,MAAM,CAAC;IACvB,mBAAmB,EAAE,MAAM,EAAE,CAAC;IAC9B,SAAS,EAAE,QAAQ,EAAE,CAAC;IACtB,mBAAmB,CAAC,EAAE,KAAK,CAAC;QAC3B,GAAG,EAAE,MAAM,CAAC;QACZ,IAAI,EAAE,MAAM,CAAC;QACb,IAAI,EAAE,MAAM,CAAC;QACb,KAAK,EAAE,MAAM,CAAC;KACd,CAAC,CAAC;IACH,SAAS,EAAE,WAAW,CAAC;IACvB,YAAY,EAAE,CAAC,CAAC,WAAW,EAAE,MAAM,KAAK,IAAI,CAAC,GAAG,SAAS,CAAC;IAC1D,cAAc,EAAE,CAAC,SAAS,EAAE,wBAAwB,KAAK,IAAI,CAAC;IAC9D,kBAAkB,EAAE,CAAC,WAAW,EAAE,GAAG,EAAE,SAAS,EAAE,QAAQ,KAAK,IAAI,CAAC;CACpE;AACD,eAAO,MAAM,oBAAoB,EAAE,EAAE,CAAC,yBAAyB,CAuD9D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TimeLine.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/components/time_line/TimeLine.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"TimeLine.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/components/time_line/TimeLine.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAGhC,MAAM,WAAW,aAAa;IAC7B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,eAAO,MAAM,QAAQ,EAAE,EAAE,CAAC,aAAa,CAwBtC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"addMinutesToDateFromPx.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,
|
|
1
|
+
{"version":3,"file":"addMinutesToDateFromPx.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/addMinutesToDateFromPx.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,GAAI,cAAc,IAAI,EAAE,QAAQ,MAAM,EAAE,cAAc,MAAM,KAAG,IAKjG,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"daysBetweenTwoDates.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"daysBetweenTwoDates.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/daysBetweenTwoDates.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,GAAI,OAAO,IAAI,EAAE,OAAO,IAAI,KAAG,MAgB9D,CAAC"}
|
package/dist/src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"daysBetweenTwoDatesWithoutCeil.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gCAAgC,
|
|
1
|
+
{"version":3,"file":"daysBetweenTwoDatesWithoutCeil.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/daysBetweenTwoDatesWithoutCeil.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gCAAgC,GAAI,OAAO,IAAI,EAAE,OAAO,IAAI,KAAG,MAI3E,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getFormatedTimeForHeader.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"getFormatedTimeForHeader.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/getFormatedTimeForHeader.ts"],"names":[],"mappings":"AAAA,UAAU,cAAc;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,OAAO,CAAC;CACnB;AAQD,eAAO,MAAM,yBAAyB,GACrC,mBAAmB,GAAG,GAAG,GAAG,GAAG,GAAG,EAClC,oBAAoB,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,EACjC,YAAY,IAAI,KACd,cA0CF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMonthHeaderData.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/getMonthHeaderData.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC/B,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,SAAS;IACzB,KAAK,EAAE,IAAI,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,kBAAkB,
|
|
1
|
+
{"version":3,"file":"getMonthHeaderData.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/getMonthHeaderData.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,eAAe;IAC/B,cAAc,EAAE,MAAM,CAAC;IACvB,KAAK,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,SAAS;IACzB,KAAK,EAAE,IAAI,CAAC;IACZ,QAAQ,EAAE,MAAM,CAAC;CACjB;AAED,eAAO,MAAM,kBAAkB,GAAI,OAAO,IAAI,EAAE,EAAE,UAAU,MAAM,KAAG,eAAe,EAWnF,CAAC"}
|
package/dist/src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWeekHeaderDataFromWeekRange.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEtD,MAAM,WAAW,cAAc;IAC9B,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,EAAE,MAAM,CAAC;CACd;AAED,eAAO,MAAM,8BAA8B,
|
|
1
|
+
{"version":3,"file":"getWeekHeaderDataFromWeekRange.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/getWeekHeaderDataFromWeekRange.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEtD,MAAM,WAAW,cAAc;IAC9B,eAAe,EAAE,MAAM,CAAC;IACxB,KAAK,EAAE,MAAM,CAAC;CACd;AAED,eAAO,MAAM,8BAA8B,GAC1C,WAAW,SAAS,EAAE,EACtB,UAAU,MAAM,EAChB,eAAe,CAAC,IAAI,EAAE,IAAI,KAAK,MAAM,KACnC,cAAc,EAad,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"listOfDatesToWeeks.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"listOfDatesToWeeks.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/dates/listOfDatesToWeeks.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,SAAS;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,IAAI,CAAC;IACZ,GAAG,EAAE,IAAI,CAAC;IACV,WAAW,EAAE,OAAO,CAAC;CACrB;AAED,eAAO,MAAM,0BAA0B,GAAI,OAAO,IAAI,EAAE,KAAG,SAAS,EAwCnE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calculateDivisionType.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/divisions/calculateDivisionType.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"calculateDivisionType.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/divisions/calculateDivisionType.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,qBAAqB,GAAI,OAAO,IAAI,EAAE,KAAK,IAAI,oBAU3D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calculateDivisions.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/divisions/calculateDivisions.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB,
|
|
1
|
+
{"version":3,"file":"calculateDivisions.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/divisions/calculateDivisions.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,kBAAkB,GAAI,OAAO,IAAI,EAAE,KAAK,IAAI,kBAYxD,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filterEvents.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/filtering/filterEvents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"filterEvents.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/filtering/filterEvents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,YAAY,GACxB,QAAQ,QAAQ,EAAE,EAClB,OAAO,IAAI,EACX,KAAK,IAAI,EACT,IAAI,MAAM,EACV,SAAQ,MAAM,GAAG,SAAqB,eA4BtC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"filterResources.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/filtering/filterResources.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGrD,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"filterResources.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/filtering/filterResources.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGrD,eAAO,MAAM,eAAe,GAC3B,QAAQ,MAAM,GAAG,SAAS,EAC1B,cAAc,MAAM,GAAG,SAAS,EAChC,WAAW,QAAQ,EAAE,EACrB,iBAAiB,OAAO,EACxB,SAAS,IAAI,EACb,WAAW,IAAI,EACf,cAAc,MAAM,KAClB,QAAQ,EAgBV,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hasSameProperties.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/filtering/hasSameProperties.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"hasSameProperties.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/filtering/hasSameProperties.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,iBAAiB,GAAI,QAAQ,QAAQ,EAAE,OAAO,QAAQ,KAAG,OAUrE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getHeightLineScheduler.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,
|
|
1
|
+
{"version":3,"file":"getHeightLineScheduler.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/pixels/getHeightLineScheduler.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,sBAAsB,GAClC,QAAQ,MAAM,EACd,cAAc,MAAM,GAAG,SAAS,EAChC,QAAQ,MAAM,KACZ,MAAM,GAAG,SAgBX,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPixelsForEvent.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/pixels/getPixelsForEvent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGrD,eAAO,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"getPixelsForEvent.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/pixels/getPixelsForEvent.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGrD,eAAO,MAAM,aAAa,GAAI,YAAY,IAAI,EAAE,eAAe,IAAI,EAAE,OAAO,MAAM,KAAG,MAGpF,CAAC;AAEF,eAAO,MAAM,sBAAsB,GAAI,WAAW,QAAQ,EAAE,EAAE,YAAY,gBAAgB,EAAE,OAAO,MAAM;;;;;;;;;;GAWxG,CAAC;AAEF,eAAO,MAAM,gBAAgB,GAAI,OAAO,QAAQ,EAAE,gBAAgB,IAAI,EAAE,OAAO,MAAM,KAAG,QAevF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"heightScheduler.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/pixels/heightScheduler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"heightScheduler.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/pixels/heightScheduler.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,eAAe,GAAI,WAAW,QAAQ,EAAE,EAAE,aAAa,MAAM,EAAE,mBAAmB,OAAO,WAerG,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"heightSchedulerPinned.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"heightSchedulerPinned.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/pixels/heightSchedulerPinned.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,qBAAqB,GACjC,iBAAiB,MAAM,EACvB,IAAI,MAAM,EACV,cAAc,KAAK,CAAC,SAAS,CAAC,mBAAmB,CAAC,KAChD,MAAM,GAAG,SASX,CAAC"}
|
package/dist/src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"doubleClickOnResource.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"doubleClickOnResource.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/state_handle/doubleClickOnResource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,qBAAqB,GAAI,OAAO,gBAAgB,EAAE,UAAU,QAAQ,SAIhF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onDragOver.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/state_handle/onDragOver.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,
|
|
1
|
+
{"version":3,"file":"onDragOver.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/state_handle/onDragOver.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,GAAI,GAAG,KAAK,CAAC,SAAS,SAQ5C,CAAC"}
|
package/dist/src/components/custom/scheduler/logic/state_handle/onDropEventToResource.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onDropEventToResource.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/state_handle/onDropEventToResource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"onDropEventToResource.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/state_handle/onDropEventToResource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AACjE,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,8BAA8B,CAAC;AACrE,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,qBAAqB,GAAI,OAAO,gBAAgB,EAAE,cAAc,cAAc,EAAE,UAAU,QAAQ,SAE9G,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"compareStrings.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/strings/compareStrings.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"compareStrings.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/strings/compareStrings.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,GAAI,MAAM,MAAM,EAAE,MAAM,MAAM,KAAG,MAI3D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"checkIfSlotAvailable.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"checkIfSlotAvailable.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/checkIfSlotAvailable.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,oBAAoB,GAAI,QAAQ,KAAK,CAAC,QAAQ,CAAC,EAAE,OAAO,QAAQ,YAO5E,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getEventsOfResource.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/getEventsOfResource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGrD,eAAO,MAAM,oBAAoB,
|
|
1
|
+
{"version":3,"file":"getEventsOfResource.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/getEventsOfResource.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAGrD,eAAO,MAAM,oBAAoB,GAAI,KAAK,QAAQ,EAAE,aAAa,MAAM,EAAE,OAAO,MAAM,EAAE,OAAO,IAAI,iBA4ClG,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTimeHeaders.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/getTimeHeaders.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"getTimeHeaders.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/getTimeHeaders.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,GAAI,WAAW,IAAI,EAAE,SAAS,IAAI,KAAG,KAAK,CAAC,IAAI,CAsCzE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"isAllowedToMove.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/isAllowedToMove.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAEjE,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"isAllowedToMove.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/isAllowedToMove.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAC;AAEjE,eAAO,MAAM,eAAe,GAAI,MAAM,GAAG,EAAE,SAAS,GAAG,EAAE,cAAc,cAAc,KAAG,OAuBvF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updateResourceVisibility.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/updateResourceVisibility.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,wBAAwB,
|
|
1
|
+
{"version":3,"file":"updateResourceVisibility.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler/logic/ui/updateResourceVisibility.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAErD,eAAO,MAAM,wBAAwB,GACpC,aAAa,MAAM,EACnB,gBAAgB,MAAM,EACtB,gBAAgB,QAAQ,EAAE,EAC1B,gBAAgB,QAAQ,EAAE,KACxB,QAAQ,EAWV,CAAC"}
|
|
@@ -5,6 +5,7 @@ import { SchedulerHeaderContent } from "./components/header/SchedulerHeaderState
|
|
|
5
5
|
import { BackgroundEventDm } from "./components/row/BackgroundEvent";
|
|
6
6
|
import { RowHeaderDm, RowHeaderProps } from "./components/row/DefaultRowHeader";
|
|
7
7
|
import { SchedulerEventDm, SchedulerEventState } from "./components/row/Event";
|
|
8
|
+
import { type IndicatorRowDm } from "./components/row/IndicatorRow";
|
|
8
9
|
import type { SchedulerState } from "./state/ui/SchedulerState";
|
|
9
10
|
export type OrderCategory<T> = keyof T & string;
|
|
10
11
|
interface SchedulerProps<T extends RowHeaderDm, P extends SchedulerEventDm> {
|
|
@@ -14,6 +15,7 @@ interface SchedulerProps<T extends RowHeaderDm, P extends SchedulerEventDm> {
|
|
|
14
15
|
EventComp: React.ComponentType<SchedulerEventState<P>>;
|
|
15
16
|
events: P[];
|
|
16
17
|
backgroundEvents: BackgroundEventDm[];
|
|
18
|
+
indicatorRows?: IndicatorRowDm[];
|
|
17
19
|
rows: T[];
|
|
18
20
|
contextMenuItems: MenuOption[];
|
|
19
21
|
orderCategories?: OrderCategory<T>[];
|
|
@@ -23,7 +25,8 @@ interface SchedulerProps<T extends RowHeaderDm, P extends SchedulerEventDm> {
|
|
|
23
25
|
onEvent: OnEvent;
|
|
24
26
|
groupRowColors?: boolean;
|
|
25
27
|
rowHeaderWidth?: number;
|
|
28
|
+
rowHeightRem?: number;
|
|
26
29
|
}
|
|
27
30
|
export declare const Scheduler: <T extends RowHeaderDm, P extends SchedulerEventDm>(props: SchedulerProps<T, P>) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
-
export
|
|
31
|
+
export {};
|
|
29
32
|
//# sourceMappingURL=NewScheduler.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NewScheduler.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler-new/presentation/NewScheduler.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"NewScheduler.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler-new/presentation/NewScheduler.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA0D,MAAM,OAAO,CAAC;AAE/E,OAAO,KAAK,EAAC,OAAO,EAAC,MAAM,6CAA6C,CAAC;AACzE,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,oDAAoD,CAAC;AAEnF,OAAO,EAAC,sBAAsB,EAAuB,MAAM,0CAA0C,CAAC;AACtG,OAAO,EAAkB,iBAAiB,EAAC,MAAM,kCAAkC,CAAC;AACpF,OAAO,EAAC,WAAW,EAAE,cAAc,EAAC,MAAM,mCAAmC,CAAC;AAC9E,OAAO,EAAC,gBAAgB,EAAE,mBAAmB,EAAC,MAAM,wBAAwB,CAAC;AAC7E,OAAO,EAAuB,KAAK,cAAc,EAAC,MAAM,+BAA+B,CAAC;AASxF,OAAO,KAAK,EAAY,cAAc,EAAC,MAAM,2BAA2B,CAAC;AAGzE,MAAM,MAAM,aAAa,CAAC,CAAC,IAAI,MAAM,CAAC,GAAG,MAAM,CAAC;AAEhD,UAAU,cAAc,CAAC,CAAC,SAAS,WAAW,EAAE,CAAC,SAAS,gBAAgB;IACzE,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,cAAc,CAAC;IACtB,MAAM,EAAE,sBAAsB,CAAC;IAC/B,SAAS,EAAE,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC;IACvD,MAAM,EAAE,CAAC,EAAE,CAAC;IACZ,gBAAgB,EAAE,iBAAiB,EAAE,CAAC;IACtC,aAAa,CAAC,EAAE,cAAc,EAAE,CAAC;IACjC,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,gBAAgB,EAAE,UAAU,EAAE,CAAC;IAC/B,eAAe,CAAC,EAAE,aAAa,CAAC,CAAC,CAAC,EAAE,CAAC;IACrC,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,YAAY,EAAE,KAAK,CAAC,aAAa,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC;IACrD,mBAAmB,CAAC,EAAE,KAAK,CAAC,aAAa,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,CAAC,CAAC;IAClF,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,YAAY,CAAC,EAAE,MAAM,CAAC;CACtB;AAoKD,eAAO,MAAM,SAAS,GAAI,CAAC,SAAS,WAAW,EAAE,CAAC,SAAS,gBAAgB,EAAE,OAAO,cAAc,CAAC,CAAC,EAAE,CAAC,CAAC,4CA6MvG,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchedulerPresenter.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler-new/presentation/SchedulerPresenter.tsx"],"names":[],"mappings":"AAAA,OAAO,EAA+B,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AACpE,OAAO,EAAiB,KAAK,OAAO,EAAE,MAAM,6CAA6C,CAAC;AAE1F,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,mCAAmC,CAAC;AAChE,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAmB1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAEhE,MAAM,WAAW,QAAQ;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,IAAI,CAAC;IAChB,OAAO,EAAE,IAAI,CAAC;CACd;AAED,eAAO,MAAM,cAAc,
|
|
1
|
+
{"version":3,"file":"SchedulerPresenter.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler-new/presentation/SchedulerPresenter.tsx"],"names":[],"mappings":"AAAA,OAAO,EAA+B,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AACpE,OAAO,EAAiB,KAAK,OAAO,EAAE,MAAM,6CAA6C,CAAC;AAE1F,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAC1E,OAAO,EAAE,WAAW,EAAE,MAAM,mCAAmC,CAAC;AAChE,OAAO,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAmB1D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAEhE,MAAM,WAAW,QAAQ;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,IAAI,CAAC;IAChB,OAAO,EAAE,IAAI,CAAC;CACd;AAED,eAAO,MAAM,cAAc,GAAI,IAAI,QAAQ,EAAE,cAAc,IAAI,EAAE,aAAa,MAAM,EAAE,UAAU,SAAS,qBAYxG,CAAC;AAEF,MAAM,WAAW,MAAM;IACtB,UAAU,EAAE,MAAM,CAAC;IACnB,KAAK,EAAE,MAAM,CAAC;CACd;AAED,eAAO,MAAM,kBAAkB;;;;;;CAkK9B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"HeaderDivision.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/header/HeaderDivision.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"HeaderDivision.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/header/HeaderDivision.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAIhC,UAAU,4BAA4B;IACrC,YAAY,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,cAAc,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,OAAO,CAAC,EAAE,IAAI,CAAC;CACf;AAED,MAAM,WAAW,cAAc;IAC9B,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,EAAE,CAAC;IACjB,SAAS,EAAE,IAAI,CAAC;IAChB,OAAO,CAAC,EAAE,IAAI,CAAC;CACf;AAED,eAAO,MAAM,uBAAuB,EAAE,EAAE,CAAC,4BAA4B,CAgCpE,CAAC;AAEF,eAAO,MAAM,QAAQ,+CAepB,CAAC"}
|
package/dist/src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.d.ts
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import type { FC } from "react";
|
|
2
|
+
import { HeaderDivision } from "./HeaderDivision";
|
|
2
3
|
import type { SchedulerHeaderState } from "./SchedulerHeaderState";
|
|
3
4
|
export declare const SchedulerHeader: FC<SchedulerHeaderState>;
|
|
4
|
-
export
|
|
5
|
+
export interface StartEnd {
|
|
6
|
+
start: Date;
|
|
7
|
+
end: Date | undefined;
|
|
8
|
+
}
|
|
9
|
+
export declare function getStartEnd(day: HeaderDivision): StartEnd;
|
|
5
10
|
//# sourceMappingURL=SchedulerHeader.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchedulerHeader.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"SchedulerHeader.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/header/SchedulerHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,EAAE,EAAC,MAAM,OAAO,CAAC;AAO9B,OAAO,EAA0B,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAEzE,OAAO,KAAK,EAAC,oBAAoB,EAAC,MAAM,wBAAwB,CAAC;AAEjE,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,oBAAoB,CAmEpD,CAAC;AAEF,MAAM,WAAW,QAAQ;IACxB,KAAK,EAAE,IAAI,CAAC;IACZ,GAAG,EAAE,IAAI,GAAG,SAAS,CAAC;CACtB;AAED,wBAAgB,WAAW,CAAC,GAAG,EAAE,cAAc,GAAG,QAAQ,CAazD"}
|
package/dist/src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import type { FC } from "react";
|
|
|
2
2
|
import type { SchedulerEventDm, SchedulerEventState } from "./Event";
|
|
3
3
|
export interface BackgroundEventDm extends SchedulerEventDm {
|
|
4
4
|
isVisible: boolean;
|
|
5
|
+
contentAlign?: "center" | "flex-end";
|
|
5
6
|
}
|
|
6
7
|
export declare const BackgroundEvent: FC<SchedulerEventState<BackgroundEventDm>>;
|
|
7
8
|
export declare const BackgroundEventPreview: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BackgroundEvent.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAIhC,OAAO,KAAK,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAErE,MAAM,WAAW,iBAAkB,SAAQ,gBAAgB;IAC1D,SAAS,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"BackgroundEvent.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/row/BackgroundEvent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAIhC,OAAO,KAAK,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,MAAM,SAAS,CAAC;AAErE,MAAM,WAAW,iBAAkB,SAAQ,gBAAgB;IAC1D,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;CACrC;AAED,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,CAiEtE,CAAC;AAEF,eAAO,MAAM,sBAAsB,+CAuBlC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DefaultRowHeader.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mDAAmD,CAAC;AAIjF,MAAM,WAAW,WAAW;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"DefaultRowHeader.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/row/DefaultRowHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAChC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mDAAmD,CAAC;AAIjF,MAAM,WAAW,WAAW;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,cAAc,CAAC,CAAC,SAAS,WAAW;IACpD,KAAK,EAAE,CAAC,CAAC;IAET,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,OAAO,CAAC;CACjB;AAED,eAAO,MAAM,gBAAgB,EAAE,EAAE,CAAC,cAAc,CAAC,WAAW,CAAC,CA0B5D,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Event.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/row/Event.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,EAAE,EAAE,KAAK,YAAY,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAE7E,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mDAAmD,CAAC;AAEjF,OAAO,EAAkB,KAAK,UAAU,EAAE,MAAM,0DAA0D,CAAC;AAe3G,MAAM,WAAW,gBAAgB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,EAAE,IAAI,CAAC;IAChB,OAAO,EAAE,IAAI,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,gBAAgB,CAAC,EAAE,UAAU,EAAE,CAAC;IAChC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,mBAAmB,CAAC,CAAC,SAAS,gBAAgB;IAC9D,KAAK,EAAE,CAAC,CAAC;IACT,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;CACjB;
|
|
1
|
+
{"version":3,"file":"Event.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/row/Event.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAY,KAAK,EAAE,EAAE,KAAK,YAAY,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAE7E,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,mDAAmD,CAAC;AAEjF,OAAO,EAAkB,KAAK,UAAU,EAAE,MAAM,0DAA0D,CAAC;AAe3G,MAAM,WAAW,gBAAgB;IAChC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,QAAQ,EAAE,OAAO,CAAC;IAClB,SAAS,EAAE,IAAI,CAAC;IAChB,OAAO,EAAE,IAAI,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,YAAY,CAAC;IACrB,eAAe,CAAC,EAAE,MAAM,EAAE,CAAC;IAC3B,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,gBAAgB,CAAC,EAAE,UAAU,EAAE,CAAC;IAChC,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,wBAAwB,CAAC,EAAE,MAAM,CAAC;IAClC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,mBAAmB,CAAC,CAAC,SAAS,gBAAgB;IAC9D,KAAK,EAAE,CAAC,CAAC;IACT,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;CACjB;AAID,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,CAyMpE,CAAC;AAEF,eAAO,MAAM,QAAQ,+CA8BpB,CAAC"}
|
package/dist/src/components/custom/scheduler-new/presentation/components/row/IndicatorRow.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { FC, ReactNode } from "react";
|
|
2
|
+
export interface IndicatorRowDm {
|
|
3
|
+
id: string;
|
|
4
|
+
rowId: string;
|
|
5
|
+
start: Date;
|
|
6
|
+
end: Date;
|
|
7
|
+
color: string;
|
|
8
|
+
tooltip?: ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export declare const INDICATOR_HEIGHT_REM = 0.25;
|
|
11
|
+
interface IndicatorRowProps {
|
|
12
|
+
indicators: IndicatorRowDm[];
|
|
13
|
+
selectedDate: Date;
|
|
14
|
+
visibleDays: number;
|
|
15
|
+
}
|
|
16
|
+
export declare const IndicatorRow: FC<IndicatorRowProps>;
|
|
17
|
+
export {};
|
|
18
|
+
//# sourceMappingURL=IndicatorRow.d.ts.map
|
package/dist/src/components/custom/scheduler-new/presentation/components/row/IndicatorRow.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"IndicatorRow.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/row/IndicatorRow.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAI3C,MAAM,WAAW,cAAc;IAC9B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,IAAI,CAAC;IACZ,GAAG,EAAE,IAAI,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,SAAS,CAAC;CACpB;AAED,eAAO,MAAM,oBAAoB,OAAO,CAAC;AAEzC,UAAU,iBAAiB;IAC1B,UAAU,EAAE,cAAc,EAAE,CAAC;IAC7B,YAAY,EAAE,IAAI,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,iBAAiB,CA+C9C,CAAC"}
|
package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { type ComponentType, ReactElement } from "react";
|
|
2
2
|
import { OnEvent } from "../../../../../../common/functions/dsl/UiEventDSL";
|
|
3
3
|
import { type MenuOption } from "../../../../../control/action/contextmenu/CwAnchoredMenu";
|
|
4
4
|
import { LineState } from "../../state/ui/SchedulerState";
|
|
5
5
|
import { BackgroundEventDm } from "./BackgroundEvent";
|
|
6
6
|
import { RowHeaderDm, type RowHeaderProps } from "./DefaultRowHeader";
|
|
7
7
|
import { SchedulerEventDm, SchedulerEventState } from "./Event";
|
|
8
|
+
import { type IndicatorRowDm } from "./IndicatorRow";
|
|
8
9
|
export interface SchedulerRowProps<T extends RowHeaderDm, P extends SchedulerEventDm> {
|
|
9
10
|
events: P[];
|
|
10
11
|
backgroundEvents: BackgroundEventDm[];
|
|
12
|
+
indicatorRows: IndicatorRowDm[];
|
|
11
13
|
rowHeader: RowHeaderProps<T>;
|
|
12
14
|
contextMenuItems?: MenuOption[];
|
|
13
15
|
EventComp: ComponentType<SchedulerEventState<P>>;
|
package/dist/src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchedulerRow.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"SchedulerRow.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/row/SchedulerRow.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,aAAa,EAAQ,YAAY,EAAmB,MAAM,OAAO,CAAC;AAC/E,OAAO,EAAC,OAAO,EAAC,MAAM,mDAAmD,CAAC;AAE1E,OAAO,EAAiB,KAAK,UAAU,EAAC,MAAM,0DAA0D,CAAC;AAYzG,OAAO,EAAC,SAAS,EAAC,MAAM,+BAA+B,CAAC;AAIxD,OAAO,EAAkB,iBAAiB,EAAC,MAAM,mBAAmB,CAAC;AACrE,OAAO,EAAmB,WAAW,EAAE,KAAK,cAAc,EAAC,MAAM,oBAAoB,CAAC;AACtF,OAAO,EAAiB,gBAAgB,EAAE,mBAAmB,EAAC,MAAM,SAAS,CAAC;AAC9E,OAAO,EAAe,KAAK,cAAc,EAAC,MAAM,gBAAgB,CAAC;AAGjE,MAAM,WAAW,iBAAiB,CAAC,CAAC,SAAS,WAAW,EAAE,CAAC,SAAS,gBAAgB;IACnF,MAAM,EAAE,CAAC,EAAE,CAAC;IACZ,gBAAgB,EAAE,iBAAiB,EAAE,CAAC;IACtC,aAAa,EAAE,cAAc,EAAE,CAAC;IAChC,SAAS,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC;IAC7B,gBAAgB,CAAC,EAAE,UAAU,EAAE,CAAC;IAChC,SAAS,EAAE,aAAa,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC;IACjD,YAAY,EAAE,aAAa,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC;IAC/C,mBAAmB,EAAE,aAAa,CAAC,mBAAmB,CAAC,iBAAiB,CAAC,CAAC,CAAC;IAC3E,OAAO,EAAE,OAAO,CAAC;IACjB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,SAAS,EAAE,CAAC;IAC1B,aAAa,EAAE,SAAS,EAAE,CAAC;IAC3B,kBAAkB,EAAE,MAAM,CAAC;IAC3B,YAAY,EAAE,IAAI,CAAC;IACnB,WAAW,EAAE,MAAM,CAAC;CACpB;AAED,eAAO,MAAM,YAAY,EAoMpB,CAAC,CAAC,SAAS,WAAW,EAAE,CAAC,SAAS,gBAAgB,EAAE,KAAK,EAAE,iBAAiB,CAAC,CAAC,EAAE,CAAC,CAAC,KACrF,YAAY,CAAC;AAEf,eAAO,MAAM,mBAAmB,+CA6E/B,CAAC;AAEF,eAAe,YAAY,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DivisionLine.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"DivisionLine.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/components/timeline/DivisionLine.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAGhC,UAAU,KAAK;IACd,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,MAAM,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,aAAa,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,KAAK,CAMlC,CAAC;AAEF,eAAO,MAAM,QAAQ,+CAMpB,CAAC"}
|
|
@@ -7,13 +7,4 @@ export declare const getRandomEvents: (date: Date, visibleDays: number, resource
|
|
|
7
7
|
startDate: Date;
|
|
8
8
|
endDate: Date;
|
|
9
9
|
}[];
|
|
10
|
-
export declare const isLight: (color: string) => boolean;
|
|
11
|
-
type RGB = {
|
|
12
|
-
r: number;
|
|
13
|
-
g: number;
|
|
14
|
-
b: number;
|
|
15
|
-
};
|
|
16
|
-
export declare function hexToRGB(hex: string): RGB;
|
|
17
|
-
export declare const getColorLuminanceOf: (r: number, g: number, b: number, a?: number) => number;
|
|
18
|
-
export {};
|
|
19
10
|
//# sourceMappingURL=helpers.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler-new/presentation/helpers.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../../../../src/components/custom/scheduler-new/presentation/helpers.tsx"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,GAAI,KAAK,MAAM,aAGrB,CAAC;AAcxB,eAAO,MAAM,eAAe,GAAI,MAAM,IAAI,EAAE,aAAa,MAAM,EAAE,YAAY,MAAM;;;;;;;GAclF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WeekendCalc.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/WeekendCalc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,4BAA4B,CAAC;AAGrD,eAAO,MAAM,6BAA6B,
|
|
1
|
+
{"version":3,"file":"WeekendCalc.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/WeekendCalc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,4BAA4B,CAAC;AAGrD,eAAO,MAAM,6BAA6B,GAAI,aAAa,IAAI,EAAE,aAAa,MAAM,KAAG,SAAS,EAgB/F,CAAC;AAEF,eAAO,MAAM,0BAA0B,GAAI,aAAa,IAAI,EAAE,aAAa,MAAM,KAAG,IAAI,EAavF,CAAC"}
|
package/dist/src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dateFromPercentage.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dateFromPercentage.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/dateFromPercentage.ts"],"names":[],"mappings":"AAAA,wBAAgB,kBAAkB,CACjC,SAAS,EAAE,IAAI,EACf,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,GAChB,IAAI,CAQN"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eventIsVisible.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/eventIsVisible.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"eventIsVisible.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/eventIsVisible.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,GAAI,WAAW,IAAI,EAAE,SAAS,IAAI,EAAE,cAAc,IAAI,EAAE,aAAa,MAAM,KAAG,OAKxG,CAAC"}
|
package/dist/src/components/custom/scheduler-new/presentation/logic/filterVisibleEvents.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"filterVisibleEvents.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/filterVisibleEvents.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAC,gBAAgB,EAAC,MAAM,yBAAyB,CAAC;AAE9D,eAAO,MAAM,mBAAmB,GAAI,CAAC,SAAS,gBAAgB,EAC7D,QAAQ,CAAC,EAAE,EACX,cAAc,IAAI,EAClB,aAAa,MAAM,KACjB,CAAC,EAMH,CAAC"}
|
package/dist/src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDefaultDivisions.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"getDefaultDivisions.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/getDefaultDivisions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AAC1E,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAC;AA8CvD,eAAO,MAAM,mBAAmB,GAAI,aAAa,MAAM,EAAE,cAAc,IAAI,KAAG,cAAc,EAU3F,CAAC;AA2DF,eAAO,MAAM,eAAe,GAAI,aAAa,MAAM,EAAE,cAAc,IAAI,KAAG,SAAS,EA0BlF,CAAC;AAIF,eAAO,MAAM,cAAc,GAAI,aAAa,MAAM,EAAE,cAAc,IAAI,KAAG,SAAS,EA0BjF,CAAC"}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const calculateDivisionsByDays: (days: number) => number;
|
|
2
|
-
export declare const getHoursFromDivisions: (divisions: number) => string[];
|
|
2
|
+
export declare const getHoursFromDivisions: (divisions: number, useCompactHourFormat?: boolean) => string[];
|
|
3
3
|
//# sourceMappingURL=getDivisions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDivisions.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/getDivisions.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"getDivisions.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/getDivisions.ts"],"names":[],"mappings":"AAeA,eAAO,MAAM,wBAAwB,GAAI,MAAM,MAAM,KAAG,MAGvD,CAAC;AAEF,eAAO,MAAM,qBAAqB,GAAI,WAAW,MAAM,EAAE,8BAA4B,KAAG,MAAM,EAY7F,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getEventSizes.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/getEventSizes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY,
|
|
1
|
+
{"version":3,"file":"getEventSizes.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/getEventSizes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,YAAY,GAAI,OAAO,IAAI,EAAE,OAAO,IAAI,WAIpD,CAAC;AAEF,eAAO,MAAM,aAAa,GAAI,eAAe,IAAI,EAAE,WAAW,MAAM,EAAE,WAAW,IAAI,EAAE,SAAS,IAAI;;;CA8BnG,CAAC"}
|
package/dist/src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getLinesByDivisions.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAEvD,wBAAgB,mBAAmB,CAAC,cAAc,EAAE,cAAc,EAAE,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,EAAE,
|
|
1
|
+
{"version":3,"file":"getLinesByDivisions.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/getLinesByDivisions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,qCAAqC,CAAC;AACrE,OAAO,EAAE,SAAS,EAAE,MAAM,4BAA4B,CAAC;AAEvD,wBAAgB,mBAAmB,CAAC,cAAc,EAAE,cAAc,EAAE,EAAE,CAAC,EAAE,MAAM,GAAG,SAAS,EAAE,CAc5F"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"isToday.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/isToday.ts"],"names":[],"mappings":"AAAA,wBAAgB,OAAO,CAAC,SAAS,CAAC,EAAE,IAAI,EAAE,OAAO,CAAC,EAAE,IAAI,GAAG,OAAO,CAiBjE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"separateEventsToInnerRows.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAU3D,eAAO,MAAM,yBAAyB,GAAI,CAAC,SAAS,gBAAgB,
|
|
1
|
+
{"version":3,"file":"separateEventsToInnerRows.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/separateEventsToInnerRows.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,yBAAyB,CAAC;AAU3D,eAAO,MAAM,yBAAyB,GAAI,CAAC,SAAS,gBAAgB,EAAE,QAAQ,CAAC,EAAE,KAAG,CAAC,EAAE,EA0BtF,CAAC"}
|
package/dist/src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sortByCategoryAndTitle.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,oCAAoC,CAAC;AAC/D,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAE9C,eAAO,MAAM,sBAAsB,GAAI,CAAC,SAAS,WAAW,
|
|
1
|
+
{"version":3,"file":"sortByCategoryAndTitle.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/custom/scheduler-new/presentation/logic/sortByCategoryAndTitle.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,oCAAoC,CAAC;AAC/D,OAAO,EAAC,aAAa,EAAC,MAAM,iBAAiB,CAAC;AAE9C,eAAO,MAAM,sBAAsB,GAAI,CAAC,SAAS,WAAW,EAC3D,UAAU,CAAC,EACX,MAAM,CAAC,EACP,iBAAiB,aAAa,CAAC,CAAC,CAAC,EAAE,WAgBnC,CAAA"}
|
package/dist/src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SchedulerState.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,cAAc;IAC9B,YAAY,EAAE,IAAI,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;IACf,eAAe,EAAE,OAAO,CAAC;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,MAAM,SAAS,GAAG;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"SchedulerState.d.ts","sourceRoot":"","sources":["../../../../../../../../src/components/custom/scheduler-new/presentation/state/ui/SchedulerState.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,cAAc;IAC9B,YAAY,EAAE,IAAI,CAAC;IACnB,KAAK,EAAE,OAAO,CAAC;IACf,eAAe,EAAE,OAAO,CAAC;IACzB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,MAAM,SAAS,GAAG;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,aAAa,CAAC,EAAE,OAAO,CAAC;CACxB,CAAA"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FC, type
|
|
1
|
+
import { FC, type ReactNode } from "react";
|
|
2
2
|
import { type MenuOption } from "../../control/action/contextmenu/CwAnchoredMenu";
|
|
3
3
|
import { RowHeaderDm, RowHeaderProps } from "../scheduler-new/presentation/components/row/DefaultRowHeader";
|
|
4
4
|
export interface PinRowHeaderProps extends RowHeaderDm {
|
|
@@ -7,7 +7,6 @@ export interface PinRowHeaderProps extends RowHeaderDm {
|
|
|
7
7
|
isLoading: boolean;
|
|
8
8
|
highlightColor?: string;
|
|
9
9
|
tooltip?: ReactNode;
|
|
10
|
-
overlayTooltipStyle?: CSSProperties;
|
|
11
10
|
indicators?: ReactNode;
|
|
12
11
|
}
|
|
13
12
|
export declare const PinRowHeader: FC<RowHeaderProps<PinRowHeaderProps>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PinRowHeader.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/super-scheduler/PinRowHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"PinRowHeader.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/super-scheduler/PinRowHeader.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,EAAE,EAAE,KAAK,SAAS,EAAW,MAAM,OAAO,CAAC;AAEnD,OAAO,EAAiB,KAAK,UAAU,EAAC,MAAM,iDAAiD,CAAC;AAEhG,OAAO,EAAC,WAAW,EAAE,cAAc,EAAC,MAAM,+DAA+D,CAAC;AAK1G,MAAM,WAAW,iBAAkB,SAAQ,WAAW;IACrD,QAAQ,EAAE,OAAO,CAAC;IAClB,gBAAgB,EAAE,UAAU,EAAE,CAAC;IAC/B,SAAS,EAAE,OAAO,CAAC;IACnB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,OAAO,CAAC,EAAE,SAAS,CAAC;IACpB,UAAU,CAAC,EAAE,SAAS,CAAC;CACvB;AAGD,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,cAAc,CAAC,iBAAiB,CAAC,CA8D9D,CAAC;AAGF,eAAO,MAAM,QAAQ,+CAkBpB,CAAC"}
|
|
@@ -4,6 +4,7 @@ import type { MenuOption } from "../../control/action/contextmenu/CwAnchoredMenu
|
|
|
4
4
|
import { SchedulerHeaderContent } from "../scheduler-new/presentation/components/header/SchedulerHeaderState";
|
|
5
5
|
import { BackgroundEventDm } from "../scheduler-new/presentation/components/row/BackgroundEvent";
|
|
6
6
|
import { SchedulerEventDm } from "../scheduler-new/presentation/components/row/Event";
|
|
7
|
+
import type { IndicatorRowDm } from "../scheduler-new/presentation/components/row/IndicatorRow";
|
|
7
8
|
import { OrderCategory } from "../scheduler-new/presentation/NewScheduler";
|
|
8
9
|
import { SchedulerState } from "../scheduler-new/presentation/state/ui/SchedulerState";
|
|
9
10
|
import { PinRowHeaderProps } from "./PinRowHeader";
|
|
@@ -14,10 +15,12 @@ export interface SuperSchedulerProps {
|
|
|
14
15
|
rows: PinRowHeaderProps[];
|
|
15
16
|
events: SchedulerEventDm[];
|
|
16
17
|
backgroundEvents: BackgroundEventDm[];
|
|
18
|
+
indicatorRows?: IndicatorRowDm[];
|
|
17
19
|
contextMenuItems: MenuOption[];
|
|
18
20
|
pinnedOrderCategory?: OrderCategory<PinRowHeaderProps>[];
|
|
19
21
|
unPinnedOrderCategory?: OrderCategory<PinRowHeaderProps>[];
|
|
20
22
|
onEvent: OnEvent;
|
|
23
|
+
rowHeightRem?: number;
|
|
21
24
|
}
|
|
22
25
|
export declare const SuperScheduler: FC<SuperSchedulerProps>;
|
|
23
26
|
export declare const _preview: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SuperScheduler.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/super-scheduler/SuperScheduler.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,0CAA0C,CAAC;AAEnE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;AAClF,OAAO,EAAE,sBAAsB,EAAE,MAAM,sEAAsE,CAAC;AAC9G,OAAO,EAAE,iBAAiB,EAAE,MAAM,8DAA8D,CAAC;AACjG,OAAO,EAAkB,gBAAgB,EAAE,MAAM,oDAAoD,CAAC;AACtG,OAAO,EAAE,aAAa,EAAa,MAAM,4CAA4C,CAAC;AACtF,OAAO,EAAE,cAAc,EAAE,MAAM,uDAAuD,CAAC;AACvF,OAAO,EAAgB,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAIjE,MAAM,WAAW,mBAAmB;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,cAAc,CAAC;IACtB,MAAM,EAAE,sBAAsB,CAAC;IAC/B,IAAI,EAAE,iBAAiB,EAAE,CAAC;IAC1B,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,gBAAgB,EAAE,iBAAiB,EAAE,CAAC;IACtC,gBAAgB,EAAE,UAAU,EAAE,CAAC;IAC/B,mBAAmB,CAAC,EAAE,aAAa,CAAC,iBAAiB,CAAC,EAAE,CAAC;IACzD,qBAAqB,CAAC,EAAE,aAAa,CAAC,iBAAiB,CAAC,EAAE,CAAC;IAC3D,OAAO,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"SuperScheduler.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/super-scheduler/SuperScheduler.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAC3B,OAAO,EAAE,OAAO,EAAE,MAAM,0CAA0C,CAAC;AAEnE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,iDAAiD,CAAC;AAClF,OAAO,EAAE,sBAAsB,EAAE,MAAM,sEAAsE,CAAC;AAC9G,OAAO,EAAE,iBAAiB,EAAE,MAAM,8DAA8D,CAAC;AACjG,OAAO,EAAkB,gBAAgB,EAAE,MAAM,oDAAoD,CAAC;AACtG,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,2DAA2D,CAAC;AAChG,OAAO,EAAE,aAAa,EAAa,MAAM,4CAA4C,CAAC;AACtF,OAAO,EAAE,cAAc,EAAE,MAAM,uDAAuD,CAAC;AACvF,OAAO,EAAgB,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAIjE,MAAM,WAAW,mBAAmB;IACnC,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,cAAc,CAAC;IACtB,MAAM,EAAE,sBAAsB,CAAC;IAC/B,IAAI,EAAE,iBAAiB,EAAE,CAAC;IAC1B,MAAM,EAAE,gBAAgB,EAAE,CAAC;IAC3B,gBAAgB,EAAE,iBAAiB,EAAE,CAAC;IACtC,aAAa,CAAC,EAAE,cAAc,EAAE,CAAC;IACjC,gBAAgB,EAAE,UAAU,EAAE,CAAC;IAC/B,mBAAmB,CAAC,EAAE,aAAa,CAAC,iBAAiB,CAAC,EAAE,CAAC;IACzD,qBAAqB,CAAC,EAAE,aAAa,CAAC,iBAAiB,CAAC,EAAE,CAAC;IAC3D,OAAO,EAAE,OAAO,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,CAmElD,CAAC;AAEF,eAAO,MAAM,QAAQ,+CAyBpB,CAAC;AAEF,eAAe,cAAc,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SuperSchedulerPresenter.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/super-scheduler/SuperSchedulerPresenter.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"SuperSchedulerPresenter.d.ts","sourceRoot":"","sources":["../../../../../src/components/custom/super-scheduler/SuperSchedulerPresenter.tsx"],"names":[],"mappings":"AACA,OAAO,EAAC,OAAO,EAAU,MAAM,0CAA0C,CAAC;AAC1E,OAAO,KAAK,EAAC,cAAc,EAAC,MAAM,uDAAuD,CAAC;AAC1F,OAAO,EAAC,iBAAiB,EAAC,MAAM,gBAAgB,CAAC;AAEjD,eAAO,MAAM,uBAAuB;;;;CAgDnC,CAAC"}
|
|
@@ -10,6 +10,19 @@ interface CwGenericTooltipProps {
|
|
|
10
10
|
showDelay?: number;
|
|
11
11
|
displayInline?: boolean;
|
|
12
12
|
}
|
|
13
|
+
/**
|
|
14
|
+
* Standalone tooltip component. Each instance manages its own portal,
|
|
15
|
+
* requiring no external dependencies or global setup.
|
|
16
|
+
*
|
|
17
|
+
* Suitable for low-density use cases with few tooltip instances.
|
|
18
|
+
* For high-density scenarios (e.g. schedulers, tables, lists),
|
|
19
|
+
* prefer CwTooltipNew which shares a single DOM portal for better performance.
|
|
20
|
+
*
|
|
21
|
+
* @remarks Not formally deprecated, but CwTooltipNew is now the recommended
|
|
22
|
+
* approach for new implementations. Cannot be deprecated yet due to potential use on projects such as Operon and Improve.
|
|
23
|
+
*
|
|
24
|
+
* @see CwTooltipNew
|
|
25
|
+
*/
|
|
13
26
|
export declare const CwGenericTooltip: FC<CwGenericTooltipProps>;
|
|
14
27
|
export declare const _preview: () => import("react/jsx-runtime").JSX.Element;
|
|
15
28
|
export {};
|