@syncfusion/ej2-angular-schedule 29.2.10-ngcc → 30.1.37-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.
@@ -1,221 +1,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
- 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
+ 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,5 +1,5 @@
1
- /**
2
- * NgModule definition for the Schedule component.
3
- */
4
- export declare class ScheduleModule {
5
- }
1
+ /**
2
+ * NgModule definition for the Schedule component.
3
+ */
4
+ export declare class ScheduleModule {
5
+ }