@syncfusion/ej2-angular-gantt 31.2.4 → 31.2.5-ngcc

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.
Files changed (46) hide show
  1. package/@syncfusion/ej2-angular-gantt.es5.js +934 -0
  2. package/@syncfusion/ej2-angular-gantt.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-gantt.js +882 -0
  4. package/@syncfusion/ej2-angular-gantt.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/README.md +2 -9
  7. package/dist/ej2-angular-gantt.umd.js +1055 -0
  8. package/dist/ej2-angular-gantt.umd.js.map +1 -0
  9. package/dist/ej2-angular-gantt.umd.min.js +11 -0
  10. package/dist/ej2-angular-gantt.umd.min.js.map +1 -0
  11. package/ej2-angular-gantt.d.ts +5 -0
  12. package/ej2-angular-gantt.metadata.json +1 -0
  13. package/package.json +9 -22
  14. package/public_api.d.ts +1 -1
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +2 -2
  17. package/src/gantt/adddialogfields.directive.d.ts +53 -58
  18. package/src/gantt/columns.directive.d.ts +209 -214
  19. package/src/gantt/dayworkingtime.directive.d.ts +36 -41
  20. package/src/gantt/editdialogfields.directive.d.ts +53 -58
  21. package/src/gantt/eventmarkers.directive.d.ts +42 -47
  22. package/src/gantt/gantt-all.module.d.ts +22 -28
  23. package/src/gantt/gantt.component.d.ts +143 -146
  24. package/src/gantt/gantt.module.d.ts +5 -18
  25. package/src/gantt/holidays.directive.d.ts +46 -51
  26. package/src/gantt/weekworkingtime.directive.d.ts +38 -43
  27. package/src/index.d.ts +11 -11
  28. package/CHANGELOG.md +0 -2860
  29. package/esm2020/public_api.mjs +0 -2
  30. package/esm2020/src/gantt/adddialogfields.directive.mjs +0 -58
  31. package/esm2020/src/gantt/columns.directive.mjs +0 -90
  32. package/esm2020/src/gantt/dayworkingtime.directive.mjs +0 -58
  33. package/esm2020/src/gantt/editdialogfields.directive.mjs +0 -58
  34. package/esm2020/src/gantt/eventmarkers.directive.mjs +0 -57
  35. package/esm2020/src/gantt/gantt-all.module.mjs +0 -74
  36. package/esm2020/src/gantt/gantt.component.mjs +0 -297
  37. package/esm2020/src/gantt/gantt.module.mjs +0 -88
  38. package/esm2020/src/gantt/holidays.directive.mjs +0 -58
  39. package/esm2020/src/gantt/weekworkingtime.directive.mjs +0 -58
  40. package/esm2020/src/index.mjs +0 -12
  41. package/esm2020/syncfusion-ej2-angular-gantt.mjs +0 -5
  42. package/fesm2015/syncfusion-ej2-angular-gantt.mjs +0 -857
  43. package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +0 -1
  44. package/fesm2020/syncfusion-ej2-angular-gantt.mjs +0 -857
  45. package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +0 -1
  46. package/syncfusion-ej2-angular-gantt.d.ts +0 -5
