dhtmlx-scheduler 7.0.0 → 7.0.1

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.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Less sources and a build tool for DHTMLXScheduler skins",
5
5
  "scripts": {
6
6
  "build": "node scripts.js --file=theme",
@@ -25,6 +25,7 @@
25
25
 
26
26
  &_now {
27
27
  --dhx-scheduler-timescale-background: var(--dhx-scheduler-timescale-today-background);
28
+ position: absolute;
28
29
  }
29
30
  }
30
31
 
@@ -78,24 +78,28 @@ url("./iconfont/dhx-scheduler-icons.woff2") format("woff2");
78
78
  .dhx_menu_icon.icon_chevron_down {
79
79
  &:before{
80
80
  content: "\f109";
81
+ font-size: 24px;
81
82
  }
82
83
  }
83
84
  .scheduler_icon.chevron_left,
84
85
  .dhx_menu_icon.icon_chevron_left {
85
86
  &:before{
86
87
  content: "\f10a";
88
+ font-size: 24px;
87
89
  }
88
90
  }
89
91
  .scheduler_icon.chevron_right,
90
92
  .dhx_menu_icon.icon_chevron_right {
91
93
  &:before{
92
94
  content: "\f10b";
95
+ font-size: 24px;
93
96
  }
94
97
  }
95
98
  .scheduler_icon.chevron_up,
96
99
  .dhx_menu_icon.icon_chevron_up {
97
100
  &:before{
98
101
  content: "\f10c";
102
+ font-size: 24px;
99
103
  }
100
104
  }
101
105
  .scheduler_icon.clock,
@@ -17,7 +17,7 @@
17
17
  display: flex;
18
18
  flex-direction: column;
19
19
  box-shadow: var(--dhx-scheduler-box-shadow-s);
20
-
20
+ transition: left 0.5s ease, right 0.5s ease;
21
21
  }
22
22
 
23
23
  &_qi_tcontrols{
@@ -111,11 +111,18 @@
111
111
  }
112
112
 
113
113
  .dhx_matrix_scell.folder{
114
- border-right: 0;
114
+ border-right-color: transparent;
115
115
  font-weight: 700;
116
116
  text-align: left;
117
117
  }
118
118
 
119
+ .dhx_cal_container_rtl{
120
+ .dhx_matrix_scell.folder {
121
+ border-right: var(--dhx-scheduler-default-border);
122
+ border-left-color: transparent;
123
+ }
124
+ }
125
+
119
126
  .dhx_matrix_line{
120
127
  overflow: hidden
121
128
  }
@@ -137,7 +144,6 @@
137
144
  .dhx_matrix_scell.folder > div {
138
145
  display: flex;
139
146
  align-items: center;
140
- gap: 4px;
141
147
  height: inherit;
142
148
  }
143
149
 
@@ -228,8 +234,8 @@
228
234
  }
229
235
 
230
236
 
231
- .dhx_timeline_label_column,
232
- .dhx_timeline_label_column_header{
237
+ div.dhx_timeline_label_column,
238
+ div.dhx_timeline_label_column_header{
233
239
  display: flex;
234
240
  justify-content: center;
235
241
  align-items: center;
@@ -237,6 +243,12 @@
237
243
  flex-grow: 0;
238
244
  flex-shrink: 0;
239
245
  height: 100%;
246
+ white-space: nowrap;
247
+
248
+ .dhx_timeline_label_content_wrapper{
249
+ display: inline-block;
250
+ text-align: left;
251
+ }
240
252
  }
241
253
 
242
254
  .dhx_timeline_label_column{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dhtmlx-scheduler",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
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,11 @@
1
+ ### 7.0.1
2
+
3
+ Regression in the Units view that caused layout issues when a scheduler was displayed on the current date
4
+ Position of the Quick Info popup in the scrollable timeline is corrected
5
+ Incorrect positioning of the selected time slot by the Keyboard Navigation module when the RTL mode is active
6
+ The issue that prevented the creation of multi-day events in the Month view after performing a drag-resize action in the Day/Week views
7
+ The height of the multi-day section in the Day/Week views is now limited to 200px by default
8
+
1
9
  ### 7.0.0
2
10
 
3
11
  Skins customization with CSS variables