@syncfusion/ej2-schedule 19.3.43 → 19.3.53
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.
- package/CHANGELOG.md +49 -0
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +81 -46
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +78 -43
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +15 -15
- package/src/schedule/actions/crud.js +2 -0
- package/src/schedule/actions/drag.js +16 -14
- package/src/schedule/actions/resize.js +17 -10
- package/src/schedule/actions/virtual-scroll.js +1 -0
- package/src/schedule/base/interface.d.ts +7 -0
- package/src/schedule/base/resource.js +4 -1
- package/src/schedule/base/schedule-model.d.ts +9 -1
- package/src/schedule/base/schedule.d.ts +9 -2
- package/src/schedule/base/schedule.js +13 -2
- package/src/schedule/base/type.d.ts +4 -0
- package/src/schedule/event-renderer/event-base.d.ts +1 -0
- package/src/schedule/event-renderer/event-base.js +11 -7
- package/src/schedule/event-renderer/month.js +1 -1
- package/src/schedule/models/event-settings-model.d.ts +12 -1
- package/src/schedule/models/event-settings.d.ts +11 -0
- package/src/schedule/models/event-settings.js +3 -0
- package/src/schedule/popups/event-window.d.ts +0 -1
- package/src/schedule/popups/event-window.js +4 -5
- package/src/schedule/popups/form-validator.js +4 -1
- package/src/schedule/renderer/agenda.js +2 -1
- package/src/schedule/renderer/timeline-year.js +2 -2
- package/src/schedule/timezone/timezone.d.ts +3 -2
- package/src/schedule/timezone/timezone.js +0 -1
- package/styles/bootstrap-dark.css +1 -1
- package/styles/bootstrap.css +1 -1
- package/styles/bootstrap4.css +1 -1
- package/styles/bootstrap5-dark.css +1 -1
- package/styles/bootstrap5.css +1 -1
- package/styles/fabric-dark.css +1 -1
- package/styles/fabric.css +1 -1
- package/styles/highcontrast-light.css +1 -1
- package/styles/highcontrast.css +1 -1
- package/styles/material-dark.css +1 -1
- package/styles/material.css +1 -1
- package/styles/schedule/_layout.scss +1 -1
- package/styles/schedule/bootstrap-dark.css +1 -1
- package/styles/schedule/bootstrap.css +1 -1
- package/styles/schedule/bootstrap4.css +1 -1
- package/styles/schedule/bootstrap5-dark.css +1 -1
- package/styles/schedule/bootstrap5.css +1 -1
- package/styles/schedule/fabric-dark.css +1 -1
- package/styles/schedule/fabric.css +1 -1
- package/styles/schedule/highcontrast-light.css +1 -1
- package/styles/schedule/highcontrast.css +1 -1
- package/styles/schedule/material-dark.css +1 -1
- package/styles/schedule/material.css +1 -1
- package/styles/schedule/tailwind-dark.css +1 -1
- package/styles/schedule/tailwind.css +1 -1
- package/styles/tailwind-dark.css +1 -1
- package/styles/tailwind.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,55 @@
|
|
|
6
6
|
|
|
7
7
|
#### New Features
|
|
8
8
|
|
|
9
|
+
- `#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.
|
|
10
|
+
- `#I339786` - Provided localization support for timezone collections which are displayed in the editor window.
|
|
11
|
+
|
|
12
|
+
## 19.3.48 (2021-11-02)
|
|
13
|
+
|
|
14
|
+
### Schedule
|
|
15
|
+
|
|
16
|
+
#### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- `#F158202` - The `getCurrentViewEvents` method not returns current view events in Agenda view has been fixed.
|
|
19
|
+
- `#I343356` - An issue while using two dynamic validation error message for the scheduler field has been fixed.
|
|
20
|
+
- `#I345316` - An issue while saving an event dynamically using `saveEvent` method only with `timezone` property for the scheduler has been fixed.
|
|
21
|
+
- `#F169453` - An issue with the horizontal scroll position in the timeline month, while dragging or resizing an event has been fixed.
|
|
22
|
+
- `#I342117` - An issue with virtual scrolling down not happening issue in Agenda view mobile mode has been fixed.
|
|
23
|
+
|
|
24
|
+
## 19.3.46 (2021-10-19)
|
|
25
|
+
|
|
26
|
+
### Schedule
|
|
27
|
+
|
|
28
|
+
#### Bug Fixes
|
|
29
|
+
|
|
30
|
+
- `#I344571` - An alignment issue between the resource cells and work cells in timeline year has been fixed.
|
|
31
|
+
- `#FB29199` - Dragging an event from one month to another throws an exception in month view has been fixed.
|
|
32
|
+
- `#I344682` - An issue with virtual up-scrolling while enabling the `rowAutoHeight` property has been fixed.
|
|
33
|
+
|
|
34
|
+
## 19.3.44 (2021-10-05)
|
|
35
|
+
|
|
36
|
+
### Schedule
|
|
37
|
+
|
|
38
|
+
#### Bug Fixes
|
|
39
|
+
|
|
40
|
+
- `#I344571` - An alignment issue between the resource cells and work cells in timeline year has been fixed.
|
|
41
|
+
|
|
42
|
+
## 19.3.44 (2021-10-05)
|
|
43
|
+
|
|
44
|
+
### Schedule
|
|
45
|
+
|
|
46
|
+
#### Bug Fixes
|
|
47
|
+
|
|
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.
|
|
51
|
+
|
|
52
|
+
## 19.3.43 (2021-09-30)
|
|
53
|
+
|
|
54
|
+
### Schedule
|
|
55
|
+
|
|
56
|
+
#### New Features
|
|
57
|
+
|
|
9
58
|
- `#I316891`, `#I328879`, `#I331265`, `#I335777`, `#I339302`, `#F165491` - Provided support to sort appointments by priority instead of time.
|
|
10
59
|
- `#I242605`, `#F160122`, `#F165334` - Provided public method for Scheduler to refresh the Scheduler layout without re-render.
|
|
11
60
|
- `#I314842`, `#I320731` - Provided public method for Scheduler to refresh the given templates.
|