@syncfusion/ej2-schedule 19.3.44 → 19.3.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 (61) hide show
  1. package/CHANGELOG.md +41 -0
  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 +83 -48
  5. package/dist/es6/ej2-schedule.es2015.js.map +1 -1
  6. package/dist/es6/ej2-schedule.es5.js +79 -44
  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 +3 -3
  13. package/src/schedule/actions/crud.js +2 -0
  14. package/src/schedule/actions/drag.js +16 -14
  15. package/src/schedule/actions/resize.js +17 -10
  16. package/src/schedule/actions/virtual-scroll.js +1 -0
  17. package/src/schedule/base/interface.d.ts +7 -0
  18. package/src/schedule/base/resource.js +4 -1
  19. package/src/schedule/base/schedule-model.d.ts +9 -1
  20. package/src/schedule/base/schedule.d.ts +9 -2
  21. package/src/schedule/base/schedule.js +13 -2
  22. package/src/schedule/base/type.d.ts +4 -0
  23. package/src/schedule/event-renderer/event-base.d.ts +1 -0
  24. package/src/schedule/event-renderer/event-base.js +11 -7
  25. package/src/schedule/event-renderer/month.js +1 -1
  26. package/src/schedule/models/event-settings-model.d.ts +12 -1
  27. package/src/schedule/models/event-settings.d.ts +11 -0
  28. package/src/schedule/models/event-settings.js +3 -0
  29. package/src/schedule/popups/event-window.d.ts +0 -1
  30. package/src/schedule/popups/event-window.js +4 -5
  31. package/src/schedule/popups/form-validator.js +4 -1
  32. package/src/schedule/renderer/agenda.js +2 -1
  33. package/src/schedule/timezone/timezone.d.ts +3 -2
  34. package/src/schedule/timezone/timezone.js +0 -1
  35. package/styles/bootstrap-dark.css +1 -1
  36. package/styles/bootstrap.css +1 -1
  37. package/styles/bootstrap4.css +1 -1
  38. package/styles/bootstrap5-dark.css +1 -1
  39. package/styles/bootstrap5.css +1 -1
  40. package/styles/fabric-dark.css +1 -1
  41. package/styles/fabric.css +1 -1
  42. package/styles/highcontrast-light.css +1 -1
  43. package/styles/highcontrast.css +1 -1
  44. package/styles/material-dark.css +1 -1
  45. package/styles/material.css +1 -1
  46. package/styles/schedule/_layout.scss +1 -1
  47. package/styles/schedule/bootstrap-dark.css +1 -1
  48. package/styles/schedule/bootstrap.css +1 -1
  49. package/styles/schedule/bootstrap4.css +1 -1
  50. package/styles/schedule/bootstrap5-dark.css +1 -1
  51. package/styles/schedule/bootstrap5.css +1 -1
  52. package/styles/schedule/fabric-dark.css +1 -1
  53. package/styles/schedule/fabric.css +1 -1
  54. package/styles/schedule/highcontrast-light.css +1 -1
  55. package/styles/schedule/highcontrast.css +1 -1
  56. package/styles/schedule/material-dark.css +1 -1
  57. package/styles/schedule/material.css +1 -1
  58. package/styles/schedule/tailwind-dark.css +1 -1
  59. package/styles/schedule/tailwind.css +1 -1
  60. package/styles/tailwind-dark.css +1 -1
  61. package/styles/tailwind.css +1 -1
package/CHANGELOG.md CHANGED
@@ -6,7 +6,48 @@
6
6
 
7
7
  #### Bug Fixes
8
8
 
9
+ - `#I347217` - An issue while using `getRecurrenceDates` method in the weekly rule option has been fixed.
10
+
11
+ ## 19.3.53 (2021-11-12)
12
+
13
+ ### Schedule
14
+
15
+ #### New Features
16
+
17
+ - `#I224286`, `#I224730`, `#I316683`, `#I321325`, `#I331265`, `#I331820`, `#I338907`, `#I342102`, `#F169564`, `#F169824`, `#F169024` - Provided option to render the spanned events greater than 24 hours in either `AllDayRow` region or `TimeSlot` region.
18
+ - `#I339786` - Provided localization support for timezone collections which are displayed in the editor window.
19
+
20
+ ## 19.3.48 (2021-11-02)
21
+
22
+ ### Schedule
23
+
24
+ #### Bug Fixes
25
+
26
+ - `#F158202` - The `getCurrentViewEvents` method not returns current view events in Agenda view has been fixed.
27
+ - `#I343356` - An issue while using two dynamic validation error message for the scheduler field has been fixed.
28
+ - `#I345316` - An issue while saving an event dynamically using `saveEvent` method only with `timezone` property for the scheduler has been fixed.
29
+ - `#F169453` - An issue with the horizontal scroll position in the timeline month, while dragging or resizing an event has been fixed.
30
+ - `#I342117` - An issue with virtual scrolling down not happening issue in Agenda view mobile mode has been fixed.
31
+
32
+ ## 19.3.46 (2021-10-19)
33
+
34
+ ### Schedule
35
+
36
+ #### Bug Fixes
37
+
38
+ - `#I344571` - An alignment issue between the resource cells and work cells in timeline year has been fixed.
39
+ - `#FB29199` - Dragging an event from one month to another throws an exception in month view has been fixed.
40
+ - `#I344682` - An issue with virtual up-scrolling while enabling the `rowAutoHeight` property has been fixed.
41
+
42
+ ## 19.3.44 (2021-10-05)
43
+
44
+ ### Schedule
45
+
46
+ #### Bug Fixes
47
+
9
48
  - `#FB29036` - An issue with the `renderCell` event arguments as `resourceGroupCells` has been fixed in the timeline year view with resources.
49
+ - `#I339839` - An issue with the scheduler resize action is not working properly in timeline month has been fixed.
50
+ - `#F168909` - The scheduler agenda view throws script error on multilevel resources grouping has been fixed.
10
51
 
11
52
  ## 19.3.43 (2021-09-30)
12
53