@syncfusion/ej2-schedule 24.2.8 → 25.1.37
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/CHANGELOG.md +17 -0
- package/dist/ej2-schedule.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +145 -39
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +146 -36
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +16 -16
- package/src/recurrence-editor/recurrence-editor.js +1 -2
- package/src/schedule/actions/crud.js +9 -0
- package/src/schedule/actions/keyboard.d.ts +1 -0
- package/src/schedule/actions/keyboard.js +11 -4
- package/src/schedule/base/css-constant.d.ts +2 -0
- package/src/schedule/base/css-constant.js +2 -0
- package/src/schedule/base/interface.d.ts +1 -0
- package/src/schedule/base/schedule.d.ts +4 -1
- package/src/schedule/base/schedule.js +16 -1
- package/src/schedule/base/type.d.ts +1 -0
- package/src/schedule/event-renderer/agenda-base.d.ts +1 -1
- package/src/schedule/event-renderer/agenda-base.js +36 -14
- package/src/schedule/event-renderer/event-base.js +4 -2
- package/src/schedule/event-renderer/vertical-view.js +7 -1
- package/src/schedule/popups/quick-popups.js +11 -0
- package/src/schedule/renderer/agenda.d.ts +1 -0
- package/src/schedule/renderer/agenda.js +38 -9
- package/src/schedule/renderer/renderer.js +11 -3
- package/styles/bootstrap-dark.css +12 -2
- package/styles/bootstrap.css +12 -2
- package/styles/bootstrap4.css +9 -3
- package/styles/bootstrap5-dark.css +9 -3
- package/styles/bootstrap5.css +9 -3
- package/styles/fabric-dark.css +8 -2
- package/styles/fabric.css +8 -2
- package/styles/fluent-dark.css +13 -2
- package/styles/fluent.css +13 -2
- package/styles/highcontrast-light.css +8 -2
- package/styles/highcontrast.css +8 -2
- package/styles/material-dark.css +17 -2
- package/styles/material.css +17 -2
- package/styles/material3-dark.css +9 -3
- package/styles/material3.css +9 -3
- package/styles/recurrence-editor/_bds-definition.scss +15 -0
- package/styles/schedule/_bds-definition.scss +287 -0
- package/styles/schedule/_bootstrap4-definition.scss +1 -1
- package/styles/schedule/_bootstrap5-definition.scss +1 -1
- package/styles/schedule/_fusionnew-definition.scss +1 -1
- package/styles/schedule/_layout.scss +6 -1
- package/styles/schedule/_material3-definition.scss +1 -1
- package/styles/schedule/_tailwind-definition.scss +1 -1
- package/styles/schedule/bootstrap-dark.css +12 -2
- package/styles/schedule/bootstrap.css +12 -2
- package/styles/schedule/bootstrap4.css +9 -3
- package/styles/schedule/bootstrap5-dark.css +9 -3
- package/styles/schedule/bootstrap5.css +9 -3
- package/styles/schedule/fabric-dark.css +8 -2
- package/styles/schedule/fabric.css +8 -2
- package/styles/schedule/fluent-dark.css +13 -2
- package/styles/schedule/fluent.css +13 -2
- package/styles/schedule/highcontrast-light.css +8 -2
- package/styles/schedule/highcontrast.css +8 -2
- package/styles/schedule/icons/_bds.scss +235 -0
- package/styles/schedule/material-dark.css +17 -2
- package/styles/schedule/material.css +17 -2
- package/styles/schedule/material3-dark.css +9 -3
- package/styles/schedule/material3.css +9 -3
- package/styles/schedule/tailwind-dark.css +9 -3
- package/styles/schedule/tailwind.css +9 -3
- package/styles/tailwind-dark.css +9 -3
- package/styles/tailwind.css +9 -3
|
@@ -164,6 +164,11 @@
|
|
|
164
164
|
border-left-width: 0;
|
|
165
165
|
}
|
|
166
166
|
|
|
167
|
+
.e-bigger .e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon,
|
|
168
|
+
.e-bigger.e-multiselect.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
169
|
+
margin-top: -1.6em;
|
|
170
|
+
}
|
|
171
|
+
|
|
167
172
|
/*! recurrence editor theme wise definitions*/ /*! Schedule component's bootstrap5 theme definitions and variables */
|
|
168
173
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
169
174
|
content: "\e765";
|
|
@@ -349,6 +354,9 @@
|
|
|
349
354
|
font-size: 14px;
|
|
350
355
|
text-transform: none;
|
|
351
356
|
}
|
|
357
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
358
|
+
height: 38px;
|
|
359
|
+
}
|
|
352
360
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
353
361
|
height: 38px;
|
|
354
362
|
min-height: 38px;
|
|
@@ -1057,6 +1065,9 @@
|
|
|
1057
1065
|
padding: 0;
|
|
1058
1066
|
position: relative;
|
|
1059
1067
|
}
|
|
1068
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1069
|
+
visibility: hidden;
|
|
1070
|
+
}
|
|
1060
1071
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1061
1072
|
cursor: default;
|
|
1062
1073
|
}
|
|
@@ -2511,8 +2522,8 @@
|
|
|
2511
2522
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2512
2523
|
min-height: 54px;
|
|
2513
2524
|
}
|
|
2514
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2515
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2525
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2526
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2516
2527
|
min-width: 34px;
|
|
2517
2528
|
}
|
|
2518
2529
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -362,6 +362,9 @@
|
|
|
362
362
|
font-size: 14px;
|
|
363
363
|
text-transform: uppercase;
|
|
364
364
|
}
|
|
365
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
366
|
+
height: 43px;
|
|
367
|
+
}
|
|
365
368
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
366
369
|
height: 43px;
|
|
367
370
|
min-height: 43px;
|
|
@@ -1070,6 +1073,9 @@
|
|
|
1070
1073
|
padding: 0;
|
|
1071
1074
|
position: relative;
|
|
1072
1075
|
}
|
|
1076
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1077
|
+
visibility: hidden;
|
|
1078
|
+
}
|
|
1073
1079
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1074
1080
|
cursor: default;
|
|
1075
1081
|
}
|
|
@@ -2524,8 +2530,8 @@
|
|
|
2524
2530
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2525
2531
|
min-height: 56px;
|
|
2526
2532
|
}
|
|
2527
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2528
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2533
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2534
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2529
2535
|
min-width: 34px;
|
|
2530
2536
|
}
|
|
2531
2537
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -371,6 +371,9 @@
|
|
|
371
371
|
font-size: 14px;
|
|
372
372
|
text-transform: uppercase;
|
|
373
373
|
}
|
|
374
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
375
|
+
height: 43px;
|
|
376
|
+
}
|
|
374
377
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
375
378
|
height: 43px;
|
|
376
379
|
min-height: 43px;
|
|
@@ -1079,6 +1082,9 @@
|
|
|
1079
1082
|
padding: 0;
|
|
1080
1083
|
position: relative;
|
|
1081
1084
|
}
|
|
1085
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1086
|
+
visibility: hidden;
|
|
1087
|
+
}
|
|
1082
1088
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1083
1089
|
cursor: default;
|
|
1084
1090
|
}
|
|
@@ -2533,8 +2539,8 @@
|
|
|
2533
2539
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2534
2540
|
min-height: 56px;
|
|
2535
2541
|
}
|
|
2536
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2537
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2542
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2543
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2538
2544
|
min-width: 34px;
|
|
2539
2545
|
}
|
|
2540
2546
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
@include export-module('schedule-bds-icons') {
|
|
2
|
+
.e-schedule {
|
|
3
|
+
.e-schedule-toolbar {
|
|
4
|
+
& .e-icon-prev::before {
|
|
5
|
+
content: '\e765';
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
& .e-icon-next::before {
|
|
9
|
+
content: '\e748';
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
& .e-icon-add::before {
|
|
13
|
+
content: '\e805';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
& .e-icon-today::before {
|
|
17
|
+
content: '\e778';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
& .e-icon-down-arrow::before {
|
|
21
|
+
content: '\e729';
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
& .e-icon-day::before {
|
|
25
|
+
content: '\e75e';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
& .e-icon-week::before {
|
|
29
|
+
content: '\e817';
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
& .e-icon-workweek::before {
|
|
33
|
+
content: '\e817';
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
& .e-icon-month::before {
|
|
37
|
+
content: '\e7c5';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
& .e-icon-month-agenda::before {
|
|
41
|
+
content: '\e75b';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
& .e-icon-agenda::before {
|
|
45
|
+
content: '\e74c';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
& .e-icon-year::before {
|
|
49
|
+
content: '\e7c5';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
& .e-icon-timeline-year-vertical::before {
|
|
53
|
+
content: '\e876';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
& .e-icon-timeline-year-horizontal::before {
|
|
57
|
+
content: '\e876';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
& .e-icon-timeline-day::before {
|
|
61
|
+
content: '\e7da';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
& .e-icon-timeline-week::before {
|
|
65
|
+
content: '\e81f';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
& .e-icon-timeline-workweek::before {
|
|
69
|
+
content: '\e720';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
& .e-icon-timeline-month::before {
|
|
73
|
+
content: '\e876';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.e-toolbar {
|
|
77
|
+
.e-popup-down-icon::before {
|
|
78
|
+
content: '\e770';
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-popup-up-icon::before {
|
|
82
|
+
content: '\e770';
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&.e-rtl {
|
|
87
|
+
& .e-icon-prev::before {
|
|
88
|
+
content: '\e748';
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
& .e-icon-next::before {
|
|
92
|
+
content: '\e765';
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-schedule-resource-toolbar {
|
|
98
|
+
& .e-icon-menu::before {
|
|
99
|
+
content: '\e799';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
& .e-icon-next::before {
|
|
103
|
+
content: '\e748';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-close-icon::before {
|
|
108
|
+
content: '\e7e7';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-block-indicator::before {
|
|
112
|
+
content: '\e839';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-appointment {
|
|
116
|
+
.e-recurrence-icon::before {
|
|
117
|
+
content: '\e772';
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-recurrence-edit-icon::before {
|
|
121
|
+
content: '\e789';
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-up-icon::before {
|
|
125
|
+
content: '\e822';
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.e-down-icon::before {
|
|
129
|
+
content: '\e7fe';
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-left-icon::before {
|
|
133
|
+
content: '\e744';
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-right-icon::before {
|
|
137
|
+
content: '\e7a9';
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.e-vertical-view .e-all-day-cells {
|
|
142
|
+
.e-all-day-appointment-section::before {
|
|
143
|
+
content: '\e729';
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&.e-rtl {
|
|
148
|
+
.e-appointment {
|
|
149
|
+
& .e-left-icon::before {
|
|
150
|
+
content: '\e7a9';
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
& .e-right-icon::before {
|
|
154
|
+
content: '\e744';
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-resource-tree-icon::before {
|
|
160
|
+
content: '\e748';
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-schedule-dialog.e-device {
|
|
165
|
+
.e-back-icon::before {
|
|
166
|
+
content: '\e773';
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.e-save-icon::before {
|
|
170
|
+
content: '\e7c8';
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.e-delete-icon::before {
|
|
174
|
+
content: '\e820';
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.e-recurrence-container {
|
|
178
|
+
.e-recurrence-edit-button {
|
|
179
|
+
.e-recurrence-edit.e-icons::before {
|
|
180
|
+
content: '\e730';
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.e-schedule-dialog.e-device.e-rtl {
|
|
187
|
+
.e-back-icon::before {
|
|
188
|
+
content: '\e7f9';
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-quick-popup-wrapper {
|
|
193
|
+
.e-edit-icon::before {
|
|
194
|
+
content: '\e730';
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.e-delete-icon::before {
|
|
198
|
+
content: '\e820';
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-close-icon::before {
|
|
202
|
+
content: '\e7e7';
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.e-time-icon::before {
|
|
206
|
+
content: '\e705';
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.e-location-icon::before {
|
|
210
|
+
content: '\e756';
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.e-time-zone-icon::before {
|
|
214
|
+
content: '\e804';
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.e-description-icon::before {
|
|
218
|
+
content: '\e7c0';
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.e-resource-icon::before {
|
|
222
|
+
content: '\e7b9';
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.e-date-time-icon::before {
|
|
226
|
+
content: '\e7da';
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.e-more-popup-wrapper.e-device {
|
|
231
|
+
.e-close-icon::before {
|
|
232
|
+
content: '\e7e7';
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
@@ -121,6 +121,15 @@
|
|
|
121
121
|
padding: 5px 5px 5px 12px;
|
|
122
122
|
}
|
|
123
123
|
|
|
124
|
+
.e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text] {
|
|
125
|
+
padding: 1px 0;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.e-small .e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text],
|
|
129
|
+
.e-small.e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text] {
|
|
130
|
+
padding: 0;
|
|
131
|
+
}
|
|
132
|
+
|
|
124
133
|
/*! recurrence editor theme wise definitions*/ /*! Schedule component's material theme definitions and variables */
|
|
125
134
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
126
135
|
content: "\e937";
|
|
@@ -306,6 +315,9 @@
|
|
|
306
315
|
font-size: 13px;
|
|
307
316
|
text-transform: uppercase;
|
|
308
317
|
}
|
|
318
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
319
|
+
height: 42px;
|
|
320
|
+
}
|
|
309
321
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
310
322
|
height: 42px;
|
|
311
323
|
min-height: 42px;
|
|
@@ -1014,6 +1026,9 @@
|
|
|
1014
1026
|
padding: 0;
|
|
1015
1027
|
position: relative;
|
|
1016
1028
|
}
|
|
1029
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1030
|
+
visibility: hidden;
|
|
1031
|
+
}
|
|
1017
1032
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1018
1033
|
cursor: default;
|
|
1019
1034
|
}
|
|
@@ -2468,8 +2483,8 @@
|
|
|
2468
2483
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2469
2484
|
min-height: 56px;
|
|
2470
2485
|
}
|
|
2471
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2472
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2486
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2487
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2473
2488
|
min-width: 34px;
|
|
2474
2489
|
}
|
|
2475
2490
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -157,6 +157,15 @@
|
|
|
157
157
|
padding: 4px 8px;
|
|
158
158
|
}
|
|
159
159
|
|
|
160
|
+
.e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text] {
|
|
161
|
+
padding: 1px 0;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-small .e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text],
|
|
165
|
+
.e-small.e-multiselect.e-input-group.e-checkbox .e-multi-select-wrapper input[type=text] {
|
|
166
|
+
padding: 0;
|
|
167
|
+
}
|
|
168
|
+
|
|
160
169
|
/*! recurrence editor theme wise definitions*/ /*! Schedule component's material theme definitions and variables */
|
|
161
170
|
.e-schedule .e-schedule-toolbar .e-icon-prev::before {
|
|
162
171
|
content: "\e937";
|
|
@@ -342,6 +351,9 @@
|
|
|
342
351
|
font-size: 13px;
|
|
343
352
|
text-transform: uppercase;
|
|
344
353
|
}
|
|
354
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
355
|
+
height: 42px;
|
|
356
|
+
}
|
|
345
357
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
346
358
|
height: 42px;
|
|
347
359
|
min-height: 42px;
|
|
@@ -1050,6 +1062,9 @@
|
|
|
1050
1062
|
padding: 0;
|
|
1051
1063
|
position: relative;
|
|
1052
1064
|
}
|
|
1065
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1066
|
+
visibility: hidden;
|
|
1067
|
+
}
|
|
1053
1068
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1054
1069
|
cursor: default;
|
|
1055
1070
|
}
|
|
@@ -2504,8 +2519,8 @@
|
|
|
2504
2519
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2505
2520
|
min-height: 56px;
|
|
2506
2521
|
}
|
|
2507
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2508
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2522
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2523
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2509
2524
|
min-width: 34px;
|
|
2510
2525
|
}
|
|
2511
2526
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -400,6 +400,9 @@
|
|
|
400
400
|
font-size: 14px;
|
|
401
401
|
text-transform: none;
|
|
402
402
|
}
|
|
403
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
404
|
+
height: 48px;
|
|
405
|
+
}
|
|
403
406
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
404
407
|
height: 48px;
|
|
405
408
|
min-height: 48px;
|
|
@@ -1117,6 +1120,9 @@
|
|
|
1117
1120
|
padding: 0;
|
|
1118
1121
|
position: relative;
|
|
1119
1122
|
}
|
|
1123
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1124
|
+
visibility: hidden;
|
|
1125
|
+
}
|
|
1120
1126
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1121
1127
|
cursor: default;
|
|
1122
1128
|
}
|
|
@@ -1357,7 +1363,7 @@
|
|
|
1357
1363
|
cursor: default;
|
|
1358
1364
|
font-weight: normal;
|
|
1359
1365
|
height: 34px;
|
|
1360
|
-
padding:
|
|
1366
|
+
padding: 3px;
|
|
1361
1367
|
}
|
|
1362
1368
|
.e-schedule .e-month-view .e-content-table {
|
|
1363
1369
|
height: 100%;
|
|
@@ -2571,8 +2577,8 @@
|
|
|
2571
2577
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2572
2578
|
min-height: 56px;
|
|
2573
2579
|
}
|
|
2574
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2575
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2580
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2581
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2576
2582
|
min-width: 32px;
|
|
2577
2583
|
}
|
|
2578
2584
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -456,6 +456,9 @@
|
|
|
456
456
|
font-size: 14px;
|
|
457
457
|
text-transform: none;
|
|
458
458
|
}
|
|
459
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
460
|
+
height: 48px;
|
|
461
|
+
}
|
|
459
462
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
460
463
|
height: 48px;
|
|
461
464
|
min-height: 48px;
|
|
@@ -1173,6 +1176,9 @@
|
|
|
1173
1176
|
padding: 0;
|
|
1174
1177
|
position: relative;
|
|
1175
1178
|
}
|
|
1179
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1180
|
+
visibility: hidden;
|
|
1181
|
+
}
|
|
1176
1182
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1177
1183
|
cursor: default;
|
|
1178
1184
|
}
|
|
@@ -1413,7 +1419,7 @@
|
|
|
1413
1419
|
cursor: default;
|
|
1414
1420
|
font-weight: normal;
|
|
1415
1421
|
height: 34px;
|
|
1416
|
-
padding:
|
|
1422
|
+
padding: 3px;
|
|
1417
1423
|
}
|
|
1418
1424
|
.e-schedule .e-month-view .e-content-table {
|
|
1419
1425
|
height: 100%;
|
|
@@ -2627,8 +2633,8 @@
|
|
|
2627
2633
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2628
2634
|
min-height: 56px;
|
|
2629
2635
|
}
|
|
2630
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2631
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2636
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2637
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2632
2638
|
min-width: 32px;
|
|
2633
2639
|
}
|
|
2634
2640
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
font-size: 14px;
|
|
314
314
|
text-transform: none;
|
|
315
315
|
}
|
|
316
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
317
|
+
height: 38px;
|
|
318
|
+
}
|
|
316
319
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
317
320
|
height: 38px;
|
|
318
321
|
min-height: 38px;
|
|
@@ -1021,6 +1024,9 @@
|
|
|
1021
1024
|
padding: 0;
|
|
1022
1025
|
position: relative;
|
|
1023
1026
|
}
|
|
1027
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1028
|
+
visibility: hidden;
|
|
1029
|
+
}
|
|
1024
1030
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1025
1031
|
cursor: default;
|
|
1026
1032
|
}
|
|
@@ -1261,7 +1267,7 @@
|
|
|
1261
1267
|
cursor: default;
|
|
1262
1268
|
font-weight: normal;
|
|
1263
1269
|
height: 34px;
|
|
1264
|
-
padding:
|
|
1270
|
+
padding: 3px;
|
|
1265
1271
|
}
|
|
1266
1272
|
.e-schedule .e-month-view .e-content-table {
|
|
1267
1273
|
height: 100%;
|
|
@@ -2475,8 +2481,8 @@
|
|
|
2475
2481
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2476
2482
|
min-height: 54px;
|
|
2477
2483
|
}
|
|
2478
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2479
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2484
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2485
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2480
2486
|
min-width: 34px;
|
|
2481
2487
|
}
|
|
2482
2488
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
font-size: 14px;
|
|
314
314
|
text-transform: none;
|
|
315
315
|
}
|
|
316
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
317
|
+
height: 38px;
|
|
318
|
+
}
|
|
316
319
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
317
320
|
height: 38px;
|
|
318
321
|
min-height: 38px;
|
|
@@ -1021,6 +1024,9 @@
|
|
|
1021
1024
|
padding: 0;
|
|
1022
1025
|
position: relative;
|
|
1023
1026
|
}
|
|
1027
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1028
|
+
visibility: hidden;
|
|
1029
|
+
}
|
|
1024
1030
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1025
1031
|
cursor: default;
|
|
1026
1032
|
}
|
|
@@ -1261,7 +1267,7 @@
|
|
|
1261
1267
|
cursor: default;
|
|
1262
1268
|
font-weight: normal;
|
|
1263
1269
|
height: 34px;
|
|
1264
|
-
padding:
|
|
1270
|
+
padding: 3px;
|
|
1265
1271
|
}
|
|
1266
1272
|
.e-schedule .e-month-view .e-content-table {
|
|
1267
1273
|
height: 100%;
|
|
@@ -2475,8 +2481,8 @@
|
|
|
2475
2481
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2476
2482
|
min-height: 54px;
|
|
2477
2483
|
}
|
|
2478
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2479
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2484
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2485
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2480
2486
|
min-width: 34px;
|
|
2481
2487
|
}
|
|
2482
2488
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
font-size: 14px;
|
|
314
314
|
text-transform: none;
|
|
315
315
|
}
|
|
316
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
317
|
+
height: 38px;
|
|
318
|
+
}
|
|
316
319
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
317
320
|
height: 38px;
|
|
318
321
|
min-height: 38px;
|
|
@@ -1021,6 +1024,9 @@
|
|
|
1021
1024
|
padding: 0;
|
|
1022
1025
|
position: relative;
|
|
1023
1026
|
}
|
|
1027
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1028
|
+
visibility: hidden;
|
|
1029
|
+
}
|
|
1024
1030
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1025
1031
|
cursor: default;
|
|
1026
1032
|
}
|
|
@@ -1261,7 +1267,7 @@
|
|
|
1261
1267
|
cursor: default;
|
|
1262
1268
|
font-weight: normal;
|
|
1263
1269
|
height: 34px;
|
|
1264
|
-
padding:
|
|
1270
|
+
padding: 3px;
|
|
1265
1271
|
}
|
|
1266
1272
|
.e-schedule .e-month-view .e-content-table {
|
|
1267
1273
|
height: 100%;
|
|
@@ -2475,8 +2481,8 @@
|
|
|
2475
2481
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2476
2482
|
min-height: 54px;
|
|
2477
2483
|
}
|
|
2478
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2479
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2484
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2485
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2480
2486
|
min-width: 34px;
|
|
2481
2487
|
}
|
|
2482
2488
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|
package/styles/tailwind.css
CHANGED
|
@@ -313,6 +313,9 @@
|
|
|
313
313
|
font-size: 14px;
|
|
314
314
|
text-transform: none;
|
|
315
315
|
}
|
|
316
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items {
|
|
317
|
+
height: 38px;
|
|
318
|
+
}
|
|
316
319
|
.e-schedule .e-schedule-toolbar .e-toolbar-items.e-tbar-pos {
|
|
317
320
|
height: 38px;
|
|
318
321
|
min-height: 38px;
|
|
@@ -1021,6 +1024,9 @@
|
|
|
1021
1024
|
padding: 0;
|
|
1022
1025
|
position: relative;
|
|
1023
1026
|
}
|
|
1027
|
+
.e-schedule .e-vertical-view .e-appointment-wrapper-hidden {
|
|
1028
|
+
visibility: hidden;
|
|
1029
|
+
}
|
|
1024
1030
|
.e-schedule .e-vertical-view .e-all-day-appointment-wrapper .e-appointment:not(.e-schedule-event-clone) {
|
|
1025
1031
|
cursor: default;
|
|
1026
1032
|
}
|
|
@@ -1261,7 +1267,7 @@
|
|
|
1261
1267
|
cursor: default;
|
|
1262
1268
|
font-weight: normal;
|
|
1263
1269
|
height: 34px;
|
|
1264
|
-
padding:
|
|
1270
|
+
padding: 3px;
|
|
1265
1271
|
}
|
|
1266
1272
|
.e-schedule .e-month-view .e-content-table {
|
|
1267
1273
|
height: 100%;
|
|
@@ -2475,8 +2481,8 @@
|
|
|
2475
2481
|
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item {
|
|
2476
2482
|
min-height: 54px;
|
|
2477
2483
|
}
|
|
2478
|
-
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator),
|
|
2479
|
-
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator) {
|
|
2484
|
+
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer),
|
|
2485
|
+
.e-bigger.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item:not(.e-separator):not(.e-spacer) {
|
|
2480
2486
|
min-width: 34px;
|
|
2481
2487
|
}
|
|
2482
2488
|
.e-bigger .e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator,
|