@syncfusion/ej2-angular-gantt 31.1.17-ngcc → 31.1.17
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/CHANGELOG.md +2765 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/gantt/adddialogfields.directive.mjs +58 -0
- package/esm2020/src/gantt/columns.directive.mjs +90 -0
- package/esm2020/src/gantt/dayworkingtime.directive.mjs +58 -0
- package/esm2020/src/gantt/editdialogfields.directive.mjs +58 -0
- package/esm2020/src/gantt/eventmarkers.directive.mjs +57 -0
- package/esm2020/src/gantt/gantt-all.module.mjs +74 -0
- package/esm2020/src/gantt/gantt.component.mjs +297 -0
- package/esm2020/src/gantt/gantt.module.mjs +88 -0
- package/esm2020/src/gantt/holidays.directive.mjs +58 -0
- package/esm2020/src/gantt/weekworkingtime.directive.mjs +58 -0
- package/esm2020/src/index.mjs +12 -0
- package/esm2020/syncfusion-ej2-angular-gantt.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs +857 -0
- package/fesm2015/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs +857 -0
- package/fesm2020/syncfusion-ej2-angular-gantt.mjs.map +1 -0
- package/package.json +59 -15
- package/public_api.d.ts +1 -1
- package/src/gantt/adddialogfields.directive.d.ts +58 -53
- package/src/gantt/columns.directive.d.ts +214 -209
- package/src/gantt/dayworkingtime.directive.d.ts +41 -36
- package/src/gantt/editdialogfields.directive.d.ts +58 -53
- package/src/gantt/eventmarkers.directive.d.ts +47 -42
- package/src/gantt/gantt-all.module.d.ts +28 -22
- package/src/gantt/gantt.component.d.ts +146 -143
- package/src/gantt/gantt.module.d.ts +18 -5
- package/src/gantt/holidays.directive.d.ts +51 -46
- package/src/gantt/weekworkingtime.directive.d.ts +43 -38
- package/src/index.d.ts +11 -11
- package/syncfusion-ej2-angular-gantt.d.ts +5 -0
- package/@syncfusion/ej2-angular-gantt.es5.js +0 -934
- package/@syncfusion/ej2-angular-gantt.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-gantt.js +0 -882
- package/@syncfusion/ej2-angular-gantt.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-gantt.umd.js +0 -1055
- package/dist/ej2-angular-gantt.umd.js.map +0 -1
- package/dist/ej2-angular-gantt.umd.min.js +0 -11
- package/dist/ej2-angular-gantt.umd.min.js.map +0 -1
- package/ej2-angular-gantt.d.ts +0 -5
- package/ej2-angular-gantt.metadata.json +0 -1
|
@@ -1,209 +1,214 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-column field='
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
*
|
|
49
|
-
*
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
*
|
|
55
|
-
* * `
|
|
56
|
-
* * `
|
|
57
|
-
*
|
|
58
|
-
* @
|
|
59
|
-
* @
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
*
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
*
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
*
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
*
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
*
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
*
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
*
|
|
97
|
-
* * ui
|
|
98
|
-
* * ui.
|
|
99
|
-
* * ui.
|
|
100
|
-
*
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
* @
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
*
|
|
115
|
-
*
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
*
|
|
121
|
-
*
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
*
|
|
127
|
-
* @
|
|
128
|
-
* @
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
*
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
*
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
*
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
*
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
*
|
|
160
|
-
* @
|
|
161
|
-
* @
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
*
|
|
167
|
-
*
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
*
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
*
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
*
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
*
|
|
188
|
-
*
|
|
189
|
-
* @
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
*
|
|
195
|
-
* @
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
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,36 +1,41 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-day-working-time from='
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
*
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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,53 +1,58 @@
|
|
|
1
|
-
import { ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
* <e-edit-dialog-field type='
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
* * `
|
|
23
|
-
* * `
|
|
24
|
-
* * `
|
|
25
|
-
* * `
|
|
26
|
-
* * `
|
|
27
|
-
*
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
*
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
*
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
*
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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
|
+
}
|