@syncfusion/ej2-schedule 20.4.40 → 20.4.43
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 +17 -0
- package/README.md +1 -1
- package/dist/ej2-schedule.min.js +2 -2
- 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 +50 -42
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +50 -44
- 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 +17 -15
- package/src/schedule/actions/drag.js +30 -21
- package/src/schedule/actions/resize.js +14 -2
- package/src/schedule/event-renderer/agenda-base.js +0 -1
- package/src/schedule/event-renderer/event-base.js +1 -9
- package/src/schedule/event-renderer/month.js +1 -1
- package/src/schedule/event-renderer/vertical-view.js +0 -1
- package/src/schedule/event-renderer/year.js +1 -1
- package/src/schedule/popups/event-tooltip.js +2 -7
- package/src/schedule/popups/quick-popups.js +1 -1
- package/styles/bootstrap4.css +1 -1
- package/styles/schedule/bootstrap4.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
### Schedule
|
|
6
|
+
|
|
7
|
+
#### Bug fixes
|
|
8
|
+
|
|
9
|
+
- `#425940` - An issue with adding an aria-pressed attribute to the appointment has been fixed.
|
|
10
|
+
- `#F40124` - The issue with the schedule tooltip displaying start and end times in 12 hour format when the schedule is in 24 hour format has been fixed.
|
|
11
|
+
|
|
12
|
+
## 20.4.42 (2023-01-04)
|
|
13
|
+
|
|
14
|
+
### Schedule
|
|
15
|
+
|
|
16
|
+
#### Bug fixes
|
|
17
|
+
|
|
18
|
+
- `#I426228` - An issue with drag and drop with timeline view header rows has been fixed.
|
|
19
|
+
- `#I425268` - An issue with drag and drop flickering with `eventDragArea` in timeline views has been fixed.
|
|
20
|
+
- `#I424662` - An issue with appointment resizing in month view with scrollbar has been fixed.
|
|
21
|
+
|
|
5
22
|
## 20.4.38 (2022-12-21)
|
|
6
23
|
|
|
7
24
|
### Schedule
|
package/README.md
CHANGED
|
@@ -79,4 +79,4 @@ Check the changelog [here](https://ej2.syncfusion.com/documentation/release-note
|
|
|
79
79
|
|
|
80
80
|
see [LICENSE FILE](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/license?utm_source=npm&utm_medium=listing&utm_campaign=javascript-scheduler-npm) for more info.
|
|
81
81
|
|
|
82
|
-
© Copyright
|
|
82
|
+
© Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|