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

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 (160) hide show
  1. package/CHANGELOG.md +476 -9
  2. package/README.md +9 -2
  3. package/esm2020/public_api.mjs +2 -0
  4. package/esm2020/src/index.mjs +12 -0
  5. package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
  6. package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
  7. package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
  8. package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
  9. package/esm2020/src/schedule/resources.directive.mjs +58 -0
  10. package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
  11. package/esm2020/src/schedule/schedule.component.mjs +306 -0
  12. package/esm2020/src/schedule/schedule.module.mjs +61 -0
  13. package/esm2020/src/schedule/toolbaritems.directive.mjs +67 -0
  14. package/esm2020/src/schedule/views.directive.mjs +132 -0
  15. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  16. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +829 -0
  17. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  18. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +829 -0
  19. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  20. package/package.json +28 -46
  21. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
  22. package/src/recurrence-editor/recurrenceeditor.component.d.ts +5 -0
  23. package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
  24. package/src/schedule/headerrows.directive.d.ts +5 -0
  25. package/src/schedule/resources.directive.d.ts +5 -0
  26. package/src/schedule/schedule-all.module.d.ts +6 -0
  27. package/src/schedule/schedule.component.d.ts +7 -0
  28. package/src/schedule/schedule.module.d.ts +10 -0
  29. package/src/schedule/toolbaritems.directive.d.ts +5 -0
  30. package/src/schedule/views.directive.d.ts +31 -0
  31. package/styles/bds-lite.css +1 -0
  32. package/styles/bds-lite.scss +1 -0
  33. package/styles/bds.css +1 -0
  34. package/styles/bds.scss +2 -0
  35. package/styles/bootstrap-dark-lite.css +1 -0
  36. package/styles/bootstrap-dark-lite.scss +1 -0
  37. package/styles/bootstrap-dark.scss +2 -2
  38. package/styles/bootstrap-lite.css +1 -0
  39. package/styles/bootstrap-lite.scss +1 -0
  40. package/styles/bootstrap.scss +2 -2
  41. package/styles/bootstrap4-lite.css +1 -0
  42. package/styles/bootstrap4-lite.scss +1 -0
  43. package/styles/bootstrap4.scss +2 -2
  44. package/styles/bootstrap5-dark-lite.css +1 -0
  45. package/styles/bootstrap5-dark-lite.scss +1 -0
  46. package/styles/bootstrap5-dark.scss +2 -2
  47. package/styles/bootstrap5-lite.css +1 -0
  48. package/styles/bootstrap5-lite.scss +1 -0
  49. package/styles/bootstrap5.3-lite.css +1 -0
  50. package/styles/bootstrap5.3-lite.scss +1 -0
  51. package/styles/bootstrap5.3.css +1 -0
  52. package/styles/bootstrap5.3.scss +2 -0
  53. package/styles/bootstrap5.scss +2 -2
  54. package/styles/fabric-dark-lite.css +1 -0
  55. package/styles/fabric-dark-lite.scss +1 -0
  56. package/styles/fabric-dark.scss +2 -2
  57. package/styles/fabric-lite.css +1 -0
  58. package/styles/fabric-lite.scss +1 -0
  59. package/styles/fabric.scss +2 -2
  60. package/styles/fluent-dark-lite.css +1 -0
  61. package/styles/fluent-dark-lite.scss +1 -0
  62. package/styles/fluent-dark.scss +2 -2
  63. package/styles/fluent-lite.css +1 -0
  64. package/styles/fluent-lite.scss +1 -0
  65. package/styles/fluent.scss +2 -2
  66. package/styles/fluent2-lite.css +1 -0
  67. package/styles/fluent2-lite.scss +1 -0
  68. package/styles/fluent2.css +1 -0
  69. package/styles/fluent2.scss +2 -0
  70. package/styles/highcontrast-light-lite.css +1 -0
  71. package/styles/highcontrast-light-lite.scss +1 -0
  72. package/styles/highcontrast-light.scss +2 -2
  73. package/styles/highcontrast-lite.css +1 -0
  74. package/styles/highcontrast-lite.scss +1 -0
  75. package/styles/highcontrast.scss +2 -2
  76. package/styles/material-dark-lite.css +1 -0
  77. package/styles/material-dark-lite.scss +1 -0
  78. package/styles/material-dark.scss +2 -2
  79. package/styles/material-lite.css +1 -0
  80. package/styles/material-lite.scss +1 -0
  81. package/styles/material.scss +2 -2
  82. package/styles/material3-dark-lite.css +1 -0
  83. package/styles/material3-dark-lite.scss +1 -0
  84. package/styles/material3-dark.scss +2 -3
  85. package/styles/material3-lite.css +1 -0
  86. package/styles/material3-lite.scss +1 -0
  87. package/styles/material3.scss +2 -3
  88. package/styles/recurrence-editor/bds.css +1 -0
  89. package/styles/recurrence-editor/bds.scss +1 -0
  90. package/styles/recurrence-editor/bootstrap-dark.scss +1 -1
  91. package/styles/recurrence-editor/bootstrap.scss +1 -1
  92. package/styles/recurrence-editor/bootstrap4.scss +1 -1
  93. package/styles/recurrence-editor/bootstrap5-dark.scss +1 -1
  94. package/styles/recurrence-editor/bootstrap5.3.css +1 -0
  95. package/styles/recurrence-editor/bootstrap5.3.scss +1 -0
  96. package/styles/recurrence-editor/bootstrap5.scss +1 -1
  97. package/styles/recurrence-editor/fabric-dark.scss +1 -1
  98. package/styles/recurrence-editor/fabric.scss +1 -1
  99. package/styles/recurrence-editor/fluent-dark.scss +1 -1
  100. package/styles/recurrence-editor/fluent.scss +1 -1
  101. package/styles/recurrence-editor/fluent2.css +1 -0
  102. package/styles/recurrence-editor/fluent2.scss +1 -0
  103. package/styles/recurrence-editor/highcontrast-light.scss +1 -1
  104. package/styles/recurrence-editor/highcontrast.scss +1 -1
  105. package/styles/recurrence-editor/material-dark.scss +1 -1
  106. package/styles/recurrence-editor/material.scss +1 -1
  107. package/styles/recurrence-editor/material3-dark.scss +1 -2
  108. package/styles/recurrence-editor/material3.scss +1 -2
  109. package/styles/recurrence-editor/tailwind-dark.scss +1 -1
  110. package/styles/recurrence-editor/tailwind.scss +1 -1
  111. package/styles/recurrence-editor/tailwind3.css +1 -0
  112. package/styles/recurrence-editor/tailwind3.scss +1 -0
  113. package/styles/schedule/bds.css +1 -0
  114. package/styles/schedule/bds.scss +1 -0
  115. package/styles/schedule/bootstrap-dark.scss +1 -1
  116. package/styles/schedule/bootstrap.scss +1 -1
  117. package/styles/schedule/bootstrap4.scss +1 -1
  118. package/styles/schedule/bootstrap5-dark.scss +1 -1
  119. package/styles/schedule/bootstrap5.3.css +1 -0
  120. package/styles/schedule/bootstrap5.3.scss +1 -0
  121. package/styles/schedule/bootstrap5.scss +1 -1
  122. package/styles/schedule/fabric-dark.scss +1 -1
  123. package/styles/schedule/fabric.scss +1 -1
  124. package/styles/schedule/fluent-dark.scss +1 -1
  125. package/styles/schedule/fluent.scss +1 -1
  126. package/styles/schedule/fluent2.css +1 -0
  127. package/styles/schedule/fluent2.scss +1 -0
  128. package/styles/schedule/highcontrast-light.scss +1 -1
  129. package/styles/schedule/highcontrast.scss +1 -1
  130. package/styles/schedule/material-dark.scss +1 -1
  131. package/styles/schedule/material.scss +1 -1
  132. package/styles/schedule/material3-dark.scss +1 -2
  133. package/styles/schedule/material3.scss +1 -2
  134. package/styles/schedule/tailwind-dark.scss +1 -1
  135. package/styles/schedule/tailwind.scss +1 -1
  136. package/styles/schedule/tailwind3.css +1 -0
  137. package/styles/schedule/tailwind3.scss +1 -0
  138. package/styles/tailwind-dark-lite.css +1 -0
  139. package/styles/tailwind-dark-lite.scss +1 -0
  140. package/styles/tailwind-dark.scss +2 -2
  141. package/styles/tailwind-lite.css +1 -0
  142. package/styles/tailwind-lite.scss +1 -0
  143. package/styles/tailwind.scss +2 -2
  144. package/styles/tailwind3-lite.css +1 -0
  145. package/styles/tailwind3-lite.scss +1 -0
  146. package/styles/tailwind3.css +1 -0
  147. package/styles/tailwind3.scss +2 -0
  148. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  149. package/@syncfusion/ej2-angular-schedule.es5.js +0 -955
  150. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  151. package/@syncfusion/ej2-angular-schedule.js +0 -894
  152. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  153. package/dist/ej2-angular-schedule.umd.js +0 -1105
  154. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  155. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  156. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  157. package/ej2-angular-schedule.d.ts +0 -6
  158. package/ej2-angular-schedule.metadata.json +0 -1
  159. package/license +0 -10
  160. package/postinstall/tagchange.js +0 -18
