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.
- package/README.md +3 -3
- package/bower.json +1 -1
- package/codebase/dhtmlxscheduler.css +1 -1
- package/codebase/dhtmlxscheduler.es.js +11 -8
- package/codebase/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/dhtmlxscheduler.js +5 -5
- package/codebase/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.css +20 -4
- package/codebase/sources/dhtmlxscheduler.es.js +19 -4
- package/codebase/sources/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.js +19 -4
- package/codebase/sources/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/less/package.json +1 -1
- package/codebase/sources/less/src/columns_view.less +1 -0
- package/codebase/sources/less/src/icons.less +4 -0
- package/codebase/sources/less/src/quick_info.less +1 -1
- package/codebase/sources/less/src/timeline.less +16 -4
- package/package.json +1 -1
- package/whatsnew.md +8 -0
|
@@ -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,
|
|
@@ -111,11 +111,18 @@
|
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
.dhx_matrix_scell.folder{
|
|
114
|
-
border-right:
|
|
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.
|
|
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
|