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

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