@syncfusion/ej2-schedule 20.1.52 → 20.1.55

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 (72) hide show
  1. package/CHANGELOG.md +46 -11
  2. package/dist/ej2-schedule.umd.min.js +2 -2
  3. package/dist/ej2-schedule.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-schedule.es2015.js +133 -46
  5. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  6. package/dist/es6/ej2-schedule.es5.js +133 -46
  7. package/dist/es6/ej2-schedule.es5.js.map +1 -1
  8. package/dist/global/ej2-schedule.min.js +2 -2
  9. package/dist/global/ej2-schedule.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +15 -15
  12. package/src/recurrence-editor/date-generator.js +11 -1
  13. package/src/schedule/base/schedule.js +4 -0
  14. package/src/schedule/event-renderer/agenda-base.js +1 -1
  15. package/src/schedule/event-renderer/event-base.js +3 -0
  16. package/src/schedule/event-renderer/month.d.ts +1 -0
  17. package/src/schedule/event-renderer/month.js +38 -29
  18. package/src/schedule/event-renderer/vertical-view.js +3 -0
  19. package/src/schedule/event-renderer/year.js +3 -1
  20. package/src/schedule/exports/calendar-export.js +1 -1
  21. package/src/schedule/popups/event-window.js +4 -2
  22. package/src/schedule/renderer/month.js +8 -5
  23. package/src/schedule/renderer/renderer.js +2 -1
  24. package/src/schedule/renderer/timeline-year.d.ts +2 -1
  25. package/src/schedule/renderer/timeline-year.js +49 -4
  26. package/src/schedule/renderer/vertical-view.js +2 -1
  27. package/src/schedule/renderer/year.js +4 -0
  28. package/styles/bootstrap-dark.css +83 -968
  29. package/styles/bootstrap.css +83 -967
  30. package/styles/bootstrap4.css +83 -990
  31. package/styles/bootstrap5-dark.css +83 -988
  32. package/styles/bootstrap5.css +83 -988
  33. package/styles/fabric-dark.css +83 -968
  34. package/styles/fabric.css +83 -970
  35. package/styles/fluent-dark.css +83 -968
  36. package/styles/fluent.css +83 -968
  37. package/styles/highcontrast-light.css +83 -967
  38. package/styles/highcontrast.css +83 -972
  39. package/styles/material-dark.css +83 -967
  40. package/styles/material.css +83 -967
  41. package/styles/recurrence-editor/bootstrap-dark.css +6 -94
  42. package/styles/recurrence-editor/bootstrap.css +6 -94
  43. package/styles/recurrence-editor/bootstrap4.css +6 -94
  44. package/styles/recurrence-editor/bootstrap5-dark.css +6 -94
  45. package/styles/recurrence-editor/bootstrap5.css +6 -94
  46. package/styles/recurrence-editor/fabric-dark.css +6 -94
  47. package/styles/recurrence-editor/fabric.css +6 -94
  48. package/styles/recurrence-editor/fluent-dark.css +6 -94
  49. package/styles/recurrence-editor/fluent.css +6 -94
  50. package/styles/recurrence-editor/highcontrast-light.css +6 -94
  51. package/styles/recurrence-editor/highcontrast.css +6 -94
  52. package/styles/recurrence-editor/material-dark.css +6 -94
  53. package/styles/recurrence-editor/material.css +6 -94
  54. package/styles/recurrence-editor/tailwind-dark.css +6 -94
  55. package/styles/recurrence-editor/tailwind.css +6 -94
  56. package/styles/schedule/bootstrap-dark.css +78 -875
  57. package/styles/schedule/bootstrap.css +78 -874
  58. package/styles/schedule/bootstrap4.css +78 -897
  59. package/styles/schedule/bootstrap5-dark.css +78 -895
  60. package/styles/schedule/bootstrap5.css +78 -895
  61. package/styles/schedule/fabric-dark.css +78 -875
  62. package/styles/schedule/fabric.css +78 -877
  63. package/styles/schedule/fluent-dark.css +78 -875
  64. package/styles/schedule/fluent.css +78 -875
  65. package/styles/schedule/highcontrast-light.css +78 -874
  66. package/styles/schedule/highcontrast.css +78 -879
  67. package/styles/schedule/material-dark.css +78 -874
  68. package/styles/schedule/material.css +78 -874
  69. package/styles/schedule/tailwind-dark.css +78 -895
  70. package/styles/schedule/tailwind.css +78 -895
  71. package/styles/tailwind-dark.css +83 -988
  72. package/styles/tailwind.css +83 -988
package/CHANGELOG.md CHANGED
@@ -2,13 +2,48 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ## 19.4.55 (2022-03-08)
5
+ ## 20.1.52 (2022-05-04)
6
6
 
7
7
  ### Schedule
8
8
 
9
9
  #### Bug Fixes
10
10
 
