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

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 (173) hide show
  1. package/README.md +47 -121
  2. package/esm2020/public_api.mjs +3 -0
  3. package/esm2020/src/index.mjs +11 -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 +283 -0
  11. package/esm2020/src/schedule/schedule.module.mjs +52 -0
  12. package/esm2020/src/schedule/views.directive.mjs +126 -0
  13. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  14. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +733 -0
  15. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  16. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +733 -0
  17. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  18. package/package.json +45 -22
  19. package/schematics/utils/lib-details.d.ts +2 -2
  20. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
  21. package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -0
  22. package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
  23. package/src/schedule/headerrows.directive.d.ts +5 -0
  24. package/src/schedule/resources.directive.d.ts +5 -0
  25. package/src/schedule/schedule-all.module.d.ts +6 -0
  26. package/src/schedule/schedule.component.d.ts +3 -0
  27. package/src/schedule/schedule.module.d.ts +9 -0
  28. package/src/schedule/views.directive.d.ts +6 -6
  29. package/styles/bootstrap-dark.css +106 -369
  30. package/styles/bootstrap.css +104 -368
  31. package/styles/bootstrap4.css +146 -380
  32. package/styles/bootstrap5-dark.css +142 -344
  33. package/styles/bootstrap5.css +142 -344
  34. package/styles/fabric-dark.css +106 -335
  35. package/styles/fabric.css +111 -321
  36. package/styles/fluent-dark.css +107 -400
  37. package/styles/fluent.css +107 -400
  38. package/styles/highcontrast-light.css +103 -412
  39. package/styles/highcontrast.css +118 -404
  40. package/styles/material-dark.css +115 -367
  41. package/styles/material.css +115 -409
  42. package/styles/recurrence-editor/_all.scss +2 -0
  43. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +13 -0
  44. package/styles/recurrence-editor/_bootstrap-definition.scss +13 -0
  45. package/styles/recurrence-editor/_bootstrap4-definition.scss +13 -0
  46. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  47. package/styles/recurrence-editor/_bootstrap5-definition.scss +13 -0
  48. package/styles/recurrence-editor/_fabric-dark-definition.scss +13 -0
  49. package/styles/recurrence-editor/_fabric-definition.scss +13 -0
  50. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  51. package/styles/recurrence-editor/_fluent-definition.scss +13 -0
  52. package/styles/recurrence-editor/_fusionnew-definition.scss +13 -0
  53. package/styles/recurrence-editor/_highcontrast-definition.scss +13 -0
  54. package/styles/recurrence-editor/_highcontrast-light-definition.scss +13 -0
  55. package/styles/recurrence-editor/_layout.scss +534 -0
  56. package/styles/recurrence-editor/_material-dark-definition.scss +13 -0
  57. package/styles/recurrence-editor/_material-definition.scss +13 -0
  58. package/styles/recurrence-editor/_material3-definition.scss +13 -0
  59. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
  60. package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
  61. package/styles/recurrence-editor/_theme.scss +1 -0
  62. package/styles/recurrence-editor/bootstrap-dark.css +33 -142
  63. package/styles/recurrence-editor/bootstrap-dark.scss +3 -1
  64. package/styles/recurrence-editor/bootstrap.css +33 -142
  65. package/styles/recurrence-editor/bootstrap.scss +3 -1
  66. package/styles/recurrence-editor/bootstrap4.css +33 -176
  67. package/styles/recurrence-editor/bootstrap4.scss +3 -1
  68. package/styles/recurrence-editor/bootstrap5-dark.css +33 -183
  69. package/styles/recurrence-editor/bootstrap5-dark.scss +3 -1
  70. package/styles/recurrence-editor/bootstrap5.css +33 -183
  71. package/styles/recurrence-editor/bootstrap5.scss +3 -1
  72. package/styles/recurrence-editor/fabric-dark.css +33 -118
  73. package/styles/recurrence-editor/fabric-dark.scss +3 -1
  74. package/styles/recurrence-editor/fabric.css +33 -111
  75. package/styles/recurrence-editor/fabric.scss +3 -1
  76. package/styles/recurrence-editor/fluent-dark.css +33 -163
  77. package/styles/recurrence-editor/fluent-dark.scss +3 -1
  78. package/styles/recurrence-editor/fluent.css +33 -163
  79. package/styles/recurrence-editor/fluent.scss +3 -1
  80. package/styles/recurrence-editor/highcontrast-light.css +33 -115
  81. package/styles/recurrence-editor/highcontrast-light.scss +3 -1
  82. package/styles/recurrence-editor/highcontrast.css +33 -115
  83. package/styles/recurrence-editor/highcontrast.scss +3 -1
  84. package/styles/recurrence-editor/material-dark.css +33 -143
  85. package/styles/recurrence-editor/material-dark.scss +3 -1
  86. package/styles/recurrence-editor/material.css +33 -168
  87. package/styles/recurrence-editor/material.scss +3 -1
  88. package/styles/recurrence-editor/tailwind-dark.css +33 -131
  89. package/styles/recurrence-editor/tailwind-dark.scss +3 -1
  90. package/styles/recurrence-editor/tailwind.css +33 -131
  91. package/styles/recurrence-editor/tailwind.scss +3 -1
  92. package/styles/schedule/_all.scss +2 -0
  93. package/styles/schedule/_bootstrap-dark-definition.scss +213 -0
  94. package/styles/schedule/_bootstrap-definition.scss +213 -0
  95. package/styles/schedule/_bootstrap4-definition.scss +215 -0
  96. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  97. package/styles/schedule/_bootstrap5-definition.scss +224 -0
  98. package/styles/schedule/_fabric-dark-definition.scss +213 -0
  99. package/styles/schedule/_fabric-definition.scss +213 -0
  100. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  101. package/styles/schedule/_fluent-definition.scss +220 -0
  102. package/styles/schedule/_fusionnew-definition.scss +224 -0
  103. package/styles/schedule/_highcontrast-definition.scss +214 -0
  104. package/styles/schedule/_highcontrast-light-definition.scss +214 -0
  105. package/styles/schedule/_layout.scss +4489 -0
  106. package/styles/schedule/_material-dark-definition.scss +213 -0
  107. package/styles/schedule/_material-definition.scss +213 -0
  108. package/styles/schedule/_material3-definition.scss +224 -0
  109. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  110. package/styles/schedule/_tailwind-definition.scss +217 -0
  111. package/styles/schedule/_theme.scss +510 -0
  112. package/styles/schedule/bootstrap-dark.css +73 -332
  113. package/styles/schedule/bootstrap-dark.scss +5 -1
  114. package/styles/schedule/bootstrap.css +71 -331
  115. package/styles/schedule/bootstrap.scss +5 -1
  116. package/styles/schedule/bootstrap4.css +113 -343
  117. package/styles/schedule/bootstrap4.scss +5 -1
  118. package/styles/schedule/bootstrap5-dark.css +109 -307
  119. package/styles/schedule/bootstrap5-dark.scss +4 -1
  120. package/styles/schedule/bootstrap5.css +109 -307
  121. package/styles/schedule/bootstrap5.scss +5 -1
  122. package/styles/schedule/fabric-dark.css +73 -298
  123. package/styles/schedule/fabric-dark.scss +5 -1
  124. package/styles/schedule/fabric.css +78 -284
  125. package/styles/schedule/fabric.scss +5 -1
  126. package/styles/schedule/fluent-dark.css +74 -363
  127. package/styles/schedule/fluent-dark.scss +4 -1
  128. package/styles/schedule/fluent.css +74 -363
  129. package/styles/schedule/fluent.scss +5 -1
  130. package/styles/schedule/highcontrast-light.css +70 -375
  131. package/styles/schedule/highcontrast-light.scss +5 -1
  132. package/styles/schedule/highcontrast.css +85 -367
  133. package/styles/schedule/highcontrast.scss +5 -1
  134. package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
  135. package/styles/schedule/icons/_bootstrap.scss +231 -0
  136. package/styles/schedule/icons/_bootstrap4.scss +231 -0
  137. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  138. package/styles/schedule/icons/_bootstrap5.scss +231 -0
  139. package/styles/schedule/icons/_fabric-dark.scss +231 -0
  140. package/styles/schedule/icons/_fabric.scss +231 -0
  141. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  142. package/styles/schedule/icons/_fluent.scss +231 -0
  143. package/styles/schedule/icons/_fusionnew.scss +231 -0
  144. package/styles/schedule/icons/_highcontrast-light.scss +231 -0
  145. package/styles/schedule/icons/_highcontrast.scss +231 -0
  146. package/styles/schedule/icons/_material-dark.scss +231 -0
  147. package/styles/schedule/icons/_material.scss +231 -0
  148. package/styles/schedule/icons/_material3.scss +231 -0
  149. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  150. package/styles/schedule/icons/_tailwind.scss +231 -0
  151. package/styles/schedule/material-dark.css +82 -330
  152. package/styles/schedule/material-dark.scss +5 -1
  153. package/styles/schedule/material.css +82 -372
  154. package/styles/schedule/material.scss +5 -1
  155. package/styles/schedule/tailwind-dark.css +111 -246
  156. package/styles/schedule/tailwind-dark.scss +4 -1
  157. package/styles/schedule/tailwind.css +111 -246
  158. package/styles/schedule/tailwind.scss +5 -1
  159. package/styles/tailwind-dark.css +145 -284
  160. package/styles/tailwind.css +145 -284
  161. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  162. package/@syncfusion/ej2-angular-schedule.es5.js +0 -840
  163. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  164. package/@syncfusion/ej2-angular-schedule.js +0 -788
  165. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  166. package/CHANGELOG.md +0 -1589
  167. package/dist/ej2-angular-schedule.umd.js +0 -980
  168. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  169. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  170. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  171. package/ej2-angular-schedule.d.ts +0 -6
  172. package/ej2-angular-schedule.metadata.json +0 -1
  173. package/postinstall/tagchange.js +0 -18