package/CHANGELOG.md CHANGED
@@ -6,6 +6,471 @@
6
6
 
7
7
  #### Bug fixes
8
8
 
9
+ - `#I792237` - Fixed an issue where appointment resizing behaved incorrectly when the time scale was customized using `startHour` and `endHour` in `TimelineDay` view.
10
+
11
+ - `#F197681` - The issue where the `resourceHeaderTemplate` did not receive the date value, when it was grouped has been fixed.
12
+
13
+ ## 32.1.19 (2025-12-16)
14
+
15
+ ### Schedule
16
+
17
+ #### Features
18
+
19
+ - `#I618429` - Added the `groupIndex` value to the `dateHeaderTemplate` when the date header is grouped by resource. This enables resource-specific customization of date headers. Applicable only for `Day`, `Week`, `WorkWeek`, and `Agenda` views when resource-specific date headers are rendered.
20
+
21
+ #### Bug fixes
22
+
23
+ - `#I744881` - Fixed an issue where the virtual scroll position was not preserved during date navigation when `enablePersistence` was set to true.
24
+ - `#I753562` - Fixed an issue where appointment resizing did not work correctly when using timeline views with header rows.
25
+
26
+ ## 30.1.42 (2025-07-29)
27
+
28
+ ### Schedule
29
+
30
+ #### Bug fixes
31
+
32
+ - `#I745472` - Fixed an issue where drag functionality was not working after being conditionally cancelled for multiple appointments.
33
+ - `#I746809` - Resolved an issue where a script error occurred when closing the Quick Info popup that was customized using `quickInfoTemplates`.
34
+
35
+ ## 30.1.39 (2025-07-08)
36
+
37
+ ### Schedule
38
+
39
+ #### Bug fixes
40
+
41
+ - `#I739675` - The issue with the `maxDate` property preventing events from being displayed on the last date has been resolved.
42
+
43
+ ## 30.1.38 (2025-07-02)
44
+
45
+ ### Schedule
46
+
47
+ - `#I693587` - The issue with resources not rendering correctly in the Scheduler when virtual scrolling was enabled has been fixed.
48
+
49
+ ## 29.2.10 (2025-06-10)
50
+
51
+ ### Schedule
52
+
53
+ - `#F727056` - The issue with CSP occurring in the Schedule component Agenda view has been resolved.
54
+
55
+ ## 29.2.8 (2025-06-03)
56
+
57
+ ### Schedule
58
+
59
+ - `#F715433` - The issue with assigning a direct date time value to the `StartDate` property of recurrence editor
60
+
61
+ ## 29.2.5 (2025-05-21)
62
+
63
+ ### Schedule
64
+
65
+ - `#F723835` - The issue with the Quick Info panel closing unexpectedly on pressing "C" or "X" keys in the Schedule component has been resolved.
66
+
67
+ ## 29.2.4 (2025-05-14)
68
+
69
+ ### Schedule
70
+
71
+ - `F67156` - The issue where clearing the start and end dates and then selecting the All Day checkbox caused a console error in the Schedule popup has been resolved. .
72
+
73
+ ## 29.1.41 (2025-05-06)
74
+
75
+ ### Schedule
76
+
77
+ - `I703204` - Memory leak issue with the current time indicator has been resolved.
78
+ - `F716483` - The issue with the `renderCell` event not being triggered in the Timeline views has been resolved.
79
+ - `#I716164` - The issue with CSP occurring in the Schedule component on Firefox has been resolved.
80
+
81
+ ## 29.1.38 (2025-04-15)
82
+
83
+ ### Schedule
84
+
85
+ - `#F708016` - The issue with the Schedules `virtualScroll` feature causing missing resources while scrolling has been resolved.
86
+ - `I708699` - The issue with the excessive button padding in the Toolbar Calendar has been resolved.
87
+
88
+ ## 29.1.37 (2025-04-08)
89
+
90
+ ### Schedule
91
+
92
+ - `#I704571` - The issue with non-integer pixel values causing incorrect time when resizing an appointment has been resolved.
93
+
94
+ ## 29.1.33 (2025-03-25)
95
+
96
+ ### Schedule
97
+
98
+ #### Features
99
+
100
+ - Provided support to prevent the overlapping appointments by setting `allowOverlap` property as `false`. It prevents users from scheduling multiple appointments at the same time in the same time slot.
101
+ - A new callback event, `tooltipOpen`, has been added to control when an appointment tooltip is shown. You can use this event to prevent the tooltip from appearing.
102
+ - A new callback event, `beforePrint`, is triggered when the print event is called. It allows for customization before the print action begins.
103
+ - `#I254712` - A new callback event, `excelExport`, is available before the Excel export process starts. This event lets you customize the Excel worksheet before it's exported.
104
+ - `#I659693` - Provided the `overscanCount` property to adjust the number of additional resources to render outside the visible area during virtual scrolling. This helps achieve smoother scrolling by pre-loading data just outside the visible region.
105
+ - `#700794` - Provided `created` and `destroyed` callback events support for recurrence editor.
106
+
107
+ #### Bug fixes
108
+
109
+ - `#I694546` - An issue where the horizontal scrollbar appears when enabling `rowAutoHeight` in the Month view has been resolved.
110
+ - `#I697893` - The issue with the Schedule `virtualScroll` causing a script error on horizontal scrolling has been fixed.
111
+
112
+ ## 28.2.11 (2025-03-11)
113
+
114
+ ### Schedule
115
+
116
+ #### Bug fixes
117
+
118
+ - `#I693788` - The issue with `MaxDate` in the Recurrence Editor not working correctly has been fixed.
119
+
120
+ - `#I689726` - The issue where selecting one event and then attempting to resize or drag another event caused a problem with the previously selected appointment has been fixed.
121
+
122
+ ## 28.2.7 (2025-02-25)
123
+
124
+ ### Schedule
125
+
126
+ #### Bug fixes
127
+
128
+ - `#I678690` - The issue with event resizing in the Scheduler not functioning correctly on touchscreens has been fixed.
129
+
130
+ ## 28.2.6 (2025-02-18)
131
+
132
+ ### Schedule
133
+
134
+ #### Bug fixes
135
+
136
+ - `#I682735`, `#I680637` - An issue where the current time indicator in the Scheduler is rendered in the incorrect position in timeline views has been resolved.
137
+
138
+ - `#F64855` - An issue where the selected date not maintained in Scheduler `MonthAgenda` view has been resolved.
139
+
140
+ ## 28.2.5 (2025-02-11)
141
+
142
+ ### Schedule
143
+
144
+ #### Bug fixes
145
+
146
+ - `#I682735`, `#I680637` - An issue where the current time indicator in the Scheduler is rendered in the incorrect position in vertical views has been resolved.
147
+
148
+ ## 28.2.4 (2025-02-04)
149
+
150
+ ### Schedule
151
+
152
+ #### Bug fixes
153
+
154
+ - `#I680887` - An issue where the Scheduler year view popup does not close when navigating to other views has been resolved.
155
+
156
+ - `#F195634` - An issue with scheduler event misalignment in timeline Day View with custom `timeScale` and `interval` settings has been resolved.
157
+
158
+ - `#F195703` - An issue with the Schedule `actionCompleteArgs` to ensure `deletedRecords` contain the correct edited timezone start and end time for deleted appointments has been resolved.
159
+
160
+ ## 28.2.3 (2025-01-29)
161
+
162
+ ### Schedule
163
+
164
+ #### Bug fixes
165
+
166
+ - `#F195714` - The issue where the `showWeekNumber` property was enabled but the calendar did not display the week numbers in the Scheduler has been resolved.
167
+ - `#I679226` - An issue with swipe functionality not working in the custom month view in mobile mode has been resolved.
168
+
169
+ ## 28.1.39 (2024-01-14)
170
+
171
+ ### Schedule
172
+
173
+ #### Bug fixes
174
+
175
+ - `#I665787` - The issue where the scheduler tooltip rendered empty when using a template with large content has been resolved.
176
+
177
+ ## 28.1.38 (2025-01-07)
178
+
179
+ ### Schedule
180
+
181
+ #### Bug fixes
182
+
183
+ - `#F195575` - An issue with scroll dragging persists after releasing mouse button outside the schedule component has been fixed.
184
+ - `IF667909` - An issue where the horizontal scrollbar would reset its position during window resizing has been fixed.
185
+
186
+ ## 28.1.37 (2024-12-31)
187
+
188
+ ### Schedule
189
+
190
+ #### Bug fixes
191
+
192
+ - `#F195371` - An issue where dragging all-day event in timeline views incorrectly occupies two days has been fixed.
193
+ - `#I664757` - An accessibility issue where the `aria-selected` attribute was present on `<td>` elements and violated accessibility guidelines has been fixed.
194
+
195
+ ## 28.1.35 (2024-12-18)
196
+
197
+ ### Schedule
198
+
199
+ #### Bug fixes
200
+
201
+ - `#I659549` - An issue with dragging longer appointments to the bottom of the vertical views of the Scheduler has been fixed.
202
+
203
+ ## 28.1.33 (2024-12-12)
204
+
205
+ ### Schedule
206
+
207
+ #### Features
208
+
209
+ - `#I354565` - Provided support to enables clipboard functionality for appointments, allowing them to be copied using keyboard shortcuts and pasted onto the Scheduler by setting `allowClipboard` property as `true`. When set to `true`, users can use keyboard shortcuts to cut, copy appointments and paste them into different time slots.
210
+
211
+ | Keys | Description |
212
+ |-----|-----|
213
+ | <kbd>Ctrl + X</kbd> | To cut the selected appointment. |
214
+ | <kbd>Ctrl + C</kbd> | To copy the selected appointment. |
215
+ | <kbd>Ctrl + V</kbd> | To paste the cut/copied appointment. |
216
+
217
+ Methods `cut`, `copy`, and `paste` have been implemented to allow users to perform clipboard actions on appointments.
218
+
219
+ - Provided method `getViewDates` to get the previous, next, or current view render dates.
220
+ - Provided method `getDateRangeText` to get the date range text for the given date collection.
221
+
222
+ ## 27.2.5 (2024-12-03)
223
+
224
+ ### Schedule
225
+
226
+ #### Bug fixes
227
+
228
+ - `#I657588` - The issue with the schedule's current time indicator not being properly aligned has been resolved
229
+
230
+ ## 27.2.3 (2024-11-21)
231
+
232
+ ### Schedule
233
+
234
+ #### Bug fixes
235
+
236
+ - `#F194681` - An issue where a script error occurred while editing an existing event in the scheduler component has been resolved.
237
+
238
+ ## 27.2.2 (2024-11-15)
239
+
240
+ ### Schedule
241
+
242
+ #### Bug fixes
243
+
244
+ - `#I647287` - An issue where an Appointments are rendered in the incorrect time slots when the time zone is set to MET has been resolved.
245
+
246
+ ## 27.1.58 (2024-11-05)
247
+
248
+ ### Schedule
249
+
250
+ #### Bug fixes
251
+
252
+ - `#I647902` - An issue where a script error occurred while click the close icon in print window has been resolved.
253
+
254
+ ## 27.1.57 (2024-10-29)
255
+
256
+ ### Schedule
257
+
258
+ #### Bug fixes
259
+
260
+ - `#I641069` - An issue when dragging an event, the first cell of the hour will be selected and highlighted has been resolved.
261
+ - `#I643159` - An issue when weekly recurrence rule is rendered in the wrong position when setting the `firstDayOfWeek` has been resolved.
262
+ - `#FB62128` - An issue causing events to display incorrectly when a weekly recurrence rule with `BDAY` and a specified timezone is applied has been resolved.
263
+
264
+ ## 27.1.56 (2024-10-23)
265
+
266
+ ### Schedule
267
+
268
+ #### Bug fixes
269
+
270
+ - `#I638628` - The issue with the `renderCell` event not being triggered in the Agenda view has been resolved.
271
+
272
+ ## 27.1.55 (2024-10-22)
273
+
274
+ ### Schedule
275
+
276
+ #### Bug fixes
277
+
278
+ - `#I592841` - An issue where resizing was not functioning correctly in timeline views when using the `startHour` and `endHour` properties has been resolved.
279
+
280
+ ## 27.1.53 (2024-10-15)
281
+
282
+ ### Schedule
283
+
284
+ #### Bug fixes
285
+
286
+ - `#FB61537` - An issue where a script error occurred when attempting to save an event after adding the `NumericTextBox` component in the editor template has been resolved.
287
+ - `#FB61371` - An issue affecting the identification of the `startTime` and `endTime` properties within the `eventRenderedArgs` for spanned events in the Month view has been resolved.
288
+ - `#I640650` - An issue where a script error occurred while setting `setWorkHours` in DST time has been resolved.
289
+
290
+ ## 27.1.52 (2024-10-08)
291
+
292
+ ### Schedule
293
+
294
+ #### Bug fixes
295
+
296
+ - `#FB61586` - The issue with the schedule component tooltip rendering outside the viewport has been fixed.
297
+ - `#I610923` - An issue where the appointments are getting overlapped due to appointment width is not calculated properly has been fixed.
298
+
299
+ ## 27.1.51 (2024-09-30)
300
+
301
+ ### Schedule
302
+
303
+ #### Bug fixes
304
+
305
+ - `#I617009` - An issue where the appointment drag position is not updating according to the mouse cursor in the vertical views of the schedule has been fixed.
306
+ - `#I569000` - The issue with the current time indicator displaying discrepancies compared to the time scale on the start and end days of daylight saving time in the vertical view has been resolved.
307
+
308
+ ## 27.1.50 (2024-09-24)
309
+
310
+ ### Schedule
311
+
312
+ #### Bug fixes
313
+
314
+ - `#FB60159` - An issue where the monthly recurrence appointment was rendered on the wrong date without considering the `StartTimezone` value of the appointment is fixed.
315
+
316
+ ## 27.1.48 (2024-09-18)
317
+
318
+ ### Schedule
319
+
320
+ #### Features
321
+
322
+ - `#I546459` - Improved timeline views virtual scrolling performance.
323
+ - Provided new keyboard shortcuts to open the editor window and navigate to today's date.
324
+
325
+ | Keys | Description |
326
+ |-----|-----|
327
+ | <kbd>Shift + Alt + N</kbd> | To open a new editor window. |
328
+ | <kbd>Shift + Alt + Y</kbd> | To navigate today date. |
329
+
330
+ #### Bug fixes
331
+
332
+ - `#I194307` - An issue where the `firstDayOfWeek` property was not working in the year view's specific settings has been fixed.
333
+
334
+ ## 26.2.14 (2024-09-10)
335
+
336
+ ### Schedule
337
+
338
+ #### Bug fixes
339
+
340
+ - `#I621521` - An issue where the tooltip shows the wrong end time value when the start and end of the appointment are the same has been fixed.
341
+ - `#FB60391` - Deleted recurrence appointment added into the `changedRecords` instead of `deletedRecords` and upon clicking `YES` in the series edit confirmation alert to delete the individual occurrences the deleted records not included in the `deletedRecords` in the `actionBegin` event has been fixed.
342
+
343
+ ## 26.2.12 (2024-09-03)
344
+
345
+ ### Schedule
346
+
347
+ #### Bug fixes
348
+
349
+ - `#I617009` - An issue where the drag clone position not updated based on mouse cursor position in the vertical views has been fixed.
350
+
351
+ ## 26.2.10 (2024-08-20)
352
+
353
+ ### Schedule
354
+
355
+ #### Bug fixes
356
+
357
+ - `#I607401` - An issue where the events are not aligned in correct position when Scheduler height changed dynamically has been fixed.
358
+
359
+ ## 26.2.4 (2024-07-24)
360
+
361
+ ### Schedule
362
+
363
+ #### Bug fixes
364
+
365
+ - `#I605064` - An issue with the weekly recurrence appointment rendering while using the repeat interval value of more than 1 has been fixed.
366
+ - `#I600060` - The issue where the drag clone fails to follow the cursor position during dragging, with cell widths set to auto, has been resolved.
367
+
368
+ ## 26.1.41 (2024-07-09)
369
+
370
+ ### Schedule
371
+
372
+ #### Bug fixes
373
+
374
+ - `#I577891` - An issue with the virtual scrolling performance in the vertical view has been addressed.
375
+ - `#I589776` - An issue where the events are moved to next or previous week while multi dragging has been fixed.
376
+ - `#F188870` - An issue with the current time indicator throws the console error when the resource data source is empty has been fixed.
377
+
378
+ ## 26.1.40 (2024-07-02)
379
+
380
+ ### Schedule
381
+
382
+ #### Bug fixes
383
+
384
+ - `#I591715` - An issue with the resizing event in the scheduler, using the enabled interval and header rows property in the Timeline view, which miscalculated the end time, has been fixed.
385
+
386
+ - `#I603711` - An issue where the custom editor window did not destroy the rich text editor component has been fixed.
387
+
388
+ ## 26.1.39 (2024-06-25)
389
+
390
+ ### Schedule
391
+
392
+ #### Bug fixes
393
+
394
+ - `#F188618` - The issue with the date time format during CSV export in excel has been resolved.
395
+ - `#I602738` - An issue with the print rendered empty page on the print preview window for vertical views has been fixed.
396
+ - `#I603067` - An issue with same duration events are overlapped each other in the vertical view has been fixed.
397
+
398
+ ## 26.1.38 (2024-06-19)
399
+
400
+ ### Schedule
401
+
402
+ #### Bug fixes
403
+
404
+ - `#I587318` - Issues in the Schedule aria-label attributes are fixed.
405
+ - `#I583567` - Resizing the appointment to the last column of the timeline views is not working issue has been resolved.
406
+ - `#I592841` - The issue with the appointment width calculation, when the `endHour` and `timeScale` properties are customized is fixed.
407
+ - `#FB51620` - The `setWorkHours` method sets work hours to the wrong time range if today's date is a DST start is fixed.
408
+ - `#I583293` - The quick info popup shows the wrong time instead of the clicked cell time and adds the appointment to the wrong time if the clicked cell is in the DST start date is fixed.
409
+
410
+ - `#I597851` - The issue with the event template in the Angular implementation, where it wasn't printing properly in the scheduler, has been fixed.
411
+
412
+ ## 26.1.35 (2024-06-11)
413
+
414
+ ### Schedule
415
+
416
+ #### Bug fixes
417
+
418
+ - `#I587571` - The issue with the `refreshLayout` method causing UI disruptions when utilizing `allowVirtualscrolling` has been resolved.
419
+ - `#FB57769` - An issue with the events is not overlap properly when the event has same start and end time.
420
+
421
+ ## 25.2.6 (2024-05-28)
422
+
423
+ ### Schedule
424
+
425
+ #### Bug fixes
426
+
427
+ - `#I586530` - The issue with `refreshTemplates` caused alignment issues in resource header has been resolved.
428
+
429
+ ## 25.2.4 (2024-05-14)
430
+
431
+ ### Schedule
432
+
433
+ #### Bug fixes
434
+
435
+ - `#I539772` - Appointment drag and drop issue in iPad is fixed.
436
+ - `#I522699` - The issue with touch scrolling through appointments, which was caused by interference from the drag and drop and resize feature, has been resolved in touch devices. Drag and resize operations are only enabled after a tap-hold action.
437
+ - `#I583762` - The issue with `refreshTemplates` caused alignment issues in date header has been resolved.
438
+
439
+ ## 25.2.3 (2024-05-08)
440
+
441
+ ### Schedule
442
+
443
+ #### Bug fixes
444
+
445
+ - `#I582520` - The issue with `scrollToResource` not working in the month view has been resolved.
446
+
447
+ - `#I528774` - The `eventTemplate` causing memory leak on date navigation has been fixed.
448
+
449
+ ## 25.1.42 (2024-04-30)
450
+
451
+ ### Schedule
452
+
453
+ #### Bug fixes
454
+
455
+ - `#I583674` - An issue where the text for today button was not displayed in the toolbar has been fixed.
456
+
457
+ - `#I577108` - An issue with `quickInfotemplates` is not being properly destroyed has been fixed.
458
+
459
+ ## 25.1.41 (2024-04-23)
460
+
461
+ ### Schedule
462
+
463
+ #### Bug fixes
464
+
465
+ - `#I569000` - The issue with the Timeslots show difference than the time scale on the day light saving start and end day has been resolved.
466
+ - An issue with XSS vulnerability identified in the editor window has been fixed.
467
+
468
+ ## 25.1.39 (2024-04-09)
469
+
470
+ ### Schedule
471
+
472
+ #### Bug fixes
473
+
9
474
  - `#I556008` - An issue with the reading and restoring the current resource in compact view has been fixed.
