@syncfusion/ej2-schedule 19.4.55 → 20.1.50

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