@syncfusion/ej2-schedule 28.2.11 → 29.1.34
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/.gitleaksignore +4 -0
- package/README.md +2 -2
- 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 +518 -146
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +570 -186
- 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 +24 -26
- package/src/recurrence-editor/recurrence-editor-model.d.ts +14 -0
- package/src/recurrence-editor/recurrence-editor.d.ts +12 -0
- package/src/recurrence-editor/recurrence-editor.js +8 -1
- package/src/schedule/actions/action-base.js +4 -1
- package/src/schedule/actions/crud.d.ts +3 -0
- package/src/schedule/actions/crud.js +129 -63
- package/src/schedule/actions/drag.js +3 -0
- package/src/schedule/actions/resize.js +4 -1
- package/src/schedule/actions/virtual-scroll.js +3 -1
- package/src/schedule/base/constant.d.ts +6 -0
- package/src/schedule/base/constant.js +6 -0
- package/src/schedule/base/interface.d.ts +53 -0
- package/src/schedule/base/schedule-model.d.ts +54 -1
- package/src/schedule/base/schedule.d.ts +68 -2
- package/src/schedule/base/schedule.js +67 -0
- package/src/schedule/base/type.d.ts +2 -1
- package/src/schedule/event-renderer/event-base.d.ts +5 -0
- package/src/schedule/event-renderer/event-base.js +123 -27
- package/src/schedule/event-renderer/inline-edit.d.ts +3 -1
- package/src/schedule/event-renderer/inline-edit.js +18 -6
- package/src/schedule/event-renderer/month.d.ts +1 -0
- package/src/schedule/event-renderer/month.js +25 -0
- package/src/schedule/event-renderer/timeline-view.d.ts +1 -1
- package/src/schedule/event-renderer/timeline-view.js +12 -19
- package/src/schedule/event-renderer/vertical-view.js +2 -2
- package/src/schedule/event-renderer/year.js +1 -1
- package/src/schedule/exports/excel-export.js +9 -2
- package/src/schedule/exports/print.d.ts +2 -0
- package/src/schedule/exports/print.js +90 -52
- package/src/schedule/models/views-model.d.ts +32 -0
- package/src/schedule/models/views.d.ts +30 -0
- package/src/schedule/models/views.js +6 -0
- package/src/schedule/popups/event-tooltip.js +18 -0
- package/src/schedule/popups/event-window.d.ts +1 -0
- package/src/schedule/popups/event-window.js +35 -4
- package/src/schedule/popups/quick-popups.js +11 -4
- package/src/schedule/renderer/month.js +3 -1
- package/styles/bds-lite.css +35 -6
- package/styles/bds.css +37 -21
- package/styles/bootstrap-dark-lite.css +46 -17
- package/styles/bootstrap-dark.css +49 -33
- package/styles/bootstrap-lite.css +42 -13
- package/styles/bootstrap.css +44 -28
- package/styles/bootstrap4-lite.css +55 -26
- package/styles/bootstrap4.css +57 -41
- package/styles/bootstrap5-dark-lite.css +128 -99
- package/styles/bootstrap5-dark.css +131 -115
- package/styles/bootstrap5-lite.css +50 -21
- package/styles/bootstrap5.3-lite.css +35 -6
- package/styles/bootstrap5.3.css +37 -21
- package/styles/bootstrap5.css +52 -36
- package/styles/fabric-dark-lite.css +46 -17
- package/styles/fabric-dark.css +49 -33
- package/styles/fabric-lite.css +56 -27
- package/styles/fabric.css +58 -42
- package/styles/fluent-dark-lite.css +39 -10
- package/styles/fluent-dark.css +40 -24
- package/styles/fluent-lite.css +39 -10
- package/styles/fluent.css +40 -24
- package/styles/fluent2-lite.css +35 -6
- package/styles/fluent2.css +38 -22
- package/styles/highcontrast-light-lite.css +53 -24
- package/styles/highcontrast-light.css +56 -40
- package/styles/highcontrast-lite.css +53 -24
- package/styles/highcontrast.css +56 -40
- package/styles/material-dark-lite.css +34 -5
- package/styles/material-dark.css +35 -19
- package/styles/material-lite.css +34 -5
- package/styles/material.css +35 -19
- package/styles/material3-dark-lite.css +36 -7
- package/styles/material3-dark.css +39 -23
- package/styles/material3-lite.css +36 -7
- package/styles/material3.css +39 -23
- package/styles/recurrence-editor/_layout.scss +6 -1
- package/styles/recurrence-editor/bds.css +5 -1
- package/styles/recurrence-editor/bootstrap-dark.css +5 -1
- package/styles/recurrence-editor/bootstrap.css +5 -1
- package/styles/recurrence-editor/bootstrap4.css +5 -1
- package/styles/recurrence-editor/bootstrap5-dark.css +5 -1
- package/styles/recurrence-editor/bootstrap5.3.css +5 -1
- package/styles/recurrence-editor/bootstrap5.css +5 -1
- package/styles/recurrence-editor/fabric-dark.css +5 -1
- package/styles/recurrence-editor/fabric.css +5 -1
- package/styles/recurrence-editor/fluent-dark.css +5 -1
- package/styles/recurrence-editor/fluent.css +5 -1
- package/styles/recurrence-editor/fluent2.css +5 -1
- package/styles/recurrence-editor/highcontrast-light.css +5 -1
- package/styles/recurrence-editor/highcontrast.css +5 -1
- package/styles/recurrence-editor/material-dark.css +5 -1
- package/styles/recurrence-editor/material.css +5 -1
- package/styles/recurrence-editor/material3-dark.css +5 -1
- package/styles/recurrence-editor/material3.css +5 -1
- package/styles/recurrence-editor/tailwind-dark.css +5 -1
- package/styles/recurrence-editor/tailwind.css +5 -1
- package/styles/recurrence-editor/tailwind3.css +5 -1
- package/styles/schedule/_bds-definition.scss +2 -0
- package/styles/schedule/_bigger.scss +2 -17
- package/styles/schedule/_bootstrap-dark-definition.scss +5 -1
- package/styles/schedule/_bootstrap-definition.scss +5 -1
- package/styles/schedule/_bootstrap4-definition.scss +9 -5
- package/styles/schedule/_bootstrap5-definition.scss +5 -1
- package/styles/schedule/_bootstrap5.3-definition.scss +2 -0
- package/styles/schedule/_fabric-dark-definition.scss +2 -0
- package/styles/schedule/_fabric-definition.scss +5 -1
- package/styles/schedule/_fluent-definition.scss +3 -1
- package/styles/schedule/_fluent2-definition.scss +3 -1
- package/styles/schedule/_fusionnew-definition.scss +2 -0
- package/styles/schedule/_highcontrast-definition.scss +6 -2
- package/styles/schedule/_highcontrast-light-definition.scss +6 -2
- package/styles/schedule/_layout.scss +39 -9
- package/styles/schedule/_material-dark-definition.scss +2 -0
- package/styles/schedule/_material-definition.scss +2 -0
- package/styles/schedule/_material3-definition.scss +4 -2
- package/styles/schedule/_tailwind-definition.scss +2 -0
- package/styles/schedule/_tailwind3-definition.scss +4 -2
- package/styles/schedule/bds.css +32 -20
- package/styles/schedule/bootstrap-dark.css +44 -32
- package/styles/schedule/bootstrap.css +39 -27
- package/styles/schedule/bootstrap4.css +52 -40
- package/styles/schedule/bootstrap5-dark.css +126 -114
- package/styles/schedule/bootstrap5.3.css +32 -20
- package/styles/schedule/bootstrap5.css +47 -35
- package/styles/schedule/fabric-dark.css +44 -32
- package/styles/schedule/fabric.css +53 -41
- package/styles/schedule/fluent-dark.css +35 -23
- package/styles/schedule/fluent.css +35 -23
- package/styles/schedule/fluent2.css +33 -21
- package/styles/schedule/highcontrast-light.css +51 -39
- package/styles/schedule/highcontrast.css +51 -39
- package/styles/schedule/material-dark.css +30 -18
- package/styles/schedule/material.css +30 -18
- package/styles/schedule/material3-dark.css +34 -22
- package/styles/schedule/material3.css +34 -22
- package/styles/schedule/tailwind-dark.css +49 -37
- package/styles/schedule/tailwind.css +32 -20
- package/styles/schedule/tailwind3.css +34 -22
- package/styles/tailwind-dark-lite.css +52 -23
- package/styles/tailwind-dark.css +54 -38
- package/styles/tailwind-lite.css +35 -6
- package/styles/tailwind.css +37 -21
- package/styles/tailwind3-lite.css +36 -7
- package/styles/tailwind3.css +39 -23
|
@@ -341,6 +341,9 @@
|
|
|
341
341
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
342
342
|
border-right: 1px solid #dee2e6;
|
|
343
343
|
}
|
|
344
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
345
|
+
width: auto;
|
|
346
|
+
}
|
|
344
347
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
345
348
|
font-size: 14px;
|
|
346
349
|
text-transform: initial;
|
|
@@ -1285,6 +1288,10 @@
|
|
|
1285
1288
|
overflow: hidden;
|
|
1286
1289
|
opacity: 0;
|
|
1287
1290
|
}
|
|
1291
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1292
|
+
position: absolute;
|
|
1293
|
+
top: 0;
|
|
1294
|
+
}
|
|
1288
1295
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1289
1296
|
border-bottom-width: 0;
|
|
1290
1297
|
}
|
|
@@ -1471,7 +1478,7 @@
|
|
|
1471
1478
|
-ms-flex: 0 25%;
|
|
1472
1479
|
flex: 0 25%;
|
|
1473
1480
|
max-width: 100%;
|
|
1474
|
-
min-width:
|
|
1481
|
+
min-width: 300px;
|
|
1475
1482
|
padding: 10px;
|
|
1476
1483
|
}
|
|
1477
1484
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -1603,7 +1610,7 @@
|
|
|
1603
1610
|
background: #fff;
|
|
1604
1611
|
}
|
|
1605
1612
|
.e-schedule .e-timeline-year-view .e-resource-column-wrap .e-resource-cells:focus {
|
|
1606
|
-
background:
|
|
1613
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
1607
1614
|
}
|
|
1608
1615
|
.e-schedule .e-timeline-year-view .e-resource-column-table {
|
|
1609
1616
|
height: 100%;
|
|
@@ -1881,7 +1888,7 @@
|
|
|
1881
1888
|
}
|
|
1882
1889
|
.e-schedule .e-timeline-view .e-resource-cells:focus,
|
|
1883
1890
|
.e-schedule .e-timeline-month-view .e-resource-cells:focus {
|
|
1884
|
-
background:
|
|
1891
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
1885
1892
|
}
|
|
1886
1893
|
.e-schedule .e-timeline-view .e-resource-column-wrap,
|
|
1887
1894
|
.e-schedule .e-timeline-month-view .e-resource-column-wrap {
|
|
@@ -2228,7 +2235,7 @@
|
|
|
2228
2235
|
padding: 0 16px;
|
|
2229
2236
|
}
|
|
2230
2237
|
.e-schedule .e-month-agenda-view .e-appointment:hover {
|
|
2231
|
-
background:
|
|
2238
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
2232
2239
|
}
|
|
2233
2240
|
.e-schedule .e-month-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-month-agenda-view .e-appointment:focus {
|
|
2234
2241
|
background: #e9ecef;
|
|
@@ -2328,6 +2335,9 @@
|
|
|
2328
2335
|
.e-schedule .e-agenda-view {
|
|
2329
2336
|
background: #fff;
|
|
2330
2337
|
}
|
|
2338
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2339
|
+
font-size: 14px;
|
|
2340
|
+
}
|
|
2331
2341
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2332
2342
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2333
2343
|
vertical-align: top;
|
|
@@ -2457,7 +2467,7 @@
|
|
|
2457
2467
|
padding: 0 14px;
|
|
2458
2468
|
}
|
|
2459
2469
|
.e-schedule .e-agenda-view .e-appointment:hover {
|
|
2460
|
-
background:
|
|
2470
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
2461
2471
|
}
|
|
2462
2472
|
.e-schedule .e-agenda-view .e-appointment.e-appointment-border, .e-schedule .e-agenda-view .e-appointment:focus {
|
|
2463
2473
|
background: #e9ecef;
|
|
@@ -2557,12 +2567,19 @@
|
|
|
2557
2567
|
visibility: hidden;
|
|
2558
2568
|
}
|
|
2559
2569
|
|
|
2570
|
+
.e-field-error-message {
|
|
2571
|
+
display: block;
|
|
2572
|
+
}
|
|
2573
|
+
|
|
2560
2574
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2561
|
-
width:
|
|
2575
|
+
width: 440px;
|
|
2562
2576
|
}
|
|
2563
2577
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2564
2578
|
padding: 12px;
|
|
2565
2579
|
}
|
|
2580
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2581
|
+
margin-bottom: 6px;
|
|
2582
|
+
}
|
|
2566
2583
|
@media screen and (max-width: 767px) {
|
|
2567
2584
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2568
2585
|
width: 289px;
|
|
@@ -2591,9 +2608,8 @@
|
|
|
2591
2608
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2592
2609
|
border-top: none;
|
|
2593
2610
|
}
|
|
2594
|
-
.e-dialog.e-quick-dialog .e-
|
|
2595
|
-
-
|
|
2596
|
-
box-shadow: none;
|
|
2611
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2612
|
+
margin-bottom: 6px;
|
|
2597
2613
|
}
|
|
2598
2614
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2599
2615
|
text-align: right;
|
|
@@ -2736,6 +2752,11 @@
|
|
|
2736
2752
|
float: right;
|
|
2737
2753
|
}
|
|
2738
2754
|
|
|
2755
|
+
.e-editor-content-item-template {
|
|
2756
|
+
text-overflow: ellipsis;
|
|
2757
|
+
overflow: hidden;
|
|
2758
|
+
}
|
|
2759
|
+
|
|
2739
2760
|
/*! schedule event window for smaller viewports*/
|
|
2740
2761
|
@media screen and (max-width: 320px) {
|
|
2741
2762
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3024,6 +3045,10 @@
|
|
|
3024
3045
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3025
3046
|
padding: 0 18px 12px;
|
|
3026
3047
|
}
|
|
3048
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3049
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3050
|
+
display: none;
|
|
3051
|
+
}
|
|
3027
3052
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3028
3053
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3029
3054
|
display: -webkit-box;
|
|
@@ -3501,7 +3526,7 @@
|
|
|
3501
3526
|
background: #fff;
|
|
3502
3527
|
}
|
|
3503
3528
|
.e-schedule .e-vertical-view .e-date-header-wrap .e-all-day-cells:hover {
|
|
3504
|
-
background:
|
|
3529
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
3505
3530
|
}
|
|
3506
3531
|
.e-schedule .e-vertical-view .e-left-indent-wrap table tbody td {
|
|
3507
3532
|
background: #fff;
|
|
@@ -3562,7 +3587,7 @@
|
|
|
3562
3587
|
padding: 0;
|
|
3563
3588
|
}
|
|
3564
3589
|
.e-schedule .e-vertical-view .e-work-cells:hover {
|
|
3565
|
-
background:
|
|
3590
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
3566
3591
|
color: #212529;
|
|
3567
3592
|
}
|
|
3568
3593
|
.e-schedule .e-vertical-view .e-alternate-cells {
|
|
@@ -3637,7 +3662,7 @@
|
|
|
3637
3662
|
}
|
|
3638
3663
|
.e-schedule .e-month-view .e-work-cells:hover,
|
|
3639
3664
|
.e-schedule .e-month-agenda-view .e-work-cells:hover {
|
|
3640
|
-
background:
|
|
3665
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
3641
3666
|
color: #212529;
|
|
3642
3667
|
}
|
|
3643
3668
|
.e-schedule .e-month-view .e-work-days,
|
|
@@ -3719,7 +3744,7 @@
|
|
|
3719
3744
|
}
|
|
3720
3745
|
.e-schedule .e-timeline-view .e-work-cells:hover:not(.e-resource-group-cells),
|
|
3721
3746
|
.e-schedule .e-timeline-month-view .e-work-cells:hover:not(.e-resource-group-cells) {
|
|
3722
|
-
background:
|
|
3747
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
3723
3748
|
color: #212529;
|
|
3724
3749
|
}
|
|
3725
3750
|
.e-schedule .e-timeline-view.e-virtual-mask .e-work-cells:hover,
|
|
@@ -3779,7 +3804,7 @@
|
|
|
3779
3804
|
padding: 0;
|
|
3780
3805
|
}
|
|
3781
3806
|
.e-schedule .e-timeline-year-view .e-work-cells:hover:not(.e-other-month) {
|
|
3782
|
-
background:
|
|
3807
|
+
background: rgb(242.05, 243.9, 245.75);
|
|
3783
3808
|
color: #212529;
|
|
3784
3809
|
}
|
|
3785
3810
|
.e-schedule .e-timeline-year-view .e-work-cells.e-work-days {
|
|
@@ -3889,8 +3914,8 @@
|
|
|
3889
3914
|
}
|
|
3890
3915
|
|
|
3891
3916
|
.e-tooltip-wrap.e-schedule-error {
|
|
3892
|
-
background:
|
|
3893
|
-
border-color:
|
|
3917
|
+
background: rgb(248, 214.6, 217.8);
|
|
3918
|
+
border-color: rgb(248, 214.6, 217.8);
|
|
3894
3919
|
z-index: 1000;
|
|
3895
3920
|
}
|
|
3896
3921
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip.e-tip-top {
|
|
@@ -3898,13 +3923,13 @@
|
|
|
3898
3923
|
}
|
|
3899
3924
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-top,
|
|
3900
3925
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-top {
|
|
3901
|
-
border-bottom: 8px solid
|
|
3902
|
-
color:
|
|
3926
|
+
border-bottom: 8px solid rgb(248, 214.6, 217.8);
|
|
3927
|
+
color: rgb(248, 214.6, 217.8);
|
|
3903
3928
|
}
|
|
3904
3929
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-outer.e-tip-bottom,
|
|
3905
3930
|
.e-tooltip-wrap.e-schedule-error .e-arrow-tip-inner.e-tip-bottom {
|
|
3906
|
-
border-top: 8px solid
|
|
3907
|
-
color:
|
|
3931
|
+
border-top: 8px solid rgb(248, 214.6, 217.8);
|
|
3932
|
+
color: rgb(248, 214.6, 217.8);
|
|
3908
3933
|
}
|
|
3909
3934
|
.e-tooltip-wrap.e-schedule-error .e-tip-content {
|
|
3910
3935
|
padding: 3px 6px;
|
|
@@ -4047,6 +4072,10 @@
|
|
|
4047
4072
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
4048
4073
|
display: none;
|
|
4049
4074
|
}
|
|
4075
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4076
|
+
min-width: 30px;
|
|
4077
|
+
margin-bottom: 18px;
|
|
4078
|
+
}
|
|
4050
4079
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4051
4080
|
float: left;
|
|
4052
4081
|
padding: 16px 20px 0;
|
|
@@ -4218,7 +4247,7 @@
|
|
|
4218
4247
|
width: 65%;
|
|
4219
4248
|
}
|
|
4220
4249
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4221
|
-
padding-left:
|
|
4250
|
+
padding-left: 59px;
|
|
4222
4251
|
}
|
|
4223
4252
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4224
4253
|
padding-right: 0;
|
|
@@ -345,6 +345,9 @@
|
|
|
345
345
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
346
346
|
border-right: 1px solid var(--color-sf-border-light);
|
|
347
347
|
}
|
|
348
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
349
|
+
width: auto;
|
|
350
|
+
}
|
|
348
351
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
349
352
|
font-size: 14px;
|
|
350
353
|
text-transform: initial;
|
|
@@ -1289,6 +1292,10 @@
|
|
|
1289
1292
|
overflow: hidden;
|
|
1290
1293
|
opacity: 0;
|
|
1291
1294
|
}
|
|
1295
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1296
|
+
position: absolute;
|
|
1297
|
+
top: 0;
|
|
1298
|
+
}
|
|
1292
1299
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1293
1300
|
border-bottom-width: 0;
|
|
1294
1301
|
}
|
|
@@ -1475,7 +1482,7 @@
|
|
|
1475
1482
|
-ms-flex: 0 25%;
|
|
1476
1483
|
flex: 0 25%;
|
|
1477
1484
|
max-width: 100%;
|
|
1478
|
-
min-width:
|
|
1485
|
+
min-width: 300px;
|
|
1479
1486
|
padding: 10px;
|
|
1480
1487
|
}
|
|
1481
1488
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -2332,6 +2339,9 @@
|
|
|
2332
2339
|
.e-schedule .e-agenda-view {
|
|
2333
2340
|
background: var(--color-sf-content-bg-color);
|
|
2334
2341
|
}
|
|
2342
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2343
|
+
font-size: 14px;
|
|
2344
|
+
}
|
|
2335
2345
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2336
2346
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2337
2347
|
vertical-align: top;
|
|
@@ -2561,12 +2571,19 @@
|
|
|
2561
2571
|
visibility: hidden;
|
|
2562
2572
|
}
|
|
2563
2573
|
|
|
2574
|
+
.e-field-error-message {
|
|
2575
|
+
display: block;
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2564
2578
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2565
|
-
width:
|
|
2579
|
+
width: 440px;
|
|
2566
2580
|
}
|
|
2567
2581
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2568
2582
|
padding: 12px;
|
|
2569
2583
|
}
|
|
2584
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2585
|
+
margin-bottom: 6px;
|
|
2586
|
+
}
|
|
2570
2587
|
@media screen and (max-width: 767px) {
|
|
2571
2588
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2572
2589
|
width: 289px;
|
|
@@ -2595,9 +2612,8 @@
|
|
|
2595
2612
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2596
2613
|
border-top: none;
|
|
2597
2614
|
}
|
|
2598
|
-
.e-dialog.e-quick-dialog .e-
|
|
2599
|
-
-
|
|
2600
|
-
box-shadow: none;
|
|
2615
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2616
|
+
margin-bottom: 6px;
|
|
2601
2617
|
}
|
|
2602
2618
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2603
2619
|
text-align: right;
|
|
@@ -2740,6 +2756,11 @@
|
|
|
2740
2756
|
float: right;
|
|
2741
2757
|
}
|
|
2742
2758
|
|
|
2759
|
+
.e-editor-content-item-template {
|
|
2760
|
+
text-overflow: ellipsis;
|
|
2761
|
+
overflow: hidden;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2743
2764
|
/*! schedule event window for smaller viewports*/
|
|
2744
2765
|
@media screen and (max-width: 320px) {
|
|
2745
2766
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3028,6 +3049,10 @@
|
|
|
3028
3049
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3029
3050
|
padding: 0 18px 12px;
|
|
3030
3051
|
}
|
|
3052
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3053
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3054
|
+
display: none;
|
|
3055
|
+
}
|
|
3031
3056
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3032
3057
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3033
3058
|
display: -webkit-box;
|
|
@@ -4093,6 +4118,10 @@
|
|
|
4093
4118
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
4094
4119
|
display: none;
|
|
4095
4120
|
}
|
|
4121
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4122
|
+
min-width: 30px;
|
|
4123
|
+
margin-bottom: 18px;
|
|
4124
|
+
}
|
|
4096
4125
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4097
4126
|
float: left;
|
|
4098
4127
|
padding: 16px 20px 0;
|
|
@@ -4264,7 +4293,7 @@
|
|
|
4264
4293
|
width: 65%;
|
|
4265
4294
|
}
|
|
4266
4295
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4267
|
-
padding-left:
|
|
4296
|
+
padding-left: 59px;
|
|
4268
4297
|
}
|
|
4269
4298
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4270
4299
|
padding-right: 0;
|
package/styles/bootstrap5.3.css
CHANGED
|
@@ -345,6 +345,9 @@
|
|
|
345
345
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-separator {
|
|
346
346
|
border-right: 1px solid var(--color-sf-border-light);
|
|
347
347
|
}
|
|
348
|
+
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn.e-schedule-date-range-tbtn {
|
|
349
|
+
width: auto;
|
|
350
|
+
}
|
|
348
351
|
.e-schedule .e-schedule-toolbar .e-toolbar-items .e-toolbar-item.e-date-range .e-tbar-btn .e-tbar-btn-text {
|
|
349
352
|
font-size: 14px;
|
|
350
353
|
text-transform: initial;
|
|
@@ -1289,6 +1292,10 @@
|
|
|
1289
1292
|
overflow: hidden;
|
|
1290
1293
|
opacity: 0;
|
|
1291
1294
|
}
|
|
1295
|
+
.e-schedule .e-month-view .e-month-event-table {
|
|
1296
|
+
position: absolute;
|
|
1297
|
+
top: 0;
|
|
1298
|
+
}
|
|
1292
1299
|
.e-schedule .e-month-view .e-content-wrap table tr:last-child td {
|
|
1293
1300
|
border-bottom-width: 0;
|
|
1294
1301
|
}
|
|
@@ -1475,7 +1482,7 @@
|
|
|
1475
1482
|
-ms-flex: 0 25%;
|
|
1476
1483
|
flex: 0 25%;
|
|
1477
1484
|
max-width: 100%;
|
|
1478
|
-
min-width:
|
|
1485
|
+
min-width: 300px;
|
|
1479
1486
|
padding: 10px;
|
|
1480
1487
|
}
|
|
1481
1488
|
.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar .e-header .e-title {
|
|
@@ -2332,6 +2339,9 @@
|
|
|
2332
2339
|
.e-schedule .e-agenda-view {
|
|
2333
2340
|
background: var(--color-sf-content-bg-color);
|
|
2334
2341
|
}
|
|
2342
|
+
.e-schedule .e-agenda-view .e-agenda-load-more {
|
|
2343
|
+
font-size: 14px;
|
|
2344
|
+
}
|
|
2335
2345
|
.e-schedule .e-agenda-view .e-content-wrap table td:first-child,
|
|
2336
2346
|
.e-schedule .e-agenda-view .e-date-column {
|
|
2337
2347
|
vertical-align: top;
|
|
@@ -2561,12 +2571,19 @@
|
|
|
2561
2571
|
visibility: hidden;
|
|
2562
2572
|
}
|
|
2563
2573
|
|
|
2574
|
+
.e-field-error-message {
|
|
2575
|
+
display: block;
|
|
2576
|
+
}
|
|
2577
|
+
|
|
2564
2578
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2565
|
-
width:
|
|
2579
|
+
width: 440px;
|
|
2566
2580
|
}
|
|
2567
2581
|
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content {
|
|
2568
2582
|
padding: 12px;
|
|
2569
2583
|
}
|
|
2584
|
+
.e-dialog.e-quick-dialog.e-following-events-dialog .e-footer-content button {
|
|
2585
|
+
margin-bottom: 6px;
|
|
2586
|
+
}
|
|
2570
2587
|
@media screen and (max-width: 767px) {
|
|
2571
2588
|
.e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
2572
2589
|
width: 289px;
|
|
@@ -2595,9 +2612,8 @@
|
|
|
2595
2612
|
.e-dialog.e-quick-dialog .e-footer-content {
|
|
2596
2613
|
border-top: none;
|
|
2597
2614
|
}
|
|
2598
|
-
.e-dialog.e-quick-dialog .e-
|
|
2599
|
-
-
|
|
2600
|
-
box-shadow: none;
|
|
2615
|
+
.e-dialog.e-quick-dialog .e-footer-content button {
|
|
2616
|
+
margin-bottom: 6px;
|
|
2601
2617
|
}
|
|
2602
2618
|
.e-dialog.e-quick-dialog.e-rtl {
|
|
2603
2619
|
text-align: right;
|
|
@@ -2740,6 +2756,11 @@
|
|
|
2740
2756
|
float: right;
|
|
2741
2757
|
}
|
|
2742
2758
|
|
|
2759
|
+
.e-editor-content-item-template {
|
|
2760
|
+
text-overflow: ellipsis;
|
|
2761
|
+
overflow: hidden;
|
|
2762
|
+
}
|
|
2763
|
+
|
|
2743
2764
|
/*! schedule event window for smaller viewports*/
|
|
2744
2765
|
@media screen and (max-width: 320px) {
|
|
2745
2766
|
.e-schedule-dialog.e-popup.e-popup-open {
|
|
@@ -3028,6 +3049,10 @@
|
|
|
3028
3049
|
.e-quick-popup-wrapper .e-event-popup .e-popup-content {
|
|
3029
3050
|
padding: 0 18px 12px;
|
|
3030
3051
|
}
|
|
3052
|
+
.e-quick-popup-wrapper .e-cell-popup .e-popup-header .e-popup-header-title-text,
|
|
3053
|
+
.e-quick-popup-wrapper .e-event-popup .e-popup-header .e-popup-header-title-text {
|
|
3054
|
+
display: none;
|
|
3055
|
+
}
|
|
3031
3056
|
.e-quick-popup-wrapper .e-cell-popup .e-header-icon-wrapper,
|
|
3032
3057
|
.e-quick-popup-wrapper .e-event-popup .e-header-icon-wrapper {
|
|
3033
3058
|
display: -webkit-box;
|
|
@@ -4102,7 +4127,7 @@
|
|
|
4102
4127
|
}
|
|
4103
4128
|
.e-bigger .e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar,
|
|
4104
4129
|
.e-bigger.e-schedule .e-year-view .e-calendar-wrapper .e-month-calendar.e-calendar {
|
|
4105
|
-
min-width:
|
|
4130
|
+
min-width: 345px;
|
|
4106
4131
|
}
|
|
4107
4132
|
|
|
4108
4133
|
/*! schedule event tooltip */
|
|
@@ -4113,7 +4138,7 @@
|
|
|
4113
4138
|
}
|
|
4114
4139
|
|
|
4115
4140
|
.e-bigger .e-dialog.e-quick-dialog.e-following-events-dialog {
|
|
4116
|
-
width:
|
|
4141
|
+
width: 520px;
|
|
4117
4142
|
}
|
|
4118
4143
|
|
|
4119
4144
|
.e-bigger .e-dialog.e-quick-dialog {
|
|
@@ -4138,16 +4163,6 @@
|
|
|
4138
4163
|
padding-bottom: 12px;
|
|
4139
4164
|
position: relative;
|
|
4140
4165
|
}
|
|
4141
|
-
.e-bigger .e-schedule-dialog .e-event-cancel,
|
|
4142
|
-
.e-bigger .e-schedule-dialog .e-event-delete {
|
|
4143
|
-
border: none;
|
|
4144
|
-
-webkit-box-shadow: none;
|
|
4145
|
-
box-shadow: none;
|
|
4146
|
-
}
|
|
4147
|
-
.e-bigger .e-schedule-dialog .e-footer-content .e-btn.e-event-delete {
|
|
4148
|
-
float: left;
|
|
4149
|
-
margin-left: 0;
|
|
4150
|
-
}
|
|
4151
4166
|
.e-bigger .e-schedule-dialog .e-subject-container,
|
|
4152
4167
|
.e-bigger .e-schedule-dialog .e-start-container,
|
|
4153
4168
|
.e-bigger .e-schedule-dialog .e-start-time-zone-container,
|
|
@@ -4243,9 +4258,6 @@
|
|
|
4243
4258
|
padding-left: 0;
|
|
4244
4259
|
padding-right: 12px;
|
|
4245
4260
|
}
|
|
4246
|
-
.e-bigger .e-schedule-dialog.e-rtl .e-event-delete {
|
|
4247
|
-
float: right;
|
|
4248
|
-
}
|
|
4249
4261
|
|
|
4250
4262
|
/*! schedule quick popup */
|
|
4251
4263
|
.e-bigger .e-quick-popup-wrapper .e-cell-popup .e-popup-content .e-popup-table .e-subject {
|
|
@@ -4769,6 +4781,10 @@
|
|
|
4769
4781
|
.e-recurrenceeditor .e-month-expander-checkbox-wrapper.e-input-wrapper .e-month-type .e-label {
|
|
4770
4782
|
display: none;
|
|
4771
4783
|
}
|
|
4784
|
+
.e-recurrenceeditor .e-input-wrapper.e-month-expander-checkbox-wrapper.e-repeat-on-week-selector {
|
|
4785
|
+
min-width: 30px;
|
|
4786
|
+
margin-bottom: 18px;
|
|
4787
|
+
}
|
|
4772
4788
|
.e-recurrenceeditor .e-input-wrapper-side {
|
|
4773
4789
|
float: left;
|
|
4774
4790
|
padding: 16px 20px 0;
|
|
@@ -4940,7 +4956,7 @@
|
|
|
4940
4956
|
width: 65%;
|
|
4941
4957
|
}
|
|
4942
4958
|
.e-recurrenceeditor .e-editor .e-recurrence-table .e-day-position {
|
|
4943
|
-
padding-left:
|
|
4959
|
+
padding-left: 59px;
|
|
4944
4960
|
}
|
|
4945
4961
|
.e-recurrenceeditor.e-rtl .e-input-wrapper-side.e-end-on .e-end-on-left {
|
|
4946
4962
|
padding-right: 0;
|