@syncfusion/ej2-schedule 19.4.41 → 19.4.48

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 (52) hide show
  1. package/CHANGELOG.md +28 -1
  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 +60 -25
  5. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  6. package/dist/es6/ej2-schedule.es5.js +60 -25
  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/schedule/actions/drag.js +9 -7
  13. package/src/schedule/actions/keyboard.d.ts +1 -0
  14. package/src/schedule/actions/keyboard.js +23 -0
  15. package/src/schedule/event-renderer/agenda-base.js +1 -1
  16. package/src/schedule/event-renderer/timeline-view.d.ts +1 -0
  17. package/src/schedule/event-renderer/timeline-view.js +7 -5
  18. package/src/schedule/event-renderer/vertical-view.js +7 -1
  19. package/src/schedule/event-renderer/year.js +3 -1
  20. package/src/schedule/popups/event-window.js +1 -1
  21. package/src/schedule/popups/quick-popups.js +5 -5
  22. package/src/schedule/renderer/month.js +1 -1
  23. package/src/schedule/renderer/vertical-view.js +1 -1
  24. package/src/schedule/renderer/view-base.js +1 -1
  25. package/src/schedule/renderer/year.js +1 -1
  26. package/styles/bootstrap-dark.css +6 -2
  27. package/styles/bootstrap.css +6 -2
  28. package/styles/bootstrap4.css +6 -2
  29. package/styles/bootstrap5-dark.css +6 -2
  30. package/styles/bootstrap5.css +6 -2
  31. package/styles/fabric-dark.css +6 -2
  32. package/styles/fabric.css +6 -2
  33. package/styles/highcontrast-light.css +6 -2
  34. package/styles/highcontrast.css +6 -2
  35. package/styles/material-dark.css +6 -2
  36. package/styles/material.css +6 -2
  37. package/styles/schedule/_layout.scss +6 -2
  38. package/styles/schedule/bootstrap-dark.css +6 -2
  39. package/styles/schedule/bootstrap.css +6 -2
  40. package/styles/schedule/bootstrap4.css +6 -2
  41. package/styles/schedule/bootstrap5-dark.css +6 -2
  42. package/styles/schedule/bootstrap5.css +6 -2
  43. package/styles/schedule/fabric-dark.css +6 -2
  44. package/styles/schedule/fabric.css +6 -2
  45. package/styles/schedule/highcontrast-light.css +6 -2
  46. package/styles/schedule/highcontrast.css +6 -2
  47. package/styles/schedule/material-dark.css +6 -2
  48. package/styles/schedule/material.css +6 -2
  49. package/styles/schedule/tailwind-dark.css +6 -2
  50. package/styles/schedule/tailwind.css +6 -2
  51. package/styles/tailwind-dark.css +6 -2
  52. package/styles/tailwind.css +6 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,34 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## 19.4.47 (2022-01-25)
6
+
7
+ ### Schedule
8
+
9
+ #### Bug Fixes
10
+
11
+ - `#SF-361305` - A performance issue while loading more events in the Timeline views has been fixed.
12
+ - `#SF-361135` - An issue with improper argument data received in the `eventRendered` event in each view has been fixed.
13
+ - `#SF-363266` - An issue with the more popup window has truncated at bottom of the schedule in month view has been fixed.
14
+
15
+ ## 19.4.43 (2022-01-18)
16
+
17
+ ### Schedule
18
+
19
+ #### Bug Fixes
20
+
21
+ - `#F171650` - An issue with localized text is not applied for the week numbers tooltip in year view has been fixed.
22
+
23
+ ## 19.4.42 (2022-01-11)
24
+
25
+ ### Schedule
26
+
27
+ #### Bug Fixes
28
+
29
+ - `#SF-360126` - Timeline views appointment misalignment issue while work cells width reduced has been fixed.
30
+
31
+ ## 19.4.41 (2022-01-04)
32
+
5
33
  ### Schedule
6
34
 
7
35
  #### Bug Fixes
@@ -9,7 +37,6 @@
9
37
  - `#SF-357890` - An issue with work cells misalignment in the timeline month view has been fixed.
10
38
  - `#FB31401` - An issue with today button navigating issue only in the `MonthAgenda` view issue has been fixed.
11
39
  - `#FB30967` - An issue while drag and drop an event with `eventDragArea` has been fixed.
12
- - `#SF-360126` - Timeline views appointment misalignment issue while work cells width reduced has been fixed.
13
40
 
14
41
  ## 19.4.40 (2021-12-28)
15
42