@syncfusion/ej2-schedule 19.4.43 → 19.4.52
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 +27 -0
- package/README.md +1 -1
- 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 +85 -30
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +85 -30
- 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/drag.js +9 -7
- package/src/schedule/actions/keyboard.d.ts +1 -0
- package/src/schedule/actions/keyboard.js +23 -0
- package/src/schedule/base/interface.d.ts +1 -0
- package/src/schedule/base/schedule.js +16 -2
- package/src/schedule/event-renderer/agenda-base.js +1 -1
- package/src/schedule/event-renderer/event-base.js +4 -2
- package/src/schedule/event-renderer/month.js +2 -1
- package/src/schedule/event-renderer/timeline-view.d.ts +1 -0
- package/src/schedule/event-renderer/timeline-view.js +7 -5
- package/src/schedule/event-renderer/vertical-view.js +10 -2
- package/src/schedule/event-renderer/year.js +4 -1
- package/src/schedule/popups/event-window.js +1 -1
- package/src/schedule/popups/quick-popups.js +5 -5
- package/src/schedule/renderer/month.js +1 -1
- package/src/schedule/renderer/vertical-view.js +1 -1
- package/src/schedule/renderer/year.js +1 -1
- package/styles/bootstrap-dark.css +2 -2
- package/styles/bootstrap.css +2 -2
- package/styles/bootstrap4.css +2 -2
- package/styles/bootstrap5-dark.css +2 -2
- package/styles/bootstrap5.css +2 -2
- package/styles/fabric-dark.css +2 -2
- package/styles/fabric.css +2 -2
- package/styles/highcontrast-light.css +2 -2
- package/styles/highcontrast.css +2 -2
- package/styles/material-dark.css +2 -2
- package/styles/material.css +2 -2
- package/styles/schedule/_layout.scss +2 -2
- package/styles/schedule/bootstrap-dark.css +2 -2
- package/styles/schedule/bootstrap.css +2 -2
- package/styles/schedule/bootstrap4.css +2 -2
- package/styles/schedule/bootstrap5-dark.css +2 -2
- package/styles/schedule/bootstrap5.css +2 -2
- package/styles/schedule/fabric-dark.css +2 -2
- package/styles/schedule/fabric.css +2 -2
- package/styles/schedule/highcontrast-light.css +2 -2
- package/styles/schedule/highcontrast.css +2 -2
- package/styles/schedule/material-dark.css +2 -2
- package/styles/schedule/material.css +2 -2
- package/styles/schedule/tailwind-dark.css +2 -2
- package/styles/schedule/tailwind.css +2 -2
- package/styles/tailwind-dark.css +2 -2
- package/styles/tailwind.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## 19.4.50 (2022-02-08)
|
|
6
|
+
|
|
7
|
+
### Schedule
|
|
8
|
+
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
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.
|
|
13
|
+
|
|
14
|
+
## 19.4.47 (2022-01-25)
|
|
15
|
+
|
|
16
|
+
### Schedule
|
|
17
|
+
|
|
18
|
+
#### Bug Fixes
|
|
19
|
+
|
|
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.
|
|
23
|
+
|
|
24
|
+
## 19.4.43 (2022-01-18)
|
|
25
|
+
|
|
26
|
+
### Schedule
|
|
27
|
+
|
|
28
|
+
#### Bug Fixes
|
|
29
|
+
|
|
30
|
+
- `#F171650` - An issue with localized text is not applied for the week numbers tooltip in year view has been fixed.
|
|
31
|
+
|
|
5
32
|
## 19.4.42 (2022-01-11)
|
|
6
33
|
|
|
7
34
|
### Schedule
|
package/README.md
CHANGED
|
@@ -63,4 +63,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
|
|
|
63
63
|
|
|
64
64
|
Check the changelog [here](https://ej2.syncfusion.com/documentation/release-notes?utm_source=npm&utm_medium=listing&utm_campaign=javascript-scheduler-npm).
|
|
65
65
|
|
|
66
|
-
© Copyright
|
|
66
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|