10
475
  - `#I550494` - An issue with appointments overlapping while using `sortComparer` in the timeline views has been fixed.
11
476
  - `#I549215` - The issue with the `refreshLayout` method causing UI disruptions when utilizing `allowVirtualscrolling` has been resolved.
@@ -867,10 +1332,10 @@
867
1332
 
868
1333
  - The following properties type was changed.
869
1334
 
870
- | Property | Previous Type | Current Type |
871
- |---|---|---|
872
- | `selectedType` | `anonymous` | `int` |
873
- | value | `anonymous` | `string` |
1335
+ | Property | Previous Type | Current Type |
1336
+ |----------|---------------|--------------------------------|
1337
+ | `selectedType` | `anonymous` | `int` |
1338
+ | value | `anonymous` | `string` |
874
1339
 
875
1340
  ## 18.4.49 (2021-03-23)
876
1341
 
@@ -1880,7 +2345,6 @@
1880
2345
 
1881
2346
  Schedule is an event calendar which facilitates user with the common Outlook-calendar features, thus allowing the users to plan and manage their appointments and its time in an efficient way.
1882
2347
 
1883
-
1884
2348
  - **Views** - Schedule is now availed with 6 different view modes – day, week, work week, month, agenda and month agenda. It is possible to configure view-based settings on each view mode. The `Week` view is set as active view by default.
