dhtmlx-scheduler 7.0.1 → 7.0.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 +12 -11
- package/bower.json +1 -1
- package/codebase/dhtmlxscheduler.css +1 -1
- package/codebase/dhtmlxscheduler.es.js +899 -896
- package/codebase/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/dhtmlxscheduler.js +20 -20
- package/codebase/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.css +4 -0
- package/codebase/sources/dhtmlxscheduler.es.js +118 -149
- package/codebase/sources/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.js +118 -149
- package/codebase/sources/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/less/package.json +1 -1
- package/codebase/sources/less/src/base.less +5 -0
- package/package.json +1 -1
- package/whatsnew.md +16 -0
|
@@ -390,6 +390,11 @@
|
|
|
390
390
|
box-shadow: 0 1px 0 1px var(--dhx-scheduler-today-marker-color);
|
|
391
391
|
}
|
|
392
392
|
|
|
393
|
+
.dhx_matrix_now_time{
|
|
394
|
+
background: var(--dhx-scheduler-today-marker-color);
|
|
395
|
+
opacity: 0.5;
|
|
396
|
+
}
|
|
397
|
+
|
|
393
398
|
.dhx_minical_icon{
|
|
394
399
|
.button();
|
|
395
400
|
.button-icon();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dhtmlx-scheduler",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.3",
|
|
4
4
|
"description": "JavaScript event calendar. Allows to manage events and appointments in different views",
|
|
5
5
|
"main": "codebase/dhtmlxscheduler.es.js",
|
|
6
6
|
"types": "codebase/dhtmlxscheduler.es.d.ts",
|
package/whatsnew.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
### 7.0.3
|
|
2
|
+
|
|
3
|
+
Issue with textColor property not applying in the Month view has been resolved
|
|
4
|
+
Fix for the color property not functioning in the Agenda view
|
|
5
|
+
Corrected an error that occurred when using Keyboard Navigation in Day Timeline view.
|
|
6
|
+
|
|
7
|
+
### 7.0.2
|
|
8
|
+
|
|
9
|
+
Compatibility regressions with DHTMLX Suite
|
|
10
|
+
The regression affecting the mark_now marker in the Timeline view
|
|
11
|
+
The theme initialization problem that resulted in the incorrect Scheduler layout display in some scenarios
|
|
12
|
+
The issue where selected events in the Grid view lost their selection styling after sorting
|
|
13
|
+
The issue in the Timeline's smart rendering mode that caused events appearing twice during drag and drop
|
|
14
|
+
Corrections in the Greek locale
|
|
15
|
+
Fixes of memory leaks to ensure Scheduler instances are properly released upon calling the destructor
|
|
16
|
+
|
|
1
17
|
### 7.0.1
|
|
2
18
|
|
|
3
19
|
Regression in the Units view that caused layout issues when a scheduler was displayed on the current date
|