dhtmlx-scheduler 7.0.3 → 7.0.5
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 +16 -15
- package/codebase/dhtmlxscheduler.es.d.ts +16 -15
- package/codebase/dhtmlxscheduler.es.js +2295 -2279
- package/codebase/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/dhtmlxscheduler.js +32 -32
- package/codebase/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.css +3 -0
- package/codebase/sources/dhtmlxscheduler.es.js +126 -103
- package/codebase/sources/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.js +126 -103
- package/codebase/sources/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/less/package.json +1 -1
- package/codebase/sources/less/src/datepicker.less +3 -0
- package/package.json +1 -1
- package/whatsnew.md +14 -0
|
@@ -89,6 +89,9 @@
|
|
|
89
89
|
height: var(--dhx-scheduler-datepicker-cell-size);
|
|
90
90
|
color: var(--dhx-scheduler-datepicker-cell-color);
|
|
91
91
|
background: var(--dhx-scheduler-datepicker-cell-background);
|
|
92
|
+
&.dhx_now {
|
|
93
|
+
--dhx-scheduler-datepicker-cell-background: var(--dhx-scheduler-timescale-today-background);
|
|
94
|
+
}
|
|
92
95
|
}
|
|
93
96
|
|
|
94
97
|
.dhx_cal_datepicker_weekend {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dhtmlx-scheduler",
|
|
3
|
-
"version": "7.0.
|
|
3
|
+
"version": "7.0.5",
|
|
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,17 @@
|
|
|
1
|
+
### 7.0.5
|
|
2
|
+
|
|
3
|
+
Fix the incorrect height of the Timeline sections when the event_dy:"full" setting is used
|
|
4
|
+
Fix the missing "today" marker in the Year view
|
|
5
|
+
Correct the positioning of events in the Day/Week views
|
|
6
|
+
|
|
7
|
+
### 7.0.4
|
|
8
|
+
|
|
9
|
+
Add the placeholder setting for the textarea control
|
|
10
|
+
Fix incorrect cell selection in Keyboard Navigation
|
|
11
|
+
Fix the Quick Info popup in Agenda view
|
|
12
|
+
Fix type definitions for the Agenda view templates
|
|
13
|
+
Fix the incorrect display of multi-day events in Month view when start_on_monday is disabled and several columns are hidden from the view
|
|
14
|
+
|
|
1
15
|
### 7.0.3
|
|
2
16
|
|
|
3
17
|
Issue with textColor property not applying in the Month view has been resolved
|