1885
2349
  - **Data binding** - Seamless data binding with various client-side and remote data sources thus allowing the data to load on demand by default to reduce the data transfer and loading time.
1886
2350
  - **Recurrence** - Allows the user to repeat a set of events on a daily, weekly, monthly, or yearly basis.
@@ -1891,8 +2355,13 @@ Schedule is an event calendar which facilitates user with the common Outlook-cal
1891
2355
  - **Adaptive rendering** - Adapts with optimal user interfaces for mobile and desktop form-factors, thus helping the user’s application to scale elegantly across all the form-factors without any additional effort.
1892
2356
  - **Keyboard interaction** - All the common actions such as traversing through the appointments, multiple cell selection, add/edit/delete the appointments, navigate to other views, dates and much more can be performed through keyboard inputs.
1893
2357
  - **Localization** - All the static text and date content can be localized to any desired language. Also, it can be displayed with appropriate time mode and date-format as per the localized language.
1894
- - **RTL** - Supports displaying the component to display in the direction from right to left.
2358
+ - **RTL** - Supports displaying the component to display in the direction from right to left.## 26.2.7 (2024-07-30)
1895
2359
 
2360
+ ### Schedule
2361
+
2362
+ #### Bug fixes
2363
+
2364
+ - `#I614002` - Interacting with the scheduler after printing using the `print` method with print options throws Script error has been fixed.
1896
2365
 
