dhtmlx-scheduler 7.2.8 → 7.2.10

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhtmlx-scheduler-skins",
3
- "version": "7.2.8",
3
+ "version": "7.2.10",
4
4
  "description": "Less sources and a build tool for DHTMLXScheduler skins",
5
5
  "scripts": {
6
6
  "build": "node scripts.js --file=theme",
@@ -2,24 +2,16 @@
2
2
  width: 100%;
3
3
  height: 100%;
4
4
  display: flex;
5
- }
6
-
7
- .dhx_wa_column{
8
- flex: 1;
9
- display: flex;
10
5
  flex-direction: column;
11
- border-right: var(--dhx-scheduler-default-border);
12
6
  }
13
7
 
14
8
  .dhx_wa_day_cont{
15
- flex-grow: 0;
16
- flex-shrink: 0;
17
- flex-basis: calc(100% / 3);
18
9
  display: flex;
19
10
  flex-direction: column;
20
-
21
-
22
- overflow-y: auto;
11
+ flex-grow: 0;
12
+ flex-shrink: 0;
13
+ flex-basis: 50%;
14
+ overflow-y: auto;
23
15
  }
24
16
 
25
17
  .dhx_wa_column:last-child{
@@ -76,5 +68,25 @@
76
68
 
77
69
  .dhx_wa_ev_body.dhx_cal_event_selected{
78
70
  background-color: var(--dhx-scheduler-base-colors-select);
79
-
71
+ }
72
+
73
+ .dhx_wa_row{
74
+ display: flex;
75
+ flex-basis: calc(100% / 3);
76
+ }
77
+
78
+ /* week_agenda + container_autoresize */
79
+ .dhx_wa_row_autoresize{
80
+ display: flex;
81
+ flex-basis: 0;
82
+ }
83
+
84
+ .dhx_wa_row > :first-child{
85
+ border-right: var(--dhx-scheduler-default-border);
86
+ }
87
+
88
+ .dhx_wa_weekday{
89
+ display: flex;
90
+ flex-direction: column;
91
+ flex-basis: 50%;
80
92
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhtmlx-scheduler",
3
- "version": "7.2.8",
3
+ "version": "7.2.10",
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.2.10
2
+
3
+ Fix the issue where events jumped to the left when being dragged from the last column in the multiday Units view
4
+ Fix the issue where some date cells were missing in specific months in the Month view
5
+ Fix the drag-create issue on mobile devices when using the container_autoresize plugin
6
+ Fix the issue that prevented event creation on double-click after horizontal scrolling in the Units view
7
+
8
+ ### 7.2.9
9
+
10
+ Fix memory leaks that occurred in the Timeline view
11
+ Fix compatibility issue between the container_autoresize plugin and the Week Agenda view
12
+ Fix the issue where the onScaleDblClick was not triggered as expected
13
+ Fix inconsistent behavior of onEventSave and DataProcessor when working with recurring events
14
+ Fix the React Scheduler issue where multiple instances of the component caused duplicated templates
15
+ Fix incorrect handling of the events prop's changes in React Scheduler
16
+
1
17
  ### 7.2.8
2
18
 
3
19
  Samples for React Scheduler were added to the Commercial, Enterprise, Ultimate, and Evaluation packages