@progress/kendo-angular-gantt 2.0.4 → 2.0.5-dev.202211170749
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/bundles/kendo-angular-gantt.umd.js +1 -1
- package/columns/column-base.component.d.ts +6 -6
- package/columns/column-group.component.d.ts +6 -6
- package/columns/column.component.d.ts +6 -6
- package/columns/edit-template.directive.d.ts +2 -2
- package/columns/span-column.component.d.ts +6 -6
- package/esm2015/columns/edit-template.directive.js +2 -2
- package/esm2015/editing/task-fields.component.js +1 -1
- package/esm2015/gantt.component.js +1 -1
- package/esm2015/gantt.module.js +1 -1
- package/esm2015/package-metadata.js +1 -1
- package/fesm2015/kendo-angular-gantt.js +6 -6
- package/gantt.module.d.ts +1 -1
- package/models/events/cell-close-event.interface.d.ts +1 -1
- package/package.json +5 -5
|
@@ -35,7 +35,7 @@ export declare class GanttColumnBase extends ColumnBase {
|
|
|
35
35
|
/**
|
|
36
36
|
* Sets the custom styles for the table cells (excluding the footer and header ones) of the column. Under the hood,
|
|
37
37
|
* to apply the property, the `style` option uses the
|
|
38
|
-
* [NgStyle](
|
|
38
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
39
39
|
*/
|
|
40
40
|
style: {
|
|
41
41
|
[key: string]: string;
|
|
@@ -43,7 +43,7 @@ export declare class GanttColumnBase extends ColumnBase {
|
|
|
43
43
|
/**
|
|
44
44
|
* Sets the custom styles for the header cell of the column. Under the hood, to apply the property,
|
|
45
45
|
* the `headerStyle` option uses the
|
|
46
|
-
* [NgStyle](
|
|
46
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
47
47
|
*/
|
|
48
48
|
headerStyle: {
|
|
49
49
|
[key: string]: string;
|
|
@@ -51,14 +51,14 @@ export declare class GanttColumnBase extends ColumnBase {
|
|
|
51
51
|
/**
|
|
52
52
|
* Sets the custom styles for the footer cell of the column. Under the hood, to apply the property,
|
|
53
53
|
* the `footerStyle` option uses the
|
|
54
|
-
* [NgStyle](
|
|
54
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
55
55
|
*/
|
|
56
56
|
footerStyle: {
|
|
57
57
|
[key: string]: string;
|
|
58
58
|
};
|
|
59
59
|
/**
|
|
60
60
|
* Sets the custom CSS classes to the column cells. Under the hood, to apply the property, the `class` option uses the
|
|
61
|
-
* [NgClass](
|
|
61
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
62
62
|
* To customize header and footer column cells, use the `headerClass`
|
|
63
63
|
* and `footerClass` inputs.
|
|
64
64
|
*/
|
|
@@ -68,7 +68,7 @@ export declare class GanttColumnBase extends ColumnBase {
|
|
|
68
68
|
/**
|
|
69
69
|
* Sets the custom CSS classes to the column header cell. Under the hood, to apply the property,
|
|
70
70
|
* the `headerClass` option uses the
|
|
71
|
-
* [NgClass](
|
|
71
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
72
72
|
*/
|
|
73
73
|
headerClass: string | string[] | Set<string> | {
|
|
74
74
|
[key: string]: any;
|
|
@@ -76,7 +76,7 @@ export declare class GanttColumnBase extends ColumnBase {
|
|
|
76
76
|
/**
|
|
77
77
|
* Sets the custom CSS classes to the column footer cell. Under the hood, to apply the property,
|
|
78
78
|
* the `footerClass` option uses the
|
|
79
|
-
* [NgClass](
|
|
79
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
80
80
|
*/
|
|
81
81
|
footerClass: string | string[] | Set<string> | {
|
|
82
82
|
[key: string]: any;
|
|
@@ -51,7 +51,7 @@ export declare class GanttColumnGroupComponent extends ColumnGroupComponent {
|
|
|
51
51
|
/**
|
|
52
52
|
* Sets the custom styles for the table cells (excluding the footer and header ones) of the column. Under the hood,
|
|
53
53
|
* to apply the property, the `style` option uses the
|
|
54
|
-
* [NgStyle](
|
|
54
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
55
55
|
*/
|
|
56
56
|
style: {
|
|
57
57
|
[key: string]: string;
|
|
@@ -59,7 +59,7 @@ export declare class GanttColumnGroupComponent extends ColumnGroupComponent {
|
|
|
59
59
|
/**
|
|
60
60
|
* Sets the custom styles for the header cell of the column. Under the hood, to apply the property,
|
|
61
61
|
* the `headerStyle` option uses the
|
|
62
|
-
* [NgStyle](
|
|
62
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
63
63
|
*/
|
|
64
64
|
headerStyle: {
|
|
65
65
|
[key: string]: string;
|
|
@@ -67,14 +67,14 @@ export declare class GanttColumnGroupComponent extends ColumnGroupComponent {
|
|
|
67
67
|
/**
|
|
68
68
|
* Sets the custom styles for the footer cell of the column. Under the hood, to apply the property,
|
|
69
69
|
* the `footerStyle` option uses the
|
|
70
|
-
* [NgStyle](
|
|
70
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
71
71
|
*/
|
|
72
72
|
footerStyle: {
|
|
73
73
|
[key: string]: string;
|
|
74
74
|
};
|
|
75
75
|
/**
|
|
76
76
|
* Sets the custom CSS classes to the column cells. Under the hood, to apply the property, the `class` option uses the
|
|
77
|
-
* [NgClass](
|
|
77
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
78
78
|
* To customize header and footer column cells, use the `headerClass`
|
|
79
79
|
* and `footerClass` inputs.
|
|
80
80
|
*/
|
|
@@ -84,7 +84,7 @@ export declare class GanttColumnGroupComponent extends ColumnGroupComponent {
|
|
|
84
84
|
/**
|
|
85
85
|
* Sets the custom CSS classes to the column header cell. Under the hood, to apply the property,
|
|
86
86
|
* the `headerClass` option uses the
|
|
87
|
-
* [NgClass](
|
|
87
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
88
88
|
*/
|
|
89
89
|
headerClass: string | string[] | Set<string> | {
|
|
90
90
|
[key: string]: any;
|
|
@@ -92,7 +92,7 @@ export declare class GanttColumnGroupComponent extends ColumnGroupComponent {
|
|
|
92
92
|
/**
|
|
93
93
|
* Sets the custom CSS classes to the column footer cell. Under the hood, to apply the property,
|
|
94
94
|
* the `footerClass` option uses the
|
|
95
|
-
* [NgClass](
|
|
95
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
96
96
|
*/
|
|
97
97
|
footerClass: string | string[] | Set<string> | {
|
|
98
98
|
[key: string]: any;
|
|
@@ -78,7 +78,7 @@ export declare class GanttColumnComponent extends ColumnComponent {
|
|
|
78
78
|
/**
|
|
79
79
|
* Sets the custom styles for the table cells (excluding the footer and header ones) of the column. Under the hood,
|
|
80
80
|
* to apply the property, the `style` option uses the
|
|
81
|
-
* [NgStyle](
|
|
81
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
82
82
|
*/
|
|
83
83
|
style: {
|
|
84
84
|
[key: string]: string;
|
|
@@ -86,7 +86,7 @@ export declare class GanttColumnComponent extends ColumnComponent {
|
|
|
86
86
|
/**
|
|
87
87
|
* Sets the custom styles for the header cell of the column. Under the hood, to apply the property,
|
|
88
88
|
* the `headerStyle` option uses the
|
|
89
|
-
* [NgStyle](
|
|
89
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
90
90
|
*/
|
|
91
91
|
headerStyle: {
|
|
92
92
|
[key: string]: string;
|
|
@@ -94,14 +94,14 @@ export declare class GanttColumnComponent extends ColumnComponent {
|
|
|
94
94
|
/**
|
|
95
95
|
* Sets the custom styles for the footer cell of the column. Under the hood, to apply the property,
|
|
96
96
|
* the `footerStyle` option uses the
|
|
97
|
-
* [NgStyle](
|
|
97
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
98
98
|
*/
|
|
99
99
|
footerStyle: {
|
|
100
100
|
[key: string]: string;
|
|
101
101
|
};
|
|
102
102
|
/**
|
|
103
103
|
* Sets the custom CSS classes to the column cells. Under the hood, to apply the property, the `class` option uses the
|
|
104
|
-
* [NgClass](
|
|
104
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
105
105
|
* To customize header and footer column cells, use the `headerClass`
|
|
106
106
|
* and `footerClass` inputs.
|
|
107
107
|
*/
|
|
@@ -111,7 +111,7 @@ export declare class GanttColumnComponent extends ColumnComponent {
|
|
|
111
111
|
/**
|
|
112
112
|
* Sets the custom CSS classes to the column header cell. Under the hood, to apply the property,
|
|
113
113
|
* the `headerClass` option uses the
|
|
114
|
-
* [NgClass](
|
|
114
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
115
115
|
*/
|
|
116
116
|
headerClass: string | string[] | Set<string> | {
|
|
117
117
|
[key: string]: any;
|
|
@@ -119,7 +119,7 @@ export declare class GanttColumnComponent extends ColumnComponent {
|
|
|
119
119
|
/**
|
|
120
120
|
* Sets the custom CSS classes to the column footer cell. Under the hood, to apply the property,
|
|
121
121
|
* the `footerClass` option uses the
|
|
122
|
-
* [NgClass](
|
|
122
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
123
123
|
*/
|
|
124
124
|
footerClass: string | string[] | Set<string> | {
|
|
125
125
|
[key: string]: any;
|
|
@@ -13,8 +13,8 @@ import * as i0 from "@angular/core";
|
|
|
13
13
|
* - `column`—The current column instance.
|
|
14
14
|
* - `dataItem`—The current data item.
|
|
15
15
|
* - `cellContext`—An object used to pass context information to built-in directives.
|
|
16
|
-
* - `formGroup`—The current [`FormGroup`](
|
|
17
|
-
* If you use the Gantt inside [Template-Driven Forms](
|
|
16
|
+
* - `formGroup`—The current [`FormGroup`](link:site.data.urls.angular['formgroupapi']).
|
|
17
|
+
* If you use the Gantt inside [Template-Driven Forms](link:site.data.urls.angular['forms']), it will be `undefined`.
|
|
18
18
|
* - `isNew`—The state of the current item.
|
|
19
19
|
* - `rowIndex`—The current row index. If inside a new item row, `rowIndex` is `-1`.
|
|
20
20
|
*/
|
|
@@ -61,7 +61,7 @@ export declare class GanttSpanColumnComponent extends SpanColumnComponent {
|
|
|
61
61
|
/**
|
|
62
62
|
* Sets the custom styles for the table cells (excluding the footer and header ones) of the column. Under the hood,
|
|
63
63
|
* to apply the property, the `style` option uses the
|
|
64
|
-
* [NgStyle](
|
|
64
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
65
65
|
*/
|
|
66
66
|
style: {
|
|
67
67
|
[key: string]: string;
|
|
@@ -69,7 +69,7 @@ export declare class GanttSpanColumnComponent extends SpanColumnComponent {
|
|
|
69
69
|
/**
|
|
70
70
|
* Sets the custom styles for the header cell of the column. Under the hood, to apply the property,
|
|
71
71
|
* the `headerStyle` option uses the
|
|
72
|
-
* [NgStyle](
|
|
72
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
73
73
|
*/
|
|
74
74
|
headerStyle: {
|
|
75
75
|
[key: string]: string;
|
|
@@ -77,14 +77,14 @@ export declare class GanttSpanColumnComponent extends SpanColumnComponent {
|
|
|
77
77
|
/**
|
|
78
78
|
* Sets the custom styles for the footer cell of the column. Under the hood, to apply the property,
|
|
79
79
|
* the `footerStyle` option uses the
|
|
80
|
-
* [NgStyle](
|
|
80
|
+
* [NgStyle](link:site.data.urls.angular['ngstyleapi']) directive.
|
|
81
81
|
*/
|
|
82
82
|
footerStyle: {
|
|
83
83
|
[key: string]: string;
|
|
84
84
|
};
|
|
85
85
|
/**
|
|
86
86
|
* Sets the custom CSS classes to the column cells. Under the hood, to apply the property, the `class` option uses the
|
|
87
|
-
* [NgClass](
|
|
87
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
88
88
|
* To customize header and footer column cells, use the `headerClass`
|
|
89
89
|
* and `footerClass` inputs.
|
|
90
90
|
*/
|
|
@@ -94,7 +94,7 @@ export declare class GanttSpanColumnComponent extends SpanColumnComponent {
|
|
|
94
94
|
/**
|
|
95
95
|
* Sets the custom CSS classes to the column header cell. Under the hood, to apply the property,
|
|
96
96
|
* the `headerClass` option uses the
|
|
97
|
-
* [NgClass](
|
|
97
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
98
98
|
*/
|
|
99
99
|
headerClass: string | string[] | Set<string> | {
|
|
100
100
|
[key: string]: any;
|
|
@@ -102,7 +102,7 @@ export declare class GanttSpanColumnComponent extends SpanColumnComponent {
|
|
|
102
102
|
/**
|
|
103
103
|
* Sets the custom CSS classes to the column footer cell. Under the hood, to apply the property,
|
|
104
104
|
* the `footerClass` option uses the
|
|
105
|
-
* [NgClass](
|
|
105
|
+
* [NgClass](link:site.data.urls.angular['ngclassapi']) directive.
|
|
106
106
|
*/
|
|
107
107
|
footerClass: string | string[] | Set<string> | {
|
|
108
108
|
[key: string]: any;
|
|
@@ -13,8 +13,8 @@ import * as i0 from "@angular/core";
|
|
|
13
13
|
* - `column`—The current column instance.
|
|
14
14
|
* - `dataItem`—The current data item.
|
|
15
15
|
* - `cellContext`—An object used to pass context information to built-in directives.
|
|
16
|
-
* - `formGroup`—The current [`FormGroup`](
|
|
17
|
-
* If you use the Gantt inside [Template-Driven Forms](
|
|
16
|
+
* - `formGroup`—The current [`FormGroup`](link:site.data.urls.angular['formgroupapi']).
|
|
17
|
+
* If you use the Gantt inside [Template-Driven Forms](link:site.data.urls.angular['forms']), it will be `undefined`.
|
|
18
18
|
* - `isNew`—The state of the current item.
|
|
19
19
|
* - `rowIndex`—The current row index. If inside a new item row, `rowIndex` is `-1`.
|
|
20
20
|
*/
|
|
@@ -62,7 +62,7 @@ TaskFieldsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
62
62
|
></kendo-numerictextbox>
|
|
63
63
|
</kendo-formfield>
|
|
64
64
|
</form>
|
|
65
|
-
`, isInline: true, components: [{ type: i4.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { type: i5.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional"], exportAs: ["kendoLabel"] }, { type: i6.DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: ["value", "format", "twoDigitYearMax", "tabindex", "disabledDates", "popupSettings", "
|
|
65
|
+
`, isInline: true, components: [{ type: i4.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { type: i5.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional"], exportAs: ["kendoLabel"] }, { type: i6.DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: ["value", "format", "twoDigitYearMax", "tabindex", "disabledDates", "popupSettings", "title", "disabled", "readonly", "readOnlyInput", "cancelButton", "formatPlaceholder", "placeholder", "steps", "focusedDate", "calendarType", "animateCalendarNavigation", "weekNumber", "min", "max", "rangeValidation", "disabledDatesValidation", "incompleteDateValidation", "defaultTab", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur"], exportAs: ["kendo-datetimepicker"] }, { type: i7.TreeListSpacerComponent, selector: "kendo-treelist-spacer, kendo-treelist-pager-spacer", inputs: ["width"] }, { type: i4.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }], directives: [{ type: i8.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i8.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i8.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i9.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { type: i8.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i8.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i8.FormControlName, selector: "[formControlName]", inputs: ["disabled", "formControlName", "ngModel"], outputs: ["ngModelChange"] }] });
|
|
66
66
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TaskFieldsComponent, decorators: [{
|
|
67
67
|
type: Component,
|
|
68
68
|
args: [{
|
|
@@ -1671,7 +1671,7 @@ GanttComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version
|
|
|
1671
1671
|
<button kendoButton (click)="handleConfirmationDialogClose()">{{ getText('cancelButtonText') }}</button>
|
|
1672
1672
|
</kendo-dialog-actions>
|
|
1673
1673
|
</kendo-dialog>
|
|
1674
|
-
`, isInline: true, components: [{ type: i9.ToolbarComponent, selector: "kendo-gantt-toolbar", inputs: ["showAddTask", "showViewSelector", "views", "activeView", "toolbarTemplate", "position"], outputs: ["activeViewChange"] }, { type: i10.SplitterComponent, selector: "kendo-splitter", inputs: ["orientation"], outputs: ["layoutChange"], exportAs: ["kendoSplitter"] }, { type: i10.SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: ["order", "size", "min", "max", "resizable", "collapsible", "scrollable", "collapsed", "orientation", "containsSplitter", "overlayContent"], outputs: ["sizeChange", "collapsedChange"], exportAs: ["kendoSplitterPane"] }, { type: i11.TreeListComponent, selector: "kendo-treelist", inputs: ["aria-label", "data", "pageSize", "height", "rowHeight", "skip", "scrollable", "sort", "trackBy", "filter", "virtualColumns", "filterable", "sortable", "pageable", "navigable", "navigatable", "autoSize", "rowClass", "resizable", "reorderable", "loading", "columnMenu", "hideHeader", "idField", "selectable", "isSelected", "columns", "fetchChildren", "hasChildren", "isExpanded"], outputs: ["selectionChange", "filterChange", "pageChange", "sortChange", "dataStateChange", "edit", "cancel", "save", "remove", "add", "cellClose", "cellClick", "pdfExport", "excelExport", "columnResize", "columnReorder", "columnVisibilityChange", "columnLockedChange", "scrollBottom", "contentScroll", "expand", "collapse", "expandStateChange"], exportAs: ["kendoTreeList"] }, { type: i11.CustomMessagesComponent, selector: "kendo-treelist-messages" }, { type: i12.GanttTimelineComponent, selector: "kendo-gantt-timeline", inputs: ["rows", "slots", "groupSlots", "tableWidth", "activeView", "taskContentTemplate", "taskTemplate", "summaryTaskTemplate", "taskClass", "renderDependencyDragClues", "dragScrollSettings", "selectable", "isTaskSelected", "isExpanded", "dependencies"], outputs: ["timelineContainerPress", "timelineContainerDrag", "timelineContainerRelease"] }, { type: i13.EditDialogComponent, selector: "kendo-gantt-edit-dialog", inputs: ["data"] }, { type: i14.DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { type: i14.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type: i11.TreeListSpacerComponent, selector: "kendo-treelist-spacer, kendo-treelist-pager-spacer", inputs: ["width"] }], directives: [{ type: i15.LocalizedMessagesDirective, selector: "[kendoGanttLocalizedMessages]" }, { type: i16.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i17.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i18.ButtonDirective, selector: "button[kendoButton], span[kendoButton]", inputs: ["toggleable", "togglable", "selected", "tabIndex", "icon", "iconClass", "imageUrl", "disabled", "size", "rounded", "fillMode", "themeColor", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
1674
|
+
`, isInline: true, components: [{ type: i9.ToolbarComponent, selector: "kendo-gantt-toolbar", inputs: ["showAddTask", "showViewSelector", "views", "activeView", "toolbarTemplate", "position"], outputs: ["activeViewChange"] }, { type: i10.SplitterComponent, selector: "kendo-splitter", inputs: ["orientation", "resizeStep"], outputs: ["layoutChange"], exportAs: ["kendoSplitter"] }, { type: i10.SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: ["order", "size", "separatorLabel", "min", "max", "resizable", "collapsible", "scrollable", "collapsed", "orientation", "containsSplitter", "overlayContent"], outputs: ["sizeChange", "collapsedChange"], exportAs: ["kendoSplitterPane"] }, { type: i11.TreeListComponent, selector: "kendo-treelist", inputs: ["aria-label", "data", "pageSize", "height", "rowHeight", "skip", "scrollable", "sort", "trackBy", "filter", "virtualColumns", "filterable", "sortable", "pageable", "navigable", "navigatable", "autoSize", "rowClass", "resizable", "reorderable", "loading", "columnMenu", "hideHeader", "idField", "selectable", "isSelected", "columns", "fetchChildren", "hasChildren", "isExpanded"], outputs: ["selectionChange", "filterChange", "pageChange", "sortChange", "dataStateChange", "edit", "cancel", "save", "remove", "add", "cellClose", "cellClick", "pdfExport", "excelExport", "columnResize", "columnReorder", "columnVisibilityChange", "columnLockedChange", "scrollBottom", "contentScroll", "expand", "collapse", "expandStateChange"], exportAs: ["kendoTreeList"] }, { type: i11.CustomMessagesComponent, selector: "kendo-treelist-messages" }, { type: i12.GanttTimelineComponent, selector: "kendo-gantt-timeline", inputs: ["rows", "slots", "groupSlots", "tableWidth", "activeView", "taskContentTemplate", "taskTemplate", "summaryTaskTemplate", "taskClass", "renderDependencyDragClues", "dragScrollSettings", "selectable", "isTaskSelected", "isExpanded", "dependencies"], outputs: ["timelineContainerPress", "timelineContainerDrag", "timelineContainerRelease"] }, { type: i13.EditDialogComponent, selector: "kendo-gantt-edit-dialog", inputs: ["data"] }, { type: i14.DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { type: i14.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type: i11.TreeListSpacerComponent, selector: "kendo-treelist-spacer, kendo-treelist-pager-spacer", inputs: ["width"] }], directives: [{ type: i15.LocalizedMessagesDirective, selector: "[kendoGanttLocalizedMessages]" }, { type: i16.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i17.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i18.ButtonDirective, selector: "button[kendoButton], span[kendoButton]", inputs: ["toggleable", "togglable", "selected", "tabIndex", "icon", "iconClass", "imageUrl", "disabled", "size", "rounded", "fillMode", "themeColor", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
1675
1675
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: GanttComponent, decorators: [{
|
|
1676
1676
|
type: Component,
|
|
1677
1677
|
args: [{
|
package/esm2015/gantt.module.js
CHANGED
|
@@ -112,7 +112,7 @@ const DECLARATIONS = [
|
|
|
112
112
|
TaskFieldsComponent
|
|
113
113
|
];
|
|
114
114
|
/**
|
|
115
|
-
* Represents the [NgModule](
|
|
115
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
116
116
|
* definition for the Gantt component.
|
|
117
117
|
*
|
|
118
118
|
* @example
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-gantt',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1668671274,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -47,7 +47,7 @@ const packageMetadata = {
|
|
|
47
47
|
name: '@progress/kendo-angular-gantt',
|
|
48
48
|
productName: 'Kendo UI for Angular',
|
|
49
49
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
50
|
-
publishDate:
|
|
50
|
+
publishDate: 1668671274,
|
|
51
51
|
version: '',
|
|
52
52
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
53
53
|
};
|
|
@@ -3087,8 +3087,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImpo
|
|
|
3087
3087
|
* - `column`—The current column instance.
|
|
3088
3088
|
* - `dataItem`—The current data item.
|
|
3089
3089
|
* - `cellContext`—An object used to pass context information to built-in directives.
|
|
3090
|
-
* - `formGroup`—The current [`FormGroup`](
|
|
3091
|
-
* If you use the Gantt inside [Template-Driven Forms](
|
|
3090
|
+
* - `formGroup`—The current [`FormGroup`](link:site.data.urls.angular['formgroupapi']).
|
|
3091
|
+
* If you use the Gantt inside [Template-Driven Forms](link:site.data.urls.angular['forms']), it will be `undefined`.
|
|
3092
3092
|
* - `isNew`—The state of the current item.
|
|
3093
3093
|
* - `rowIndex`—The current row index. If inside a new item row, `rowIndex` is `-1`.
|
|
3094
3094
|
*/
|
|
@@ -4113,7 +4113,7 @@ TaskFieldsComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", ve
|
|
|
4113
4113
|
></kendo-numerictextbox>
|
|
4114
4114
|
</kendo-formfield>
|
|
4115
4115
|
</form>
|
|
4116
|
-
`, isInline: true, components: [{ type: i4.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { type: i5.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional"], exportAs: ["kendoLabel"] }, { type: i6$1.DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: ["value", "format", "twoDigitYearMax", "tabindex", "disabledDates", "popupSettings", "
|
|
4116
|
+
`, isInline: true, components: [{ type: i4.FormFieldComponent, selector: "kendo-formfield", inputs: ["showHints", "orientation", "showErrors"] }, { type: i5.LabelComponent, selector: "kendo-label", inputs: ["text", "for", "optional"], exportAs: ["kendoLabel"] }, { type: i6$1.DateTimePickerComponent, selector: "kendo-datetimepicker", inputs: ["value", "format", "twoDigitYearMax", "tabindex", "disabledDates", "popupSettings", "title", "disabled", "readonly", "readOnlyInput", "cancelButton", "formatPlaceholder", "placeholder", "steps", "focusedDate", "calendarType", "animateCalendarNavigation", "weekNumber", "min", "max", "rangeValidation", "disabledDatesValidation", "incompleteDateValidation", "defaultTab", "size", "rounded", "fillMode"], outputs: ["valueChange", "open", "close", "focus", "blur"], exportAs: ["kendo-datetimepicker"] }, { type: i11.TreeListSpacerComponent, selector: "kendo-treelist-spacer, kendo-treelist-pager-spacer", inputs: ["width"] }, { type: i4.NumericTextBoxComponent, selector: "kendo-numerictextbox", inputs: ["focusableId", "disabled", "readonly", "title", "autoCorrect", "format", "max", "min", "decimals", "placeholder", "step", "spinners", "rangeValidation", "tabindex", "tabIndex", "changeValueOnScroll", "selectOnFocus", "value", "maxlength", "size", "rounded", "fillMode"], outputs: ["valueChange", "focus", "blur"], exportAs: ["kendoNumericTextBox"] }], directives: [{ type: i8$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i8$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i8$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i4.TextBoxDirective, selector: "input[kendoTextBox]", inputs: ["value"] }, { type: i8$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { type: i8$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i8$1.FormControlName, selector: "[formControlName]", inputs: ["disabled", "formControlName", "ngModel"], outputs: ["ngModelChange"] }] });
|
|
4117
4117
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: TaskFieldsComponent, decorators: [{
|
|
4118
4118
|
type: Component,
|
|
4119
4119
|
args: [{
|
|
@@ -6284,7 +6284,7 @@ GanttComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version
|
|
|
6284
6284
|
<button kendoButton (click)="handleConfirmationDialogClose()">{{ getText('cancelButtonText') }}</button>
|
|
6285
6285
|
</kendo-dialog-actions>
|
|
6286
6286
|
</kendo-dialog>
|
|
6287
|
-
`, isInline: true, components: [{ type: ToolbarComponent, selector: "kendo-gantt-toolbar", inputs: ["showAddTask", "showViewSelector", "views", "activeView", "toolbarTemplate", "position"], outputs: ["activeViewChange"] }, { type: i5$2.SplitterComponent, selector: "kendo-splitter", inputs: ["orientation"], outputs: ["layoutChange"], exportAs: ["kendoSplitter"] }, { type: i5$2.SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: ["order", "size", "min", "max", "resizable", "collapsible", "scrollable", "collapsed", "orientation", "containsSplitter", "overlayContent"], outputs: ["sizeChange", "collapsedChange"], exportAs: ["kendoSplitterPane"] }, { type: i11.TreeListComponent, selector: "kendo-treelist", inputs: ["aria-label", "data", "pageSize", "height", "rowHeight", "skip", "scrollable", "sort", "trackBy", "filter", "virtualColumns", "filterable", "sortable", "pageable", "navigable", "navigatable", "autoSize", "rowClass", "resizable", "reorderable", "loading", "columnMenu", "hideHeader", "idField", "selectable", "isSelected", "columns", "fetchChildren", "hasChildren", "isExpanded"], outputs: ["selectionChange", "filterChange", "pageChange", "sortChange", "dataStateChange", "edit", "cancel", "save", "remove", "add", "cellClose", "cellClick", "pdfExport", "excelExport", "columnResize", "columnReorder", "columnVisibilityChange", "columnLockedChange", "scrollBottom", "contentScroll", "expand", "collapse", "expandStateChange"], exportAs: ["kendoTreeList"] }, { type: i11.CustomMessagesComponent, selector: "kendo-treelist-messages" }, { type: GanttTimelineComponent, selector: "kendo-gantt-timeline", inputs: ["rows", "slots", "groupSlots", "tableWidth", "activeView", "taskContentTemplate", "taskTemplate", "summaryTaskTemplate", "taskClass", "renderDependencyDragClues", "dragScrollSettings", "selectable", "isTaskSelected", "isExpanded", "dependencies"], outputs: ["timelineContainerPress", "timelineContainerDrag", "timelineContainerRelease"] }, { type: EditDialogComponent, selector: "kendo-gantt-edit-dialog", inputs: ["data"] }, { type: i4$2.DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { type: i4$2.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type: i11.TreeListSpacerComponent, selector: "kendo-treelist-spacer, kendo-treelist-pager-spacer", inputs: ["width"] }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoGanttLocalizedMessages]" }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i2.ButtonDirective, selector: "button[kendoButton], span[kendoButton]", inputs: ["toggleable", "togglable", "selected", "tabIndex", "icon", "iconClass", "imageUrl", "disabled", "size", "rounded", "fillMode", "themeColor", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
6287
|
+
`, isInline: true, components: [{ type: ToolbarComponent, selector: "kendo-gantt-toolbar", inputs: ["showAddTask", "showViewSelector", "views", "activeView", "toolbarTemplate", "position"], outputs: ["activeViewChange"] }, { type: i5$2.SplitterComponent, selector: "kendo-splitter", inputs: ["orientation", "resizeStep"], outputs: ["layoutChange"], exportAs: ["kendoSplitter"] }, { type: i5$2.SplitterPaneComponent, selector: "kendo-splitter-pane", inputs: ["order", "size", "separatorLabel", "min", "max", "resizable", "collapsible", "scrollable", "collapsed", "orientation", "containsSplitter", "overlayContent"], outputs: ["sizeChange", "collapsedChange"], exportAs: ["kendoSplitterPane"] }, { type: i11.TreeListComponent, selector: "kendo-treelist", inputs: ["aria-label", "data", "pageSize", "height", "rowHeight", "skip", "scrollable", "sort", "trackBy", "filter", "virtualColumns", "filterable", "sortable", "pageable", "navigable", "navigatable", "autoSize", "rowClass", "resizable", "reorderable", "loading", "columnMenu", "hideHeader", "idField", "selectable", "isSelected", "columns", "fetchChildren", "hasChildren", "isExpanded"], outputs: ["selectionChange", "filterChange", "pageChange", "sortChange", "dataStateChange", "edit", "cancel", "save", "remove", "add", "cellClose", "cellClick", "pdfExport", "excelExport", "columnResize", "columnReorder", "columnVisibilityChange", "columnLockedChange", "scrollBottom", "contentScroll", "expand", "collapse", "expandStateChange"], exportAs: ["kendoTreeList"] }, { type: i11.CustomMessagesComponent, selector: "kendo-treelist-messages" }, { type: GanttTimelineComponent, selector: "kendo-gantt-timeline", inputs: ["rows", "slots", "groupSlots", "tableWidth", "activeView", "taskContentTemplate", "taskTemplate", "summaryTaskTemplate", "taskClass", "renderDependencyDragClues", "dragScrollSettings", "selectable", "isTaskSelected", "isExpanded", "dependencies"], outputs: ["timelineContainerPress", "timelineContainerDrag", "timelineContainerRelease"] }, { type: EditDialogComponent, selector: "kendo-gantt-edit-dialog", inputs: ["data"] }, { type: i4$2.DialogComponent, selector: "kendo-dialog", inputs: ["actions", "actionsLayout", "autoFocusedElement", "title", "width", "minWidth", "maxWidth", "height", "minHeight", "maxHeight", "animation"], outputs: ["action", "close"], exportAs: ["kendoDialog"] }, { type: i4$2.DialogActionsComponent, selector: "kendo-dialog-actions", inputs: ["actions", "layout"], outputs: ["action"] }, { type: i11.TreeListSpacerComponent, selector: "kendo-treelist-spacer, kendo-treelist-pager-spacer", inputs: ["width"] }], directives: [{ type: LocalizedMessagesDirective, selector: "[kendoGanttLocalizedMessages]" }, { type: i6.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i8.EventsOutsideAngularDirective, selector: "[kendoEventsOutsideAngular]", inputs: ["kendoEventsOutsideAngular", "scope"] }, { type: i2.ButtonDirective, selector: "button[kendoButton], span[kendoButton]", inputs: ["toggleable", "togglable", "selected", "tabIndex", "icon", "iconClass", "imageUrl", "disabled", "size", "rounded", "fillMode", "themeColor", "role", "primary", "look"], outputs: ["selectedChange", "click"], exportAs: ["kendoButton"] }] });
|
|
6288
6288
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0, type: GanttComponent, decorators: [{
|
|
6289
6289
|
type: Component,
|
|
6290
6290
|
args: [{
|
|
@@ -7562,7 +7562,7 @@ const DECLARATIONS = [
|
|
|
7562
7562
|
TaskFieldsComponent
|
|
7563
7563
|
];
|
|
7564
7564
|
/**
|
|
7565
|
-
* Represents the [NgModule](
|
|
7565
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
7566
7566
|
* definition for the Gantt component.
|
|
7567
7567
|
*
|
|
7568
7568
|
* @example
|
package/gantt.module.d.ts
CHANGED
|
@@ -57,7 +57,7 @@ import * as i51 from "@progress/kendo-angular-popup";
|
|
|
57
57
|
import * as i52 from "@progress/kendo-angular-grid";
|
|
58
58
|
import * as i53 from "@progress/kendo-angular-dropdowns";
|
|
59
59
|
/**
|
|
60
|
-
* Represents the [NgModule](
|
|
60
|
+
* Represents the [NgModule](link:site.data.urls.angular['ngmoduleapi'])
|
|
61
61
|
* definition for the Gantt component.
|
|
62
62
|
*
|
|
63
63
|
* @example
|
|
@@ -26,7 +26,7 @@ export declare class CellCloseEvent extends PreventableEvent {
|
|
|
26
26
|
*/
|
|
27
27
|
column: any;
|
|
28
28
|
/**
|
|
29
|
-
* The [`FormGroup`](
|
|
29
|
+
* The [`FormGroup`](link:site.data.urls.angular['formgroupapi']) that is used to edit the cell which will be closed.
|
|
30
30
|
*/
|
|
31
31
|
formGroup: any;
|
|
32
32
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-gantt",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5-dev.202211170749",
|
|
4
4
|
"description": "Kendo UI Angular Gantt",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"tslib": "^2.3.1"
|
|
29
29
|
},
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@angular/common": "12 -
|
|
32
|
-
"@angular/core": "12 -
|
|
33
|
-
"@angular/forms": "12 -
|
|
34
|
-
"@angular/platform-browser": "12 -
|
|
31
|
+
"@angular/common": "12 - 15",
|
|
32
|
+
"@angular/core": "12 - 15",
|
|
33
|
+
"@angular/forms": "12 - 15",
|
|
34
|
+
"@angular/platform-browser": "12 - 15",
|
|
35
35
|
"@progress/kendo-angular-buttons": "^8.0.0",
|
|
36
36
|
"@progress/kendo-angular-common": "^3.0.0",
|
|
37
37
|
"@progress/kendo-angular-dialog": "^7.0.0",
|