11
- - `#SF-368002` - A issue with cell height not updated property based on appointment rendering while row auto height enabled has been fixed.
11
+ - `#I374675` - The appointment border maintained after deselection on multiple appointment selections has been fixed.
12
+ - `#I373707` - An issue with appointments rendered in the min-max date range in vertical views has been fixed.
13
+
14
+ ## 20.1.50 (2022-04-19)
15
+
16
+ ### Schedule
17
+
18
+ #### Bug Fixes
19
+
20
+ - `#I373678` - An issue with the recurrence appointment time change in the DST time zone has been fixed.
21
+ - `#I372043` - An issue with the appointment rendering performance of the month view has been fixed.
22
+ - `#I373179` - The Schedule `exportToICalendar` method throws a script error on exporting events issue has been fixed.
23
+ - `#I373707` - An issue with the appointments in the min-max date range not rendered in the month view has been fixed.
24
+
25
+ ## 20.1.48 (2022-04-12)
26
+
27
+ ### Schedule
28
+
29
+ #### Bug Fixes
30
+
31
+ - `#F173985` - An issue with duplicate cells rendered when the time scale interval set as 1440 has been fixed.
32
+
33
+ ## 20.1.47 (2022-04-04)
34
+
35
+ ### Schedule
36
+
37
+ #### New Features
38
+
39
+ - `#I305258`, `#FB20522`, `#FB20233` - Provided virtual scrolling support for timeline year view with vertical orientation.
40
+
41
+ #### Bug Fixes
42
+
43
+ - `#I368002, #I369932` - A issue with cell height not updated property based on appointment rendering while row auto height enabled has been fixed.
44
+ - `#I368806` - An issue with an incorrect end date in the editor when using `openEditor` method has been fixed.
45
+ - `#I367110` - An issue with more indicator count value is wrong in month view has been fixed.
46
+ - `#I370378` - An issue with the wrong count of occurrences rendered when clear and set up until date value again has been fixed.
12
47
  - `#F172905` - An issue with scroll position not maintained for timeline year and timeline month views has been fixed.
13
48
 
14
49
  ## 19.4.50 (2022-02-08)
@@ -17,8 +52,8 @@
17
52
 
18
53
  #### Bug Fixes
19
54
 
20
- - `#SF-362813` - An issue with appointment start and end time changes on each schedule layout resize action while using `timezone` property has been fixed.
21
- - `#SF-363018` - An issue with event template content is empty after performing CRUD action with resource has been fixed.
55
+ - `#I362813` - An issue with appointment start and end time changes on each schedule layout resize action while using `timezone` property has been fixed.
56
+ - `#I363018` - An issue with event template content is empty after performing CRUD action with resource has been fixed.
22
57
 
23
58
  ## 19.4.47 (2022-01-25)
24
59
 
@@ -26,9 +61,9 @@
26
61
 
27
62
  #### Bug Fixes
28
63
 
29
- - `#SF-361305` - A performance issue while loading more events in the Timeline views has been fixed.
30
- - `#SF-361135` - An issue with improper argument data received in the `eventRendered` event in each view has been fixed.
31
- - `#SF-363266` - An issue with the more popup window has truncated at bottom of the schedule in month view has been fixed.
64
+ - `#I361305` - A performance issue while loading more events in the Timeline views has been fixed.
65
+ - `#I361135` - An issue with improper argument data received in the `eventRendered` event in each view has been fixed.
66
+ - `#I363266` - An issue with the more popup window has truncated at bottom of the schedule in month view has been fixed.
32
67
 
33
68
  ## 19.4.43 (2022-01-18)
34
69
 
@@ -44,7 +79,7 @@
44
79
 
45
80
  #### Bug Fixes
46
81
 
47
- - `#SF-360126` - Timeline views appointment misalignment issue while work cells width reduced has been fixed.
82
+ - `#I360126` - Timeline views appointment misalignment issue while work cells width reduced has been fixed.
48
83
 
49
84
  ## 19.4.41 (2022-01-04)
50
85
 
@@ -52,7 +87,7 @@
52
87
 
53
88
  #### Bug Fixes
54
89
 
55
- - `#SF-357890` - An issue with work cells misalignment in the timeline month view has been fixed.
90
+ - `#I357890` - An issue with work cells misalignment in the timeline month view has been fixed.
56
91
  - `#FB31401` - An issue with today button navigating issue only in the `MonthAgenda` view issue has been fixed.
57
92
  - `#FB30967` - An issue while drag and drop an event with `eventDragArea` has been fixed.
58
93
 
@@ -62,7 +97,7 @@
62
97
 
63
98
  #### Bug Fixes
64
99
 
65
- - `#SF-353817` - An issue with all-day region scrolling issue only in the Mac device has been fixed.
100
+ - `#I353817` - An issue with all-day region scrolling issue only in the Mac device has been fixed.
66
101
 
67
102
  ## 19.4.38 (2021-12-17)
68
103
 
@@ -77,7 +112,7 @@
77
112
 
78
113
  #### Bug Fixes
79
114
 
80
- - `#SF-357194` - An issue while slower the performance of the schedule, while drag and drop the event with `eventTemplate` has been fixed.
115
+ - `#I357194` - An issue while slower the performance of the schedule, while drag and drop the event with `eventTemplate` has been fixed.
81
116
 
82
117
  ## 19.3.55 (2021-11-23)
83
118