@syncfusion/ej2-schedule 20.1.52 → 20.1.57

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