dhtmlx-scheduler 7.1.0 → 7.1.2
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.d.ts +1 -1
- package/codebase/dhtmlxscheduler.es.d.ts +1 -1
- package/codebase/dhtmlxscheduler.es.js +10446 -10418
- package/codebase/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/dhtmlxscheduler.js +162 -162
- package/codebase/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.css +3784 -3784
- package/codebase/sources/dhtmlxscheduler.es.js +20506 -20447
- package/codebase/sources/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.js +20510 -20451
- package/codebase/sources/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/less/package.json +1 -1
- package/package.json +31 -31
- package/whatsnew.md +19 -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.2",
|
|
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,22 @@
|
|
|
1
|
+
### 7.1.2
|
|
2
|
+
|
|
3
|
+
Fix the incorrect position of events pasted using Ctrl+C/Ctrl+V when the multisection extension is enabled
|
|
4
|
+
Ensure the Collision extension works properly with new recurring events
|
|
5
|
+
Correct the sections' height after calling scheduler.updateCollection() when smart rendering enabled in the Timeline view
|
|
6
|
+
Resolve the issue where smart rendering hides parts of new multisection events when onBeforeLightbox is canceled
|
|
7
|
+
Fix incorrect behavior of the getEvents method with recurring events
|
|
8
|
+
Correct the handling of recurring events with custom daily properties
|
|
9
|
+
|
|
10
|
+
### 7.1.1
|
|
11
|
+
|
|
12
|
+
Fix the issue where the DataProcessor did not allow sending false values
|
|
13
|
+
Fix the issue where the Tooltip disappeared on mobile devices after a click
|
|
14
|
+
Fix the Tooltip position issue during page scroll
|
|
15
|
+
Fix the issue where the container_autoresize plugin hid the multiday section
|
|
16
|
+
Fix the issue where the Quick Info popup appeared outside of the container
|
|
17
|
+
Fix the issue where unconfirmed events disappeared during scrolling with smart rendering enabled in the Timeline view
|
|
18
|
+
Fix the incorrect sections height in the Timeline view after calling scheduler.updateCollection() with active smart rendering
|
|
19
|
+
|
|
1
20
|
### 7.1.0
|
|
2
21
|
|
|
3
22
|
Storing recurring events in the RRULE format
|