dhtmlx-scheduler 7.0.4 → 7.1.0
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 +34 -20
- package/codebase/dhtmlxscheduler.es.d.ts +34 -20
- package/codebase/dhtmlxscheduler.es.js +7868 -5575
- package/codebase/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/dhtmlxscheduler.js +128 -42
- package/codebase/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.css +124 -5
- package/codebase/sources/dhtmlxscheduler.es.js +12550 -8428
- package/codebase/sources/dhtmlxscheduler.es.js.map +1 -1
- package/codebase/sources/dhtmlxscheduler.js +12550 -8428
- package/codebase/sources/dhtmlxscheduler.js.map +1 -1
- package/codebase/sources/less/package.json +1 -1
- package/codebase/sources/less/src/agenda_legacy.less +1 -0
- package/codebase/sources/less/src/datepicker.less +3 -0
- package/codebase/sources/less/src/lightbox.less +37 -1
- package/codebase/sources/less/src/misc.less +44 -0
- package/codebase/sources/less/src/themes/contrast_black.less +2 -0
- package/codebase/sources/less/src/themes/dark.less +1 -0
- package/codebase/sources/less/src/themes/variables.less +3 -0
- package/package.json +1 -1
- package/whatsnew.md +22 -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 {
|
|
@@ -474,7 +474,43 @@
|
|
|
474
474
|
max-width: 165px;
|
|
475
475
|
}
|
|
476
476
|
|
|
477
|
-
.dhx_lightbox_time_select{
|
|
477
|
+
.dhx_lightbox_time_select {
|
|
478
478
|
width: 95px;
|
|
479
479
|
}
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
.dhx_form_rrule {
|
|
483
|
+
display: flex;
|
|
484
|
+
flex-direction: column;
|
|
485
|
+
gap: 8px;
|
|
486
|
+
|
|
487
|
+
.dhx_form_repeat_custom,
|
|
488
|
+
.dhx_form_repeat_ends,
|
|
489
|
+
.dhx_form_repeat_ends_extra {
|
|
490
|
+
display: flex;
|
|
491
|
+
flex-direction: column;
|
|
492
|
+
gap: 8px;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
.dhx_form_repeat_ends_options {
|
|
496
|
+
display: flex;
|
|
497
|
+
gap: 8px;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
label {
|
|
501
|
+
display: inline-flex;
|
|
502
|
+
align-items: center;
|
|
503
|
+
vertical-align: top;
|
|
504
|
+
gap: 4px;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
input[type="number"] {
|
|
508
|
+
width: 80px;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.dhx_form_repeat_custom_week {
|
|
512
|
+
display: flex;
|
|
513
|
+
flex-wrap: wrap;
|
|
514
|
+
gap: 8px;
|
|
515
|
+
}
|
|
480
516
|
}
|
|
@@ -43,4 +43,48 @@
|
|
|
43
43
|
padding-top: 4px;
|
|
44
44
|
padding-bottom: 4px;
|
|
45
45
|
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
/* undo delete */
|
|
50
|
+
|
|
51
|
+
.scheduler-info.scheduler-popup_after_delete{
|
|
52
|
+
cursor: default ;
|
|
53
|
+
border-radius: var(--dhx-scheduler-border-radius);
|
|
54
|
+
padding: 0;
|
|
55
|
+
width: 225px;
|
|
56
|
+
--dhx-scheduler-info-background: var(--dhx-scheduler-undo-delete-background);
|
|
57
|
+
--dhx-scheduler-info-color: var(--dhx-scheduler-undo-delete-color);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.dhx_info_message{
|
|
61
|
+
display: flex;
|
|
62
|
+
justify-content: space-between;
|
|
63
|
+
align-items: center;
|
|
64
|
+
padding: 8px 12px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.undo_popup_text{
|
|
68
|
+
text-align: center;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.undo_button{
|
|
72
|
+
.button;
|
|
73
|
+
.button-link;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/* drag_highlight */
|
|
77
|
+
|
|
78
|
+
.dhx_scheduler_month .dhx_marked_timespan.dhx_scheduler_dnd_marker {
|
|
79
|
+
display:block;
|
|
80
|
+
margin-top: -4px;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.dhx_marked_timespan.dhx_scheduler_dnd_marker {
|
|
84
|
+
justify-content: flex-start;
|
|
85
|
+
align-items: flex-start;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.dhx_scheduler_dnd_marker{
|
|
89
|
+
opacity: 0.5;
|
|
46
90
|
}
|
|
@@ -36,6 +36,8 @@
|
|
|
36
36
|
--dhx-scheduler-scale-color: var(--dhx-scheduler-base-colors-text-light);
|
|
37
37
|
|
|
38
38
|
--dhx-scheduler-popup-background: #1B1B1C;
|
|
39
|
+
--dhx-scheduler-undo-delete-background: var(--dhx-scheduler-popup-background);
|
|
40
|
+
--dhx-scheduler-undo-delete-color: var(--dhx-scheduler-base-colors-text-base);
|
|
39
41
|
// --dhx-scheduler-popup-color: var(--dhx-scheduler-base-colors-text-base);
|
|
40
42
|
--dhx-scheduler-popup-border: 1px solid #4B4B4B;
|
|
41
43
|
|
|
@@ -260,4 +260,7 @@
|
|
|
260
260
|
--dhx-scheduler-modal-width: 320px;
|
|
261
261
|
--dhx-scheduler-modal-border-radius: var(--dhx-scheduler-popup-border-radius);
|
|
262
262
|
|
|
263
|
+
/* undo delete */
|
|
264
|
+
--dhx-scheduler-undo-delete-background: var(--dhx-scheduler-base-colors-text-base);
|
|
265
|
+
--dhx-scheduler-undo-delete-color: var(--dhx-scheduler-event-color);
|
|
263
266
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dhtmlx-scheduler",
|
|
3
|
-
"version": "7.0
|
|
3
|
+
"version": "7.1.0",
|
|
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,25 @@
|
|
|
1
|
+
### 7.1.0
|
|
2
|
+
|
|
3
|
+
Storing recurring events in the RRULE format
|
|
4
|
+
Map view supports different map providers
|
|
5
|
+
The ability to undo an event's deletion
|
|
6
|
+
The batchUpdate method for updating multiple events at once
|
|
7
|
+
Scheduler highlights the original position of a calendar event during the drag and drop
|
|
8
|
+
Fix the incorrect height of the Timeline view section when event_dy is set to "full"
|
|
9
|
+
Fix the issue when dynamically changing the x_date property of the Timeline view did not affect the template
|
|
10
|
+
Fix the header misalignment in the multiday Units view
|
|
11
|
+
Fix the script error that occurred after the destructor is called when the drag_between extension is active
|
|
12
|
+
Fix the incorrect behavior of the limit extension, which prevented editing recurring series
|
|
13
|
+
Fix the performance issue with events drag and drop in the Tree Timeline view when the show_unassigned option is set to true
|
|
14
|
+
Fix the incorrect behavior of the scrollable Timeline view when smart_rendering is set to false
|
|
15
|
+
Fix the incorrect scroll position after a view change in a scrollable Timeline view
|
|
16
|
+
|
|
17
|
+
### 7.0.5
|
|
18
|
+
|
|
19
|
+
Fix the incorrect height of the Timeline sections when the event_dy:"full" setting is used
|
|
20
|
+
Fix the missing "today" marker in the Year view
|
|
21
|
+
Correct the positioning of events in the Day/Week views
|
|
22
|
+
|
|
1
23
|
### 7.0.4
|
|
2
24
|
|
|
3
25
|
Add the placeholder setting for the textarea control
|