dhtmlx-scheduler 7.1.1 → 7.1.3
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/README.md +2 -2
- package/bower.json +1 -1
- package/codebase/dhtmlxscheduler.css +1 -1
- package/codebase/dhtmlxscheduler.es.js +10468 -10429
- package/codebase/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/dhtmlxscheduler.js +170 -162
- package/codebase/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.css +3784 -3784
- package/codebase/sources/dhtmlxscheduler.es.js +20530 -20483
- package/codebase/sources/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.js +20534 -20487
- package/codebase/sources/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/less/package.json +1 -1
- package/codebase/sources/less/src/datepicker.less +1 -1
- package/package.json +31 -31
- package/whatsnew.md +17 -0
package/package.json
CHANGED
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "dhtmlx-scheduler",
|
|
3
|
-
"version": "7.1.
|
|
4
|
-
"description": "JavaScript event calendar. Allows to manage events and appointments in different views",
|
|
5
|
-
"main": "codebase/dhtmlxscheduler.es.js",
|
|
6
|
-
"types": "codebase/dhtmlxscheduler.es.d.ts",
|
|
7
|
-
"repository": {
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/DHTMLX/scheduler.git"
|
|
10
|
-
},
|
|
11
|
-
"keywords": [
|
|
12
|
-
"calendar",
|
|
13
|
-
"scheduler",
|
|
14
|
-
"dhtmlx",
|
|
15
|
-
"dhtmlxscheduler",
|
|
16
|
-
"event",
|
|
17
|
-
"recurring events",
|
|
18
|
-
"appointment",
|
|
19
|
-
"agenda",
|
|
20
|
-
"month",
|
|
21
|
-
"day",
|
|
22
|
-
"week",
|
|
23
|
-
"year",
|
|
24
|
-
"browser"
|
|
25
|
-
],
|
|
26
|
-
"author": "DHTMLX",
|
|
27
|
-
"license": "GPL-2.0",
|
|
28
|
-
"bugs": {
|
|
29
|
-
"url": "https://github.com/DHTMLX/scheduler/issues"
|
|
30
|
-
},
|
|
31
|
-
"homepage": "https://github.com/DHTMLX/scheduler#readme"
|
|
1
|
+
{
|
|
2
|
+
"name": "dhtmlx-scheduler",
|
|
3
|
+
"version": "7.1.3",
|
|
4
|
+
"description": "JavaScript event calendar. Allows to manage events and appointments in different views",
|
|
5
|
+
"main": "codebase/dhtmlxscheduler.es.js",
|
|
6
|
+
"types": "codebase/dhtmlxscheduler.es.d.ts",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/DHTMLX/scheduler.git"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"calendar",
|
|
13
|
+
"scheduler",
|
|
14
|
+
"dhtmlx",
|
|
15
|
+
"dhtmlxscheduler",
|
|
16
|
+
"event",
|
|
17
|
+
"recurring events",
|
|
18
|
+
"appointment",
|
|
19
|
+
"agenda",
|
|
20
|
+
"month",
|
|
21
|
+
"day",
|
|
22
|
+
"week",
|
|
23
|
+
"year",
|
|
24
|
+
"browser"
|
|
25
|
+
],
|
|
26
|
+
"author": "DHTMLX",
|
|
27
|
+
"license": "GPL-2.0",
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/DHTMLX/scheduler/issues"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://github.com/DHTMLX/scheduler#readme"
|
|
32
32
|
}
|
package/whatsnew.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
### 7.1.3
|
|
2
|
+
|
|
3
|
+
Fix the issue where the initial position of events was not highlighted during drag and drop in the Timeline and Units views
|
|
4
|
+
Fix the issue where the last_hour setting caused incorrect behavior of drag and drop in the Timeline view
|
|
5
|
+
Prevent recurring occurrences from disappearing in certain time zones during DST transitions
|
|
6
|
+
Fix repeated end date increments when toggling Full day in the Mini Calendar control of the lightbox
|
|
7
|
+
Restore functionality of the ignore_year and ignore_agenda methods
|
|
8
|
+
|
|
9
|
+
### 7.1.2
|
|
10
|
+
|
|
11
|
+
Fix the incorrect position of events pasted using Ctrl+C/Ctrl+V when the multisection extension is enabled
|
|
12
|
+
Ensure the Collision extension works properly with new recurring events
|
|
13
|
+
Correct the sections' height after calling scheduler.updateCollection() when smart rendering enabled in the Timeline view
|
|
14
|
+
Resolve the issue where smart rendering hides parts of new multisection events when onBeforeLightbox is canceled
|
|
15
|
+
Fix incorrect behavior of the getEvents method with recurring events
|
|
16
|
+
Correct the handling of recurring events with custom daily properties
|
|
17
|
+
|
|
1
18
|
### 7.1.1
|
|
2
19
|
|
|
3
20
|
Fix the issue where the DataProcessor did not allow sending false values
|