@@ -1,840 +0,0 @@
1
- var __extends = (this && this.__extends) || (function () {
2
- var extendStatics = Object.setPrototypeOf ||
3
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
4
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
5
- return function (d, b) {
6
- extendStatics(d, b);
7
- function __() { this.constructor = d; }
8
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
9
- };
10
- })();
11
- import { ChangeDetectionStrategy, Component, ContentChild, ContentChildren, Directive, ElementRef, Injector, NgModule, Renderer2, ViewContainerRef } from '@angular/core';
12
- import { ArrayBase, ComplexBase, ComponentBase, ComponentMixins, Template, setValue } from '@syncfusion/ej2-angular-base';
13
- import { Agenda, Day, DragAndDrop, ExcelExport, ICalendarExport, ICalendarImport, Month, MonthAgenda, Print, RecurrenceEditor, Resize, Schedule, TimelineMonth, TimelineViews, TimelineYear, Week, WorkWeek, Year } from '@syncfusion/ej2-schedule';
14
- import { CommonModule } from '@angular/common';
15
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
16
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
17
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
18
- r = Reflect.decorate(decorators, target, key, desc);
19
- else
20
- for (var i = decorators.length - 1; i >= 0; i--)
21
- if (d = decorators[i])
22
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
23
- return c > 3 && r && Object.defineProperty(target, key, r), r;
24
- };
25
- var __metadata = (this && this.__metadata) || function (k, v) {
26
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
27
- return Reflect.metadata(k, v);
28
- };
29
- var input = ['allowVirtualScrolling', 'cellHeaderTemplate', 'cellTemplate', 'dateFormat', 'dateHeaderTemplate', 'dateRangeTemplate', 'dayHeaderTemplate', 'displayDate', 'displayName', 'endHour', 'eventTemplate', 'firstDayOfWeek', 'firstMonthOfYear', 'group', 'headerIndentTemplate', 'headerRows', 'interval', 'isSelected', 'monthHeaderTemplate', 'monthsCount', 'numberOfWeeks', 'option', 'orientation', 'readonly', 'resourceHeaderTemplate', 'showWeekNumber', 'showWeekend', 'startHour', 'timeFormat', 'timeScale', 'workDays'];
30
- var outputs = [];
31
- /**
32
- * `e-views` directive represent a view of the Angular Schedule.
33
- * It must be contained in a Schedule component(`ejs-schedule`).
34
- * ```html
35
- * <ejs-schedule>
36
- * <e-views>
37
- * <e-view option='day' dateFormat='dd MMM'></e-view>
38
- * <e-view option='week'></e-view>
39
- * </e-views>
40
- * </ejs-schedule>
41
- * ```
42
- */
43
- var ViewDirective = /** @class */ (function (_super) {
44
- __extends(ViewDirective, _super);
45
- /**
46
- * @param {?} viewContainerRef
47
- */
48
- function ViewDirective(viewContainerRef) {
49
- var _this = _super.call(this) || this;
50
- _this.viewContainerRef = viewContainerRef;
51
- setValue('currentInstance', _this, _this.viewContainerRef);
52
- _this.registerEvents(outputs);
53
- _this.directivePropList = input;
54
- return _this;
55
- }
56
- return ViewDirective;
57
- }(ComplexBase));
58
- ViewDirective.decorators = [
59
- { type: Directive, args: [{
60
- selector: 'e-views>e-view',
61
- inputs: input,
62
- outputs: outputs,
63
- queries: {}
64
- },] },
65
- ];
66
- /**
67
- * @nocollapse
68
- */
69
- ViewDirective.ctorParameters = function () { return [
70
- { type: ViewContainerRef, },
71
- ]; };
72
- ViewDirective.propDecorators = {
73
- 'dateHeaderTemplate': [{ type: ContentChild, args: ['dateHeaderTemplate',] },],
74
- 'dayHeaderTemplate': [{ type: ContentChild, args: ['dayHeaderTemplate',] },],
75
- 'cellHeaderTemplate': [{ type: ContentChild, args: ['cellHeaderTemplate',] },],
76
- 'cellTemplate': [{ type: ContentChild, args: ['cellTemplate',] },],
77
- 'eventTemplate': [{ type: ContentChild, args: ['eventTemplate',] },],
78
- 'monthHeaderTemplate': [{ type: ContentChild, args: ['monthHeaderTemplate',] },],
79
- 'resourceHeaderTemplate': [{ type: ContentChild, args: ['resourceHeaderTemplate',] },],
80
- 'headerIndentTemplate': [{ type: ContentChild, args: ['headerIndentTemplate',] },],
81
- 'timeScale_minorSlotTemplate': [{ type: ContentChild, args: ['timeScaleMinorSlotTemplate',] },],
82
- 'timeScale_majorSlotTemplate': [{ type: ContentChild, args: ['timeScaleMajorSlotTemplate',] },],
83
- 'group_headerTooltipTemplate': [{ type: ContentChild, args: ['groupHeaderTooltipTemplate',] },],
84
- };
85
- __decorate([
86
- Template(),
87
- __metadata("design:type", Object)
88
- ], ViewDirective.prototype, "dateHeaderTemplate", void 0);
89
- __decorate([
90
- Template(),
91
- __metadata("design:type", Object)
92
- ], ViewDirective.prototype, "dayHeaderTemplate", void 0);
93
- __decorate([
94
- Template(),
95
- __metadata("design:type", Object)
96
- ], ViewDirective.prototype, "cellHeaderTemplate", void 0);
97
- __decorate([
98
- Template(),
99
- __metadata("design:type", Object)
100
- ], ViewDirective.prototype, "cellTemplate", void 0);
101
- __decorate([
102
- Template(),
103
- __metadata("design:type", Object)
104
- ], ViewDirective.prototype, "eventTemplate", void 0);
105
- __decorate([
106
- Template(),
107
- __metadata("design:type", Object)
108
- ], ViewDirective.prototype, "monthHeaderTemplate", void 0);
109
- __decorate([
110
- Template(),
111
- __metadata("design:type", Object)
112
- ], ViewDirective.prototype, "resourceHeaderTemplate", void 0);
113
- __decorate([
114
- Template(),
115
- __metadata("design:type", Object)
116
- ], ViewDirective.prototype, "headerIndentTemplate", void 0);
117
- __decorate([
118
- Template(),
119
- __metadata("design:type", Object)
120
- ], ViewDirective.prototype, "timeScale_minorSlotTemplate", void 0);
121
- __decorate([
122
- Template(),
123
- __metadata("design:type", Object)
124
- ], ViewDirective.prototype, "timeScale_majorSlotTemplate", void 0);
125
- __decorate([
126
- Template(),
127
- __metadata("design:type", Object)
128
- ], ViewDirective.prototype, "group_headerTooltipTemplate", void 0);
129
- /**
130
- * View Array Directive
131
- */
132
- var ViewsDirective = /** @class */ (function (_super) {
133
- __extends(ViewsDirective, _super);
134
- function ViewsDirective() {
135
- return _super.call(this, 'views') || this;
136
- }
137
- return ViewsDirective;
138
- }(ArrayBase));
139
- ViewsDirective.decorators = [
140
- { type: Directive, args: [{
141
- selector: 'ejs-schedule>e-views',
142
- queries: {
143
- children: new ContentChildren(ViewDirective)
144
- },
145
- },] },
146
- ];
147
- /**
148
- * @nocollapse
149
- */
150
- ViewsDirective.ctorParameters = function () { return []; };
151
- var input$1 = ['allowMultiple', 'colorField', 'cssClassField', 'dataSource', 'endHourField', 'expandedField', 'field', 'groupIDField', 'idField', 'name', 'query', 'startHourField', 'textField', 'title', 'workDaysField'];
152
- var outputs$1 = [];
153
- /**
154
- * `e-resources` directive represent a resources of the Angular Schedule.
155
- * It must be contained in a Schedule component(`ejs-schedule`).
156
- * ```html
157
- * <ejs-schedule>
158
- * <e-resources>
159
- * <e-resource field='RoomId' name='Rooms'></e-resource>
160
- * <e-resource field='OwnerId' name='Owners'></e-resource>
161
- * </e-resources>
162
- * </ejs-schedule>
163
- * ```
164
- */
165
- var ResourceDirective = /** @class */ (function (_super) {
166
- __extends(ResourceDirective, _super);
167
- /**
168
- * @param {?} viewContainerRef
169
- */
170
- function ResourceDirective(viewContainerRef) {
171
- var _this = _super.call(this) || this;
172
- _this.viewContainerRef = viewContainerRef;
173
- setValue('currentInstance', _this, _this.viewContainerRef);
174
- _this.registerEvents(outputs$1);
175
- _this.directivePropList = input$1;
176
- return _this;
177
- }
178
- return ResourceDirective;
179
- }(ComplexBase));
180
- ResourceDirective.decorators = [
181
- { type: Directive, args: [{
182
- selector: 'e-resources>e-resource',
183
- inputs: input$1,
184
- outputs: outputs$1,
185
- queries: {}
186
- },] },
187
- ];
188
- /**
189
- * @nocollapse
190
- */
191
- ResourceDirective.ctorParameters = function () { return [
192
- { type: ViewContainerRef, },
193
- ]; };
194
- /**
195
- * Resource Array Directive
196
- */
197
- var ResourcesDirective = /** @class */ (function (_super) {
198
- __extends(ResourcesDirective, _super);
199
- function ResourcesDirective() {
200
- return _super.call(this, 'resources') || this;
201
- }
202
- return ResourcesDirective;
203
- }(ArrayBase));
204
- ResourcesDirective.decorators = [
205
- { type: Directive, args: [{
206
- selector: 'ejs-schedule>e-resources',
207
- queries: {
208
- children: new ContentChildren(ResourceDirective)
209
- },
210
- },] },
211
- ];
212
- /**
213
- * @nocollapse
214
- */
215
- ResourcesDirective.ctorParameters = function () { return []; };
216
- var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
217
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
218
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
219
- r = Reflect.decorate(decorators, target, key, desc);
220
- else
221
- for (var i = decorators.length - 1; i >= 0; i--)
222
- if (d = decorators[i])
223
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
224
- return c > 3 && r && Object.defineProperty(target, key, r), r;
225
- };
226
- var __metadata$1 = (this && this.__metadata) || function (k, v) {
227
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
228
- return Reflect.metadata(k, v);
229
- };
230
- var input$2 = ['option', 'template'];
231
- var outputs$2 = [];
232
- /**
233
- * `e-header-rows` directive represent a header rows of the Schedule.
234
- * It must be contained in a Schedule component(`ejs-schedule`).
235
- * ```html
236
- * <ejs-schedule>
237
- * <e-header-rows>
238
- * <e-header-row option='Week'></e-header-row>
239
- * <e-header-row option='Date'></e-header-row>
240
- * </e-header-rows>
241
- * </ejs-schedule>
242
- * ```
243
- */
244
- var HeaderRowDirective = /** @class */ (function (_super) {
245
- __extends(HeaderRowDirective, _super);
246
- /**
247
- * @param {?} viewContainerRef
248
- */
249
- function HeaderRowDirective(viewContainerRef) {
250
- var _this = _super.call(this) || this;
251
- _this.viewContainerRef = viewContainerRef;
252
- setValue('currentInstance', _this, _this.viewContainerRef);
253
- _this.registerEvents(outputs$2);
254
- _this.directivePropList = input$2;
255
- return _this;
256
- }
257
- return HeaderRowDirective;
258
- }(ComplexBase));
259
- HeaderRowDirective.decorators = [
260
- { type: Directive, args: [{
261
- selector: 'e-header-rows>e-header-row',
262
- inputs: input$2,
263
- outputs: outputs$2,
264
- queries: {}
265
- },] },
266
- ];
267
- /**
268
- * @nocollapse
269
- */
270
- HeaderRowDirective.ctorParameters = function () { return [
271
- { type: ViewContainerRef, },
272
- ]; };
273
- HeaderRowDirective.propDecorators = {
274
- 'template': [{ type: ContentChild, args: ['template',] },],
275
- };
276
- __decorate$1([
277
- Template(),
278
- __metadata$1("design:type", Object)
279
- ], HeaderRowDirective.prototype, "template", void 0);
280
- /**
281
- * HeaderRow Array Directive
282
- */
283
- var HeaderRowsDirective = /** @class */ (function (_super) {
284
- __extends(HeaderRowsDirective, _super);
285
- function HeaderRowsDirective() {
286
- return _super.call(this, 'headerrows') || this;
287
- }
288
- return HeaderRowsDirective;
289
- }(ArrayBase));
290
- HeaderRowsDirective.decorators = [
291
- { type: Directive, args: [{
292
- selector: 'ejs-schedule>e-header-rows',
293
- queries: {
294
- children: new ContentChildren(HeaderRowDirective)
295
- },
296
- },] },
297
- ];
298
- /**
299
- * @nocollapse
300
- */
301
- HeaderRowsDirective.ctorParameters = function () { return []; };
302
- var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
303
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
304
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
305
- r = Reflect.decorate(decorators, target, key, desc);
306
- else
307
- for (var i = decorators.length - 1; i >= 0; i--)
308
- if (d = decorators[i])
309
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
310
- return c > 3 && r && Object.defineProperty(target, key, r), r;
311
- };
312
- var __metadata$2 = (this && this.__metadata) || function (k, v) {
313
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
314
- return Reflect.metadata(k, v);
315
- };
316
- var inputs = ['agendaDaysCount', 'allowDragAndDrop', 'allowInline', 'allowKeyboardInteraction', 'allowMultiCellSelection', 'allowMultiDrag', 'allowMultiRowSelection', 'allowResizing', 'allowSwiping', 'calendarMode', 'cellHeaderTemplate', 'cellTemplate', 'cssClass', 'currentView', 'dateFormat', 'dateHeaderTemplate', 'dateRangeTemplate', 'dayHeaderTemplate', 'editorTemplate', 'enableAdaptiveUI', 'enableAllDayScroll', 'enablePersistence', 'enableRecurrenceValidation', 'enableRtl', 'endHour', 'eventDragArea', 'eventSettings', 'firstDayOfWeek', 'firstMonthOfYear', 'group', 'headerIndentTemplate', 'headerRows', 'height', 'hideEmptyAgendaDays', 'locale', 'maxDate', 'minDate', 'monthHeaderTemplate', 'monthsCount', 'quickInfoOnSelectionEnd', 'quickInfoTemplates', 'readonly', 'resourceHeaderTemplate', 'resources', 'rowAutoHeight', 'selectedDate', 'showHeaderBar', 'showQuickInfo', 'showTimeIndicator', 'showWeekNumber', 'showWeekend', 'startHour', 'timeFormat', 'timeScale', 'timezone', 'timezoneDataSource', 'views', 'weekRule', 'width', 'workDays', 'workHours'];
317
- var outputs$3 = ['actionBegin', 'actionComplete', 'actionFailure', 'cellClick', 'cellDoubleClick', 'created', 'dataBinding', 'dataBound', 'destroyed', 'drag', 'dragStart', 'dragStop', 'eventClick', 'eventRendered', 'hover', 'moreEventsClick', 'navigating', 'popupClose', 'popupOpen', 'renderCell', 'resizeStart', 'resizeStop', 'resizing', 'select', 'currentViewChange', 'selectedDateChange'];
318
- var twoWays = ['currentView', 'selectedDate'];
319
- /**
320
- * `ej-schedule` represents the Angular Schedule Component.
321
- * ```html
322
- * <ejs-schedule></ejs-schedule>
323
- * ```
324
- */
325
- var ScheduleComponent = /** @class */ (function (_super) {
326
- __extends(ScheduleComponent, _super);
327
- /**
328
- * @param {?} ngEle
329
- * @param {?} srenderer
330
- * @param {?} viewContainerRef
331
- * @param {?} injector
332
- */
333
- function ScheduleComponent(ngEle, srenderer, viewContainerRef, injector) {
334
- var _this = _super.call(this) || this;
335
- _this.ngEle = ngEle;
336
- _this.srenderer = srenderer;
337
- _this.viewContainerRef = viewContainerRef;
338
- _this.injector = injector;
339
- _this.tags = ['views', 'resources', 'headerRows'];
340
- _this.element = _this.ngEle.nativeElement;
341
- _this.injectedModules = _this.injectedModules || [];
342
- try {
343
- var mod = _this.injector.get('ScheduleDay');
344
- if (_this.injectedModules.indexOf(mod) === -1) {
345
- _this.injectedModules.push(mod);
346
- }
347
- }
348
- catch (_a) { }
349
- try {
350
- var mod = _this.injector.get('ScheduleWeek');
351
- if (_this.injectedModules.indexOf(mod) === -1) {
352
- _this.injectedModules.push(mod);
353
- }
354
- }
355
- catch (_b) { }
356
- try {
357
- var mod = _this.injector.get('ScheduleWorkWeek');
358
- if (_this.injectedModules.indexOf(mod) === -1) {
359
- _this.injectedModules.push(mod);
360
- }
361
- }
362
- catch (_c) { }
363
- try {
364
- var mod = _this.injector.get('ScheduleMonth');
365
- if (_this.injectedModules.indexOf(mod) === -1) {
366
- _this.injectedModules.push(mod);
367
- }
368
- }
369
- catch (_d) { }
370
- try {
371
- var mod = _this.injector.get('ScheduleYear');
372
- if (_this.injectedModules.indexOf(mod) === -1) {
373
- _this.injectedModules.push(mod);
374
- }
375
- }
376
- catch (_e) { }
377
- try {
378
- var mod = _this.injector.get('ScheduleAgenda');
379
- if (_this.injectedModules.indexOf(mod) === -1) {
380
- _this.injectedModules.push(mod);
381
- }
382
- }
383
- catch (_f) { }
384
- try {
385
- var mod = _this.injector.get('ScheduleMonthAgenda');
386
- if (_this.injectedModules.indexOf(mod) === -1) {
387
- _this.injectedModules.push(mod);
388
- }
389
- }
390
- catch (_g) { }
391
- try {
392
- var mod = _this.injector.get('ScheduleTimelineViews');
393
- if (_this.injectedModules.indexOf(mod) === -1) {
394
- _this.injectedModules.push(mod);
395
- }
396
- }
397
- catch (_h) { }
398
- try {
399
- var mod = _this.injector.get('ScheduleTimelineMonth');
400
- if (_this.injectedModules.indexOf(mod) === -1) {
401
- _this.injectedModules.push(mod);
402
- }
403
- }
404
- catch (_j) { }
405
- try {
406
- var mod = _this.injector.get('ScheduleTimelineYear');
407
- if (_this.injectedModules.indexOf(mod) === -1) {
408
- _this.injectedModules.push(mod);
409
- }
410
- }
411
- catch (_k) { }
412
- try {
413
- var mod = _this.injector.get('ScheduleResize');
414
- if (_this.injectedModules.indexOf(mod) === -1) {
415
- _this.injectedModules.push(mod);
416
- }
417
- }
418
- catch (_l) { }
419
- try {
420
- var mod = _this.injector.get('ScheduleDragAndDrop');
421
- if (_this.injectedModules.indexOf(mod) === -1) {
422
- _this.injectedModules.push(mod);
423
- }
424
- }
425
- catch (_m) { }
426
- try {
427
- var mod = _this.injector.get('ScheduleExcelExport');
428
- if (_this.injectedModules.indexOf(mod) === -1) {
429
- _this.injectedModules.push(mod);
430
- }
431
- }
432
- catch (_o) { }
433
- try {
434
- var mod = _this.injector.get('ScheduleICalendarExport');
435
- if (_this.injectedModules.indexOf(mod) === -1) {
436
- _this.injectedModules.push(mod);
437
- }
438
- }
439
- catch (_p) { }
440
- try {
441
- var mod = _this.injector.get('ScheduleICalendarImport');
442
- if (_this.injectedModules.indexOf(mod) === -1) {
443
- _this.injectedModules.push(mod);
444
- }
445
- }
446
- catch (_q) { }
447
- try {
448
- var mod = _this.injector.get('SchedulePrint');
449
- if (_this.injectedModules.indexOf(mod) === -1) {
450
- _this.injectedModules.push(mod);
451
- }
452
- }
453
- catch (_r) { }
454
- _this.registerEvents(outputs$3);
455
- _this.addTwoWay.call(_this, twoWays);
456
- setValue('currentInstance', _this, _this.viewContainerRef);
457
- _this.context = new ComponentBase();
458
- return _this;
459
- }
460
- /**
461
- * @return {?}
462
- */
463
- ScheduleComponent.prototype.ngOnInit = function () {
464
- this.context.ngOnInit(this);
465
- };
466
- /**
467
- * @return {?}
468
- */
469
- ScheduleComponent.prototype.ngAfterViewInit = function () {
470
- this.context.ngAfterViewInit(this);
471
- };
472
- /**
473
- * @return {?}
474
- */
475
- ScheduleComponent.prototype.ngOnDestroy = function () {
476
- this.context.ngOnDestroy(this);
477
- };
478
- /**
479
- * @return {?}
480
- */
481
- ScheduleComponent.prototype.ngAfterContentChecked = function () {
482
- this.tagObjects[0].instance = this.childViews;
483
- if (this.childResources) {
484
- this.tagObjects[1].instance = this.childResources;
485
- }
486
- if (this.childHeaderRows) {
487
- this.tagObjects[2].instance = this.childHeaderRows;
488
- }
489
- this.context.ngAfterContentChecked(this);
490
- };
491
- return ScheduleComponent;
492
- }(Schedule));
493
- ScheduleComponent.decorators = [
494
- { type: Component, args: [{
495
- selector: 'ejs-schedule',
496
- inputs: inputs,
497
- outputs: outputs$3,
498
- template: '',
499
- changeDetection: ChangeDetectionStrategy.OnPush,
500
- queries: {
501
- childViews: new ContentChild(ViewsDirective),
502
- childResources: new ContentChild(ResourcesDirective),
503
- childHeaderRows: new ContentChild(HeaderRowsDirective)
504
- }
505
- },] },
506
- ];
507
- /**
508
- * @nocollapse
509
- */
510
- ScheduleComponent.ctorParameters = function () { return [
511
- { type: ElementRef, },
512
- { type: Renderer2, },
513
- { type: ViewContainerRef, },
514
- { type: Injector, },
515
- ]; };
516
- ScheduleComponent.propDecorators = {
517
- 'dateHeaderTemplate': [{ type: ContentChild, args: ['dateHeaderTemplate',] },],
518
- 'dayHeaderTemplate': [{ type: ContentChild, args: ['dayHeaderTemplate',] },],
519
- 'cellTemplate': [{ type: ContentChild, args: ['cellTemplate',] },],
520
- 'cellHeaderTemplate': [{ type: ContentChild, args: ['cellHeaderTemplate',] },],
521
- 'eventSettings_tooltipTemplate': [{ type: ContentChild, args: ['eventSettingsTooltipTemplate',] },],
522
- 'eventSettings_template': [{ type: ContentChild, args: ['eventSettingsTemplate',] },],
523
- 'editorTemplate': [{ type: ContentChild, args: ['editorTemplate',] },],
524
- 'monthHeaderTemplate': [{ type: ContentChild, args: ['monthHeaderTemplate',] },],
525
- 'timeScale_minorSlotTemplate': [{ type: ContentChild, args: ['timeScaleMinorSlotTemplate',] },],
526
- 'timeScale_majorSlotTemplate': [{ type: ContentChild, args: ['timeScaleMajorSlotTemplate',] },],
527
- 'resourceHeaderTemplate': [{ type: ContentChild, args: ['resourceHeaderTemplate',] },],
528
- 'headerIndentTemplate': [{ type: ContentChild, args: ['headerIndentTemplate',] },],
529
- 'quickInfoTemplates_header': [{ type: ContentChild, args: ['quickInfoTemplatesHeader',] },],
530
- 'quickInfoTemplates_content': [{ type: ContentChild, args: ['quickInfoTemplatesContent',] },],
531
- 'quickInfoTemplates_footer': [{ type: ContentChild, args: ['quickInfoTemplatesFooter',] },],
532
- 'group_headerTooltipTemplate': [{ type: ContentChild, args: ['groupHeaderTooltipTemplate',] },],
533
- };
534
- __decorate$2([
535
- Template(),
536
- __metadata$2("design:type", Object)
537
- ], ScheduleComponent.prototype, "dateHeaderTemplate", void 0);
538
- __decorate$2([
539
- Template(),
540
- __metadata$2("design:type", Object)
541
- ], ScheduleComponent.prototype, "dayHeaderTemplate", void 0);
542
- __decorate$2([
543
- Template(),
544
- __metadata$2("design:type", Object)
545
- ], ScheduleComponent.prototype, "cellTemplate", void 0);
546
- __decorate$2([
547
- Template(),
548
- __metadata$2("design:type", Object)
549
- ], ScheduleComponent.prototype, "cellHeaderTemplate", void 0);
550
- __decorate$2([
551
- Template(),
552
- __metadata$2("design:type", Object)
553
- ], ScheduleComponent.prototype, "eventSettings_tooltipTemplate", void 0);
554
- __decorate$2([
555
- Template(),
556
- __metadata$2("design:type", Object)
557
- ], ScheduleComponent.prototype, "eventSettings_template", void 0);
558
- __decorate$2([
559
- Template(),
560
- __metadata$2("design:type", Object)
561
- ], ScheduleComponent.prototype, "editorTemplate", void 0);
562
- __decorate$2([
563
- Template(),
564
- __metadata$2("design:type", Object)
565
- ], ScheduleComponent.prototype, "monthHeaderTemplate", void 0);
566
- __decorate$2([
567
- Template(),
568
- __metadata$2("design:type", Object)
569
- ], ScheduleComponent.prototype, "timeScale_minorSlotTemplate", void 0);
570
- __decorate$2([
571
- Template(),
572
- __metadata$2("design:type", Object)
573
- ], ScheduleComponent.prototype, "timeScale_majorSlotTemplate", void 0);
574
- __decorate$2([
575
- Template(),
576
- __metadata$2("design:type", Object)
577
- ], ScheduleComponent.prototype, "resourceHeaderTemplate", void 0);
578
- __decorate$2([
579
- Template(),
580
- __metadata$2("design:type", Object)
581
- ], ScheduleComponent.prototype, "headerIndentTemplate", void 0);
582
- __decorate$2([
583
- Template(),
584
- __metadata$2("design:type", Object)
585
- ], ScheduleComponent.prototype, "quickInfoTemplates_header", void 0);
586
- __decorate$2([
587
- Template(),
588
- __metadata$2("design:type", Object)
589
- ], ScheduleComponent.prototype, "quickInfoTemplates_content", void 0);
590
- __decorate$2([
591
- Template(),
592
- __metadata$2("design:type", Object)
593
- ], ScheduleComponent.prototype, "quickInfoTemplates_footer", void 0);
594
- __decorate$2([
595
- Template(),
596
- __metadata$2("design:type", Object)
597
- ], ScheduleComponent.prototype, "group_headerTooltipTemplate", void 0);
598
- ScheduleComponent = __decorate$2([
599
- ComponentMixins([ComponentBase]),
600
- __metadata$2("design:paramtypes", [ElementRef,
601
- Renderer2,
602
- ViewContainerRef,
603
- Injector])
604
- ], ScheduleComponent);
605
- /**
606
- * NgModule definition for the Schedule component.
607
- */
608
- var ScheduleModule = /** @class */ (function () {
609
- function ScheduleModule() {
610
- }
611
- return ScheduleModule;
612
- }());
613
- ScheduleModule.decorators = [
614
- { type: NgModule, args: [{
615
- imports: [CommonModule],
616
- declarations: [
617
- ScheduleComponent,
618
- ViewDirective,
619
- ViewsDirective,
620
- ResourceDirective,
621
- ResourcesDirective,
622
- HeaderRowDirective,
623
- HeaderRowsDirective
624
- ],
625
- exports: [
626
- ScheduleComponent,
627
- ViewDirective,
628
- ViewsDirective,
629
- ResourceDirective,
630
- ResourcesDirective,
631
- HeaderRowDirective,
632
- HeaderRowsDirective
633
- ]
634
- },] },
635
- ];
636
- /**
637
- * @nocollapse
638
- */
639
- ScheduleModule.ctorParameters = function () { return []; };
640
- var DayService = { provide: 'ScheduleDay', useValue: Day };
641
- var WeekService = { provide: 'ScheduleWeek', useValue: Week };
642
- var WorkWeekService = { provide: 'ScheduleWorkWeek', useValue: WorkWeek };
643
- var MonthService = { provide: 'ScheduleMonth', useValue: Month };
644
- var YearService = { provide: 'ScheduleYear', useValue: Year };
645
- var AgendaService = { provide: 'ScheduleAgenda', useValue: Agenda };
646
- var MonthAgendaService = { provide: 'ScheduleMonthAgenda', useValue: MonthAgenda };
647
- var TimelineViewsService = { provide: 'ScheduleTimelineViews', useValue: TimelineViews };
648
- var TimelineMonthService = { provide: 'ScheduleTimelineMonth', useValue: TimelineMonth };
649
- var TimelineYearService = { provide: 'ScheduleTimelineYear', useValue: TimelineYear };
650
- var ResizeService = { provide: 'ScheduleResize', useValue: Resize };
651
- var DragAndDropService = { provide: 'ScheduleDragAndDrop', useValue: DragAndDrop };
652
- var ExcelExportService = { provide: 'ScheduleExcelExport', useValue: ExcelExport };
653
- var ICalendarExportService = { provide: 'ScheduleICalendarExport', useValue: ICalendarExport };
654
- var ICalendarImportService = { provide: 'ScheduleICalendarImport', useValue: ICalendarImport };
655
- var PrintService = { provide: 'SchedulePrint', useValue: Print };
656
- /**
657
- * NgModule definition for the Schedule component with providers.
658
- */
659
- var ScheduleAllModule = /** @class */ (function () {
660
- function ScheduleAllModule() {
661
- }
662
- return ScheduleAllModule;
663
- }());
664
- ScheduleAllModule.decorators = [
665
- { type: NgModule, args: [{
666
- imports: [CommonModule, ScheduleModule],
667
- exports: [
668
- ScheduleModule
669
- ],
670
- providers: [
671
- DayService,
672
- WeekService,
673
- WorkWeekService,
674
- MonthService,
675
- YearService,
676
- AgendaService,
677
- MonthAgendaService,
678
- TimelineViewsService,
679
- TimelineMonthService,
680
- TimelineYearService,
681
- ResizeService,
682
- DragAndDropService,
683
- ExcelExportService,
684
- ICalendarExportService,
685
- ICalendarImportService,
686
- PrintService
687
- ]
688
- },] },
689
- ];
690
- /**
691
- * @nocollapse
692
- */
693
- ScheduleAllModule.ctorParameters = function () { return []; };
694
- var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
695
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
696
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function")
697
- r = Reflect.decorate(decorators, target, key, desc);
698
- else
699
- for (var i = decorators.length - 1; i >= 0; i--)
700
- if (d = decorators[i])
701
- r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
702
- return c > 3 && r && Object.defineProperty(target, key, r), r;
703
- };
704
- var __metadata$3 = (this && this.__metadata) || function (k, v) {
705
- if (typeof Reflect === "object" && typeof Reflect.metadata === "function")
706
- return Reflect.metadata(k, v);
707
- };
708
- var inputs$1 = ['calendarMode', 'cssClass', 'dateFormat', 'enablePersistence', 'enableRtl', 'firstDayOfWeek', 'frequencies', 'locale', 'maxDate', 'minDate', 'selectedType', 'startDate', 'value'];
709
- var outputs$4 = ['change'];
710
- var twoWays$1 = [];
711
- /**
712
- * `ejs-recurrenceeditor` represents the Angular RecurrenceEditor Component.
713
- * ```html
714
- * <ejs-recurrenceeditor></ejs-recurrenceeditor>
715
- * ```
716
- */
717
- var RecurrenceEditorComponent = /** @class */ (function (_super) {
718
- __extends(RecurrenceEditorComponent, _super);
719
- /**
720
- * @param {?} ngEle
721
- * @param {?} srenderer
722
- * @param {?} viewContainerRef
723
- * @param {?} injector
724
- */
725
- function RecurrenceEditorComponent(ngEle, srenderer, viewContainerRef, injector) {
726
- var _this = _super.call(this) || this;
727
- _this.ngEle = ngEle;
728
- _this.srenderer = srenderer;
729
- _this.viewContainerRef = viewContainerRef;
730
- _this.injector = injector;
731
- _this.element = _this.ngEle.nativeElement;
732
- _this.injectedModules = _this.injectedModules || [];
733
- _this.registerEvents(outputs$4);
734
- _this.addTwoWay.call(_this, twoWays$1);
735
- setValue('currentInstance', _this, _this.viewContainerRef);
736
- _this.context = new ComponentBase();
737
- return _this;
738
- }
739
- /**
740
- * @return {?}
741
- */
742
- RecurrenceEditorComponent.prototype.ngOnInit = function () {
743
- this.context.ngOnInit(this);
744
- };
745
- /**
746
- * @return {?}
747
- */
748
- RecurrenceEditorComponent.prototype.ngAfterViewInit = function () {
749
- this.context.ngAfterViewInit(this);
750
- };
751
- /**
752
- * @return {?}
753
- */
754
- RecurrenceEditorComponent.prototype.ngOnDestroy = function () {
755
- this.context.ngOnDestroy(this);
756
- };
757
- /**
758
- * @return {?}
759
- */
760
- RecurrenceEditorComponent.prototype.ngAfterContentChecked = function () {
761
- this.context.ngAfterContentChecked(this);
762
- };
763
- return RecurrenceEditorComponent;
764
- }(RecurrenceEditor));
765
- RecurrenceEditorComponent.decorators = [
766
- { type: Component, args: [{
767
- selector: 'ejs-recurrenceeditor',
768
- inputs: inputs$1,
769
- outputs: outputs$4,
770
- template: '',
771
- changeDetection: ChangeDetectionStrategy.OnPush,
772
- queries: {}
773
- },] },
774
- ];
775
- /**
776
- * @nocollapse
777
- */
778
- RecurrenceEditorComponent.ctorParameters = function () { return [
779
- { type: ElementRef, },
780
- { type: Renderer2, },
781
- { type: ViewContainerRef, },
782
- { type: Injector, },
783
- ]; };
784
- RecurrenceEditorComponent = __decorate$3([
785
- ComponentMixins([ComponentBase]),
786
- __metadata$3("design:paramtypes", [ElementRef,
787
- Renderer2,
788
- ViewContainerRef,
789
- Injector])
790
- ], RecurrenceEditorComponent);
791
- /**
792
- * NgModule definition for the RecurrenceEditor component.
793
- */
794
- var RecurrenceEditorModule = /** @class */ (function () {
795
- function RecurrenceEditorModule() {
796
- }
797
- return RecurrenceEditorModule;
798
- }());
799
- RecurrenceEditorModule.decorators = [
800
- { type: NgModule, args: [{
801
- imports: [CommonModule],
802
- declarations: [
803
- RecurrenceEditorComponent
804
- ],
805
- exports: [
806
- RecurrenceEditorComponent
807
- ]
808
- },] },
809
- ];
810
- /**
811
- * @nocollapse
812
- */
813
- RecurrenceEditorModule.ctorParameters = function () { return []; };
814
- /**
815
- * NgModule definition for the RecurrenceEditor component with providers.
816
- */
817
- var RecurrenceEditorAllModule = /** @class */ (function () {
818
- function RecurrenceEditorAllModule() {
819
- }
820
- return RecurrenceEditorAllModule;
821
- }());
822
- RecurrenceEditorAllModule.decorators = [
823
- { type: NgModule, args: [{
824
- imports: [CommonModule, RecurrenceEditorModule],
825
- exports: [
826
- RecurrenceEditorModule
827
- ],
828
- providers: []
829
- },] },
830
- ];
831
- /**
832
- * @nocollapse
833
- */
834
- RecurrenceEditorAllModule.ctorParameters = function () { return []; };
835
- /**
836
- * Generated bundle index. Do not edit.
837
- */
838
- export { ViewDirective, ViewsDirective, ResourceDirective, ResourcesDirective, HeaderRowDirective, HeaderRowsDirective, ScheduleComponent, ScheduleModule, ScheduleAllModule, DayService, WeekService, WorkWeekService, MonthService, YearService, AgendaService, MonthAgendaService, TimelineViewsService, TimelineMonthService, TimelineYearService, ResizeService, DragAndDropService, ExcelExportService, ICalendarExportService, ICalendarImportService, PrintService, RecurrenceEditorComponent, RecurrenceEditorModule, RecurrenceEditorAllModule, inputs$1 as ɵc, outputs$4 as ɵd, inputs as ɵa, outputs$3 as ɵb };
839
- export { Schedule, cellClick, cellDoubleClick, moreEventsClick, select, hover, actionBegin, actionComplete, actionFailure, navigating, renderCell, eventClick, eventRendered, dataBinding, dataBound, popupOpen, popupClose, dragStart, drag, dragStop, resizeStart, resizing, resizeStop, inlineClick, initialLoad, initialEnd, print, dataReady, eventsLoaded, contentReady, scroll, virtualScroll, scrollUiUpdate, uiUpdate, documentClick, cellMouseDown, WEEK_LENGTH, DEFAULT_WEEKS, MS_PER_DAY, MS_PER_MINUTE, getElementHeightFromClass, getElementWidthFromClass, getTranslateY, getTranslateX, getWeekFirstDate, getWeekLastDate, firstDateOfMonth, lastDateOfMonth, getWeekNumber, getWeekMiddleDate, setTime, resetTime, getDateInMs, getDateCount, addDays, addMonths, addYears, getStartEndHours, getMaxDays, getDaysCount, getDateFromString, getScrollBarWidth, findIndexInData, getOuterHeight, removeChildren, isDaylightSavingTime, getUniversalTime, isMobile, isIPadDevice, capitalizeFirstWord, Resize, DragAndDrop, HeaderRenderer, ViewBase, Day, Week, WorkWeek, Month, Year, Agenda, MonthAgenda, TimelineViews, TimelineMonth, TimelineYear, Timezone, timezoneData, ICalendarExport, ICalendarImport, ExcelExport, Print, RecurrenceEditor, generateSummary, generate, getDateFromRecurrenceDateString, extractObjectFromRule, getCalendarUtil, getRecurrenceStringFromDate, Gregorian, Islamic } from '@syncfusion/ej2-schedule';
840
- //# sourceMappingURL=ej2-angular-schedule.es5.js.map