@@ -1,214 +1,209 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-column` directive represent a column of the Angular Gantt.
6
- * It must be contained in a Gantt component(`ejs-gantt`).
7
- * ```html
8
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
9
- * <e-columns>
10
- * <e-column field='ID' width='150'></e-column>
11
- * <e-column field='taskName' headerText='Task Name' width='200'></e-column>
12
- * </e-columns>
13
- * </ejs-gantt>
14
- * ```
15
- */
16
- export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * To define column type.
21
- */
22
- type: any;
23
- /**
24
- * If `allowEditing` set to false, then it disables editing of a particular column.
25
- * By default all columns are editable.
26
- * @default true
27
- */
28
- allowEditing: any;
29
- /**
30
- * If `allowFiltering` set to false, then it disables filtering option and filter bar element of a particular column.
31
- * By default all columns are filterable.
32
- * @default true
33
- */
34
- allowFiltering: any;
35
- /**
36
- * If `allowReordering` set to false, then it disables reorder of a particular column.
37
- * By default all columns can be reorder.
38
- * @default true
39
- */
40
- allowReordering: any;
41
- /**
42
- * If `allowResizing` is set to false, it disables resize option of a particular column.
43
- * By default all the columns can be resized.
44
- * @default true
45
- */
46
- allowResizing: any;
47
- /**
48
- * If `allowSorting` set to false, then it disables sorting option of a particular column.
49
- * By default all columns are sortable.
50
- * @default true
51
- */
52
- allowSorting: any;
53
- /**
54
- * Defines the overflow mode for cell content. The available modes are:
55
- * * `Clip` - Truncates the cell content when it overflows its area.
56
- * * `Ellipsis` - Displays an ellipsis when the cell content overflows its area.
57
- * * `EllipsisWithTooltip` - Displays an ellipsis when the cell content overflows its area, and shows a tooltip on hover over the ellipsis.
58
- * @default Syncfusion.EJ2.Grids.ClipMode.EllipsisWithTooltip
59
- * @isenumeration true
60
- * @asptype Syncfusion.EJ2.Grids.ClipMode
61
- */
62
- clipMode: any;
63
- /**
64
- * The CSS styles and attributes of the content cells of a particular column can be customized.
65
- * @default null
66
- */
67
- customAttributes: any;
68
- /**
69
- * If `disableHtmlEncode` is set to true, it disables HTML encoding for the content of specific column.
70
- * @default false
71
- */
72
- disableHtmlEncode: any;
73
- /**
74
- * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.
75
- * @default false
76
- */
77
- displayAsCheckBox: any;
78
- /**
79
- * Defines the `IEditCell` object to customize default edit cell.
80
- * @default {}
81
- */
82
- edit: any;
83
- /**
84
- * Defines the type of component used for editing the field.
85
- * @default 'stringedit'
86
- */
87
- editType: any;
88
- /**
89
- * Defines the field name of column which is mapped with mapping name of DataSource.
90
- * The `field` name must be a valid JavaScript identifier,
91
- * the first character must be an alphabet and should not contain spaces and special characters.
92
- * @default null
93
- */
94
- field: any;
95
- /**
96
- * It is used to customize the default filter options for a specific columns.
97
- * * ui - to render custom component for specific column. It has following functions:
98
- * * ui.create - It is used for creating custom components.
99
- * * ui.read - It is used for read the value from the component.
100
- * * ui.write - It is used to apply component model as dynamically.
101
- * @default null
102
- */
103
- filter: any;
104
- /**
105
- * It is used to change display value with the given format and does not affect the original data.
106
- * Gets the format from the user which can be standard or custom
107
- * [`number`](https://ej2.syncfusion.com/documentation/common/internationalization/#number-formatting)
108
- * and [`date`](https://ej2.syncfusion.com/documentation/common/internationalization/#date-formatting) formats.
109
- * @default null
110
- * @asptype string
111
- */
112
- format: any;
113
- /**
114
- * Defines the method which is used to achieve custom formatting from an external function.
115
- * This function triggers before rendering of each cell.
116
- * @default null
117
- */
118
- formatter: any;
119
- /**
120
- * Defines the header text of column which is used to display in column header.
121
- * If `headerText` is not defined, then field name value will be assigned to header text.
122
- * @default null
123
- */
124
- headerText: any;
125
- /**
126
- * Define the alignment of column header which is used to align the text of column header.
127
- * @default Syncfusion.EJ2.Grids.TextAlign.Left
128
- * @isenumeration true
129
- * @asptype Syncfusion.EJ2.Grids.TextAlign
130
- */
131
- headerTextAlign: any;
132
- /**
133
- * Column visibility can change based on [`Media Queries`](http://cssmediaqueries.com/what-are-css-media-queries.html).
134
- * `hideAtMedia` accepts only valid Media Queries.
135
- * @default null
136
- */
137
- hideAtMedia: any;
138
- /**
139
- * If `isPrimaryKey` is set to true, considers this column as the primary key constraint.
140
- * @default false
141
- */
142
- isPrimaryKey: any;
143
- /**
144
- * Defines the maximum width of the column in pixel or percentage, which will restrict resizing beyond this pixel or percentage.
145
- * @default null
146
- */
147
- maxWidth: any;
148
- /**
149
- * Defines the minimum width of the column in pixels or percentage.
150
- * @default null
151
- */
152
- minWidth: any;
153
- /**
154
- * Defines the sort comparer property.
155
- * @default null
156
- */
157
- sortComparer: any;
158
- /**
159
- * Defines the alignment of the column in both header and content cells.
160
- * @default Syncfusion.EJ2.Grids.TextAlign.Left
161
- * @isenumeration true
162
- * @asptype Syncfusion.EJ2.Grids.TextAlign
163
- */
164
- textAlign: any;
165
- /**
166
- * Defines validation rules for data before creating or updating records.
167
- * The rules are used to ensure that data meets specific criteria before it is saved or updated.
168
- * @default null
169
- */
170
- validationRules: any;
171
- /**
172
- * Defines the method used to apply custom cell values from external function and display this on each cell rendered.
173
- * @default null
174
- */
175
- valueAccessor: any;
176
- /**
177
- * If `visible` is set to false, hides the particular column. By default, columns are displayed.
178
- * @default true
179
- */
180
- visible: any;
181
- /**
182
- * Defines the width of the column in pixels or percentage.
183
- * @default null
184
- */
185
- width: any;
186
- /**
187
- * Defines the column template that renders customized element in each cell of the column.
188
- * It accepts either template string or HTML element ID.
189
- * @default null
190
- * @asptype string
191
- */
192
- template: any;
193
- /**
194
- * Defines the header template as string or HTML element ID which is used to add customized element in the column header.
195
- * @default null
196
- * @asptype string
197
- */
198
- headerTemplate: any;
199
- editTemplate: any;
200
- filter_itemTemplate: any;
201
- filterTemplate: any;
202
- constructor(viewContainerRef: ViewContainerRef);
203
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnDirective, never>;
204
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnDirective, "ejs-gantt>e-columns>e-column", never, { "allowEditing": "allowEditing"; "allowFiltering": "allowFiltering"; "allowReordering": "allowReordering"; "allowResizing": "allowResizing"; "allowSorting": "allowSorting"; "clipMode": "clipMode"; "customAttributes": "customAttributes"; "disableHtmlEncode": "disableHtmlEncode"; "displayAsCheckBox": "displayAsCheckBox"; "edit": "edit"; "editType": "editType"; "field": "field"; "filter": "filter"; "format": "format"; "formatter": "formatter"; "headerTemplate": "headerTemplate"; "headerText": "headerText"; "headerTextAlign": "headerTextAlign"; "hideAtMedia": "hideAtMedia"; "isPrimaryKey": "isPrimaryKey"; "maxWidth": "maxWidth"; "minWidth": "minWidth"; "sortComparer": "sortComparer"; "template": "template"; "textAlign": "textAlign"; "type": "type"; "validationRules": "validationRules"; "valueAccessor": "valueAccessor"; "visible": "visible"; "width": "width"; }, {}, ["template", "headerTemplate", "editTemplate", "filter_itemTemplate", "filterTemplate"]>;
205
- }
206
- /**
207
- * Column Array Directive
208
- * @private
209
- */
210
- export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
211
- constructor();
212
- static ɵfac: i0.ɵɵFactoryDeclaration<ColumnsDirective, never>;
213
- static ɵdir: i0.ɵɵDirectiveDeclaration<ColumnsDirective, "ejs-gantt>e-columns", never, {}, {}, ["children"]>;
214
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-column` directive represent a column of the Angular Gantt.
5
+ * It must be contained in a Gantt component(`ejs-gantt`).
6
+ * ```html
7
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
8
+ * <e-columns>
9
+ * <e-column field='ID' width='150'></e-column>
10
+ * <e-column field='taskName' headerText='Task Name' width='200'></e-column>
11
+ * </e-columns>
12
+ * </ejs-gantt>
13
+ * ```
14
+ */
15
+ export declare class ColumnDirective extends ComplexBase<ColumnDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * To define column type.
20
+ */
21
+ type: any;
22
+ /**
23
+ * If `allowEditing` set to false, then it disables editing of a particular column.
24
+ * By default all columns are editable.
25
+ * @default true
26
+ */
27
+ allowEditing: any;
28
+ /**
29
+ * If `allowFiltering` set to false, then it disables filtering option and filter bar element of a particular column.
30
+ * By default all columns are filterable.
31
+ * @default true
32
+ */
33
+ allowFiltering: any;
34
+ /**
35
+ * If `allowReordering` set to false, then it disables reorder of a particular column.
36
+ * By default all columns can be reorder.
37
+ * @default true
38
+ */
39
+ allowReordering: any;
40
+ /**
41
+ * If `allowResizing` is set to false, it disables resize option of a particular column.
42
+ * By default all the columns can be resized.
43
+ * @default true
44
+ */
45
+ allowResizing: any;
46
+ /**
47
+ * If `allowSorting` set to false, then it disables sorting option of a particular column.
48
+ * By default all columns are sortable.
49
+ * @default true
50
+ */
51
+ allowSorting: any;
52
+ /**
53
+ * Defines the overflow mode for cell content. The available modes are:
54
+ * * `Clip` - Truncates the cell content when it overflows its area.
55
+ * * `Ellipsis` - Displays an ellipsis when the cell content overflows its area.
56
+ * * `EllipsisWithTooltip` - Displays an ellipsis when the cell content overflows its area, and shows a tooltip on hover over the ellipsis.
57
+ * @default Syncfusion.EJ2.Grids.ClipMode.EllipsisWithTooltip
58
+ * @isenumeration true
59
+ * @asptype Syncfusion.EJ2.Grids.ClipMode
60
+ */
61
+ clipMode: any;
62
+ /**
63
+ * The CSS styles and attributes of the content cells of a particular column can be customized.
64
+ * @default null
65
+ */
66
+ customAttributes: any;
67
+ /**
68
+ * If `disableHtmlEncode` is set to true, it disables HTML encoding for the content of specific column.
69
+ * @default false
70
+ */
71
+ disableHtmlEncode: any;
72
+ /**
73
+ * If `displayAsCheckBox` is set to true, it displays the column value as a check box instead of Boolean value.
74
+ * @default false
75
+ */
76
+ displayAsCheckBox: any;
77
+ /**
78
+ * Defines the `IEditCell` object to customize default edit cell.
79
+ * @default {}
80
+ */
81
+ edit: any;
82
+ /**
83
+ * Defines the type of component used for editing the field.
84
+ * @default 'stringedit'
85
+ */
86
+ editType: any;
87
+ /**
88
+ * Defines the field name of column which is mapped with mapping name of DataSource.
89
+ * The `field` name must be a valid JavaScript identifier,
90
+ * the first character must be an alphabet and should not contain spaces and special characters.
91
+ * @default null
92
+ */
93
+ field: any;
94
+ /**
95
+ * It is used to customize the default filter options for a specific columns.
96
+ * * ui - to render custom component for specific column. It has following functions:
97
+ * * ui.create - It is used for creating custom components.
98
+ * * ui.read - It is used for read the value from the component.
99
+ * * ui.write - It is used to apply component model as dynamically.
100
+ * @default null
101
+ */
102
+ filter: any;
103
+ /**
104
+ * It is used to change display value with the given format and does not affect the original data.
105
+ * Gets the format from the user which can be standard or custom
106
+ * [`number`](https://ej2.syncfusion.com/documentation/common/internationalization/#number-formatting)
107
+ * and [`date`](https://ej2.syncfusion.com/documentation/common/internationalization/#date-formatting) formats.
108
+ * @default null
109
+ * @asptype string
110
+ */
111
+ format: any;
112
+ /**
113
+ * Defines the method which is used to achieve custom formatting from an external function.
114
+ * This function triggers before rendering of each cell.
115
+ * @default null
116
+ */
117
+ formatter: any;
118
+ /**
119
+ * Defines the header text of column which is used to display in column header.
120
+ * If `headerText` is not defined, then field name value will be assigned to header text.
121
+ * @default null
122
+ */
123
+ headerText: any;
124
+ /**
125
+ * Define the alignment of column header which is used to align the text of column header.
126
+ * @default Syncfusion.EJ2.Grids.TextAlign.Left
127
+ * @isenumeration true
128
+ * @asptype Syncfusion.EJ2.Grids.TextAlign
129
+ */
130
+ headerTextAlign: any;
131
+ /**
132
+ * Column visibility can change based on [`Media Queries`](http://cssmediaqueries.com/what-are-css-media-queries.html).
133
+ * `hideAtMedia` accepts only valid Media Queries.
134
+ * @default null
135
+ */
136
+ hideAtMedia: any;
137
+ /**
138
+ * If `isPrimaryKey` is set to true, considers this column as the primary key constraint.
139
+ * @default false
140
+ */
141
+ isPrimaryKey: any;
142
+ /**
143
+ * Defines the maximum width of the column in pixel or percentage, which will restrict resizing beyond this pixel or percentage.
144
+ * @default null
145
+ */
146
+ maxWidth: any;
147
+ /**
148
+ * Defines the minimum width of the column in pixels or percentage.
149
+ * @default null
150
+ */
151
+ minWidth: any;
152
+ /**
153
+ * Defines the sort comparer property.
154
+ * @default null
155
+ */
156
+ sortComparer: any;
157
+ /**
158
+ * Defines the alignment of the column in both header and content cells.
159
+ * @default Syncfusion.EJ2.Grids.TextAlign.Left
160
+ * @isenumeration true
161
+ * @asptype Syncfusion.EJ2.Grids.TextAlign
162
+ */
163
+ textAlign: any;
164
+ /**
165
+ * Defines validation rules for data before creating or updating records.
166
+ * The rules are used to ensure that data meets specific criteria before it is saved or updated.
167
+ * @default null
168
+ */
169
+ validationRules: any;
170
+ /**
171
+ * Defines the method used to apply custom cell values from external function and display this on each cell rendered.
172
+ * @default null
173
+ */
174
+ valueAccessor: any;
175
+ /**
176
+ * If `visible` is set to false, hides the particular column. By default, columns are displayed.
177
+ * @default true
178
+ */
179
+ visible: any;
180
+ /**
181
+ * Defines the width of the column in pixels or percentage.
182
+ * @default null
183
+ */
184
+ width: any;
185
+ /**
186
+ * Defines the column template that renders customized element in each cell of the column.
187
+ * It accepts either template string or HTML element ID.
188
+ * @default null
189
+ * @asptype string
190
+ */
191
+ template: any;
192
+ /**
193
+ * Defines the header template as string or HTML element ID which is used to add customized element in the column header.
194
+ * @default null
195
+ * @asptype string
196
+ */
197
+ headerTemplate: any;
198
+ editTemplate: any;
199
+ filter_itemTemplate: any;
200
+ filterTemplate: any;
201
+ constructor(viewContainerRef: ViewContainerRef);
202
+ }
203
+ /**
204
+ * Column Array Directive
205
+ * @private
206
+ */
207
+ export declare class ColumnsDirective extends ArrayBase<ColumnsDirective> {
208
+ constructor();
209
+ }
@@ -1,41 +1,36 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-day-working-time-collection` directive represent a working time ranges in a day.
6
- * It must be contained in a Gantt component(`ejs-gantt`).
7
- * ```html
8
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
9
- * <e-day-working-time-collection>
10
- * <e-day-working-time from='8' to='12'></e-day-working-time>
11
- * <e-day-working-time from='13' to='17'></e-day-working-time>
12
- * </e-day-working-time-collection>
13
- * </ejs-gantt>
14
- * ```
15
- */
16
- export declare class DayWorkingTimeDirective extends ComplexBase<DayWorkingTimeDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * Defines the start time of the working time range for the day.
21
- * @default null
22
- */
23
- from: any;
24
- /**
25
- * Defines the end time of the working time range for the day.
26
- * @default null
27
- */
28
- to: any;
29
- constructor(viewContainerRef: ViewContainerRef);
30
- static ɵfac: i0.ɵɵFactoryDeclaration<DayWorkingTimeDirective, never>;
31
- static ɵdir: i0.ɵɵDirectiveDeclaration<DayWorkingTimeDirective, "ejs-gantt>e-day-working-time-collection>e-day-working-time", never, { "from": "from"; "to": "to"; }, {}, never>;
32
- }
33
- /**
34
- * DayWorkingTime Array Directive
35
- * @private
36
- */
37
- export declare class DayWorkingTimeCollectionDirective extends ArrayBase<DayWorkingTimeCollectionDirective> {
38
- constructor();
39
- static ɵfac: i0.ɵɵFactoryDeclaration<DayWorkingTimeCollectionDirective, never>;
40
- static ɵdir: i0.ɵɵDirectiveDeclaration<DayWorkingTimeCollectionDirective, "ejs-gantt>e-day-working-time-collection", never, {}, {}, ["children"]>;
41
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-day-working-time-collection` directive represent a working time ranges in a day.
5
+ * It must be contained in a Gantt component(`ejs-gantt`).
6
+ * ```html
7
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
8
+ * <e-day-working-time-collection>
9
+ * <e-day-working-time from='8' to='12'></e-day-working-time>
10
+ * <e-day-working-time from='13' to='17'></e-day-working-time>
11
+ * </e-day-working-time-collection>
12
+ * </ejs-gantt>
13
+ * ```
14
+ */
15
+ export declare class DayWorkingTimeDirective extends ComplexBase<DayWorkingTimeDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * Defines the start time of the working time range for the day.
20
+ * @default null
21
+ */
22
+ from: any;
23
+ /**
24
+ * Defines the end time of the working time range for the day.
25
+ * @default null
26
+ */
27
+ to: any;
28
+ constructor(viewContainerRef: ViewContainerRef);
29
+ }
30
+ /**
31
+ * DayWorkingTime Array Directive
32
+ * @private
33
+ */
34
+ export declare class DayWorkingTimeCollectionDirective extends ArrayBase<DayWorkingTimeCollectionDirective> {
35
+ constructor();
36
+ }
@@ -1,58 +1,53 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-edit-dialog-field` directive represent a edit dialog fields collection in Gantt task add dialog.
6
- * It must be contained in a Gantt component(`ejs-gantt`).
7
- * ```html
8
- * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
9
- * <e-edit-dialog-fields>
10
- * <e-edit-dialog-field type='General' headerText='General'></e-edit-dialog-field>
11
- * <e-edit-dialog-field type='Dependency' headerText='Dependency'></e-edit-dialog-field>
12
- * </e-edit-dialog-fields>
13
- * </ejs-gantt>
14
- * ```
15
- */
16
- export declare class EditDialogFieldDirective extends ComplexBase<EditDialogFieldDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * Specifies the types of tabs that contain editors for columns.
21
- * Available tab types:
22
- * * `General` - Represents the general information editor tab.
23
- * * `Dependency` - Represents the dependency editor tab.
24
- * * `Resources` - Represents the resource editor tab.
25
- * * `Notes` - Represents the notes editor tab.
26
- * * `Segments` - Represents the segments editor tab.
27
- * * `Custom` - Represents the custom column editor tab.
28
- * @default null
29
- */
30
- type: any;
31
- /**
32
- * Specifies the configuration properties for Grid, Rich Text Editor (RTE), or TreeGrid controls within the Gantt edit dialog.
33
- * @default null
34
- */
35
- additionalParams: any;
36
- /**
37
- * Specifies the edited column fields to be placed inside the tab.
38
- * @default null
39
- */
40
- fields: any;
41
- /**
42
- * Defines header text of tab item.
43
- * @default null
44
- */
45
- headerText: any;
46
- constructor(viewContainerRef: ViewContainerRef);
47
- static ɵfac: i0.ɵɵFactoryDeclaration<EditDialogFieldDirective, never>;
48
- static ɵdir: i0.ɵɵDirectiveDeclaration<EditDialogFieldDirective, "ejs-gantt>e-edit-dialog-fields>e-edit-dialog-field", never, { "additionalParams": "additionalParams"; "fields": "fields"; "headerText": "headerText"; "type": "type"; }, {}, never>;
49
- }
50
- /**
51
- * EditDialogField Array Directive
52
- * @private
53
- */
54
- export declare class EditDialogFieldsDirective extends ArrayBase<EditDialogFieldsDirective> {
55
- constructor();
56
- static ɵfac: i0.ɵɵFactoryDeclaration<EditDialogFieldsDirective, never>;
57
- static ɵdir: i0.ɵɵDirectiveDeclaration<EditDialogFieldsDirective, "ejs-gantt>e-edit-dialog-fields", never, {}, {}, ["children"]>;
58
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-edit-dialog-field` directive represent a edit dialog fields collection in Gantt task add dialog.
5
+ * It must be contained in a Gantt component(`ejs-gantt`).
6
+ * ```html
7
+ * <ejs-gantt [dataSource]='data' allowSelection='true' allowSorting='true'>
8
+ * <e-edit-dialog-fields>
9
+ * <e-edit-dialog-field type='General' headerText='General'></e-edit-dialog-field>
10
+ * <e-edit-dialog-field type='Dependency' headerText='Dependency'></e-edit-dialog-field>
11
+ * </e-edit-dialog-fields>
12
+ * </ejs-gantt>
13
+ * ```
14
+ */
15
+ export declare class EditDialogFieldDirective extends ComplexBase<EditDialogFieldDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * Specifies the types of tabs that contain editors for columns.
20
+ * Available tab types:
21
+ * * `General` - Represents the general information editor tab.
22
+ * * `Dependency` - Represents the dependency editor tab.
23
+ * * `Resources` - Represents the resource editor tab.
24
+ * * `Notes` - Represents the notes editor tab.
25
+ * * `Segments` - Represents the segments editor tab.
26
+ * * `Custom` - Represents the custom column editor tab.
27
+ * @default null
28
+ */
29
+ type: any;
30
+ /**
31
+ * Specifies the configuration properties for Grid, Rich Text Editor (RTE), or TreeGrid controls within the Gantt edit dialog.
32
+ * @default null
33
+ */
34
+ additionalParams: any;
35
+ /**
36
+ * Specifies the edited column fields to be placed inside the tab.
37
+ * @default null
38
+ */
39
+ fields: any;
40
+ /**
41
+ * Defines header text of tab item.
42
+ * @default null
43
+ */
44
+ headerText: any;
45
+ constructor(viewContainerRef: ViewContainerRef);
46
+ }
47
+ /**
48
+ * EditDialogField Array Directive
49
+ * @private
50
+ */
51
+ export declare class EditDialogFieldsDirective extends ArrayBase<EditDialogFieldsDirective> {
52
+ constructor();
53
+ }