@syncfusion/ej2-angular-schedule 30.2.4-ngcc → 30.2.4

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 (43) hide show
  1. package/CHANGELOG.md +2367 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +12 -0
  4. package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
  5. package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
  6. package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
  7. package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
  8. package/esm2020/src/schedule/resources.directive.mjs +58 -0
  9. package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
  10. package/esm2020/src/schedule/schedule.component.mjs +306 -0
  11. package/esm2020/src/schedule/schedule.module.mjs +61 -0
  12. package/esm2020/src/schedule/toolbaritems.directive.mjs +67 -0
  13. package/esm2020/src/schedule/views.directive.mjs +132 -0
  14. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +829 -0
  16. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +829 -0
  18. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  19. package/package.json +20 -7
  20. package/public_api.d.ts +1 -1
  21. package/src/index.d.ts +11 -11
  22. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +11 -5
  23. package/src/recurrence-editor/recurrenceeditor.component.d.ts +33 -30
  24. package/src/recurrence-editor/recurrenceeditor.module.d.ts +11 -5
  25. package/src/schedule/headerrows.directive.d.ts +52 -47
  26. package/src/schedule/resources.directive.d.ts +115 -110
  27. package/src/schedule/schedule-all.module.d.ts +28 -22
  28. package/src/schedule/schedule.component.d.ts +224 -221
  29. package/src/schedule/schedule.module.d.ts +15 -5
  30. package/src/schedule/toolbaritems.directive.d.ts +177 -172
  31. package/src/schedule/views.directive.d.ts +324 -319
  32. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  33. package/@syncfusion/ej2-angular-schedule.es5.js +0 -955
  34. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  35. package/@syncfusion/ej2-angular-schedule.js +0 -894
  36. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  37. package/LICENSE +0 -10
  38. package/dist/ej2-angular-schedule.umd.js +0 -1114
  39. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  40. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  41. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  42. package/ej2-angular-schedule.d.ts +0 -6
  43. package/ej2-angular-schedule.metadata.json +0 -1
