@syncfusion/ej2-angular-schedule 30.2.7-ngcc → 30.2.7
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 +2374 -0
- package/esm2020/public_api.mjs +2 -0
- package/esm2020/src/index.mjs +12 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
- package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
- package/esm2020/src/schedule/resources.directive.mjs +58 -0
- package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
- package/esm2020/src/schedule/schedule.component.mjs +306 -0
- package/esm2020/src/schedule/schedule.module.mjs +61 -0
- package/esm2020/src/schedule/toolbaritems.directive.mjs +67 -0
- package/esm2020/src/schedule/views.directive.mjs +132 -0
- package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs +829 -0
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs +829 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/package.json +20 -7
- package/public_api.d.ts +1 -1
- package/src/index.d.ts +11 -11
- package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +11 -5
- package/src/recurrence-editor/recurrenceeditor.component.d.ts +33 -30
- package/src/recurrence-editor/recurrenceeditor.module.d.ts +11 -5
- package/src/schedule/headerrows.directive.d.ts +52 -47
- package/src/schedule/resources.directive.d.ts +115 -110
- package/src/schedule/schedule-all.module.d.ts +28 -22
- package/src/schedule/schedule.component.d.ts +224 -221
- package/src/schedule/schedule.module.d.ts +15 -5
- package/src/schedule/toolbaritems.directive.d.ts +177 -172
- package/src/schedule/views.directive.d.ts +324 -319
- package/syncfusion-ej2-angular-schedule.d.ts +5 -0
- package/@syncfusion/ej2-angular-schedule.es5.js +0 -955
- package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-schedule.js +0 -894
- package/@syncfusion/ej2-angular-schedule.js.map +0 -1
- package/LICENSE +0 -10
- package/dist/ej2-angular-schedule.umd.js +0 -1114
- package/dist/ej2-angular-schedule.umd.js.map +0 -1
- package/dist/ej2-angular-schedule.umd.min.js +0 -11
- package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
- package/ej2-angular-schedule.d.ts +0 -6
- 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
|
-
|
|
9
|
-
export declare const
|
|
10
|
-
export declare const
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
private
|
|
20
|
-
private
|
|
21
|
-
private
|
|
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
|
-
* the
|
|
65
|
-
*
|
|
66
|
-
*
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
* @
|
|
70
|
-
* @
|
|
71
|
-
* @
|
|
72
|
-
* @
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
*
|
|
78
|
-
* @
|
|
79
|
-
* @
|
|
80
|
-
* @
|
|
81
|
-
* @
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
* the
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
*
|
|
90
|
-
*
|
|
91
|
-
* @
|
|
92
|
-
* @
|
|
93
|
-
* @
|
|
94
|
-
* @
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
*
|
|
100
|
-
*
|
|
101
|
-
*
|
|
102
|
-
* * `
|
|
103
|
-
* * `
|
|
104
|
-
*
|
|
105
|
-
*
|
|
106
|
-
*
|
|
107
|
-
*
|
|
108
|
-
*
|
|
109
|
-
*
|
|
110
|
-
* @
|
|
111
|
-
* @
|
|
112
|
-
* @
|
|
113
|
-
* @
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
* the
|
|
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
|
-
* the
|
|
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
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
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
|
-
*
|
|
3
|
-
|
|
4
|
-
|
|
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
|
+
}
|