1897
2366
  ## 16.4.48 (2019-01-22)
1898
2367
 
@@ -1916,6 +2385,4 @@ Schedule is an event calendar which facilitates user with the common Outlook-cal
1916
2385
 
1917
2386
  #### Bug Fixes
1918
2387
 
1919
- - An issue with the options of `quickInfoTemplates` API, while defining it within the angular template has been fixed.
1920
-
1921
-
2388
+ - An issue with the options of `quickInfoTemplates` API, while defining it within the angular template has been fixed.
package/README.md CHANGED
@@ -13,7 +13,7 @@ The [Angular Schedule](https://www.syncfusion.com/angular-ui-components/angular-
13
13
  <p align="center">
14
14
  Trusted by the world's leading companies
15
15
  <a href="https://www.syncfusion.com">
16
- <img src="https://raw.githubusercontent.com/SyncfusionExamples/nuget-img/master/syncfusion/syncfusion-trusted-companies.webp" alt="Bootstrap logo">
16
+ <img src="https://ej2.syncfusion.com/home/images/trusted_companies.png" alt="Bootstrap logo">
17
17
  </a>
18
18
  </p>
19
19
 
@@ -122,6 +122,13 @@ Schedule component is also offered in the following list of frameworks.
122
122
  * [Localization](https://ej2.syncfusion.com/angular/documentation/schedule/localization.html#localization?utm_source=npm&utm_medium=listing&utm_campaign=angular-scheduler-npm) - All the static text and date content can be localized to any desired language. Also, it can be displayed with appropriate time mode and date-format as per the localized language.
123
123
  * [RTL](https://ej2.syncfusion.com/angular/documentation/schedule/localization.html#rtl?utm_source=npm&utm_medium=listing&utm_campaign=angular-scheduler-npm) - Supports displaying the component to display in the direction from right to left.
124
124
 
125
+ ## Resources
126
+
127
+ * [Theme Studio](https://ej2.syncfusion.com/themestudio/)
128
+ * [What's New](https://www.syncfusion.com/products/whatsnew/angular?utm_medium=listing&utm_source=github)
129
+ * [Road Map](https://www.syncfusion.com/products/roadmap/angular)
130
+ * [E-Books](https://www.syncfusion.com/succinctly-free-ebooks?searchkey=angular&type=all)
131
+
125
132
  ## Support
126
133
 
127
134
  Product support is available through the following mediums.
@@ -138,7 +145,7 @@ Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-componen
138
145
 
139
146
  ## License and copyright
140
147
 
141
- > This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [Angular UI components](https://www.syncfusion.com/angular-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
148
+ > This is a commercial product and requires a paid license for possession or use. Syncfusion<sup>®</sup> licensed software, including this component, is subject to the terms and conditions of Syncfusion<sup>®</sup> [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 140+ [Angular UI components](https://www.syncfusion.com/angular-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
142
149
 
143
150
  > A free community [license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
144
151
 
@@ -0,0 +1,2 @@
1
+ export * from './src/index';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljX2FwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3B1YmxpY19hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3NyYy9pbmRleCc7Il19
@@ -0,0 +1,12 @@
1
+ export { ViewDirective, ViewsDirective } from './schedule/views.directive';
2
+ export { ResourceDirective, ResourcesDirective } from './schedule/resources.directive';
3
+ export { HeaderRowDirective, HeaderRowsDirective } from './schedule/headerrows.directive';
4
+ export { ToolbarItemDirective, ToolbarItemsDirective } from './schedule/toolbaritems.directive';
5
+ export { ScheduleComponent } from './schedule/schedule.component';
6
+ export { ScheduleModule } from './schedule/schedule.module';
7
+ export { ScheduleAllModule, DayService, WeekService, WorkWeekService, MonthService, YearService, AgendaService, MonthAgendaService, TimelineViewsService, TimelineMonthService, TimelineYearService, ResizeService, DragAndDropService, ExcelExportService, ICalendarExportService, ICalendarImportService, PrintService } from './schedule/schedule-all.module';
8
+ export { RecurrenceEditorComponent } from './recurrence-editor/recurrenceeditor.component';
9
+ export { RecurrenceEditorModule } from './recurrence-editor/recurrenceeditor.module';
10
+ export { RecurrenceEditorAllModule } from './recurrence-editor/recurrenceeditor-all.module';
11
+ export * from '@syncfusion/ej2-schedule';
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLGFBQWEsRUFBQyxjQUFjLEVBQUMsTUFBTSw0QkFBNEIsQ0FBQztBQUN4RSxPQUFPLEVBQUMsaUJBQWlCLEVBQUMsa0JBQWtCLEVBQUMsTUFBTSxnQ0FBZ0MsQ0FBQztBQUNwRixPQUFPLEVBQUMsa0JBQWtCLEVBQUMsbUJBQW1CLEVBQUMsTUFBTSxpQ0FBaUMsQ0FBQztBQUN2RixPQUFPLEVBQUMsb0JBQW9CLEVBQUMscUJBQXFCLEVBQUMsTUFBTSxtQ0FBbUMsQ0FBQztBQUM3RixPQUFPLEVBQUUsaUJBQWlCLEVBQUMsTUFBTSwrQkFBK0IsQ0FBQztBQUNqRSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sNEJBQTRCLENBQUM7QUFDNUQsT0FBTyxFQUFFLGlCQUFpQixFQUFFLFVBQVUsRUFBRSxXQUFXLEVBQUUsZUFBZSxFQUFFLFlBQVksRUFBRSxXQUFXLEVBQUUsYUFBYSxFQUFFLGtCQUFrQixFQUFFLG9CQUFvQixFQUFFLG9CQUFvQixFQUFFLG1CQUFtQixFQUFFLGFBQWEsRUFBRSxrQkFBa0IsRUFBRSxrQkFBa0IsRUFBRSxzQkFBc0IsRUFBRSxzQkFBc0IsRUFBRSxZQUFZLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUNqVyxPQUFPLEVBQUUseUJBQXlCLEVBQUMsTUFBTSxnREFBZ0QsQ0FBQztBQUMxRixPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw2Q0FBNkMsQ0FBQztBQUNyRixPQUFPLEVBQUUseUJBQXlCLEVBQUUsTUFBTSxpREFBaUQsQ0FBQztBQUM1RixjQUFjLDBCQUEwQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IHtWaWV3RGlyZWN0aXZlLFZpZXdzRGlyZWN0aXZlfSBmcm9tICcuL3NjaGVkdWxlL3ZpZXdzLmRpcmVjdGl2ZSc7XG5leHBvcnQge1Jlc291cmNlRGlyZWN0aXZlLFJlc291cmNlc0RpcmVjdGl2ZX0gZnJvbSAnLi9zY2hlZHVsZS9yZXNvdXJjZXMuZGlyZWN0aXZlJztcbmV4cG9ydCB7SGVhZGVyUm93RGlyZWN0aXZlLEhlYWRlclJvd3NEaXJlY3RpdmV9IGZyb20gJy4vc2NoZWR1bGUvaGVhZGVycm93cy5kaXJlY3RpdmUnO1xuZXhwb3J0IHtUb29sYmFySXRlbURpcmVjdGl2ZSxUb29sYmFySXRlbXNEaXJlY3RpdmV9IGZyb20gJy4vc2NoZWR1bGUvdG9vbGJhcml0ZW1zLmRpcmVjdGl2ZSc7XG5leHBvcnQgeyBTY2hlZHVsZUNvbXBvbmVudH0gZnJvbSAnLi9zY2hlZHVsZS9zY2hlZHVsZS5jb21wb25lbnQnO1xuZXhwb3J0IHsgU2NoZWR1bGVNb2R1bGUgfSBmcm9tICcuL3NjaGVkdWxlL3NjaGVkdWxlLm1vZHVsZSc7XG5leHBvcnQgeyBTY2hlZHVsZUFsbE1vZHVsZSwgRGF5U2VydmljZSwgV2Vla1NlcnZpY2UsIFdvcmtXZWVrU2VydmljZSwgTW9udGhTZXJ2aWNlLCBZZWFyU2VydmljZSwgQWdlbmRhU2VydmljZSwgTW9udGhBZ2VuZGFTZXJ2aWNlLCBUaW1lbGluZVZpZXdzU2VydmljZSwgVGltZWxpbmVNb250aFNlcnZpY2UsIFRpbWVsaW5lWWVhclNlcnZpY2UsIFJlc2l6ZVNlcnZpY2UsIERyYWdBbmREcm9wU2VydmljZSwgRXhjZWxFeHBvcnRTZXJ2aWNlLCBJQ2FsZW5kYXJFeHBvcnRTZXJ2aWNlLCBJQ2FsZW5kYXJJbXBvcnRTZXJ2aWNlLCBQcmludFNlcnZpY2UgfSBmcm9tICcuL3NjaGVkdWxlL3NjaGVkdWxlLWFsbC5tb2R1bGUnO1xuZXhwb3J0IHsgUmVjdXJyZW5jZUVkaXRvckNvbXBvbmVudH0gZnJvbSAnLi9yZWN1cnJlbmNlLWVkaXRvci9yZWN1cnJlbmNlZWRpdG9yLmNvbXBvbmVudCc7XG5leHBvcnQgeyBSZWN1cnJlbmNlRWRpdG9yTW9kdWxlIH0gZnJvbSAnLi9yZWN1cnJlbmNlLWVkaXRvci9yZWN1cnJlbmNlZWRpdG9yLm1vZHVsZSc7XG5leHBvcnQgeyBSZWN1cnJlbmNlRWRpdG9yQWxsTW9kdWxlIH0gZnJvbSAnLi9yZWN1cnJlbmNlLWVkaXRvci9yZWN1cnJlbmNlZWRpdG9yLWFsbC5tb2R1bGUnO1xuZXhwb3J0ICogZnJvbSAnQHN5bmNmdXNpb24vZWoyLXNjaGVkdWxlJzsiXX0=
@@ -0,0 +1,23 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+ import { RecurrenceEditorModule } from './recurrenceeditor.module';
4
+ import * as i0 from "@angular/core";
5
+ /**
6
+ * NgModule definition for the RecurrenceEditor component with providers.
7
+ */
8
+ export class RecurrenceEditorAllModule {
9
+ }
10
+ RecurrenceEditorAllModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RecurrenceEditorAllModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
11
+ RecurrenceEditorAllModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RecurrenceEditorAllModule, imports: [CommonModule, RecurrenceEditorModule], exports: [RecurrenceEditorModule] });
12
+ RecurrenceEditorAllModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RecurrenceEditorAllModule, providers: [], imports: [[CommonModule, RecurrenceEditorModule], RecurrenceEditorModule] });
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RecurrenceEditorAllModule, decorators: [{
14
+ type: NgModule,
15
+ args: [{
16
+ imports: [CommonModule, RecurrenceEditorModule],
17
+ exports: [
18
+ RecurrenceEditorModule
19
+ ],
20
+ providers: []
21
+ }]
22
+ }] });
23
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjdXJyZW5jZWVkaXRvci1hbGwubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vc3JjL3JlY3VycmVuY2UtZWRpdG9yL3JlY3VycmVuY2VlZGl0b3ItYWxsLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFpQixNQUFNLGVBQWUsQ0FBQztBQUN4RCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFFL0MsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0sMkJBQTJCLENBQUM7O0FBTW5FOztHQUVHO0FBVUgsTUFBTSxPQUFPLHlCQUF5Qjs7c0hBQXpCLHlCQUF5Qjt1SEFBekIseUJBQXlCLFlBUnhCLFlBQVksRUFBRSxzQkFBc0IsYUFFMUMsc0JBQXNCO3VIQU1qQix5QkFBeUIsYUFKeEIsRUFFVCxZQU5RLENBQUMsWUFBWSxFQUFFLHNCQUFzQixDQUFDLEVBRTNDLHNCQUFzQjsyRkFNakIseUJBQXlCO2tCQVRyQyxRQUFRO21CQUFDO29CQUNOLE9BQU8sRUFBRSxDQUFDLFlBQVksRUFBRSxzQkFBc0IsQ0FBQztvQkFDL0MsT0FBTyxFQUFFO3dCQUNMLHNCQUFzQjtxQkFDekI7b0JBQ0QsU0FBUyxFQUFDLEVBRVQ7aUJBQ0oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSwgVmFsdWVQcm92aWRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IFJlY3VycmVuY2VFZGl0b3JDb21wb25lbnQgfSBmcm9tICcuL3JlY3VycmVuY2VlZGl0b3IuY29tcG9uZW50JztcbmltcG9ydCB7IFJlY3VycmVuY2VFZGl0b3JNb2R1bGUgfSBmcm9tICcuL3JlY3VycmVuY2VlZGl0b3IubW9kdWxlJztcblxuXG5cblxuXG4vKipcbiAqIE5nTW9kdWxlIGRlZmluaXRpb24gZm9yIHRoZSBSZWN1cnJlbmNlRWRpdG9yIGNvbXBvbmVudCB3aXRoIHByb3ZpZGVycy5cbiAqL1xuQE5nTW9kdWxlKHtcbiAgICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlLCBSZWN1cnJlbmNlRWRpdG9yTW9kdWxlXSxcbiAgICBleHBvcnRzOiBbXG4gICAgICAgIFJlY3VycmVuY2VFZGl0b3JNb2R1bGVcbiAgICBdLFxuICAgIHByb3ZpZGVyczpbXG4gICAgICAgIFxuICAgIF1cbn0pXG5leHBvcnQgY2xhc3MgUmVjdXJyZW5jZUVkaXRvckFsbE1vZHVsZSB7IH0iXX0=
@@ -0,0 +1,59 @@
1
+ import { __decorate } from "tslib";
2
+ import { Component, ChangeDetectionStrategy } from '@angular/core';
3
+ import { ComponentBase, ComponentMixins, setValue } from '@syncfusion/ej2-angular-base';
4
+ import { RecurrenceEditor } from '@syncfusion/ej2-schedule';
5
+ import * as i0 from "@angular/core";
6
+ export const inputs = ['calendarMode', 'cssClass', 'dateFormat', 'enablePersistence', 'enableRtl', 'endTypes', 'firstDayOfWeek', 'frequencies', 'locale', 'maxDate', 'minDate', 'selectedType', 'startDate', 'value'];
7
+ export const outputs = ['change', 'created', 'destroyed'];
8
+ export const twoWays = [];
9
+ /**
10
+ * `ejs-recurrenceeditor` represents the Angular RecurrenceEditor Component.
11
+ * ```html
12
+ * <ejs-recurrenceeditor></ejs-recurrenceeditor>
13
+ * ```
14
+ */
15
+ let RecurrenceEditorComponent = class RecurrenceEditorComponent extends RecurrenceEditor {
16
+ constructor(ngEle, srenderer, viewContainerRef, injector) {
17
+ super();
18
+ this.ngEle = ngEle;
19
+ this.srenderer = srenderer;
20
+ this.viewContainerRef = viewContainerRef;
21
+ this.injector = injector;
22
+ this.element = this.ngEle.nativeElement;
23
+ this.injectedModules = this.injectedModules || [];
24
+ this.registerEvents(outputs);
25
+ this.addTwoWay.call(this, twoWays);
26
+ setValue('currentInstance', this, this.viewContainerRef);
27
+ this.context = new ComponentBase();
28
+ }
29
+ ngOnInit() {
30
+ this.context.ngOnInit(this);
31
+ }
32
+ ngAfterViewInit() {
33
+ this.context.ngAfterViewInit(this);
34
+ }
35
+ ngOnDestroy() {
36
+ this.context.ngOnDestroy(this);
37
+ }
38
+ ngAfterContentChecked() {
39
+ this.context.ngAfterContentChecked(this);
40
+ }
41
+ };
42
+ RecurrenceEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RecurrenceEditorComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
43
+ RecurrenceEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.0.3", type: RecurrenceEditorComponent, selector: "ejs-recurrenceeditor", inputs: { calendarMode: "calendarMode", cssClass: "cssClass", dateFormat: "dateFormat", enablePersistence: "enablePersistence", enableRtl: "enableRtl", endTypes: "endTypes", firstDayOfWeek: "firstDayOfWeek", frequencies: "frequencies", locale: "locale", maxDate: "maxDate", minDate: "minDate", selectedType: "selectedType", startDate: "startDate", value: "value" }, outputs: { change: "change", created: "created", destroyed: "destroyed" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
44
+ RecurrenceEditorComponent = __decorate([
45
+ ComponentMixins([ComponentBase])
46
+ ], RecurrenceEditorComponent);
47
+ export { RecurrenceEditorComponent };
48
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.0.3", ngImport: i0, type: RecurrenceEditorComponent, decorators: [{
49
+ type: Component,
50
+ args: [{
51
+ selector: 'ejs-recurrenceeditor',
52
+ inputs: inputs,
53
+ outputs: outputs,
54
+ template: '',
55
+ changeDetection: ChangeDetectionStrategy.OnPush,
56
+ queries: {}
57
+ }]
58
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.Injector }]; } });
59
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVjdXJyZW5jZWVkaXRvci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9zcmMvcmVjdXJyZW5jZS1lZGl0b3IvcmVjdXJyZW5jZWVkaXRvci5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWdDLHVCQUF1QixFQUFpRCxNQUFNLGVBQWUsQ0FBQztBQUNoSixPQUFPLEVBQUUsYUFBYSxFQUErQixlQUFlLEVBQTBCLFFBQVEsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBQzdJLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDBCQUEwQixDQUFDOztBQUk1RCxNQUFNLENBQUMsTUFBTSxNQUFNLEdBQWEsQ0FBQyxjQUFjLEVBQUMsVUFBVSxFQUFDLFlBQVksRUFBQyxtQkFBbUIsRUFBQyxXQUFXLEVBQUMsVUFBVSxFQUFDLGdCQUFnQixFQUFDLGFBQWEsRUFBQyxRQUFRLEVBQUMsU0FBUyxFQUFDLFNBQVMsRUFBQyxjQUFjLEVBQUMsV0FBVyxFQUFDLE9BQU8sQ0FBQyxDQUFDO0FBQ25OLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBYSxDQUFDLFFBQVEsRUFBQyxTQUFTLEVBQUMsV0FBVyxDQUFDLENBQUM7QUFDbEUsTUFBTSxDQUFDLE1BQU0sT0FBTyxHQUFhLEVBQUUsQ0FBQztBQUVwQzs7Ozs7R0FLRztJQVlVLHlCQUF5QixTQUF6Qix5QkFBMEIsU0FBUSxnQkFBZ0I7SUFTM0QsWUFBb0IsS0FBaUIsRUFBVSxTQUFvQixFQUFVLGdCQUFpQyxFQUFVLFFBQWtCO1FBQ3RJLEtBQUssRUFBRSxDQUFDO1FBRFEsVUFBSyxHQUFMLEtBQUssQ0FBWTtRQUFVLGNBQVMsR0FBVCxTQUFTLENBQVc7UUFBVSxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQWlCO1FBQVUsYUFBUSxHQUFSLFFBQVEsQ0FBVTtRQUV0SSxJQUFJLENBQUMsT0FBTyxHQUFHLElBQUksQ0FBQyxLQUFLLENBQUMsYUFBYSxDQUFDO1FBQ3hDLElBQUksQ0FBQyxlQUFlLEdBQUcsSUFBSSxDQUFDLGVBQWUsSUFBSSxFQUFFLENBQUM7UUFFbEQsSUFBSSxDQUFDLGNBQWMsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUM3QixJQUFJLENBQUMsU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLEVBQUUsT0FBTyxDQUFDLENBQUM7UUFDbkMsUUFBUSxDQUFDLGlCQUFpQixFQUFFLElBQUksRUFBRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztRQUN6RCxJQUFJLENBQUMsT0FBTyxHQUFJLElBQUksYUFBYSxFQUFFLENBQUM7SUFDeEMsQ0FBQztJQUVNLFFBQVE7UUFDWCxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUNoQyxDQUFDO0lBRU0sZUFBZTtRQUNsQixJQUFJLENBQUMsT0FBTyxDQUFDLGVBQWUsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUN2QyxDQUFDO0lBRU0sV0FBVztRQUNkLElBQUksQ0FBQyxPQUFPLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ25DLENBQUM7SUFFTSxxQkFBcUI7UUFFeEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUM3QyxDQUFDO0NBSUosQ0FBQTtzSEF2Q1kseUJBQXlCOzBHQUF6Qix5QkFBeUIsNGdCQVB4QixFQUFFO0FBT0gseUJBQXlCO0lBRHJDLGVBQWUsQ0FBQyxDQUFDLGFBQWEsQ0FBQyxDQUFDO0dBQ3BCLHlCQUF5QixDQXVDckM7U0F2Q1kseUJBQXlCOzJGQUF6Qix5QkFBeUI7a0JBWHJDLFNBQVM7bUJBQUM7b0JBQ1AsUUFBUSxFQUFFLHNCQUFzQjtvQkFDaEMsTUFBTSxFQUFFLE1BQU07b0JBQ2QsT0FBTyxFQUFFLE9BQU87b0JBQ2hCLFFBQVEsRUFBRSxFQUFFO29CQUNaLGVBQWUsRUFBRSx1QkFBdUIsQ0FBQyxNQUFNO29CQUMvQyxPQUFPLEVBQUUsRUFFUjtpQkFDSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRWxlbWVudFJlZiwgVmlld0NvbnRhaW5lclJlZiwgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIFF1ZXJ5TGlzdCwgUmVuZGVyZXIyLCBJbmplY3RvciwgVmFsdWVQcm92aWRlciB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQ29tcG9uZW50QmFzZSwgSUNvbXBvbmVudEJhc2UsIGFwcGx5TWl4aW5zLCBDb21wb25lbnRNaXhpbnMsIFByb3BlcnR5Q29sbGVjdGlvbkluZm8sIHNldFZhbHVlIH0gZnJvbSAnQHN5bmNmdXNpb24vZWoyLWFuZ3VsYXItYmFzZSc7XG5pbXBvcnQgeyBSZWN1cnJlbmNlRWRpdG9yIH0gZnJvbSAnQHN5bmNmdXNpb24vZWoyLXNjaGVkdWxlJztcblxuXG5cbmV4cG9ydCBjb25zdCBpbnB1dHM6IHN0cmluZ1tdID0gWydjYWxlbmRhck1vZGUnLCdjc3NDbGFzcycsJ2RhdGVGb3JtYXQnLCdlbmFibGVQZXJzaXN0ZW5jZScsJ2VuYWJsZVJ0bCcsJ2VuZFR5cGVzJywnZmlyc3REYXlPZldlZWsnLCdmcmVxdWVuY2llcycsJ2xvY2FsZScsJ21heERhdGUnLCdtaW5EYXRlJywnc2VsZWN0ZWRUeXBlJywnc3RhcnREYXRlJywndmFsdWUnXTtcbmV4cG9ydCBjb25zdCBvdXRwdXRzOiBzdHJpbmdbXSA9IFsnY2hhbmdlJywnY3JlYXRlZCcsJ2Rlc3Ryb3llZCddO1xuZXhwb3J0IGNvbnN0IHR3b1dheXM6IHN0cmluZ1tdID0gW107XG5cbi8qKlxuICogYGVqcy1yZWN1cnJlbmNlZWRpdG9yYCByZXByZXNlbnRzIHRoZSBBbmd1bGFyIFJlY3VycmVuY2VFZGl0b3IgQ29tcG9uZW50LlxuICogYGBgaHRtbFxuICogPGVqcy1yZWN1cnJlbmNlZWRpdG9yPjwvZWpzLXJlY3VycmVuY2VlZGl0b3I+XG4gKiBgYGBcbiAqL1xuQENvbXBvbmVudCh7XG4gICAgc2VsZWN0b3I6ICdlanMtcmVjdXJyZW5jZWVkaXRvcicsXG4gICAgaW5wdXRzOiBpbnB1dHMsXG4gICAgb3V0cHV0czogb3V0cHV0cyxcbiAgICB0ZW1wbGF0ZTogJycsXG4gICAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG4gICAgcXVlcmllczoge1xuXG4gICAgfVxufSlcbkBDb21wb25lbnRNaXhpbnMoW0NvbXBvbmVudEJhc2VdKVxuZXhwb3J0IGNsYXNzIFJlY3VycmVuY2VFZGl0b3JDb21wb25lbnQgZXh0ZW5kcyBSZWN1cnJlbmNlRWRpdG9yIGltcGxlbWVudHMgSUNvbXBvbmVudEJhc2Uge1xuICAgIHB1YmxpYyBjb250ZXh0IDogYW55O1xuICAgIHB1YmxpYyB0YWdPYmplY3RzOiBhbnk7XG5cdGNoYW5nZTogYW55O1xuXHRjcmVhdGVkOiBhbnk7XG5cdHB1YmxpYyBkZXN0cm95ZWQ6IGFueTtcblxuXG5cbiAgICBjb25zdHJ1Y3Rvcihwcml2YXRlIG5nRWxlOiBFbGVtZW50UmVmLCBwcml2YXRlIHNyZW5kZXJlcjogUmVuZGVyZXIyLCBwcml2YXRlIHZpZXdDb250YWluZXJSZWY6Vmlld0NvbnRhaW5lclJlZiwgcHJpdmF0ZSBpbmplY3RvcjogSW5qZWN0b3IpIHtcbiAgICAgICAgc3VwZXIoKTtcbiAgICAgICAgdGhpcy5lbGVtZW50ID0gdGhpcy5uZ0VsZS5uYXRpdmVFbGVtZW50O1xuICAgICAgICB0aGlzLmluamVjdGVkTW9kdWxlcyA9IHRoaXMuaW5qZWN0ZWRNb2R1bGVzIHx8IFtdO1xuXG4gICAgICAgIHRoaXMucmVnaXN0ZXJFdmVudHMob3V0cHV0cyk7XG4gICAgICAgIHRoaXMuYWRkVHdvV2F5LmNhbGwodGhpcywgdHdvV2F5cyk7XG4gICAgICAgIHNldFZhbHVlKCdjdXJyZW50SW5zdGFuY2UnLCB0aGlzLCB0aGlzLnZpZXdDb250YWluZXJSZWYpO1xuICAgICAgICB0aGlzLmNvbnRleHQgID0gbmV3IENvbXBvbmVudEJhc2UoKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdPbkluaXQoKSB7XG4gICAgICAgIHRoaXMuY29udGV4dC5uZ09uSW5pdCh0aGlzKTtcbiAgICB9XG5cbiAgICBwdWJsaWMgbmdBZnRlclZpZXdJbml0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmNvbnRleHQubmdBZnRlclZpZXdJbml0KHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgdGhpcy5jb250ZXh0Lm5nT25EZXN0cm95KHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyBuZ0FmdGVyQ29udGVudENoZWNrZWQoKTogdm9pZCB7XG4gICAgICAgIFxuICAgICAgICB0aGlzLmNvbnRleHQubmdBZnRlckNvbnRlbnRDaGVja2VkKHRoaXMpO1xuICAgIH1cblxuICAgIHB1YmxpYyByZWdpc3RlckV2ZW50czogKGV2ZW50TGlzdDogc3RyaW5nW10pID0+IHZvaWQ7XG4gICAgcHVibGljIGFkZFR3b1dheTogKHByb3BMaXN0OiBzdHJpbmdbXSkgPT4gdm9pZDtcbn1cblxuIl19