@@ -1,221 +1,224 @@
1
- import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { Schedule } from '@syncfusion/ej2-schedule';
4
- import { ViewsDirective } from './views.directive';
5
- import { ResourcesDirective } from './resources.directive';
6
- import { HeaderRowsDirective } from './headerrows.directive';
7
- import { ToolbarItemsDirective } from './toolbaritems.directive';
8
- export declare const inputs: string[];
9
- export declare const outputs: string[];
10
- export declare const twoWays: string[];
11
- /**
12
- * `ej-schedule` represents the Angular Schedule Component.
13
- * ```html
14
- * <ejs-schedule></ejs-schedule>
15
- * ```
16
- */
17
- export declare class ScheduleComponent extends Schedule implements IComponentBase {
18
- private ngEle;
19
- private srenderer;
20
- private viewContainerRef;
21
- private injector;
22
- context: any;
23
- tagObjects: any;
24
- actionBegin: any;
25
- actionComplete: any;
26
- actionFailure: any;
27
- beforePaste: any;
28
- beforePrint: any;
29
- cellClick: any;
30
- cellDoubleClick: any;
31
- created: any;
32
- dataBinding: any;
33
- dataBound: any;
34
- destroyed: any;
35
- drag: any;
36
- dragStart: any;
37
- dragStop: any;
38
- eventClick: any;
39
- eventDoubleClick: any;
40
- eventRendered: any;
41
- excelExport: any;
42
- hover: any;
43
- moreEventsClick: any;
44
- navigating: any;
45
- popupClose: any;
46
- popupOpen: any;
47
- renderCell: any;
48
- resizeStart: any;
49
- resizeStop: any;
50
- resizing: any;
51
- select: any;
52
- tooltipOpen: any;
53
- virtualScrollStart: any;
54
- virtualScrollStop: any;
55
- currentViewChange: any;
56
- selectedDateChange: any;
57
- childViews: QueryList<ViewsDirective>;
58
- childResources: QueryList<ResourcesDirective>;
59
- childHeaderRows: QueryList<HeaderRowsDirective>;
60
- childToolbarItems: QueryList<ToolbarItemsDirective>;
61
- tags: string[];
62
- /**
63
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
64
- * the date header cells. The field that can be accessed via this template is `date`.
65
- *
66
- * {% codeBlock src='schedule/dateHeaderTemplate/index.md' %}{% endcodeBlock %}
67
- *
68
- * @default null
69
- * @angulartype string | object
70
- * @reacttype string | function | JSX.Element
71
- * @vuetype string | function
72
- * @asptype string
73
- */
74
- dateHeaderTemplate: any;
75
- /**
76
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.
77
- * @default null
78
- * @angulartype string | object
79
- * @reacttype string | function | JSX.Element
80
- * @vuetype string | function
81
- * @asptype string
82
- */
83
- dateRangeTemplate: any;
84
- /**
85
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
86
- * the day header cells. This template is only applicable for year view header cells.
87
- *
88
- * {% codeBlock src='schedule/dayHeaderTemplate/index.md' %}{% endcodeBlock %}
89
- *
90
- * @default null
91
- * @angulartype string | object
92
- * @reacttype string | function | JSX.Element
93
- * @vuetype string | function
94
- * @asptype string
95
- */
96
- dayHeaderTemplate: any;
97
- /**
98
- * The template option which is used to render the customized work cells on the Schedule. Here, the template accepts either
99
- * the string or HTMLElement as template design and then the parsed design is displayed onto the work cells.
100
- * The fields accessible via template are as follows.
101
- * * `date`: Returns the date of the cell.
102
- * * `groupIndex`: Returns the group index of the cell.
103
- * * `type`: Returns the type of the work cell.
104
- *
105
- * Refer to the below code snippet.
106
- *
107
- *{% codeBlock src='schedule/cellTemplate/index.md' %}{% endcodeBlock %}
108
- *
109
- * @default null
110
- * @angulartype string | object
111
- * @reacttype string | function | JSX.Element
112
- * @vuetype string | function
113
- * @asptype string
114
- */
115
- cellTemplate: any;
116
- /**
117
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
118
- * the month date cells. This template is only applicable for month view day cells.
119
- *
120
- * {% codeBlock src='schedule/cellHeaderTemplate/index.md' %}{% endcodeBlock %}
121
- *
122
- * @default null
123
- * @angulartype string | object
124
- * @reacttype string | function | JSX.Element
125
- * @vuetype string | function
126
- * @asptype string
127
- */
128
- cellHeaderTemplate: any;
129
- eventSettings_tooltipTemplate: any;
130
- eventSettings_template: any;
131
- /**
132
- * The template option to render the customized editor window. The form elements defined within this template should be accompanied
133
- * with `e-field` class, so as to fetch and process it from internally.
134
- *
135
- * {% codeBlock src='schedule/editorTemplate/index.md' %}{% endcodeBlock %}
136
- *
137
- * @default null
138
- * @angulartype string | object
139
- * @reacttype string | function | JSX.Element
140
- * @vuetype string | function
141
- * @asptype string
142
- */
143
- editorTemplate: any;
144
- /**
145
- * The template option to render the customized header of the editor window.
146
- * @default null
147
- * @angulartype string | object
148
- * @reacttype string | function | JSX.Element
149
- * @vuetype string | function
150
- * @asptype string
151
- */
152
- editorHeaderTemplate: any;
153
- /**
154
- * The template option to render the customized footer of the editor window.
155
- * @default null
156
- * @angulartype string | object
157
- * @reacttype string | function | JSX.Element
158
- * @vuetype string | function
159
- * @asptype string
160
- */
161
- editorFooterTemplate: any;
162
- /**
163
- * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
164
- * the month header cells. This template is only applicable for year view header cells.
165
- *
166
- * {% codeBlock src='schedule/monthHeaderTemplate/index.md' %}{% endcodeBlock %}
167
- *
168
- * @default null
169
- * @angulartype string | object
170
- * @reacttype string | function | JSX.Element
171
- * @vuetype string | function
172
- * @asptype string
173
- */
174
- monthHeaderTemplate: any;
175
- timeScale_minorSlotTemplate: any;
176
- timeScale_majorSlotTemplate: any;
177
- /**
178
- * Template option to customize the resource header bar. Here, the template accepts either
179
- * the string or HTMLElement as template design and then the parsed design is displayed onto the resource header cells.
180
- * The following can be accessible via template.
181
- * * `resource` - All the resource fields.
182
- * * `resourceData` - Object collection of current resource.
183
- *
184
- * Refer to the below code snippet.
185
- *
186
- *{% codeBlock src='schedule/resourceHeaderTemplate/index.md' %}{% endcodeBlock %}
187
- *
188
- * @default null
189
- * @angulartype string | object
190
- * @reacttype string | function | JSX.Element
191
- * @vuetype string | function
192
- * @asptype string
193
- */
194
- resourceHeaderTemplate: any;
195
- /**
196
- * Template option to customize the header indent bar. Here, the template accepts either
197
- * the string or HTMLElement as template design and then the parsed design is displayed onto the header indent cell.
198
- *
199
- * Refer to the below code snippet.
200
- *
201
- *{% codeBlock src='schedule/headerIndentTemplate/index.md' %}{% endcodeBlock %}
202
- *
203
- * @default null
204
- * @angulartype string | object
205
- * @reacttype string | function | JSX.Element
206
- * @vuetype string | function
207
- * @asptype string
208
- */
209
- headerIndentTemplate: any;
210
- quickInfoTemplates_header: any;
211
- quickInfoTemplates_content: any;
212
- quickInfoTemplates_footer: any;
213
- group_headerTooltipTemplate: any;
214
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
215
- ngOnInit(): void;
216
- ngAfterViewInit(): void;
217
- ngOnDestroy(): void;
218
- ngAfterContentChecked(): void;
219
- registerEvents: (eventList: string[]) => void;
220
- addTwoWay: (propList: string[]) => void;
221
- }
1
+ import { ElementRef, ViewContainerRef, QueryList, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { Schedule } from '@syncfusion/ej2-schedule';
4
+ import { ViewsDirective } from './views.directive';
5
+ import { ResourcesDirective } from './resources.directive';
6
+ import { HeaderRowsDirective } from './headerrows.directive';
7
+ import { ToolbarItemsDirective } from './toolbaritems.directive';
8
+ import * as i0 from "@angular/core";
9
+ export declare const inputs: string[];
10
+ export declare const outputs: string[];
11
+ export declare const twoWays: string[];
12
+ /**
13
+ * `ej-schedule` represents the Angular Schedule Component.
14
+ * ```html
15
+ * <ejs-schedule></ejs-schedule>
16
+ * ```
17
+ */
18
+ export declare class ScheduleComponent extends Schedule implements IComponentBase {
19
+ private ngEle;
20
+ private srenderer;
21
+ private viewContainerRef;
22
+ private injector;
23
+ context: any;
24
+ tagObjects: any;
25
+ actionBegin: any;
26
+ actionComplete: any;
27
+ actionFailure: any;
28
+ beforePaste: any;
29
+ beforePrint: any;
30
+ cellClick: any;
31
+ cellDoubleClick: any;
32
+ created: any;
33
+ dataBinding: any;
34
+ dataBound: any;
35
+ destroyed: any;
36
+ drag: any;
37
+ dragStart: any;
38
+ dragStop: any;
39
+ eventClick: any;
40
+ eventDoubleClick: any;
41
+ eventRendered: any;
42
+ excelExport: any;
43
+ hover: any;
44
+ moreEventsClick: any;
45
+ navigating: any;
46
+ popupClose: any;
47
+ popupOpen: any;
48
+ renderCell: any;
49
+ resizeStart: any;
50
+ resizeStop: any;
51
+ resizing: any;
52
+ select: any;
53
+ tooltipOpen: any;
54
+ virtualScrollStart: any;
55
+ virtualScrollStop: any;
56
+ currentViewChange: any;
57
+ selectedDateChange: any;
58
+ childViews: QueryList<ViewsDirective>;
59
+ childResources: QueryList<ResourcesDirective>;
60
+ childHeaderRows: QueryList<HeaderRowsDirective>;
61
+ childToolbarItems: QueryList<ToolbarItemsDirective>;
62
+ tags: string[];
63
+ /**
64
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
65
+ * the date header cells. The field that can be accessed via this template is `date`.
66
+ *
67
+ * {% codeBlock src='schedule/dateHeaderTemplate/index.md' %}{% endcodeBlock %}
68
+ *
69
+ * @default null
70
+ * @angulartype string | object
71
+ * @reacttype string | function | JSX.Element
72
+ * @vuetype string | function
73
+ * @asptype string
74
+ */
75
+ dateHeaderTemplate: any;
76
+ /**
77
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.
78
+ * @default null
79
+ * @angulartype string | object
80
+ * @reacttype string | function | JSX.Element
81
+ * @vuetype string | function
82
+ * @asptype string
83
+ */
84
+ dateRangeTemplate: any;
85
+ /**
86
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
87
+ * the day header cells. This template is only applicable for year view header cells.
88
+ *
89
+ * {% codeBlock src='schedule/dayHeaderTemplate/index.md' %}{% endcodeBlock %}
90
+ *
91
+ * @default null
92
+ * @angulartype string | object
93
+ * @reacttype string | function | JSX.Element
94
+ * @vuetype string | function
95
+ * @asptype string
96
+ */
97
+ dayHeaderTemplate: any;
98
+ /**
99
+ * The template option which is used to render the customized work cells on the Schedule. Here, the template accepts either
100
+ * the string or HTMLElement as template design and then the parsed design is displayed onto the work cells.
101
+ * The fields accessible via template are as follows.
102
+ * * `date`: Returns the date of the cell.
103
+ * * `groupIndex`: Returns the group index of the cell.
104
+ * * `type`: Returns the type of the work cell.
105
+ *
106
+ * Refer to the below code snippet.
107
+ *
108
+ *{% codeBlock src='schedule/cellTemplate/index.md' %}{% endcodeBlock %}
109
+ *
110
+ * @default null
111
+ * @angulartype string | object
112
+ * @reacttype string | function | JSX.Element
113
+ * @vuetype string | function
114
+ * @asptype string
115
+ */
116
+ cellTemplate: any;
117
+ /**
118
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
119
+ * the month date cells. This template is only applicable for month view day cells.
120
+ *
121
+ * {% codeBlock src='schedule/cellHeaderTemplate/index.md' %}{% endcodeBlock %}
122
+ *
123
+ * @default null
124
+ * @angulartype string | object
125
+ * @reacttype string | function | JSX.Element
126
+ * @vuetype string | function
127
+ * @asptype string
128
+ */
129
+ cellHeaderTemplate: any;
130
+ eventSettings_tooltipTemplate: any;
131
+ eventSettings_template: any;
132
+ /**
133
+ * The template option to render the customized editor window. The form elements defined within this template should be accompanied
134
+ * with `e-field` class, so as to fetch and process it from internally.
135
+ *
136
+ * {% codeBlock src='schedule/editorTemplate/index.md' %}{% endcodeBlock %}
137
+ *
138
+ * @default null
139
+ * @angulartype string | object
140
+ * @reacttype string | function | JSX.Element
141
+ * @vuetype string | function
142
+ * @asptype string
143
+ */
144
+ editorTemplate: any;
145
+ /**
146
+ * The template option to render the customized header of the editor window.
147
+ * @default null
148
+ * @angulartype string | object
149
+ * @reacttype string | function | JSX.Element
150
+ * @vuetype string | function
151
+ * @asptype string
152
+ */
153
+ editorHeaderTemplate: any;
154
+ /**
155
+ * The template option to render the customized footer of the editor window.
156
+ * @default null
157
+ * @angulartype string | object
158
+ * @reacttype string | function | JSX.Element
159
+ * @vuetype string | function
160
+ * @asptype string
161
+ */
162
+ editorFooterTemplate: any;
163
+ /**
164
+ * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto
165
+ * the month header cells. This template is only applicable for year view header cells.
166
+ *
167
+ * {% codeBlock src='schedule/monthHeaderTemplate/index.md' %}{% endcodeBlock %}
168
+ *
169
+ * @default null
170
+ * @angulartype string | object
171
+ * @reacttype string | function | JSX.Element
172
+ * @vuetype string | function
173
+ * @asptype string
174
+ */
175
+ monthHeaderTemplate: any;
176
+ timeScale_minorSlotTemplate: any;
177
+ timeScale_majorSlotTemplate: any;
178
+ /**
179
+ * Template option to customize the resource header bar. Here, the template accepts either
180
+ * the string or HTMLElement as template design and then the parsed design is displayed onto the resource header cells.
181
+ * The following can be accessible via template.
182
+ * * `resource` - All the resource fields.
183
+ * * `resourceData` - Object collection of current resource.
184
+ *
185
+ * Refer to the below code snippet.
186
+ *
187
+ *{% codeBlock src='schedule/resourceHeaderTemplate/index.md' %}{% endcodeBlock %}
188
+ *
189
+ * @default null
190
+ * @angulartype string | object
191
+ * @reacttype string | function | JSX.Element
192
+ * @vuetype string | function
193
+ * @asptype string
194
+ */
195
+ resourceHeaderTemplate: any;
196
+ /**
197
+ * Template option to customize the header indent bar. Here, the template accepts either
198
+ * the string or HTMLElement as template design and then the parsed design is displayed onto the header indent cell.
199
+ *
200
+ * Refer to the below code snippet.
201
+ *
202
+ *{% codeBlock src='schedule/headerIndentTemplate/index.md' %}{% endcodeBlock %}
203
+ *
204
+ * @default null
205
+ * @angulartype string | object
206
+ * @reacttype string | function | JSX.Element
207
+ * @vuetype string | function
208
+ * @asptype string
209
+ */
210
+ headerIndentTemplate: any;
211
+ quickInfoTemplates_header: any;
212
+ quickInfoTemplates_content: any;
213
+ quickInfoTemplates_footer: any;
214
+ group_headerTooltipTemplate: any;
215
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
216
+ ngOnInit(): void;
217
+ ngAfterViewInit(): void;
218
+ ngOnDestroy(): void;
219
+ ngAfterContentChecked(): void;
220
+ registerEvents: (eventList: string[]) => void;
221
+ addTwoWay: (propList: string[]) => void;
222
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScheduleComponent, never>;
223
+ static ɵcmp: i0.ɵɵComponentDeclaration<ScheduleComponent, "ejs-schedule", never, { "agendaDaysCount": "agendaDaysCount"; "allowClipboard": "allowClipboard"; "allowDragAndDrop": "allowDragAndDrop"; "allowInline": "allowInline"; "allowKeyboardInteraction": "allowKeyboardInteraction"; "allowMultiCellSelection": "allowMultiCellSelection"; "allowMultiDrag": "allowMultiDrag"; "allowMultiRowSelection": "allowMultiRowSelection"; "allowOverlap": "allowOverlap"; "allowResizing": "allowResizing"; "allowSwiping": "allowSwiping"; "calendarMode": "calendarMode"; "cellHeaderTemplate": "cellHeaderTemplate"; "cellTemplate": "cellTemplate"; "cssClass": "cssClass"; "currentView": "currentView"; "dateFormat": "dateFormat"; "dateHeaderTemplate": "dateHeaderTemplate"; "dateRangeTemplate": "dateRangeTemplate"; "dayHeaderTemplate": "dayHeaderTemplate"; "editorFooterTemplate": "editorFooterTemplate"; "editorHeaderTemplate": "editorHeaderTemplate"; "editorTemplate": "editorTemplate"; "enableAdaptiveUI": "enableAdaptiveUI"; "enableAllDayScroll": "enableAllDayScroll"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRecurrenceValidation": "enableRecurrenceValidation"; "enableRtl": "enableRtl"; "endHour": "endHour"; "eventDragArea": "eventDragArea"; "eventSettings": "eventSettings"; "firstDayOfWeek": "firstDayOfWeek"; "firstMonthOfYear": "firstMonthOfYear"; "group": "group"; "headerIndentTemplate": "headerIndentTemplate"; "headerRows": "headerRows"; "height": "height"; "hideEmptyAgendaDays": "hideEmptyAgendaDays"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "monthHeaderTemplate": "monthHeaderTemplate"; "monthsCount": "monthsCount"; "overscanCount": "overscanCount"; "quickInfoOnSelectionEnd": "quickInfoOnSelectionEnd"; "quickInfoTemplates": "quickInfoTemplates"; "readonly": "readonly"; "resourceHeaderTemplate": "resourceHeaderTemplate"; "resources": "resources"; "rowAutoHeight": "rowAutoHeight"; "selectedDate": "selectedDate"; "showHeaderBar": "showHeaderBar"; "showQuickInfo": "showQuickInfo"; "showTimeIndicator": "showTimeIndicator"; "showWeekNumber": "showWeekNumber"; "showWeekend": "showWeekend"; "startHour": "startHour"; "timeFormat": "timeFormat"; "timeScale": "timeScale"; "timezone": "timezone"; "timezoneDataSource": "timezoneDataSource"; "toolbarItems": "toolbarItems"; "views": "views"; "weekRule": "weekRule"; "width": "width"; "workDays": "workDays"; "workHours": "workHours"; }, { "actionBegin": "actionBegin"; "actionComplete": "actionComplete"; "actionFailure": "actionFailure"; "beforePaste": "beforePaste"; "beforePrint": "beforePrint"; "cellClick": "cellClick"; "cellDoubleClick": "cellDoubleClick"; "created": "created"; "dataBinding": "dataBinding"; "dataBound": "dataBound"; "destroyed": "destroyed"; "drag": "drag"; "dragStart": "dragStart"; "dragStop": "dragStop"; "eventClick": "eventClick"; "eventDoubleClick": "eventDoubleClick"; "eventRendered": "eventRendered"; "excelExport": "excelExport"; "hover": "hover"; "moreEventsClick": "moreEventsClick"; "navigating": "navigating"; "popupClose": "popupClose"; "popupOpen": "popupOpen"; "renderCell": "renderCell"; "resizeStart": "resizeStart"; "resizeStop": "resizeStop"; "resizing": "resizing"; "select": "select"; "tooltipOpen": "tooltipOpen"; "virtualScrollStart": "virtualScrollStart"; "virtualScrollStop": "virtualScrollStop"; "currentViewChange": "currentViewChange"; "selectedDateChange": "selectedDateChange"; }, ["dateHeaderTemplate", "dateRangeTemplate", "dayHeaderTemplate", "cellTemplate", "cellHeaderTemplate", "eventSettings_tooltipTemplate", "eventSettings_template", "editorTemplate", "editorHeaderTemplate", "editorFooterTemplate", "monthHeaderTemplate", "timeScale_minorSlotTemplate", "timeScale_majorSlotTemplate", "resourceHeaderTemplate", "headerIndentTemplate", "quickInfoTemplates_header", "quickInfoTemplates_content", "quickInfoTemplates_footer", "group_headerTooltipTemplate", "childViews", "childResources", "childHeaderRows", "childToolbarItems"], never>;
224
+ }
@@ -1,5 +1,15 @@
1
- /**
2
- * NgModule definition for the Schedule component.
3
- */
4
- export declare class ScheduleModule {
5
- }
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./schedule.component";
3
+ import * as i2 from "./views.directive";
4
+ import * as i3 from "./resources.directive";
5
+ import * as i4 from "./headerrows.directive";
6
+ import * as i5 from "./toolbaritems.directive";
7
+ import * as i6 from "@angular/common";
8
+ /**
9
+ * NgModule definition for the Schedule component.
10
+ */
11
+ export declare class ScheduleModule {
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScheduleModule, never>;
13
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ScheduleModule, [typeof i1.ScheduleComponent, typeof i2.ViewDirective, typeof i2.ViewsDirective, typeof i3.ResourceDirective, typeof i3.ResourcesDirective, typeof i4.HeaderRowDirective, typeof i4.HeaderRowsDirective, typeof i5.ToolbarItemDirective, typeof i5.ToolbarItemsDirective], [typeof i6.CommonModule], [typeof i1.ScheduleComponent, typeof i2.ViewDirective, typeof i2.ViewsDirective, typeof i3.ResourceDirective, typeof i3.ResourcesDirective, typeof i4.HeaderRowDirective, typeof i4.HeaderRowsDirective, typeof i5.ToolbarItemDirective, typeof i5.ToolbarItemsDirective]>;
14
+ static ɵinj: i0.ɵɵInjectorDeclaration<ScheduleModule>;
15
+ }