@bryntum/gantt-react 7.1.1 → 7.1.3
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/README.md +199 -21
- package/lib/BryntumAssignmentGrid.d.ts +20 -10
- package/lib/BryntumAssignmentGrid.js +2 -0
- package/lib/BryntumAssignmentGrid.js.map +1 -1
- package/lib/BryntumAssignmentPicker.d.ts +253 -0
- package/lib/BryntumAssignmentPicker.js +182 -0
- package/lib/BryntumAssignmentPicker.js.map +1 -0
- package/lib/BryntumGantt.d.ts +23 -9
- package/lib/BryntumGantt.js +4 -2
- package/lib/BryntumGantt.js.map +1 -1
- package/lib/BryntumGanttBase.d.ts +23 -9
- package/lib/BryntumGanttBase.js +4 -2
- package/lib/BryntumGanttBase.js.map +1 -1
- package/lib/BryntumGrid.d.ts +20 -10
- package/lib/BryntumGrid.js +2 -0
- package/lib/BryntumGrid.js.map +1 -1
- package/lib/BryntumGridBase.d.ts +20 -10
- package/lib/BryntumGridBase.js +2 -0
- package/lib/BryntumGridBase.js.map +1 -1
- package/lib/BryntumResourceGrid.d.ts +20 -10
- package/lib/BryntumResourceGrid.js +2 -0
- package/lib/BryntumResourceGrid.js.map +1 -1
- package/lib/BryntumResourceHistogram.d.ts +20 -10
- package/lib/BryntumResourceHistogram.js +4 -2
- package/lib/BryntumResourceHistogram.js.map +1 -1
- package/lib/BryntumResourceUtilization.d.ts +20 -10
- package/lib/BryntumResourceUtilization.js +4 -2
- package/lib/BryntumResourceUtilization.js.map +1 -1
- package/lib/BryntumScheduler.d.ts +24 -10
- package/lib/BryntumScheduler.js +4 -2
- package/lib/BryntumScheduler.js.map +1 -1
- package/lib/BryntumSchedulerBase.d.ts +24 -10
- package/lib/BryntumSchedulerBase.js +4 -2
- package/lib/BryntumSchedulerBase.js.map +1 -1
- package/lib/BryntumSchedulerPro.d.ts +24 -10
- package/lib/BryntumSchedulerPro.js +4 -2
- package/lib/BryntumSchedulerPro.js.map +1 -1
- package/lib/BryntumSchedulerProBase.d.ts +24 -10
- package/lib/BryntumSchedulerProBase.js +4 -2
- package/lib/BryntumSchedulerProBase.js.map +1 -1
- package/lib/BryntumTimeline.d.ts +24 -10
- package/lib/BryntumTimeline.js +4 -2
- package/lib/BryntumTimeline.js.map +1 -1
- package/lib/BryntumTimelineHistogram.d.ts +20 -10
- package/lib/BryntumTimelineHistogram.js +4 -2
- package/lib/BryntumTimelineHistogram.js.map +1 -1
- package/lib/BryntumTreeGrid.d.ts +20 -10
- package/lib/BryntumTreeGrid.js +2 -0
- package/lib/BryntumTreeGrid.js.map +1 -1
- package/lib/BryntumVersionGrid.d.ts +20 -10
- package/lib/BryntumVersionGrid.js +2 -0
- package/lib/BryntumVersionGrid.js.map +1 -1
- package/lib/WrapperHelper.js +1 -1
- package/lib/WrapperHelper.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/BryntumAssignmentGrid.tsx +43 -25
- package/src/BryntumAssignmentPicker.tsx +1109 -0
- package/src/BryntumGantt.tsx +52 -29
- package/src/BryntumGanttBase.tsx +52 -29
- package/src/BryntumGrid.tsx +43 -25
- package/src/BryntumGridBase.tsx +43 -25
- package/src/BryntumResourceGrid.tsx +43 -25
- package/src/BryntumResourceHistogram.tsx +45 -27
- package/src/BryntumResourceUtilization.tsx +45 -27
- package/src/BryntumScheduler.tsx +51 -29
- package/src/BryntumSchedulerBase.tsx +51 -29
- package/src/BryntumSchedulerPro.tsx +51 -29
- package/src/BryntumSchedulerProBase.tsx +51 -29
- package/src/BryntumTimeline.tsx +51 -29
- package/src/BryntumTimelineHistogram.tsx +45 -27
- package/src/BryntumTreeGrid.tsx +43 -25
- package/src/BryntumVersionGrid.tsx +43 -25
- package/src/WrapperHelper.tsx +2 -1
- package/src/index.ts +1 -0
|
@@ -166,9 +166,7 @@ BryntumResourceUtilization.configNames = [
|
|
|
166
166
|
'managedEventSizing',
|
|
167
167
|
'maskDefaults',
|
|
168
168
|
'masked',
|
|
169
|
-
'maxDate',
|
|
170
169
|
'maxTimeAxisUnit',
|
|
171
|
-
'minDate',
|
|
172
170
|
'monitorResize',
|
|
173
171
|
'owner',
|
|
174
172
|
'partner',
|
|
@@ -258,9 +256,11 @@ BryntumResourceUtilization.propertyConfigNames = [
|
|
|
258
256
|
'labelPosition',
|
|
259
257
|
'longPressTime',
|
|
260
258
|
'margin',
|
|
259
|
+
'maxDate',
|
|
261
260
|
'maxHeight',
|
|
262
261
|
'maxWidth',
|
|
263
262
|
'maxZoomLevel',
|
|
263
|
+
'minDate',
|
|
264
264
|
'minHeight',
|
|
265
265
|
'minWidth',
|
|
266
266
|
'minZoomLevel',
|
|
@@ -270,6 +270,7 @@ BryntumResourceUtilization.propertyConfigNames = [
|
|
|
270
270
|
'onBeforeCellEditStart',
|
|
271
271
|
'onBeforeCellRangeDelete',
|
|
272
272
|
'onBeforeCellRangeEdit',
|
|
273
|
+
'onBeforeColumnCollapseToggle',
|
|
273
274
|
'onBeforeColumnDragStart',
|
|
274
275
|
'onBeforeColumnDropFinalize',
|
|
275
276
|
'onBeforeColumnResize',
|
|
@@ -318,6 +319,7 @@ BryntumResourceUtilization.propertyConfigNames = [
|
|
|
318
319
|
'onCellMouseOver',
|
|
319
320
|
'onCollapse',
|
|
320
321
|
'onCollapseNode',
|
|
322
|
+
'onColumnCollapseToggle',
|
|
321
323
|
'onColumnDrag',
|
|
322
324
|
'onColumnDragStart',
|
|
323
325
|
'onColumnDrop',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BryntumResourceUtilization.js","sourceRoot":"","sources":["../src/BryntumResourceUtilization.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,
|
|
1
|
+
{"version":3,"file":"BryntumResourceUtilization.js","sourceRoot":"","sources":["../src/BryntumResourceUtilization.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { RefObject } from 'react';
|
|
2
|
-
import { AIFilter, AIFilterConfig, AjaxStore, AjaxStoreConfig, Base, CellCopyPaste, CellCopyPasteConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnLines, ColumnLinesConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, Container, ContainerItemConfig, CrudManager, CrudManagerConfig, DateConstraint, DependencyBaseModel, DependencyMenu, DependencyMenuConfig, DependencyStoreConfig, DomClassList, DomConfig, DropData, DurationConfig, DurationUnit, EmptyTextDomConfig, EventColor, EventCopyPaste, EventCopyPasteConfig, EventDrag, EventDragConfig, EventDragCreate, EventDragCreateConfig, EventDragSelect, EventDragSelectConfig, EventEdit, EventEditConfig, EventFilter, EventFilterConfig, EventMenu, EventMenuConfig, EventNonWorkingTime, EventNonWorkingTimeConfig, EventResizeData, EventTooltip, EventTooltipConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, FormulaProviderConfig, Grid, GridBase, GridCellEdit, GridCellEditConfig, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridTreeGroup, GridTreeGroupConfig, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, HeaderZoom, HeaderZoomConfig, KeyMapConfig, LockRows, LockRowsConfig, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, MergeCells, MergeCellsConfig, Model, ModelConfig, NonWorkingTime, NonWorkingTimeConfig, PagingToolbarConfig, Pan, PanConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, PinColumns, PinColumnsConfig, Popup, PreserveScrollOptions, ProjectModel, ProjectModelConfig, QuickFind, QuickFindConfig, RecordPositionContext, Rectangle, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, RegionResize, RegionResizeConfig, ResourceHeaderConfig, ResourceMarginConfig, ResourceMenu, ResourceMenuConfig, ResourceTimeRangeModel, ResourceTimeRangeModelConfig, ResourceTimeRangeStore, ResourceTimeRangeStoreConfig, ResourceTimeRanges, ResourceTimeRangesConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, ScheduleContext, ScheduleContextConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, SchedulerAssignmentModel, SchedulerAssignmentModelConfig, SchedulerAssignmentStore, SchedulerAssignmentStoreConfig, SchedulerBase, SchedulerDependencies, SchedulerDependenciesConfig, SchedulerDependencyEdit, SchedulerDependencyEditConfig, SchedulerDependencyModel, SchedulerDependencyModelConfig, SchedulerDependencyStore, SchedulerEventModel, SchedulerEventModelConfig, SchedulerEventResize, SchedulerEventResizeConfig, SchedulerEventStore, SchedulerEventStoreConfig, SchedulerLabels, SchedulerLabelsConfig, SchedulerListeners, SchedulerPdfExport, SchedulerPdfExportConfig, SchedulerPrint, SchedulerPrintConfig, SchedulerResourceModel, SchedulerResourceModelConfig, SchedulerResourceStore, SchedulerResourceStoreConfig, SchedulerResponsiveLevelConfig, SchedulerScrollButtons, SchedulerScrollButtonsConfig, SchedulerStateInfo, SchedulerSummary, SchedulerSummaryConfig, SchedulerTimeAxisColumn, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, Search, SearchConfig, SimpleEventEdit, SimpleEventEditConfig, Sort, SortConfig, Split, SplitConfig, StateProvider, StickyCells, StickyCellsConfig, StickyEvents, StickyEventsConfig, Store, StoreConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, TabConfig, TimeAxis, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSelection, TimeSelectionConfig, TimeSpan, TimeSpanConfig, TimelineBase, TimelineContext, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Tree, TreeConfig, TreeSummary, TreeSummaryConfig, VerticalTimeAxisColumn, VerticalTimeAxisColumnConfig, ViewPreset, ViewPresetConfig, VisibleDate, Widget, XLSColumn } from '@bryntum/gantt';
|
|
2
|
+
import { AIFilter, AIFilterConfig, AjaxStore, AjaxStoreConfig, Base, CellCopyPaste, CellCopyPasteConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnLines, ColumnLinesConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, Container, ContainerItemConfig, CrudManager, CrudManagerConfig, DateConstraint, DependencyBaseModel, DependencyMenu, DependencyMenuConfig, DependencyStoreConfig, DomClassList, DomConfig, DropData, DurationConfig, DurationUnit, EmptyTextDomConfig, EventColor, EventCopyPaste, EventCopyPasteConfig, EventDrag, EventDragConfig, EventDragCreate, EventDragCreateConfig, EventDragSelect, EventDragSelectConfig, EventEdit, EventEditConfig, EventFilter, EventFilterConfig, EventMenu, EventMenuConfig, EventNonWorkingTime, EventNonWorkingTimeConfig, EventResizeData, EventTooltip, EventTooltipConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, FormulaProviderConfig, Grid, GridBase, GridCellEdit, GridCellEditConfig, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridTreeGroup, GridTreeGroupConfig, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, HeaderZoom, HeaderZoomConfig, KeyMapConfig, LockRows, LockRowsConfig, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, MergeCells, MergeCellsConfig, Model, ModelConfig, NonWorkingTime, NonWorkingTimeConfig, PagingToolbarConfig, Pan, PanConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, PdfExportConfig, PinColumns, PinColumnsConfig, Popup, PreserveScrollOptions, ProjectModel, ProjectModelConfig, QuickFind, QuickFindConfig, RecordPositionContext, Rectangle, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, RegionResize, RegionResizeConfig, ResourceHeaderConfig, ResourceMarginConfig, ResourceMenu, ResourceMenuConfig, ResourceTimeRangeModel, ResourceTimeRangeModelConfig, ResourceTimeRangeStore, ResourceTimeRangeStoreConfig, ResourceTimeRanges, ResourceTimeRangesConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, ScheduleContext, ScheduleContextConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, SchedulerAssignmentModel, SchedulerAssignmentModelConfig, SchedulerAssignmentStore, SchedulerAssignmentStoreConfig, SchedulerBase, SchedulerDependencies, SchedulerDependenciesConfig, SchedulerDependencyEdit, SchedulerDependencyEditConfig, SchedulerDependencyModel, SchedulerDependencyModelConfig, SchedulerDependencyStore, SchedulerEventModel, SchedulerEventModelConfig, SchedulerEventResize, SchedulerEventResizeConfig, SchedulerEventStore, SchedulerEventStoreConfig, SchedulerLabels, SchedulerLabelsConfig, SchedulerListeners, SchedulerPdfExport, SchedulerPdfExportConfig, SchedulerPrint, SchedulerPrintConfig, SchedulerResourceModel, SchedulerResourceModelConfig, SchedulerResourceStore, SchedulerResourceStoreConfig, SchedulerResponsiveLevelConfig, SchedulerScrollButtons, SchedulerScrollButtonsConfig, SchedulerStateInfo, SchedulerSummary, SchedulerSummaryConfig, SchedulerTimeAxisColumn, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, Search, SearchConfig, SimpleEventEdit, SimpleEventEditConfig, Sort, SortConfig, Split, SplitConfig, StateProvider, StickyCells, StickyCellsConfig, StickyEvents, StickyEventsConfig, Store, StoreConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, TabConfig, TimeAxis, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSelection, TimeSelectionConfig, TimeSpan, TimeSpanConfig, TimelineBase, TimelineContext, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Tree, TreeConfig, TreeSummary, TreeSummaryConfig, VerticalTimeAxisColumn, VerticalTimeAxisColumnConfig, ViewPreset, ViewPresetConfig, VisibleDate, Widget, XLSColumn } from '@bryntum/gantt';
|
|
3
3
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
4
4
|
export declare type BryntumSchedulerProps = {
|
|
5
5
|
adopt?: HTMLElement | string;
|
|
@@ -442,6 +442,11 @@ export declare type BryntumSchedulerProps = {
|
|
|
442
442
|
field: string;
|
|
443
443
|
value: any;
|
|
444
444
|
}) => Promise<boolean> | boolean | void) | string;
|
|
445
|
+
onBeforeColumnCollapseToggle?: ((event: {
|
|
446
|
+
source: GridBase;
|
|
447
|
+
column: Column;
|
|
448
|
+
collapsed: boolean;
|
|
449
|
+
}) => void) | string;
|
|
445
450
|
onBeforeColumnDragStart?: ((event: {
|
|
446
451
|
source: Grid;
|
|
447
452
|
column: Column;
|
|
@@ -662,7 +667,7 @@ export declare type BryntumSchedulerProps = {
|
|
|
662
667
|
text: string;
|
|
663
668
|
}) => Promise<boolean> | boolean | void) | string;
|
|
664
669
|
onBeforePdfExport?: ((event: {
|
|
665
|
-
config:
|
|
670
|
+
config: PdfExportConfig;
|
|
666
671
|
}) => Promise<boolean> | boolean | void) | string;
|
|
667
672
|
onBeforePresetChange?: ((event: {
|
|
668
673
|
source: Scheduler;
|
|
@@ -672,13 +677,13 @@ export declare type BryntumSchedulerProps = {
|
|
|
672
677
|
to: ViewPreset;
|
|
673
678
|
}) => Promise<boolean> | boolean | void) | string;
|
|
674
679
|
onBeforeRenderRow?: ((event: {
|
|
675
|
-
source:
|
|
680
|
+
source: GridBase;
|
|
676
681
|
row: Row;
|
|
677
682
|
record: Model;
|
|
678
683
|
recordIndex: number;
|
|
679
684
|
}) => void) | string;
|
|
680
685
|
onBeforeRenderRows?: ((event: {
|
|
681
|
-
source:
|
|
686
|
+
source: GridBase;
|
|
682
687
|
}) => void) | string;
|
|
683
688
|
onBeforeRowCollapse?: ((event: {
|
|
684
689
|
record: Model;
|
|
@@ -832,6 +837,11 @@ export declare type BryntumSchedulerProps = {
|
|
|
832
837
|
source: Grid;
|
|
833
838
|
record: Model;
|
|
834
839
|
}) => void) | string;
|
|
840
|
+
onColumnCollapseToggle?: ((event: {
|
|
841
|
+
source: GridBase;
|
|
842
|
+
column: Column;
|
|
843
|
+
collapsed: boolean;
|
|
844
|
+
}) => void) | string;
|
|
835
845
|
onColumnDrag?: ((event: {
|
|
836
846
|
source: Grid;
|
|
837
847
|
column: Column;
|
|
@@ -888,7 +898,7 @@ export declare type BryntumSchedulerProps = {
|
|
|
888
898
|
date: Date;
|
|
889
899
|
}) => void) | string;
|
|
890
900
|
onDataChange?: ((event: {
|
|
891
|
-
source:
|
|
901
|
+
source: GridBase;
|
|
892
902
|
store: Store;
|
|
893
903
|
action: 'remove' | 'removeAll' | 'add' | 'clearchanges' | 'filter' | 'update' | 'dataset' | 'replace';
|
|
894
904
|
record: Model;
|
|
@@ -963,11 +973,15 @@ export declare type BryntumSchedulerProps = {
|
|
|
963
973
|
source: TimeSpan;
|
|
964
974
|
target: TimeSpan;
|
|
965
975
|
dependencyType: number;
|
|
976
|
+
fromSide: 'start' | 'end' | 'top' | 'bottom';
|
|
977
|
+
toSide: 'start' | 'end' | 'top' | 'bottom';
|
|
966
978
|
}) => void) | string;
|
|
967
979
|
onDependencyValidationStart?: ((event: {
|
|
968
980
|
source: TimeSpan;
|
|
969
981
|
target: TimeSpan;
|
|
970
982
|
dependencyType: number;
|
|
983
|
+
fromSide: 'start' | 'end' | 'top' | 'bottom';
|
|
984
|
+
toSide: 'start' | 'end' | 'top' | 'bottom';
|
|
971
985
|
}) => void) | string;
|
|
972
986
|
onDestroy?: ((event: {
|
|
973
987
|
source: Base;
|
|
@@ -1467,13 +1481,13 @@ export declare type BryntumSchedulerProps = {
|
|
|
1467
1481
|
element: HTMLElement;
|
|
1468
1482
|
}) => void) | string;
|
|
1469
1483
|
onRenderRow?: ((event: {
|
|
1470
|
-
source:
|
|
1484
|
+
source: GridBase;
|
|
1471
1485
|
row: Row;
|
|
1472
1486
|
record: Model;
|
|
1473
1487
|
recordIndex: number;
|
|
1474
1488
|
}) => void) | string;
|
|
1475
1489
|
onRenderRows?: ((event: {
|
|
1476
|
-
source:
|
|
1490
|
+
source: GridBase;
|
|
1477
1491
|
}) => void) | string;
|
|
1478
1492
|
onResize?: ((event: {
|
|
1479
1493
|
source: Widget;
|
|
@@ -1707,7 +1721,7 @@ export declare type BryntumSchedulerProps = {
|
|
|
1707
1721
|
event: MouseEvent;
|
|
1708
1722
|
}) => void) | string;
|
|
1709
1723
|
onScroll?: ((event: {
|
|
1710
|
-
source:
|
|
1724
|
+
source: GridBase;
|
|
1711
1725
|
scrollTop: number;
|
|
1712
1726
|
}) => void) | string;
|
|
1713
1727
|
onScrollButtonClick?: ((event: {
|
|
@@ -1773,11 +1787,11 @@ export declare type BryntumSchedulerProps = {
|
|
|
1773
1787
|
editorContext: RowEditorContext;
|
|
1774
1788
|
}) => void) | string;
|
|
1775
1789
|
onSubGridCollapse?: ((event: {
|
|
1776
|
-
source:
|
|
1790
|
+
source: GridBase;
|
|
1777
1791
|
subGrid: SubGrid;
|
|
1778
1792
|
}) => void) | string;
|
|
1779
1793
|
onSubGridExpand?: ((event: {
|
|
1780
|
-
source:
|
|
1794
|
+
source: GridBase;
|
|
1781
1795
|
subGrid: SubGrid;
|
|
1782
1796
|
}) => void) | string;
|
|
1783
1797
|
onTickCellClick?: ((event: {
|
package/lib/BryntumScheduler.js
CHANGED
|
@@ -185,9 +185,7 @@ BryntumScheduler.configNames = [
|
|
|
185
185
|
'managedEventSizing',
|
|
186
186
|
'maskDefaults',
|
|
187
187
|
'masked',
|
|
188
|
-
'maxDate',
|
|
189
188
|
'maxTimeAxisUnit',
|
|
190
|
-
'minDate',
|
|
191
189
|
'mode',
|
|
192
190
|
'monitorResize',
|
|
193
191
|
'multiEventSelect',
|
|
@@ -307,6 +305,7 @@ BryntumScheduler.propertyConfigNames = [
|
|
|
307
305
|
'lazyLoadingIndicator',
|
|
308
306
|
'longPressTime',
|
|
309
307
|
'margin',
|
|
308
|
+
'maxDate',
|
|
310
309
|
'maxHeight',
|
|
311
310
|
'maxWidth',
|
|
312
311
|
'maxZoomLevel',
|
|
@@ -314,6 +313,7 @@ BryntumScheduler.propertyConfigNames = [
|
|
|
314
313
|
'milestoneCharWidth',
|
|
315
314
|
'milestoneLayoutMode',
|
|
316
315
|
'milestoneTextPosition',
|
|
316
|
+
'minDate',
|
|
317
317
|
'minHeight',
|
|
318
318
|
'minPackSize',
|
|
319
319
|
'minWidth',
|
|
@@ -334,6 +334,7 @@ BryntumScheduler.propertyConfigNames = [
|
|
|
334
334
|
'onBeforeCellEditStart',
|
|
335
335
|
'onBeforeCellRangeDelete',
|
|
336
336
|
'onBeforeCellRangeEdit',
|
|
337
|
+
'onBeforeColumnCollapseToggle',
|
|
337
338
|
'onBeforeColumnDragStart',
|
|
338
339
|
'onBeforeColumnDropFinalize',
|
|
339
340
|
'onBeforeColumnResize',
|
|
@@ -399,6 +400,7 @@ BryntumScheduler.propertyConfigNames = [
|
|
|
399
400
|
'onCellMouseOver',
|
|
400
401
|
'onCollapse',
|
|
401
402
|
'onCollapseNode',
|
|
403
|
+
'onColumnCollapseToggle',
|
|
402
404
|
'onColumnDrag',
|
|
403
405
|
'onColumnDragStart',
|
|
404
406
|
'onColumnDrop',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BryntumScheduler.js","sourceRoot":"","sources":["../src/BryntumScheduler.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,
|
|
1
|
+
{"version":3,"file":"BryntumScheduler.js","sourceRoot":"","sources":["../src/BryntumScheduler.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { RefObject } from 'react';
|
|
2
|
-
import { AIFilter, AIFilterConfig, AjaxStore, AjaxStoreConfig, Base, CellCopyPaste, CellCopyPasteConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnLines, ColumnLinesConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, Container, ContainerItemConfig, CrudManager, CrudManagerConfig, DateConstraint, DependencyBaseModel, DependencyMenu, DependencyMenuConfig, DependencyStoreConfig, DomClassList, DomConfig, DropData, DurationConfig, DurationUnit, EmptyTextDomConfig, EventColor, EventCopyPaste, EventCopyPasteConfig, EventDrag, EventDragConfig, EventDragCreate, EventDragCreateConfig, EventDragSelect, EventDragSelectConfig, EventEdit, EventEditConfig, EventFilter, EventFilterConfig, EventMenu, EventMenuConfig, EventNonWorkingTime, EventNonWorkingTimeConfig, EventResizeData, EventTooltip, EventTooltipConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, FormulaProviderConfig, Grid, GridBase, GridCellEdit, GridCellEditConfig, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridTreeGroup, GridTreeGroupConfig, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, HeaderZoom, HeaderZoomConfig, KeyMapConfig, LockRows, LockRowsConfig, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, MergeCells, MergeCellsConfig, Model, ModelConfig, NonWorkingTime, NonWorkingTimeConfig, PagingToolbarConfig, Pan, PanConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, PinColumns, PinColumnsConfig, Popup, PreserveScrollOptions, ProjectModel, ProjectModelConfig, QuickFind, QuickFindConfig, RecordPositionContext, Rectangle, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, RegionResize, RegionResizeConfig, ResourceHeaderConfig, ResourceMarginConfig, ResourceMenu, ResourceMenuConfig, ResourceTimeRangeModel, ResourceTimeRangeModelConfig, ResourceTimeRangeStore, ResourceTimeRangeStoreConfig, ResourceTimeRanges, ResourceTimeRangesConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, ScheduleContext, ScheduleContextConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, SchedulerAssignmentModel, SchedulerAssignmentModelConfig, SchedulerAssignmentStore, SchedulerAssignmentStoreConfig, SchedulerBase, SchedulerBaseListeners, SchedulerDependencies, SchedulerDependenciesConfig, SchedulerDependencyEdit, SchedulerDependencyEditConfig, SchedulerDependencyModel, SchedulerDependencyModelConfig, SchedulerDependencyStore, SchedulerEventModel, SchedulerEventModelConfig, SchedulerEventResize, SchedulerEventResizeConfig, SchedulerEventStore, SchedulerEventStoreConfig, SchedulerLabels, SchedulerLabelsConfig, SchedulerPdfExport, SchedulerPdfExportConfig, SchedulerPrint, SchedulerPrintConfig, SchedulerResourceModel, SchedulerResourceModelConfig, SchedulerResourceStore, SchedulerResourceStoreConfig, SchedulerResponsiveLevelConfig, SchedulerScrollButtons, SchedulerScrollButtonsConfig, SchedulerStateInfo, SchedulerSummary, SchedulerSummaryConfig, SchedulerTimeAxisColumn, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, Search, SearchConfig, SimpleEventEdit, SimpleEventEditConfig, Sort, SortConfig, Split, SplitConfig, StateProvider, StickyCells, StickyCellsConfig, StickyEvents, StickyEventsConfig, Store, StoreConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, TabConfig, TimeAxis, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSelection, TimeSelectionConfig, TimeSpan, TimeSpanConfig, TimelineBase, TimelineContext, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Tree, TreeConfig, TreeSummary, TreeSummaryConfig, VerticalTimeAxisColumn, VerticalTimeAxisColumnConfig, ViewPreset, ViewPresetConfig, VisibleDate, Widget, XLSColumn } from '@bryntum/gantt';
|
|
2
|
+
import { AIFilter, AIFilterConfig, AjaxStore, AjaxStoreConfig, Base, CellCopyPaste, CellCopyPasteConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnLines, ColumnLinesConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, Container, ContainerItemConfig, CrudManager, CrudManagerConfig, DateConstraint, DependencyBaseModel, DependencyMenu, DependencyMenuConfig, DependencyStoreConfig, DomClassList, DomConfig, DropData, DurationConfig, DurationUnit, EmptyTextDomConfig, EventColor, EventCopyPaste, EventCopyPasteConfig, EventDrag, EventDragConfig, EventDragCreate, EventDragCreateConfig, EventDragSelect, EventDragSelectConfig, EventEdit, EventEditConfig, EventFilter, EventFilterConfig, EventMenu, EventMenuConfig, EventNonWorkingTime, EventNonWorkingTimeConfig, EventResizeData, EventTooltip, EventTooltipConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, FormulaProviderConfig, Grid, GridBase, GridCellEdit, GridCellEditConfig, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridTreeGroup, GridTreeGroupConfig, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, HeaderZoom, HeaderZoomConfig, KeyMapConfig, LockRows, LockRowsConfig, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, MergeCells, MergeCellsConfig, Model, ModelConfig, NonWorkingTime, NonWorkingTimeConfig, PagingToolbarConfig, Pan, PanConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, PdfExportConfig, PinColumns, PinColumnsConfig, Popup, PreserveScrollOptions, ProjectModel, ProjectModelConfig, QuickFind, QuickFindConfig, RecordPositionContext, Rectangle, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, RegionResize, RegionResizeConfig, ResourceHeaderConfig, ResourceMarginConfig, ResourceMenu, ResourceMenuConfig, ResourceTimeRangeModel, ResourceTimeRangeModelConfig, ResourceTimeRangeStore, ResourceTimeRangeStoreConfig, ResourceTimeRanges, ResourceTimeRangesConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, ScheduleContext, ScheduleContextConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, SchedulerAssignmentModel, SchedulerAssignmentModelConfig, SchedulerAssignmentStore, SchedulerAssignmentStoreConfig, SchedulerBase, SchedulerBaseListeners, SchedulerDependencies, SchedulerDependenciesConfig, SchedulerDependencyEdit, SchedulerDependencyEditConfig, SchedulerDependencyModel, SchedulerDependencyModelConfig, SchedulerDependencyStore, SchedulerEventModel, SchedulerEventModelConfig, SchedulerEventResize, SchedulerEventResizeConfig, SchedulerEventStore, SchedulerEventStoreConfig, SchedulerLabels, SchedulerLabelsConfig, SchedulerPdfExport, SchedulerPdfExportConfig, SchedulerPrint, SchedulerPrintConfig, SchedulerResourceModel, SchedulerResourceModelConfig, SchedulerResourceStore, SchedulerResourceStoreConfig, SchedulerResponsiveLevelConfig, SchedulerScrollButtons, SchedulerScrollButtonsConfig, SchedulerStateInfo, SchedulerSummary, SchedulerSummaryConfig, SchedulerTimeAxisColumn, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, Search, SearchConfig, SimpleEventEdit, SimpleEventEditConfig, Sort, SortConfig, Split, SplitConfig, StateProvider, StickyCells, StickyCellsConfig, StickyEvents, StickyEventsConfig, Store, StoreConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, TabConfig, TimeAxis, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSelection, TimeSelectionConfig, TimeSpan, TimeSpanConfig, TimelineBase, TimelineContext, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Tree, TreeConfig, TreeSummary, TreeSummaryConfig, VerticalTimeAxisColumn, VerticalTimeAxisColumnConfig, ViewPreset, ViewPresetConfig, VisibleDate, Widget, XLSColumn } from '@bryntum/gantt';
|
|
3
3
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
4
4
|
export declare type BryntumSchedulerBaseProps = {
|
|
5
5
|
adopt?: HTMLElement | string;
|
|
@@ -441,6 +441,11 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
441
441
|
field: string;
|
|
442
442
|
value: any;
|
|
443
443
|
}) => Promise<boolean> | boolean | void) | string;
|
|
444
|
+
onBeforeColumnCollapseToggle?: ((event: {
|
|
445
|
+
source: GridBase;
|
|
446
|
+
column: Column;
|
|
447
|
+
collapsed: boolean;
|
|
448
|
+
}) => void) | string;
|
|
444
449
|
onBeforeColumnDragStart?: ((event: {
|
|
445
450
|
source: Grid;
|
|
446
451
|
column: Column;
|
|
@@ -661,7 +666,7 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
661
666
|
text: string;
|
|
662
667
|
}) => Promise<boolean> | boolean | void) | string;
|
|
663
668
|
onBeforePdfExport?: ((event: {
|
|
664
|
-
config:
|
|
669
|
+
config: PdfExportConfig;
|
|
665
670
|
}) => Promise<boolean> | boolean | void) | string;
|
|
666
671
|
onBeforePresetChange?: ((event: {
|
|
667
672
|
source: Scheduler;
|
|
@@ -671,13 +676,13 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
671
676
|
to: ViewPreset;
|
|
672
677
|
}) => Promise<boolean> | boolean | void) | string;
|
|
673
678
|
onBeforeRenderRow?: ((event: {
|
|
674
|
-
source:
|
|
679
|
+
source: GridBase;
|
|
675
680
|
row: Row;
|
|
676
681
|
record: Model;
|
|
677
682
|
recordIndex: number;
|
|
678
683
|
}) => void) | string;
|
|
679
684
|
onBeforeRenderRows?: ((event: {
|
|
680
|
-
source:
|
|
685
|
+
source: GridBase;
|
|
681
686
|
}) => void) | string;
|
|
682
687
|
onBeforeRowCollapse?: ((event: {
|
|
683
688
|
record: Model;
|
|
@@ -831,6 +836,11 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
831
836
|
source: Grid;
|
|
832
837
|
record: Model;
|
|
833
838
|
}) => void) | string;
|
|
839
|
+
onColumnCollapseToggle?: ((event: {
|
|
840
|
+
source: GridBase;
|
|
841
|
+
column: Column;
|
|
842
|
+
collapsed: boolean;
|
|
843
|
+
}) => void) | string;
|
|
834
844
|
onColumnDrag?: ((event: {
|
|
835
845
|
source: Grid;
|
|
836
846
|
column: Column;
|
|
@@ -887,7 +897,7 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
887
897
|
date: Date;
|
|
888
898
|
}) => void) | string;
|
|
889
899
|
onDataChange?: ((event: {
|
|
890
|
-
source:
|
|
900
|
+
source: GridBase;
|
|
891
901
|
store: Store;
|
|
892
902
|
action: 'remove' | 'removeAll' | 'add' | 'clearchanges' | 'filter' | 'update' | 'dataset' | 'replace';
|
|
893
903
|
record: Model;
|
|
@@ -962,11 +972,15 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
962
972
|
source: TimeSpan;
|
|
963
973
|
target: TimeSpan;
|
|
964
974
|
dependencyType: number;
|
|
975
|
+
fromSide: 'start' | 'end' | 'top' | 'bottom';
|
|
976
|
+
toSide: 'start' | 'end' | 'top' | 'bottom';
|
|
965
977
|
}) => void) | string;
|
|
966
978
|
onDependencyValidationStart?: ((event: {
|
|
967
979
|
source: TimeSpan;
|
|
968
980
|
target: TimeSpan;
|
|
969
981
|
dependencyType: number;
|
|
982
|
+
fromSide: 'start' | 'end' | 'top' | 'bottom';
|
|
983
|
+
toSide: 'start' | 'end' | 'top' | 'bottom';
|
|
970
984
|
}) => void) | string;
|
|
971
985
|
onDestroy?: ((event: {
|
|
972
986
|
source: Base;
|
|
@@ -1466,13 +1480,13 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
1466
1480
|
element: HTMLElement;
|
|
1467
1481
|
}) => void) | string;
|
|
1468
1482
|
onRenderRow?: ((event: {
|
|
1469
|
-
source:
|
|
1483
|
+
source: GridBase;
|
|
1470
1484
|
row: Row;
|
|
1471
1485
|
record: Model;
|
|
1472
1486
|
recordIndex: number;
|
|
1473
1487
|
}) => void) | string;
|
|
1474
1488
|
onRenderRows?: ((event: {
|
|
1475
|
-
source:
|
|
1489
|
+
source: GridBase;
|
|
1476
1490
|
}) => void) | string;
|
|
1477
1491
|
onResize?: ((event: {
|
|
1478
1492
|
source: Widget;
|
|
@@ -1706,7 +1720,7 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
1706
1720
|
event: MouseEvent;
|
|
1707
1721
|
}) => void) | string;
|
|
1708
1722
|
onScroll?: ((event: {
|
|
1709
|
-
source:
|
|
1723
|
+
source: GridBase;
|
|
1710
1724
|
scrollTop: number;
|
|
1711
1725
|
}) => void) | string;
|
|
1712
1726
|
onScrollButtonClick?: ((event: {
|
|
@@ -1772,11 +1786,11 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
1772
1786
|
editorContext: RowEditorContext;
|
|
1773
1787
|
}) => void) | string;
|
|
1774
1788
|
onSubGridCollapse?: ((event: {
|
|
1775
|
-
source:
|
|
1789
|
+
source: GridBase;
|
|
1776
1790
|
subGrid: SubGrid;
|
|
1777
1791
|
}) => void) | string;
|
|
1778
1792
|
onSubGridExpand?: ((event: {
|
|
1779
|
-
source:
|
|
1793
|
+
source: GridBase;
|
|
1780
1794
|
subGrid: SubGrid;
|
|
1781
1795
|
}) => void) | string;
|
|
1782
1796
|
onTickCellClick?: ((event: {
|
|
@@ -185,9 +185,7 @@ BryntumSchedulerBase.configNames = [
|
|
|
185
185
|
'managedEventSizing',
|
|
186
186
|
'maskDefaults',
|
|
187
187
|
'masked',
|
|
188
|
-
'maxDate',
|
|
189
188
|
'maxTimeAxisUnit',
|
|
190
|
-
'minDate',
|
|
191
189
|
'mode',
|
|
192
190
|
'monitorResize',
|
|
193
191
|
'multiEventSelect',
|
|
@@ -306,6 +304,7 @@ BryntumSchedulerBase.propertyConfigNames = [
|
|
|
306
304
|
'lazyLoadingIndicator',
|
|
307
305
|
'longPressTime',
|
|
308
306
|
'margin',
|
|
307
|
+
'maxDate',
|
|
309
308
|
'maxHeight',
|
|
310
309
|
'maxWidth',
|
|
311
310
|
'maxZoomLevel',
|
|
@@ -313,6 +312,7 @@ BryntumSchedulerBase.propertyConfigNames = [
|
|
|
313
312
|
'milestoneCharWidth',
|
|
314
313
|
'milestoneLayoutMode',
|
|
315
314
|
'milestoneTextPosition',
|
|
315
|
+
'minDate',
|
|
316
316
|
'minHeight',
|
|
317
317
|
'minPackSize',
|
|
318
318
|
'minWidth',
|
|
@@ -333,6 +333,7 @@ BryntumSchedulerBase.propertyConfigNames = [
|
|
|
333
333
|
'onBeforeCellEditStart',
|
|
334
334
|
'onBeforeCellRangeDelete',
|
|
335
335
|
'onBeforeCellRangeEdit',
|
|
336
|
+
'onBeforeColumnCollapseToggle',
|
|
336
337
|
'onBeforeColumnDragStart',
|
|
337
338
|
'onBeforeColumnDropFinalize',
|
|
338
339
|
'onBeforeColumnResize',
|
|
@@ -398,6 +399,7 @@ BryntumSchedulerBase.propertyConfigNames = [
|
|
|
398
399
|
'onCellMouseOver',
|
|
399
400
|
'onCollapse',
|
|
400
401
|
'onCollapseNode',
|
|
402
|
+
'onColumnCollapseToggle',
|
|
401
403
|
'onColumnDrag',
|
|
402
404
|
'onColumnDragStart',
|
|
403
405
|
'onColumnDrop',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BryntumSchedulerBase.js","sourceRoot":"","sources":["../src/BryntumSchedulerBase.tsx"],"names":[],"mappings":"AAIA,OAAO,KAAoB,MAAM,OAAO,CAAC;AACzC,OAAO,
|
|
1
|
+
{"version":3,"file":"BryntumSchedulerBase.js","sourceRoot":"","sources":["../src/BryntumSchedulerBase.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { RefObject } from 'react';
|
|
2
|
-
import { AIFilter, AIFilterConfig, AjaxStore, AjaxStoreConfig, AssignmentStoreConfig, Base, CalendarHighlight, CalendarHighlightConfig, CalendarModelConfig, CellCopyPaste, CellCopyPasteConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnLines, ColumnLinesConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, Container, ContainerItemConfig, CrudManager, CrudManagerConfig, CycleResolutionPopup, DateConstraint, DependencyBaseModel, DependencyEdit, DependencyEditConfig, DependencyMenu, DependencyMenuConfig, DependencyModelConfig, DependencyStoreConfig, DomClassList, DomConfig, DropData, DurationConfig, DurationUnit, EmptyTextDomConfig, EventBuffer, EventBufferConfig, EventColor, EventCopyPaste, EventCopyPasteConfig, EventDrag, EventDragConfig, EventDragCreate, EventDragCreateConfig, EventDragSelect, EventDragSelectConfig, EventEdit, EventEditConfig, EventFilter, EventFilterConfig, EventLayoutConfig, EventMenu, EventMenuConfig, EventModel, EventModelConfig, EventNonWorkingTime, EventNonWorkingTimeConfig, EventResize, EventResizeConfig, EventResizeData, EventSegmentDrag, EventSegmentDragConfig, EventSegmentResize, EventSegmentResizeConfig, EventSegments, EventSegmentsConfig, EventStore, EventStoreConfig, EventTooltip, EventTooltipConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, FormulaProviderConfig, Grid, GridBase, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridTreeGroup, GridTreeGroupConfig, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, HeaderZoom, HeaderZoomConfig, KeyMapConfig, LockRows, LockRowsConfig, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, MergeCells, MergeCellsConfig, Model, ModelConfig, NestedEvents, NestedEventsConfig, NonWorkingTime, NonWorkingTimeConfig, PagingToolbarConfig, Pan, PanConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, PercentBar, PercentBarConfig, PinColumns, PinColumnsConfig, Popup, PreserveScrollOptions, ProjectModelConfig, QuickFind, QuickFindConfig, RecordPositionContext, Rectangle, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, RegionResize, RegionResizeConfig, ResourceEdit, ResourceEditConfig, ResourceEditor, ResourceGrid, ResourceHeaderConfig, ResourceMarginConfig, ResourceMenu, ResourceMenuConfig, ResourceModelConfig, ResourceNonWorkingTime, ResourceNonWorkingTimeConfig, ResourceStoreConfig, ResourceTimeRangeModel, ResourceTimeRangeModelConfig, ResourceTimeRangeStore, ResourceTimeRangeStoreConfig, ResourceTimeRanges, ResourceTimeRangesConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, ScheduleContext, ScheduleContextConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, SchedulerAssignmentModel, SchedulerBase, SchedulerDependencyEdit, SchedulerDependencyModel, SchedulerEventModel, SchedulerLabels, SchedulerLabelsConfig, SchedulerPdfExport, SchedulerPdfExportConfig, SchedulerPrint, SchedulerPrintConfig, SchedulerPro, SchedulerProAssignmentModel, SchedulerProAssignmentModelConfig, SchedulerProAssignmentStore, SchedulerProCalendarModel, SchedulerProCellEdit, SchedulerProCellEditConfig, SchedulerProDependencies, SchedulerProDependenciesConfig, SchedulerProDependencyModel, SchedulerProDependencyStore, SchedulerProListeners, SchedulerProProjectModel, SchedulerProResourceModel, SchedulerProResourceStore, SchedulerProTaskEdit, SchedulerProTaskEditConfig, SchedulerProVersions, SchedulerProVersionsConfig, SchedulerResourceModel, SchedulerResponsiveLevelConfig, SchedulerScrollButtons, SchedulerScrollButtonsConfig, SchedulerStateInfo, SchedulerSummary, SchedulerSummaryConfig, SchedulerTimeAxisColumn, SchedulingIssueResolutionPopup, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, Search, SearchConfig, SimpleEventEdit, SimpleEventEditConfig, Sort, SortConfig, Split, SplitConfig, StateProvider, StickyCells, StickyCellsConfig, StickyEvents, StickyEventsConfig, Store, StoreConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, TabConfig, TaskEditorBase, TimeAxis, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSelection, TimeSelectionConfig, TimeSpan, TimeSpanConfig, TimeSpanHighlight, TimeSpanHighlightConfig, TimelineBase, TimelineContext, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Tree, TreeConfig, TreeSummary, TreeSummaryConfig, VerticalTimeAxisColumn, VerticalTimeAxisColumnConfig, ViewPreset, ViewPresetConfig, VisibleDate, Widget, XLSColumn } from '@bryntum/gantt';
|
|
2
|
+
import { AIFilter, AIFilterConfig, AjaxStore, AjaxStoreConfig, AssignmentStoreConfig, Base, CalendarHighlight, CalendarHighlightConfig, CalendarModelConfig, CellCopyPaste, CellCopyPasteConfig, CellEditorContext, CellMenu, CellMenuConfig, CellTooltip, CellTooltipConfig, Charts, ChartsConfig, Column, ColumnAutoWidth, ColumnAutoWidthConfig, ColumnDragToolbar, ColumnDragToolbarConfig, ColumnLines, ColumnLinesConfig, ColumnPicker, ColumnPickerConfig, ColumnRename, ColumnRenameConfig, ColumnReorder, ColumnReorderConfig, ColumnResize, ColumnResizeConfig, ColumnStore, ColumnStoreConfig, Container, ContainerItemConfig, CrudManager, CrudManagerConfig, CycleResolutionPopup, DateConstraint, DependencyBaseModel, DependencyEdit, DependencyEditConfig, DependencyMenu, DependencyMenuConfig, DependencyModelConfig, DependencyStoreConfig, DomClassList, DomConfig, DropData, DurationConfig, DurationUnit, EmptyTextDomConfig, EventBuffer, EventBufferConfig, EventColor, EventCopyPaste, EventCopyPasteConfig, EventDrag, EventDragConfig, EventDragCreate, EventDragCreateConfig, EventDragSelect, EventDragSelectConfig, EventEdit, EventEditConfig, EventFilter, EventFilterConfig, EventLayoutConfig, EventMenu, EventMenuConfig, EventModel, EventModelConfig, EventNonWorkingTime, EventNonWorkingTimeConfig, EventResize, EventResizeConfig, EventResizeData, EventSegmentDrag, EventSegmentDragConfig, EventSegmentResize, EventSegmentResizeConfig, EventSegments, EventSegmentsConfig, EventStore, EventStoreConfig, EventTooltip, EventTooltipConfig, ExcelExporter, ExcelExporterConfig, ExportConfig, FileDrop, FileDropConfig, FillHandle, FillHandleConfig, Filter, FilterBar, FilterBarConfig, FilterConfig, FormulaProviderConfig, Grid, GridBase, GridColumnConfig, GridLocation, GridLocationConfig, GridSelectionMode, GridTreeGroup, GridTreeGroupConfig, Group, GroupConfig, GroupSummary, GroupSummaryConfig, HeaderMenu, HeaderMenuConfig, HeaderZoom, HeaderZoomConfig, KeyMapConfig, LockRows, LockRowsConfig, Mask, MaskConfig, Menu, MenuConfig, MenuItem, MenuItemEntry, MergeCells, MergeCellsConfig, Model, ModelConfig, NestedEvents, NestedEventsConfig, NonWorkingTime, NonWorkingTimeConfig, PagingToolbarConfig, Pan, PanConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, PdfExportConfig, PercentBar, PercentBarConfig, PinColumns, PinColumnsConfig, Popup, PreserveScrollOptions, ProjectModelConfig, QuickFind, QuickFindConfig, RecordPositionContext, Rectangle, RecurrenceConfirmationPopup, RecurrenceConfirmationPopupConfig, RegionResize, RegionResizeConfig, ResourceEdit, ResourceEditConfig, ResourceEditor, ResourceGrid, ResourceHeaderConfig, ResourceMarginConfig, ResourceMenu, ResourceMenuConfig, ResourceModelConfig, ResourceNonWorkingTime, ResourceNonWorkingTimeConfig, ResourceStoreConfig, ResourceTimeRangeModel, ResourceTimeRangeModelConfig, ResourceTimeRangeStore, ResourceTimeRangeStoreConfig, ResourceTimeRanges, ResourceTimeRangesConfig, Row, RowCopyPaste, RowCopyPasteConfig, RowEdit, RowEditConfig, RowEditorContext, RowExpander, RowExpanderConfig, RowReorder, RowReorderConfig, RowResize, RowResizeConfig, ScheduleContext, ScheduleContextConfig, ScheduleMenu, ScheduleMenuConfig, ScheduleTooltip, ScheduleTooltipConfig, Scheduler, SchedulerAssignmentModel, SchedulerBase, SchedulerDependencyEdit, SchedulerDependencyModel, SchedulerEventModel, SchedulerLabels, SchedulerLabelsConfig, SchedulerPdfExport, SchedulerPdfExportConfig, SchedulerPrint, SchedulerPrintConfig, SchedulerPro, SchedulerProAssignmentModel, SchedulerProAssignmentModelConfig, SchedulerProAssignmentStore, SchedulerProCalendarModel, SchedulerProCellEdit, SchedulerProCellEditConfig, SchedulerProDependencies, SchedulerProDependenciesConfig, SchedulerProDependencyModel, SchedulerProDependencyStore, SchedulerProListeners, SchedulerProProjectModel, SchedulerProResourceModel, SchedulerProResourceStore, SchedulerProTaskEdit, SchedulerProTaskEditConfig, SchedulerProVersions, SchedulerProVersionsConfig, SchedulerResourceModel, SchedulerResponsiveLevelConfig, SchedulerScrollButtons, SchedulerScrollButtonsConfig, SchedulerStateInfo, SchedulerSummary, SchedulerSummaryConfig, SchedulerTimeAxisColumn, SchedulingIssueResolutionPopup, ScrollManager, ScrollManagerConfig, Scroller, ScrollerConfig, Search, SearchConfig, SimpleEventEdit, SimpleEventEditConfig, Sort, SortConfig, Split, SplitConfig, StateProvider, StickyCells, StickyCellsConfig, StickyEvents, StickyEventsConfig, Store, StoreConfig, Stripe, StripeConfig, SubGrid, SubGridConfig, TabConfig, TaskEditorBase, TimeAxis, TimeAxisConfig, TimeAxisHeaderMenu, TimeAxisHeaderMenuConfig, TimeRanges, TimeRangesConfig, TimeSelection, TimeSelectionConfig, TimeSpan, TimeSpanConfig, TimeSpanHighlight, TimeSpanHighlightConfig, TimelineBase, TimelineContext, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, Tree, TreeConfig, TreeSummary, TreeSummaryConfig, VerticalTimeAxisColumn, VerticalTimeAxisColumnConfig, ViewPreset, ViewPresetConfig, VisibleDate, Widget, XLSColumn } from '@bryntum/gantt';
|
|
3
3
|
import { processWidgetContent } from './WrapperHelper.js';
|
|
4
4
|
export declare type BryntumSchedulerProProps = {
|
|
5
5
|
adopt?: HTMLElement | string;
|
|
@@ -463,6 +463,11 @@ export declare type BryntumSchedulerProProps = {
|
|
|
463
463
|
field: string;
|
|
464
464
|
value: any;
|
|
465
465
|
}) => Promise<boolean> | boolean | void) | string;
|
|
466
|
+
onBeforeColumnCollapseToggle?: ((event: {
|
|
467
|
+
source: GridBase;
|
|
468
|
+
column: Column;
|
|
469
|
+
collapsed: boolean;
|
|
470
|
+
}) => void) | string;
|
|
466
471
|
onBeforeColumnDragStart?: ((event: {
|
|
467
472
|
source: Grid;
|
|
468
473
|
column: Column;
|
|
@@ -710,7 +715,7 @@ export declare type BryntumSchedulerProProps = {
|
|
|
710
715
|
text: string;
|
|
711
716
|
}) => Promise<boolean> | boolean | void) | string;
|
|
712
717
|
onBeforePdfExport?: ((event: {
|
|
713
|
-
config:
|
|
718
|
+
config: PdfExportConfig;
|
|
714
719
|
}) => Promise<boolean> | boolean | void) | string;
|
|
715
720
|
onBeforePresetChange?: ((event: {
|
|
716
721
|
source: Scheduler;
|
|
@@ -726,13 +731,13 @@ export declare type BryntumSchedulerProProps = {
|
|
|
726
731
|
highlights: TimeSpan[];
|
|
727
732
|
}) => void) | string;
|
|
728
733
|
onBeforeRenderRow?: ((event: {
|
|
729
|
-
source:
|
|
734
|
+
source: GridBase;
|
|
730
735
|
row: Row;
|
|
731
736
|
record: Model;
|
|
732
737
|
recordIndex: number;
|
|
733
738
|
}) => void) | string;
|
|
734
739
|
onBeforeRenderRows?: ((event: {
|
|
735
|
-
source:
|
|
740
|
+
source: GridBase;
|
|
736
741
|
}) => void) | string;
|
|
737
742
|
onBeforeResourceEdit?: ((event: {
|
|
738
743
|
source: ResourceGrid;
|
|
@@ -914,6 +919,11 @@ export declare type BryntumSchedulerProProps = {
|
|
|
914
919
|
source: Grid;
|
|
915
920
|
record: Model;
|
|
916
921
|
}) => void) | string;
|
|
922
|
+
onColumnCollapseToggle?: ((event: {
|
|
923
|
+
source: GridBase;
|
|
924
|
+
column: Column;
|
|
925
|
+
collapsed: boolean;
|
|
926
|
+
}) => void) | string;
|
|
917
927
|
onColumnDrag?: ((event: {
|
|
918
928
|
source: Grid;
|
|
919
929
|
column: Column;
|
|
@@ -970,7 +980,7 @@ export declare type BryntumSchedulerProProps = {
|
|
|
970
980
|
date: Date;
|
|
971
981
|
}) => void) | string;
|
|
972
982
|
onDataChange?: ((event: {
|
|
973
|
-
source:
|
|
983
|
+
source: GridBase;
|
|
974
984
|
store: Store;
|
|
975
985
|
action: 'remove' | 'removeAll' | 'add' | 'clearchanges' | 'filter' | 'update' | 'dataset' | 'replace';
|
|
976
986
|
record: Model;
|
|
@@ -1045,11 +1055,15 @@ export declare type BryntumSchedulerProProps = {
|
|
|
1045
1055
|
source: TimeSpan;
|
|
1046
1056
|
target: TimeSpan;
|
|
1047
1057
|
dependencyType: number;
|
|
1058
|
+
fromSide: 'start' | 'end' | 'top' | 'bottom';
|
|
1059
|
+
toSide: 'start' | 'end' | 'top' | 'bottom';
|
|
1048
1060
|
}) => void) | string;
|
|
1049
1061
|
onDependencyValidationStart?: ((event: {
|
|
1050
1062
|
source: TimeSpan;
|
|
1051
1063
|
target: TimeSpan;
|
|
1052
1064
|
dependencyType: number;
|
|
1065
|
+
fromSide: 'start' | 'end' | 'top' | 'bottom';
|
|
1066
|
+
toSide: 'start' | 'end' | 'top' | 'bottom';
|
|
1053
1067
|
}) => void) | string;
|
|
1054
1068
|
onDestroy?: ((event: {
|
|
1055
1069
|
source: Base;
|
|
@@ -1612,13 +1626,13 @@ export declare type BryntumSchedulerProProps = {
|
|
|
1612
1626
|
element: HTMLElement;
|
|
1613
1627
|
}) => void) | string;
|
|
1614
1628
|
onRenderRow?: ((event: {
|
|
1615
|
-
source:
|
|
1629
|
+
source: GridBase;
|
|
1616
1630
|
row: Row;
|
|
1617
1631
|
record: Model;
|
|
1618
1632
|
recordIndex: number;
|
|
1619
1633
|
}) => void) | string;
|
|
1620
1634
|
onRenderRows?: ((event: {
|
|
1621
|
-
source:
|
|
1635
|
+
source: GridBase;
|
|
1622
1636
|
}) => void) | string;
|
|
1623
1637
|
onResize?: ((event: {
|
|
1624
1638
|
source: Widget;
|
|
@@ -1918,7 +1932,7 @@ export declare type BryntumSchedulerProProps = {
|
|
|
1918
1932
|
event: MouseEvent;
|
|
1919
1933
|
}) => void) | string;
|
|
1920
1934
|
onScroll?: ((event: {
|
|
1921
|
-
source:
|
|
1935
|
+
source: GridBase;
|
|
1922
1936
|
scrollTop: number;
|
|
1923
1937
|
}) => void) | string;
|
|
1924
1938
|
onScrollButtonClick?: ((event: {
|
|
@@ -1984,11 +1998,11 @@ export declare type BryntumSchedulerProProps = {
|
|
|
1984
1998
|
editorContext: RowEditorContext;
|
|
1985
1999
|
}) => void) | string;
|
|
1986
2000
|
onSubGridCollapse?: ((event: {
|
|
1987
|
-
source:
|
|
2001
|
+
source: GridBase;
|
|
1988
2002
|
subGrid: SubGrid;
|
|
1989
2003
|
}) => void) | string;
|
|
1990
2004
|
onSubGridExpand?: ((event: {
|
|
1991
|
-
source:
|
|
2005
|
+
source: GridBase;
|
|
1992
2006
|
subGrid: SubGrid;
|
|
1993
2007
|
}) => void) | string;
|
|
1994
2008
|
onTaskEditCanceled?: ((event: {
|