@progress/kendo-react-gantt 7.2.4-develop.3 → 7.3.0-develop.1
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/Gantt.js +8 -0
- package/Gantt.mjs +411 -0
- package/cells/FilterCells/GanttBooleanFilter.js +8 -0
- package/cells/FilterCells/GanttBooleanFilter.mjs +27 -0
- package/cells/FilterCells/GanttDateFilter.js +8 -0
- package/cells/FilterCells/GanttDateFilter.mjs +27 -0
- package/cells/FilterCells/GanttNumericFilter.js +8 -0
- package/cells/FilterCells/GanttNumericFilter.mjs +27 -0
- package/cells/FilterCells/GanttTextFilter.js +8 -0
- package/cells/FilterCells/GanttTextFilter.mjs +27 -0
- package/cells/FilterCells/utils.js +8 -0
- package/cells/FilterCells/utils.mjs +59 -0
- package/components/BaseView.js +8 -0
- package/components/BaseView.mjs +239 -0
- package/components/GanttDependency.js +8 -0
- package/components/GanttDependency.mjs +58 -0
- package/components/GanttTask.js +8 -0
- package/components/GanttTask.mjs +169 -0
- package/components/GanttTreelist.js +8 -0
- package/components/GanttTreelist.mjs +571 -0
- package/components/toolbar/AddButton.js +8 -0
- package/components/toolbar/AddButton.mjs +56 -0
- package/components/toolbar/Toolbar.js +8 -0
- package/components/toolbar/Toolbar.mjs +34 -0
- package/components/toolbar/view-selector/ViewSelector.js +8 -0
- package/components/toolbar/view-selector/ViewSelector.mjs +32 -0
- package/components/toolbar/view-selector/ViewSelectorItem.js +8 -0
- package/components/toolbar/view-selector/ViewSelectorItem.mjs +39 -0
- package/components/toolbar/view-selector/ViewSelectorList.js +8 -0
- package/components/toolbar/view-selector/ViewSelectorList.mjs +36 -0
- package/constants/index.js +8 -0
- package/constants/index.mjs +52 -0
- package/context/GanttContext.js +8 -0
- package/context/GanttContext.mjs +103 -0
- package/context/GanttViewContext.js +8 -0
- package/context/GanttViewContext.mjs +38 -0
- package/dist/cdn/js/kendo-react-gantt.js +8 -5
- package/editors/FormDateTimePicker.js +8 -0
- package/editors/FormDateTimePicker.mjs +29 -0
- package/editors/FormDropDownList.js +8 -0
- package/editors/FormDropDownList.mjs +62 -0
- package/editors/FormInput.js +8 -0
- package/editors/FormInput.mjs +29 -0
- package/editors/FormNumericTextBox.js +8 -0
- package/editors/FormNumericTextBox.mjs +30 -0
- package/editors/GanttEditor.js +8 -0
- package/editors/GanttEditor.mjs +260 -0
- package/editors/GanttEditorPredecessors.js +8 -0
- package/editors/GanttEditorPredecessors.mjs +121 -0
- package/editors/GanttEditorSuccessors.js +8 -0
- package/editors/GanttEditorSuccessors.mjs +121 -0
- package/editors/GanttForm.js +8 -0
- package/editors/GanttForm.mjs +113 -0
- package/editors/GanttRemoveDialog.js +8 -0
- package/editors/GanttRemoveDialog.mjs +49 -0
- package/hooks/useControlledState.js +8 -0
- package/hooks/useControlledState.mjs +21 -0
- package/hooks/useDictionaryStore.js +8 -0
- package/hooks/useDictionaryStore.mjs +30 -0
- package/hooks/useGanttTask.js +8 -0
- package/hooks/useGanttTask.mjs +35 -0
- package/index.d.mts +1394 -5
- package/index.d.ts +1394 -32
- package/index.js +8 -5
- package/index.mjs +50 -3087
- package/interfaces/DependencyType.js +8 -0
- package/interfaces/DependencyType.mjs +12 -0
- package/messages/index.js +8 -0
- package/messages/index.mjs +137 -0
- package/package-metadata.js +8 -0
- package/package-metadata.mjs +19 -0
- package/package.json +12 -12
- package/rows/GanttRow.js +8 -0
- package/rows/GanttRow.mjs +13 -0
- package/utils/data-operations.js +8 -0
- package/utils/data-operations.mjs +183 -0
- package/utils/index.js +8 -0
- package/utils/index.mjs +263 -0
- package/views/GanttDayView.js +8 -0
- package/views/GanttDayView.mjs +94 -0
- package/views/GanttMonthView.js +8 -0
- package/views/GanttMonthView.mjs +82 -0
- package/views/GanttWeekView.js +8 -0
- package/views/GanttWeekView.mjs +81 -0
- package/views/GanttYearView.js +8 -0
- package/views/GanttYearView.mjs +73 -0
- package/Gantt.d.ts +0 -29
- package/cells/FilterCells/GanttBooleanFilter.d.ts +0 -14
- package/cells/FilterCells/GanttDateFilter.d.ts +0 -14
- package/cells/FilterCells/GanttNumericFilter.d.ts +0 -14
- package/cells/FilterCells/GanttTextFilter.d.ts +0 -14
- package/cells/FilterCells/utils.d.ts +0 -42
- package/components/BaseView.d.ts +0 -24
- package/components/GanttDependency.d.ts +0 -13
- package/components/GanttTask.d.ts +0 -16
- package/components/GanttTreelist.d.ts +0 -143
- package/components/toolbar/AddButton.d.ts +0 -16
- package/components/toolbar/Toolbar.d.ts +0 -25
- package/components/toolbar/view-selector/ViewSelector.d.ts +0 -28
- package/components/toolbar/view-selector/ViewSelectorItem.d.ts +0 -15
- package/components/toolbar/view-selector/ViewSelectorList.d.ts +0 -7
- package/constants/index.d.ts +0 -57
- package/context/GanttContext.d.ts +0 -125
- package/context/GanttViewContext.d.ts +0 -44
- package/editors/FormDateTimePicker.d.ts +0 -9
- package/editors/FormDropDownList.d.ts +0 -9
- package/editors/FormInput.d.ts +0 -9
- package/editors/FormNumericTextBox.d.ts +0 -9
- package/editors/GanttEditor.d.ts +0 -21
- package/editors/GanttEditorPredecessors.d.ts +0 -25
- package/editors/GanttEditorSuccessors.d.ts +0 -25
- package/editors/GanttForm.d.ts +0 -70
- package/editors/GanttRemoveDialog.d.ts +0 -48
- package/hooks/useControlledState.d.ts +0 -8
- package/hooks/useDictionaryStore.d.ts +0 -22
- package/hooks/useGanttTask.d.ts +0 -8
- package/interfaces/AddDirection.d.ts +0 -10
- package/interfaces/DataItem.d.ts +0 -10
- package/interfaces/DateRange.d.ts +0 -12
- package/interfaces/DependencyModelFields.d.ts +0 -29
- package/interfaces/DependencyType.d.ts +0 -19
- package/interfaces/GanttBaseProps.d.ts +0 -66
- package/interfaces/GanttCellProps.d.ts +0 -45
- package/interfaces/GanttColumnProps.d.ts +0 -40
- package/interfaces/GanttDependency.d.ts +0 -30
- package/interfaces/GanttDependencyModelFields.d.ts +0 -29
- package/interfaces/GanttFilterCellProps.d.ts +0 -10
- package/interfaces/GanttFilterOperator.d.ts +0 -10
- package/interfaces/GanttHeaderCellProps.d.ts +0 -10
- package/interfaces/GanttNoRecordsProps.d.ts +0 -13
- package/interfaces/GanttProps.d.ts +0 -151
- package/interfaces/GanttRowProps.d.ts +0 -95
- package/interfaces/GanttSelectableSettings.d.ts +0 -22
- package/interfaces/GanttSlotType.d.ts +0 -8
- package/interfaces/GanttSortSettings.d.ts +0 -17
- package/interfaces/GanttTaskModelFields.d.ts +0 -64
- package/interfaces/GanttView.d.ts +0 -80
- package/interfaces/GanttViewTimelineHeaderCellProps.d.ts +0 -23
- package/interfaces/Rectangle.d.ts +0 -10
- package/interfaces/Slot.d.ts +0 -16
- package/interfaces/TaskModelFields.d.ts +0 -20
- package/interfaces/events.d.ts +0 -298
- package/messages/index.d.ts +0 -194
- package/package-metadata.d.ts +0 -9
- package/rows/GanttRow.d.ts +0 -8
- package/utils/data-operations.d.ts +0 -47
- package/utils/index.d.ts +0 -182
- package/views/GanttDayView.d.ts +0 -21
- package/views/GanttMonthView.d.ts +0 -17
- package/views/GanttWeekView.d.ts +0 -17
- package/views/GanttYearView.d.ts +0 -17
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { FilterComponentProps } from '@progress/kendo-react-data-tools';
|
|
7
|
-
import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
|
|
8
|
-
export interface GanttBooleanFilterProps extends FilterComponentProps {
|
|
9
|
-
/**
|
|
10
|
-
* The list of the operators.
|
|
11
|
-
*/
|
|
12
|
-
operators?: GanttFilterOperator[];
|
|
13
|
-
}
|
|
14
|
-
export declare const GanttBooleanFilter: React.FunctionComponent<GanttBooleanFilterProps>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { FilterComponentProps } from '@progress/kendo-react-data-tools';
|
|
7
|
-
import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
|
|
8
|
-
export interface GanttDateFilterProps extends FilterComponentProps {
|
|
9
|
-
/**
|
|
10
|
-
* The list of the operators.
|
|
11
|
-
*/
|
|
12
|
-
operators?: GanttFilterOperator[];
|
|
13
|
-
}
|
|
14
|
-
export declare const GanttDateFilter: React.FunctionComponent<GanttDateFilterProps>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { FilterComponentProps } from '@progress/kendo-react-data-tools';
|
|
7
|
-
import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
|
|
8
|
-
export interface GanttNumericFilterProps extends FilterComponentProps {
|
|
9
|
-
/**
|
|
10
|
-
* The list of the operators.
|
|
11
|
-
*/
|
|
12
|
-
operators?: GanttFilterOperator[];
|
|
13
|
-
}
|
|
14
|
-
export declare const GanttNumericFilter: React.FunctionComponent<GanttNumericFilterProps>;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { FilterComponentProps } from '@progress/kendo-react-data-tools';
|
|
7
|
-
import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
|
|
8
|
-
export interface GanttTextFilterProps extends FilterComponentProps {
|
|
9
|
-
/**
|
|
10
|
-
* The list of the operators.
|
|
11
|
-
*/
|
|
12
|
-
operators?: GanttFilterOperator[];
|
|
13
|
-
}
|
|
14
|
-
export declare const GanttTextFilter: React.FunctionComponent<GanttTextFilterProps>;
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { LocalizationService } from '@progress/kendo-react-intl';
|
|
6
|
-
import { GanttFilterOperator } from '../../interfaces/GanttFilterOperator';
|
|
7
|
-
/**
|
|
8
|
-
* @hidden
|
|
9
|
-
*/
|
|
10
|
-
export declare const textFilterOperators: GanttFilterOperator[];
|
|
11
|
-
/**
|
|
12
|
-
* @hidden
|
|
13
|
-
*/
|
|
14
|
-
export declare const numericFilterOperators: GanttFilterOperator[];
|
|
15
|
-
/**
|
|
16
|
-
* @hidden
|
|
17
|
-
*/
|
|
18
|
-
export declare const dateFilterOperators: GanttFilterOperator[];
|
|
19
|
-
/**
|
|
20
|
-
* @hidden
|
|
21
|
-
*/
|
|
22
|
-
export declare const booleanOperator: string;
|
|
23
|
-
/**
|
|
24
|
-
* @hidden
|
|
25
|
-
*/
|
|
26
|
-
export declare const booleanFilterValues: ({
|
|
27
|
-
text: string;
|
|
28
|
-
operator: string;
|
|
29
|
-
} | {
|
|
30
|
-
text: string;
|
|
31
|
-
operator: boolean;
|
|
32
|
-
})[];
|
|
33
|
-
/**
|
|
34
|
-
* @hidden
|
|
35
|
-
*/
|
|
36
|
-
export declare function localizeFilter(localization: LocalizationService, operators: GanttFilterOperator[]): {
|
|
37
|
-
clearButtonTitle: string;
|
|
38
|
-
operators: {
|
|
39
|
-
text: string;
|
|
40
|
-
operator: any;
|
|
41
|
-
}[];
|
|
42
|
-
};
|
package/components/BaseView.d.ts
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { Slot } from '../interfaces/Slot';
|
|
7
|
-
import { GanttViewTimelineHeaderCellProps } from '../interfaces/GanttViewTimelineHeaderCellProps';
|
|
8
|
-
/**
|
|
9
|
-
* @hidden
|
|
10
|
-
*/
|
|
11
|
-
export interface BaseViewProps {
|
|
12
|
-
slotLevels: Slot[][];
|
|
13
|
-
slotWidth: number;
|
|
14
|
-
timelineHeaderCell?: React.ComponentType<GanttViewTimelineHeaderCellProps>;
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* @hidden
|
|
18
|
-
*/
|
|
19
|
-
export interface BaseViewHandle {
|
|
20
|
-
scrollIntoView: (options: {
|
|
21
|
-
rowIndex?: number;
|
|
22
|
-
}) => void;
|
|
23
|
-
}
|
|
24
|
-
export declare const BaseView: React.ForwardRefExoticComponent<BaseViewProps & React.RefAttributes<BaseViewHandle | null>>;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
/** @hidden */
|
|
6
|
-
export interface GanttDependencyProps {
|
|
7
|
-
dependency: any;
|
|
8
|
-
}
|
|
9
|
-
/** @hidden */
|
|
10
|
-
export declare const GanttDependency: {
|
|
11
|
-
(props: GanttDependencyProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
displayName: string;
|
|
13
|
-
};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { TreeListCellProps } from '@progress/kendo-react-treelist';
|
|
7
|
-
/** @hidden */
|
|
8
|
-
export interface GanttTaskProps extends TreeListCellProps {
|
|
9
|
-
}
|
|
10
|
-
/** @hidden */
|
|
11
|
-
export interface GanttTaskHandle {
|
|
12
|
-
element: HTMLDivElement | null;
|
|
13
|
-
dataItem: any;
|
|
14
|
-
}
|
|
15
|
-
/** @hidden */
|
|
16
|
-
export declare const GanttTask: React.ForwardRefExoticComponent<GanttTaskProps & React.RefAttributes<GanttTaskHandle>>;
|
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import PropTypes from 'prop-types';
|
|
7
|
-
import { CommonDragLogic, ExtendedColumnProps, TableKeyboardNavigationContextType } from '@progress/kendo-react-data-tools';
|
|
8
|
-
import { TreeListProps } from '@progress/kendo-react-treelist';
|
|
9
|
-
import { GanttCellProps } from '../interfaces/GanttCellProps';
|
|
10
|
-
import { GanttHeaderCellProps } from '../interfaces/GanttHeaderCellProps';
|
|
11
|
-
import { GanttFilterCellProps } from '../interfaces/GanttFilterCellProps';
|
|
12
|
-
/**
|
|
13
|
-
* @hidden
|
|
14
|
-
*/
|
|
15
|
-
export interface GanttTreeListProps extends TreeListProps {
|
|
16
|
-
extendedColumns: ExtendedColumnProps<GanttCellProps, GanttHeaderCellProps, GanttFilterCellProps>[];
|
|
17
|
-
columnsMap: number[][];
|
|
18
|
-
afterContent: any;
|
|
19
|
-
dataItemKey: string;
|
|
20
|
-
navigatable?: boolean;
|
|
21
|
-
idPrefix: string;
|
|
22
|
-
treelistId: string;
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* @hidden
|
|
26
|
-
*/
|
|
27
|
-
export declare class GanttTreeList extends React.Component<GanttTreeListProps, {}> {
|
|
28
|
-
/**
|
|
29
|
-
* @hidden
|
|
30
|
-
*/
|
|
31
|
-
static propTypes: {
|
|
32
|
-
data: PropTypes.Requireable<any[]>;
|
|
33
|
-
resizable: PropTypes.Requireable<boolean>;
|
|
34
|
-
reorderable: PropTypes.Requireable<boolean>;
|
|
35
|
-
sortable: PropTypes.Requireable<NonNullable<boolean | PropTypes.InferProps<{
|
|
36
|
-
mode: PropTypes.Requireable<string>;
|
|
37
|
-
allowUnsort: PropTypes.Requireable<boolean>;
|
|
38
|
-
}> | null | undefined>>;
|
|
39
|
-
onSortChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
40
|
-
sort: PropTypes.Requireable<any[]>;
|
|
41
|
-
columns: PropTypes.Requireable<(object | null | undefined)[]>;
|
|
42
|
-
columnVirtualization: PropTypes.Requireable<boolean>;
|
|
43
|
-
filter: PropTypes.Requireable<any[]>;
|
|
44
|
-
onFilterChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
45
|
-
filterRow: PropTypes.Requireable<any>;
|
|
46
|
-
toolbar: PropTypes.Requireable<any>;
|
|
47
|
-
noRecords: PropTypes.Requireable<any>;
|
|
48
|
-
onExpandChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
49
|
-
expandField: PropTypes.Requireable<string>;
|
|
50
|
-
subItemsField: PropTypes.Requireable<string>;
|
|
51
|
-
selectedField: PropTypes.Requireable<string>;
|
|
52
|
-
onSelectionChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
53
|
-
onHeaderSelectionChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
54
|
-
onRowClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
55
|
-
onItemChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
56
|
-
editField: PropTypes.Requireable<string>;
|
|
57
|
-
scrollable: PropTypes.Requireable<string>;
|
|
58
|
-
rowHeight: PropTypes.Requireable<number>;
|
|
59
|
-
style: PropTypes.Requireable<object>;
|
|
60
|
-
tableProps: PropTypes.Requireable<object>;
|
|
61
|
-
pager: PropTypes.Requireable<any>;
|
|
62
|
-
skip: PropTypes.Requireable<number>;
|
|
63
|
-
take: PropTypes.Requireable<number>;
|
|
64
|
-
onPageChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
65
|
-
onDataStateChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
66
|
-
onColumnResize: PropTypes.Requireable<(...args: any[]) => any>;
|
|
67
|
-
onColumnReorder: PropTypes.Requireable<(...args: any[]) => any>;
|
|
68
|
-
extendedColumns: PropTypes.Requireable<(object | null | undefined)[]>;
|
|
69
|
-
columnsMap: PropTypes.Requireable<(any[] | null | undefined)[]>;
|
|
70
|
-
dataItemKey: PropTypes.Validator<string>;
|
|
71
|
-
afterContent: PropTypes.Requireable<any>;
|
|
72
|
-
navigatable: PropTypes.Requireable<boolean>;
|
|
73
|
-
idPrefix: PropTypes.Requireable<string>;
|
|
74
|
-
treelistId: PropTypes.Requireable<string>;
|
|
75
|
-
};
|
|
76
|
-
/** @hidden */
|
|
77
|
-
static contextType: React.Context<TableKeyboardNavigationContextType | undefined>;
|
|
78
|
-
state: TableKeyboardNavigationContextType;
|
|
79
|
-
tableElement: HTMLTableElement | null;
|
|
80
|
-
tbodyElement: HTMLTableSectionElement | null;
|
|
81
|
-
private wrapperScrollLeft;
|
|
82
|
-
private wrapperScrollTop;
|
|
83
|
-
private updateOnScroll;
|
|
84
|
-
private tbodyOffsetTop;
|
|
85
|
-
private prevData;
|
|
86
|
-
private flattedData;
|
|
87
|
-
private columnResize;
|
|
88
|
-
private element;
|
|
89
|
-
protected dragLogic: CommonDragLogic<GanttCellProps, GanttHeaderCellProps, GanttFilterCellProps>;
|
|
90
|
-
private get document();
|
|
91
|
-
private contextStateRef;
|
|
92
|
-
private navigationStateRef;
|
|
93
|
-
constructor(props: GanttTreeListProps);
|
|
94
|
-
scrollIntoView: (options: {
|
|
95
|
-
rowIndex?: number;
|
|
96
|
-
}) => void;
|
|
97
|
-
/**
|
|
98
|
-
* @hidden
|
|
99
|
-
*/
|
|
100
|
-
componentDidMount(): void;
|
|
101
|
-
/**
|
|
102
|
-
* @hidden
|
|
103
|
-
*/
|
|
104
|
-
getSnapshotBeforeUpdate(): null;
|
|
105
|
-
/**
|
|
106
|
-
* @hidden
|
|
107
|
-
*/
|
|
108
|
-
componentDidUpdate(prevProps: TreeListProps): void;
|
|
109
|
-
/**
|
|
110
|
-
* @hidden
|
|
111
|
-
*/
|
|
112
|
-
componentWillUnmount(): void;
|
|
113
|
-
/**
|
|
114
|
-
* @hidden
|
|
115
|
-
*/
|
|
116
|
-
render(): import("react/jsx-runtime").JSX.Element;
|
|
117
|
-
private getColumns;
|
|
118
|
-
private get flatData();
|
|
119
|
-
private onKeyDown;
|
|
120
|
-
private onFocus;
|
|
121
|
-
private onRowDrag;
|
|
122
|
-
private onRowDrop;
|
|
123
|
-
private onColumnReorder;
|
|
124
|
-
private onColumnResize;
|
|
125
|
-
private onScroll;
|
|
126
|
-
private calculateSizes;
|
|
127
|
-
private onItemChange;
|
|
128
|
-
private onSelectionChange;
|
|
129
|
-
private onHeaderSelectionChange;
|
|
130
|
-
private selectionRelease;
|
|
131
|
-
private onSortChange;
|
|
132
|
-
private onFilterChange;
|
|
133
|
-
private onColumnMenuFilterChange;
|
|
134
|
-
private onExpandChange;
|
|
135
|
-
private onRowClick;
|
|
136
|
-
private rowDoubleClick;
|
|
137
|
-
private rowContextMenu;
|
|
138
|
-
private onPageChange;
|
|
139
|
-
private onDataStateChange;
|
|
140
|
-
private getDataState;
|
|
141
|
-
private getEventArguments;
|
|
142
|
-
private getLeafDataItems;
|
|
143
|
-
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { DataItem } from '../../interfaces/DataItem';
|
|
7
|
-
import { AddDirection } from '../../interfaces/AddDirection';
|
|
8
|
-
/** @hidden */
|
|
9
|
-
export declare const AddButton: React.ForwardRefExoticComponent<{
|
|
10
|
-
selectedTask: DataItem | null;
|
|
11
|
-
onClick: (options: {
|
|
12
|
-
nativeEvent: any;
|
|
13
|
-
syntheticEvent: any;
|
|
14
|
-
direction: AddDirection;
|
|
15
|
-
}) => void;
|
|
16
|
-
} & React.RefAttributes<unknown>>;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { ToolbarProps as KendoToolbarProps } from '@progress/kendo-react-buttons';
|
|
7
|
-
/** @hidden */
|
|
8
|
-
export interface ToolbarProps extends KendoToolbarProps {
|
|
9
|
-
children?: React.ReactNode;
|
|
10
|
-
}
|
|
11
|
-
/**
|
|
12
|
-
* Represents the object which is returned from the `ref` callback of the [GanttToolbar]({% slug api_gantt_gantttoolbar %}).
|
|
13
|
-
*
|
|
14
|
-
* For more information about Refs, refer to the [React Refs & Dom](https://reactjs.org/docs/refs-and-the-dom.html) article.
|
|
15
|
-
*/
|
|
16
|
-
/** @hidden */
|
|
17
|
-
export interface ToolbarHandle {
|
|
18
|
-
element: HTMLDivElement | null;
|
|
19
|
-
props: ToolbarProps;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* Represents the default `toolbar` component rendered by the [KendoReact Gantt component]({% slug overview_gantt %}).
|
|
23
|
-
*/
|
|
24
|
-
/** @hidden */
|
|
25
|
-
export declare const Toolbar: React.ForwardRefExoticComponent<ToolbarProps & React.RefAttributes<ToolbarHandle>>;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { ToolbarItemProps } from '@progress/kendo-react-buttons';
|
|
7
|
-
/**
|
|
8
|
-
* Represents the props of the KendoReact [GanttViewSelector]({% slug api_gantt_ganttviewselector %}) component.
|
|
9
|
-
*/
|
|
10
|
-
/** @hidden */
|
|
11
|
-
export interface ViewSelectorProps extends ToolbarItemProps {
|
|
12
|
-
children?: React.ReactNode;
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* Represents the object which is returned from the `ref` callback of the [GanttViewSelector]({% slug api_gantt_ganttviewselector %}).
|
|
16
|
-
*
|
|
17
|
-
* For more information about Refs, refer to the [React Refs & Dom](https://reactjs.org/docs/refs-and-the-dom.html) article.
|
|
18
|
-
*/
|
|
19
|
-
/** @hidden */
|
|
20
|
-
export interface ViewSelectorHandle {
|
|
21
|
-
element: HTMLSpanElement | null;
|
|
22
|
-
props: ViewSelectorProps;
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Represents the default `viewSelector` component rendered by the [KendoReact Gantt component]({% slug overview_gantt %}).
|
|
26
|
-
*/
|
|
27
|
-
/** @hidden */
|
|
28
|
-
export declare const ViewSelector: React.ForwardRefExoticComponent<ViewSelectorProps & React.RefAttributes<ViewSelectorHandle>>;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { ButtonProps } from '@progress/kendo-react-buttons';
|
|
6
|
-
import { GanttViewProps } from '../../../interfaces/GanttView';
|
|
7
|
-
/** @hidden */
|
|
8
|
-
export interface ViewSelectorItemProps extends ButtonProps {
|
|
9
|
-
view: GanttViewProps;
|
|
10
|
-
}
|
|
11
|
-
/** @hidden */
|
|
12
|
-
export declare const ViewSelectorItem: {
|
|
13
|
-
(props: ViewSelectorItemProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
displayName: string;
|
|
15
|
-
};
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
/** @hidden */
|
|
7
|
-
export declare const ViewSelectorList: React.ForwardRefExoticComponent<React.RefAttributes<unknown>>;
|
package/constants/index.d.ts
DELETED
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { MS_PER_DAY, MS_PER_HOUR, MS_PER_MINUTE } from '@progress/kendo-date-math';
|
|
6
|
-
import { TaskModelFields } from '../interfaces/TaskModelFields';
|
|
7
|
-
import { DependencyModelFields } from '../interfaces/DependencyModelFields';
|
|
8
|
-
/** The attribute required by the Gantt selection on Gantt `tr` elements. */
|
|
9
|
-
export declare const GANTT_ROW_INDEX_ATTRIBUTE = "data-grid-row-index";
|
|
10
|
-
/** The attribute required by the Gantt selection on Gantt `td` elements. */
|
|
11
|
-
export declare const GANTT_COL_INDEX_ATTRIBUTE = "data-grid-col-index";
|
|
12
|
-
/** Attribute which disable selection start from this element. */
|
|
13
|
-
export declare const GANTT_PREVENT_SELECTION_ELEMENT = "data-prevent-selection";
|
|
14
|
-
/** @hidden */
|
|
15
|
-
export { MS_PER_HOUR, MS_PER_MINUTE, MS_PER_DAY };
|
|
16
|
-
/** @hidden */
|
|
17
|
-
export declare const DEFAULT_DATE: number;
|
|
18
|
-
/** @hidden */
|
|
19
|
-
export declare const DAYS_IN_WEEK_COUNT = 7;
|
|
20
|
-
/** @hidden */
|
|
21
|
-
export declare const HOUR_DATE_FORMAT = "hh:mm a";
|
|
22
|
-
/** @hidden */
|
|
23
|
-
export declare const DAY_DATE_FORMAT: {
|
|
24
|
-
skeleton: string;
|
|
25
|
-
};
|
|
26
|
-
/** @hidden */
|
|
27
|
-
export declare const MONTH_DATE_FORMAT = "MMM";
|
|
28
|
-
/** @hidden */
|
|
29
|
-
export declare const YEAR_DATE_FORMAT = "yyyy";
|
|
30
|
-
/** @hidden */
|
|
31
|
-
export declare const DEFAULT_COLUMN_WIDTH = 100;
|
|
32
|
-
/** @hidden */
|
|
33
|
-
export declare const MILESTONE_OFFSET = 6;
|
|
34
|
-
/** @hidden */
|
|
35
|
-
export declare const DEPENDENCY_DRAG_HANDLE = "data-dependency-drag-handle";
|
|
36
|
-
/** @hidden */
|
|
37
|
-
export declare const DRAG_DIRECTION_START = "start";
|
|
38
|
-
/** @hidden */
|
|
39
|
-
export declare const DRAG_DIRECTION_FINISH = "finish";
|
|
40
|
-
/** @hidden */
|
|
41
|
-
export declare const DEPENDENCY_DRAG_HANDLE_START_ATT: {
|
|
42
|
-
"data-dependency-drag-handle": string;
|
|
43
|
-
};
|
|
44
|
-
/** @hidden */
|
|
45
|
-
export declare const DEPENDENCY_DRAG_HANDLE_FINISH_ATT: {
|
|
46
|
-
"data-dependency-drag-handle": string;
|
|
47
|
-
};
|
|
48
|
-
/** @hidden */
|
|
49
|
-
export declare const TASK_ID_ATT = "data-task-id";
|
|
50
|
-
/**
|
|
51
|
-
* @hidden
|
|
52
|
-
*/
|
|
53
|
-
export declare const DEFAULT_TASK_MODEL_FIELDS: TaskModelFields;
|
|
54
|
-
/**
|
|
55
|
-
* @hidden
|
|
56
|
-
*/
|
|
57
|
-
export declare const DEFAULT_DEPENDENCY_MODEL_FIELDS: DependencyModelFields;
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { TaskModelFields } from '../interfaces/TaskModelFields';
|
|
7
|
-
import { DependencyModelFields } from '../interfaces/DependencyModelFields';
|
|
8
|
-
import { GanttView } from '../interfaces/GanttView';
|
|
9
|
-
import { TreeListDataStateChangeEvent, TreeListSortChangeEvent, TreeListFilterChangeEvent, TreeListColumnMenuFilterChangeEvent, TreeListExpandChangeEvent, TreeListRowClickEvent, TreeListColumnResizeEvent, TreeListColumnReorderEvent, TreeListKeyDownEvent, TreeListSelectionChangeEvent, TreeListHeaderSelectionChangeEvent } from '@progress/kendo-react-treelist';
|
|
10
|
-
import { DateRange } from '../interfaces/DateRange';
|
|
11
|
-
import { GanttBaseProps } from '../interfaces/GanttBaseProps';
|
|
12
|
-
import { GanttDependencyCreateEvent, GanttTaskClickEvent, GanttTaskContextMenuEvent, GanttTaskDoubleClickEvent, GanttTaskRemoveClickEvent } from '../interfaces/events';
|
|
13
|
-
/** @hidden */
|
|
14
|
-
export type GanttTaskDataContextType = any[];
|
|
15
|
-
/** @hidden */
|
|
16
|
-
export declare const GanttTaskDataContext: React.Context<GanttTaskDataContextType>;
|
|
17
|
-
/** @hidden */
|
|
18
|
-
export declare const useGanttTaskDataContext: () => GanttTaskDataContextType;
|
|
19
|
-
/** @hidden */
|
|
20
|
-
export type GanttDependencyDataContextType = any[];
|
|
21
|
-
/** @hidden */
|
|
22
|
-
export declare const GanttDependencyDataContext: React.Context<GanttDependencyDataContextType>;
|
|
23
|
-
/** @hidden */
|
|
24
|
-
export declare const useGanttDependencyDataContext: () => GanttDependencyDataContextType;
|
|
25
|
-
/** @hidden */
|
|
26
|
-
export type GanttTaskModelFieldsContextType = TaskModelFields;
|
|
27
|
-
/** @hidden */
|
|
28
|
-
export declare const GanttTaskModelFieldsContext: React.Context<TaskModelFields>;
|
|
29
|
-
/** @hidden */
|
|
30
|
-
export declare const useGanttTaskModelFieldsContext: () => GanttTaskModelFieldsContextType;
|
|
31
|
-
/** @hidden */
|
|
32
|
-
export type GanttDependencyModelFieldsContextType = DependencyModelFields;
|
|
33
|
-
/** @hidden */
|
|
34
|
-
export declare const GanttDependencyModelFieldsContext: React.Context<DependencyModelFields>;
|
|
35
|
-
/** @hidden */
|
|
36
|
-
export declare const useGanttDependencyModelFieldsContext: () => GanttDependencyModelFieldsContextType;
|
|
37
|
-
/** @hidden */
|
|
38
|
-
export type GanttPropsContextType = GanttBaseProps;
|
|
39
|
-
/** @hidden */
|
|
40
|
-
export declare const GanttPropsContext: React.Context<GanttBaseProps>;
|
|
41
|
-
/** @hidden */
|
|
42
|
-
export declare const useGanttPropsContext: () => GanttPropsContextType;
|
|
43
|
-
/** @hidden */
|
|
44
|
-
export type GanttDateRangeContextType = DateRange;
|
|
45
|
-
/** @hidden */
|
|
46
|
-
export declare const GanttDateRangeContext: React.Context<DateRange>;
|
|
47
|
-
/** @hidden */
|
|
48
|
-
export declare const useGanttDateRangeContext: () => GanttDateRangeContextType;
|
|
49
|
-
/** @hidden */
|
|
50
|
-
export type GanttViewsContextType = GanttView[];
|
|
51
|
-
/** @hidden */
|
|
52
|
-
export declare const GanttViewsContext: React.Context<GanttViewsContextType>;
|
|
53
|
-
/** @hidden */
|
|
54
|
-
export declare const useGanttViewsContext: () => GanttViewsContextType;
|
|
55
|
-
/** @hidden */
|
|
56
|
-
export type GanttActiveViewContextType = [string, (activeView: string, event?: any) => void];
|
|
57
|
-
/** @hidden */
|
|
58
|
-
export declare const GanttActiveViewContext: React.Context<GanttActiveViewContextType>;
|
|
59
|
-
/** @hidden */
|
|
60
|
-
export declare const useGanttActiveViewContext: () => GanttActiveViewContextType;
|
|
61
|
-
/** @hidden */
|
|
62
|
-
export type GanttRowHeightContextType = number;
|
|
63
|
-
/** @hidden */
|
|
64
|
-
export declare const GanttRowHeightContext: React.Context<number>;
|
|
65
|
-
/** @hidden */
|
|
66
|
-
export declare const useGanttRowHeightContext: () => GanttRowHeightContextType;
|
|
67
|
-
/** @hidden */
|
|
68
|
-
export type GanttToolbarHeightContextType = number;
|
|
69
|
-
/** @hidden */
|
|
70
|
-
export declare const GanttToolbarHeightContext: React.Context<number>;
|
|
71
|
-
/** @hidden */
|
|
72
|
-
export declare const useGanttToolbarHeightContext: () => GanttToolbarHeightContextType;
|
|
73
|
-
/** @hidden */
|
|
74
|
-
export type GanttEventsContextType = {
|
|
75
|
-
onDataStateChange: (args: TreeListDataStateChangeEvent) => void;
|
|
76
|
-
onSortChange: (args: TreeListSortChangeEvent) => void;
|
|
77
|
-
onFilterChange: (args: TreeListFilterChangeEvent) => void;
|
|
78
|
-
onColumnMenuFilterChange: (args: TreeListColumnMenuFilterChangeEvent) => void;
|
|
79
|
-
onExpandChange: (args: TreeListExpandChangeEvent) => void;
|
|
80
|
-
onRowClick: (args: TreeListRowClickEvent) => void;
|
|
81
|
-
onRowDoubleClick: (args: TreeListRowClickEvent) => void;
|
|
82
|
-
onRowContextMenu: (args: TreeListRowClickEvent) => void;
|
|
83
|
-
onColumnResize: (args: TreeListColumnResizeEvent) => void;
|
|
84
|
-
onColumnReorder: (args: TreeListColumnReorderEvent) => void;
|
|
85
|
-
onDependencyCreate?: (args: GanttDependencyCreateEvent) => void;
|
|
86
|
-
onKeyDown?: (args: TreeListKeyDownEvent) => void;
|
|
87
|
-
onSelectionChange?: (args: TreeListSelectionChangeEvent) => void;
|
|
88
|
-
onHeaderSelectionChange?: (args: TreeListHeaderSelectionChangeEvent) => void;
|
|
89
|
-
};
|
|
90
|
-
/** @hidden */
|
|
91
|
-
export declare const GanttEventsContext: React.Context<GanttEventsContextType>;
|
|
92
|
-
/** @hidden */
|
|
93
|
-
export declare const useGanttEventsContext: () => GanttEventsContextType;
|
|
94
|
-
/** @hidden */
|
|
95
|
-
export type GanttTaskEventsContextType = {
|
|
96
|
-
onTaskClick: (args: GanttTaskClickEvent) => void;
|
|
97
|
-
onTaskDoubleClick: (args: GanttTaskDoubleClickEvent) => void;
|
|
98
|
-
onTaskContextMenu: (args: GanttTaskContextMenuEvent) => void;
|
|
99
|
-
onTaskRemoveClick?: (args: GanttTaskRemoveClickEvent) => void;
|
|
100
|
-
};
|
|
101
|
-
/** @hidden */
|
|
102
|
-
export declare const GanttTaskEventsContext: React.Context<GanttTaskEventsContextType>;
|
|
103
|
-
/** @hidden */
|
|
104
|
-
export declare const useGanttTaskEventsContext: () => GanttTaskEventsContextType;
|
|
105
|
-
/** @hidden */
|
|
106
|
-
export interface GanttContextProps {
|
|
107
|
-
children?: React.ReactNode;
|
|
108
|
-
views: GanttViewsContextType;
|
|
109
|
-
taskData: GanttTaskDataContextType;
|
|
110
|
-
dependencyData: GanttDependencyDataContextType;
|
|
111
|
-
taskModelFields: TaskModelFields;
|
|
112
|
-
dependencyModelFields: DependencyModelFields;
|
|
113
|
-
props: GanttBaseProps;
|
|
114
|
-
events: GanttEventsContextType;
|
|
115
|
-
taskEvents: GanttTaskEventsContextType;
|
|
116
|
-
dateRange: DateRange;
|
|
117
|
-
rowHeight: number;
|
|
118
|
-
toolbarHeight: number;
|
|
119
|
-
activeView: GanttActiveViewContextType;
|
|
120
|
-
}
|
|
121
|
-
/** @hidden */
|
|
122
|
-
export declare const GanttContext: {
|
|
123
|
-
({ children, taskData, dependencyData, taskModelFields, dependencyModelFields, props, dateRange, views, activeView, rowHeight, toolbarHeight, events, taskEvents }: GanttContextProps): import("react/jsx-runtime").JSX.Element;
|
|
124
|
-
displayName: string;
|
|
125
|
-
};
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import * as React from 'react';
|
|
6
|
-
import { NormalizedDragEvent } from '@progress/kendo-react-common';
|
|
7
|
-
import { Store, StoreAction } from '../hooks/useDictionaryStore';
|
|
8
|
-
import { GanttTaskHandle } from '../components/GanttTask';
|
|
9
|
-
/** @hidden */
|
|
10
|
-
export type GanttViewTasksContextType = [Store<GanttTaskHandle>, (event: StoreAction<GanttTaskHandle>) => void];
|
|
11
|
-
/** @hidden */
|
|
12
|
-
export declare const GanttViewTasksContext: React.Context<GanttViewTasksContextType>;
|
|
13
|
-
/** @hidden */
|
|
14
|
-
export declare const useGanttViewTasksContext: () => GanttViewTasksContextType;
|
|
15
|
-
/** @hidden */
|
|
16
|
-
export type GanttViewTimelineWidthContextType = number;
|
|
17
|
-
/** @hidden */
|
|
18
|
-
export declare const GanttViewTimelineWidthContext: React.Context<number>;
|
|
19
|
-
/** @hidden */
|
|
20
|
-
export declare const useGanttViewTimelineWidthContext: () => GanttViewTimelineWidthContextType;
|
|
21
|
-
/** @hidden */
|
|
22
|
-
export type GanttViewDependencyDragContextType = {
|
|
23
|
-
onDependencyHandlePress: (event: NormalizedDragEvent) => void;
|
|
24
|
-
onDependencyHandleDrag: (event: NormalizedDragEvent) => void;
|
|
25
|
-
onDependencyHandleRelease: (event: NormalizedDragEvent) => void;
|
|
26
|
-
isEnabled: boolean;
|
|
27
|
-
draggedId: string | null;
|
|
28
|
-
};
|
|
29
|
-
/** @hidden */
|
|
30
|
-
export declare const GanttViewDependencyDragContext: React.Context<GanttViewDependencyDragContextType>;
|
|
31
|
-
/** @hidden */
|
|
32
|
-
export declare const useGanttViewDependencyDragContext: () => GanttViewDependencyDragContextType;
|
|
33
|
-
/** @hidden */
|
|
34
|
-
export interface GanttViewContextProps {
|
|
35
|
-
children?: React.ReactNode;
|
|
36
|
-
tasksStore: [Store<GanttTaskHandle>, (event: StoreAction<GanttTaskHandle>) => void];
|
|
37
|
-
dependencyDrag: GanttViewDependencyDragContextType;
|
|
38
|
-
timelineWidth: number;
|
|
39
|
-
}
|
|
40
|
-
/** @hidden */
|
|
41
|
-
export declare const GanttViewContext: {
|
|
42
|
-
({ children, tasksStore: tasks, timelineWidth, dependencyDrag }: GanttViewContextProps): import("react/jsx-runtime").JSX.Element;
|
|
43
|
-
displayName: string;
|
|
44
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { FieldRenderProps } from '@progress/kendo-react-form';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export declare const FormDateTimePicker: (fieldRenderProps: FieldRenderProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**-----------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright © 2024 Progress Software Corporation. All rights reserved.
|
|
3
|
-
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
4
|
-
*-------------------------------------------------------------------------------------------*/
|
|
5
|
-
import { FieldRenderProps } from '@progress/kendo-react-form';
|
|
6
|
-
/**
|
|
7
|
-
* @hidden
|
|
8
|
-
*/
|
|
9
|
-
export declare const FormDropDownList: (fieldRenderProps: FieldRenderProps) => import("react/jsx-runtime").JSX.Element;
|