@syncfusion/ej2-angular-schedule 21.1.39-ngcc → 21.1.39
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +11 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
- package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
- package/esm2020/src/schedule/resources.directive.mjs +58 -0
- package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
- package/esm2020/src/schedule/schedule.component.mjs +289 -0
- package/esm2020/src/schedule/schedule.module.mjs +52 -0
- package/esm2020/src/schedule/views.directive.mjs +132 -0
- package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs +745 -0
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs +745 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
- package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -0
- package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
- package/src/schedule/headerrows.directive.d.ts +5 -0
- package/src/schedule/resources.directive.d.ts +5 -0
- package/src/schedule/schedule-all.module.d.ts +6 -0
- package/src/schedule/schedule.component.d.ts +3 -0
- package/src/schedule/schedule.module.d.ts +9 -0
- package/src/schedule/views.directive.d.ts +5 -0
- package/styles/bootstrap-dark.css +2 -6
- package/styles/bootstrap.css +2 -6
- package/styles/bootstrap4.css +2 -6
- package/styles/bootstrap5-dark.css +2 -6
- package/styles/bootstrap5.css +2 -6
- package/styles/fabric-dark.css +2 -6
- package/styles/fabric.css +2 -6
- package/styles/fluent-dark.css +2 -6
- package/styles/fluent.css +2 -6
- package/styles/highcontrast-light.css +2 -6
- package/styles/highcontrast.css +2 -6
- package/styles/material-dark.css +2 -6
- package/styles/material.css +2 -6
- package/styles/recurrence-editor/_all.scss +2 -0
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +13 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +13 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +13 -0
- package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +13 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +13 -0
- package/styles/recurrence-editor/_fabric-definition.scss +13 -0
- package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_fluent-definition.scss +13 -0
- package/styles/recurrence-editor/_fusionnew-definition.scss +13 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +13 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +13 -0
- package/styles/recurrence-editor/_layout.scss +548 -0
- package/styles/recurrence-editor/_material-dark-definition.scss +13 -0
- package/styles/recurrence-editor/_material-definition.scss +13 -0
- package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
- package/styles/recurrence-editor/_theme.scss +1 -0
- package/styles/recurrence-editor/bootstrap-dark.scss +8 -1
- package/styles/recurrence-editor/bootstrap.scss +8 -1
- package/styles/recurrence-editor/bootstrap4.scss +8 -1
- package/styles/recurrence-editor/bootstrap5-dark.scss +8 -1
- package/styles/recurrence-editor/bootstrap5.scss +8 -1
- package/styles/recurrence-editor/fabric-dark.scss +8 -1
- package/styles/recurrence-editor/fabric.scss +8 -1
- package/styles/recurrence-editor/fluent-dark.scss +8 -1
- package/styles/recurrence-editor/fluent.scss +8 -1
- package/styles/recurrence-editor/highcontrast-light.scss +8 -1
- package/styles/recurrence-editor/highcontrast.scss +8 -1
- package/styles/recurrence-editor/material-dark.scss +8 -1
- package/styles/recurrence-editor/material.scss +8 -1
- package/styles/recurrence-editor/tailwind-dark.scss +8 -1
- package/styles/recurrence-editor/tailwind.scss +8 -1
- package/styles/schedule/_all.scss +2 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +279 -0
- package/styles/schedule/_bootstrap-definition.scss +279 -0
- package/styles/schedule/_bootstrap4-definition.scss +282 -0
- package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
- package/styles/schedule/_bootstrap5-definition.scss +289 -0
- package/styles/schedule/_fabric-dark-definition.scss +278 -0
- package/styles/schedule/_fabric-definition.scss +279 -0
- package/styles/schedule/_fluent-dark-definition.scss +1 -0
- package/styles/schedule/_fluent-definition.scss +284 -0
- package/styles/schedule/_fusionnew-definition.scss +288 -0
- package/styles/schedule/_highcontrast-definition.scss +280 -0
- package/styles/schedule/_highcontrast-light-definition.scss +280 -0
- package/styles/schedule/_layout.scss +4115 -0
- package/styles/schedule/_material-dark-definition.scss +279 -0
- package/styles/schedule/_material-definition.scss +279 -0
- package/styles/schedule/_tailwind-dark-definition.scss +1 -0
- package/styles/schedule/_tailwind-definition.scss +281 -0
- package/styles/schedule/_theme.scss +546 -0
- package/styles/schedule/bootstrap-dark.css +2 -6
- package/styles/schedule/bootstrap-dark.scss +16 -1
- package/styles/schedule/bootstrap.css +2 -6
- package/styles/schedule/bootstrap.scss +16 -1
- package/styles/schedule/bootstrap4.css +2 -6
- package/styles/schedule/bootstrap4.scss +16 -1
- package/styles/schedule/bootstrap5-dark.css +2 -6
- package/styles/schedule/bootstrap5-dark.scss +15 -1
- package/styles/schedule/bootstrap5.css +2 -6
- package/styles/schedule/bootstrap5.scss +16 -1
- package/styles/schedule/fabric-dark.css +2 -6
- package/styles/schedule/fabric-dark.scss +16 -1
- package/styles/schedule/fabric.css +2 -6
- package/styles/schedule/fabric.scss +16 -1
- package/styles/schedule/fluent-dark.css +2 -6
- package/styles/schedule/fluent-dark.scss +15 -1
- package/styles/schedule/fluent.css +2 -6
- package/styles/schedule/fluent.scss +16 -1
- package/styles/schedule/highcontrast-light.css +2 -6
- package/styles/schedule/highcontrast-light.scss +16 -1
- package/styles/schedule/highcontrast.css +2 -6
- package/styles/schedule/highcontrast.scss +16 -1
- package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
- package/styles/schedule/icons/_bootstrap.scss +231 -0
- package/styles/schedule/icons/_bootstrap4.scss +231 -0
- package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
- package/styles/schedule/icons/_bootstrap5.scss +231 -0
- package/styles/schedule/icons/_fabric-dark.scss +231 -0
- package/styles/schedule/icons/_fabric.scss +231 -0
- package/styles/schedule/icons/_fluent-dark.scss +1 -0
- package/styles/schedule/icons/_fluent.scss +231 -0
- package/styles/schedule/icons/_fusionnew.scss +231 -0
- package/styles/schedule/icons/_highcontrast-light.scss +231 -0
- package/styles/schedule/icons/_highcontrast.scss +231 -0
- package/styles/schedule/icons/_material-dark.scss +231 -0
- package/styles/schedule/icons/_material.scss +231 -0
- package/styles/schedule/icons/_material3.scss +231 -0
- package/styles/schedule/icons/_tailwind-dark.scss +1 -0
- package/styles/schedule/icons/_tailwind.scss +231 -0
- package/styles/schedule/material-dark.css +2 -6
- package/styles/schedule/material-dark.scss +16 -1
- package/styles/schedule/material.css +2 -6
- package/styles/schedule/material.scss +16 -1
- package/styles/schedule/tailwind-dark.css +2 -6
- package/styles/schedule/tailwind-dark.scss +15 -1
- package/styles/schedule/tailwind.css +2 -6
- package/styles/schedule/tailwind.scss +16 -1
- package/styles/tailwind-dark.css +2 -6
- package/styles/tailwind.css +2 -6
- package/syncfusion-ej2-angular-schedule.d.ts +5 -0
- package/@syncfusion/ej2-angular-schedule.es5.js +0 -850
- package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-schedule.js +0 -798
- package/@syncfusion/ej2-angular-schedule.js.map +0 -1
- package/CHANGELOG.md +0 -1693
- package/dist/ej2-angular-schedule.umd.js +0 -991
- package/dist/ej2-angular-schedule.umd.js.map +0 -1
- package/dist/ej2-angular-schedule.umd.min.js +0 -11
- package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
- package/ej2-angular-schedule.d.ts +0 -6
- package/ej2-angular-schedule.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -750,9 +750,7 @@
|
|
|
750
750
|
}
|
|
751
751
|
.e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
|
|
752
752
|
height: 100%;
|
|
753
|
-
|
|
754
|
-
max-width: 10px;
|
|
755
|
-
width: 20%;
|
|
753
|
+
width: 10px;
|
|
756
754
|
}
|
|
757
755
|
.e-schedule .e-event-resize.e-left-handler {
|
|
758
756
|
cursor: ew-resize;
|
|
@@ -765,9 +763,7 @@
|
|
|
765
763
|
right: 0;
|
|
766
764
|
}
|
|
767
765
|
.e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
|
|
768
|
-
|
|
769
|
-
max-height: 10px;
|
|
770
|
-
height: 20%;
|
|
766
|
+
height: 10px;
|
|
771
767
|
width: 100%;
|
|
772
768
|
}
|
|
773
769
|
.e-schedule .e-event-resize.e-top-handler {
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap5-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/toolbar/bootstrap5-definition.scss';
|
|
3
|
+
@import 'ej2-navigations/styles/treeview/bootstrap5-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/bootstrap5-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/bootstrap5-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/calendar/bootstrap5-definition.scss';
|
|
7
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5-definition.scss';
|
|
8
|
+
@import 'ej2-calendars/styles/datetimepicker/bootstrap5-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/drop-down-list/bootstrap5-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/bootstrap5-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/check-box/bootstrap5-definition.scss';
|
|
13
|
+
@import '../recurrence-editor/bootstrap5-definition.scss';
|
|
14
|
+
@import 'bootstrap5-definition.scss';
|
|
15
|
+
@import 'icons/bootstrap5.scss';
|
|
16
|
+
@import 'all.scss';
|
|
@@ -664,9 +664,7 @@
|
|
|
664
664
|
}
|
|
665
665
|
.e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
|
|
666
666
|
height: 100%;
|
|
667
|
-
|
|
668
|
-
max-width: 10px;
|
|
669
|
-
width: 20%;
|
|
667
|
+
width: 10px;
|
|
670
668
|
}
|
|
671
669
|
.e-schedule .e-event-resize.e-left-handler {
|
|
672
670
|
cursor: ew-resize;
|
|
@@ -679,9 +677,7 @@
|
|
|
679
677
|
right: 0;
|
|
680
678
|
}
|
|
681
679
|
.e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
|
|
682
|
-
|
|
683
|
-
max-height: 10px;
|
|
684
|
-
height: 20%;
|
|
680
|
+
height: 10px;
|
|
685
681
|
width: 100%;
|
|
686
682
|
}
|
|
687
683
|
.e-schedule .e-event-resize.e-top-handler {
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/toolbar/fabric-dark-definition.scss';
|
|
3
|
+
@import 'ej2-navigations/styles/treeview/fabric-dark-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/fabric-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-dark-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/calendar/fabric-dark-definition.scss';
|
|
7
|
+
@import 'ej2-calendars/styles/datepicker/fabric-dark-definition.scss';
|
|
8
|
+
@import 'ej2-calendars/styles/datetimepicker/fabric-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/fabric-dark-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/check-box/fabric-dark-definition.scss';
|
|
13
|
+
@import '../recurrence-editor/fabric-dark-definition.scss';
|
|
14
|
+
@import 'fabric-dark-definition.scss';
|
|
15
|
+
@import 'icons/fabric-dark.scss';
|
|
16
|
+
@import 'all.scss';
|
|
@@ -659,9 +659,7 @@
|
|
|
659
659
|
}
|
|
660
660
|
.e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
|
|
661
661
|
height: 100%;
|
|
662
|
-
|
|
663
|
-
max-width: 10px;
|
|
664
|
-
width: 20%;
|
|
662
|
+
width: 10px;
|
|
665
663
|
}
|
|
666
664
|
.e-schedule .e-event-resize.e-left-handler {
|
|
667
665
|
cursor: ew-resize;
|
|
@@ -674,9 +672,7 @@
|
|
|
674
672
|
right: 0;
|
|
675
673
|
}
|
|
676
674
|
.e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
|
|
677
|
-
|
|
678
|
-
max-height: 10px;
|
|
679
|
-
height: 20%;
|
|
675
|
+
height: 10px;
|
|
680
676
|
width: 100%;
|
|
681
677
|
}
|
|
682
678
|
.e-schedule .e-event-resize.e-top-handler {
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/toolbar/fabric-definition.scss';
|
|
3
|
+
@import 'ej2-navigations/styles/treeview/fabric-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/fabric-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fabric-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/calendar/fabric-definition.scss';
|
|
7
|
+
@import 'ej2-calendars/styles/datepicker/fabric-definition.scss';
|
|
8
|
+
@import 'ej2-calendars/styles/datetimepicker/fabric-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fabric-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/fabric-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/button/fabric-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/check-box/fabric-definition.scss';
|
|
13
|
+
@import '../recurrence-editor/fabric-definition.scss';
|
|
14
|
+
@import 'fabric-definition.scss';
|
|
15
|
+
@import 'icons/fabric.scss';
|
|
16
|
+
@import 'all.scss';
|
|
@@ -727,9 +727,7 @@
|
|
|
727
727
|
}
|
|
728
728
|
.e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
|
|
729
729
|
height: 100%;
|
|
730
|
-
|
|
731
|
-
max-width: 10px;
|
|
732
|
-
width: 20%;
|
|
730
|
+
width: 10px;
|
|
733
731
|
}
|
|
734
732
|
.e-schedule .e-event-resize.e-left-handler {
|
|
735
733
|
cursor: ew-resize;
|
|
@@ -742,9 +740,7 @@
|
|
|
742
740
|
right: 0;
|
|
743
741
|
}
|
|
744
742
|
.e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
|
|
745
|
-
|
|
746
|
-
max-height: 10px;
|
|
747
|
-
height: 20%;
|
|
743
|
+
height: 10px;
|
|
748
744
|
width: 100%;
|
|
749
745
|
}
|
|
750
746
|
.e-schedule .e-event-resize.e-top-handler {
|
|
@@ -1 +1,15 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-dark-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/toolbar/fluent-dark-definition.scss';
|
|
3
|
+
@import 'ej2-navigations/styles/treeview/fluent-dark-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/fluent-dark-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent-dark-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/calendar/fluent-dark-definition.scss';
|
|
7
|
+
@import 'ej2-calendars/styles/datepicker/fluent-dark-definition.scss';
|
|
8
|
+
@import 'ej2-calendars/styles/datetimepicker/fluent-dark-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-dark-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent-dark-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/check-box/fluent-dark-definition.scss';
|
|
13
|
+
@import 'fluent-dark-definition.scss';
|
|
14
|
+
@import 'icons/fluent-dark.scss';
|
|
15
|
+
@import 'all.scss';
|
|
@@ -727,9 +727,7 @@
|
|
|
727
727
|
}
|
|
728
728
|
.e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
|
|
729
729
|
height: 100%;
|
|
730
|
-
|
|
731
|
-
max-width: 10px;
|
|
732
|
-
width: 20%;
|
|
730
|
+
width: 10px;
|
|
733
731
|
}
|
|
734
732
|
.e-schedule .e-event-resize.e-left-handler {
|
|
735
733
|
cursor: ew-resize;
|
|
@@ -742,9 +740,7 @@
|
|
|
742
740
|
right: 0;
|
|
743
741
|
}
|
|
744
742
|
.e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
|
|
745
|
-
|
|
746
|
-
max-height: 10px;
|
|
747
|
-
height: 20%;
|
|
743
|
+
height: 10px;
|
|
748
744
|
width: 100%;
|
|
749
745
|
}
|
|
750
746
|
.e-schedule .e-event-resize.e-top-handler {
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fluent-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/toolbar/fluent-definition.scss';
|
|
3
|
+
@import 'ej2-navigations/styles/treeview/fluent-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/fluent-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/fluent-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/calendar/fluent-definition.scss';
|
|
7
|
+
@import 'ej2-calendars/styles/datepicker/fluent-definition.scss';
|
|
8
|
+
@import 'ej2-calendars/styles/datetimepicker/fluent-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/drop-down-list/fluent-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/fluent-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/button/fluent-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/check-box/fluent-definition.scss';
|
|
13
|
+
@import '../recurrence-editor/fluent-definition.scss';
|
|
14
|
+
@import 'fluent-definition.scss';
|
|
15
|
+
@import 'icons/fluent.scss';
|
|
16
|
+
@import 'all.scss';
|
|
@@ -741,9 +741,7 @@
|
|
|
741
741
|
}
|
|
742
742
|
.e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
|
|
743
743
|
height: 100%;
|
|
744
|
-
|
|
745
|
-
max-width: 10px;
|
|
746
|
-
width: 20%;
|
|
744
|
+
width: 10px;
|
|
747
745
|
}
|
|
748
746
|
.e-schedule .e-event-resize.e-left-handler {
|
|
749
747
|
cursor: ew-resize;
|
|
@@ -756,9 +754,7 @@
|
|
|
756
754
|
right: 0;
|
|
757
755
|
}
|
|
758
756
|
.e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
|
|
759
|
-
|
|
760
|
-
max-height: 10px;
|
|
761
|
-
height: 20%;
|
|
757
|
+
height: 10px;
|
|
762
758
|
width: 100%;
|
|
763
759
|
}
|
|
764
760
|
.e-schedule .e-event-resize.e-top-handler {
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/toolbar/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'ej2-navigations/styles/treeview/highcontrast-light-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/highcontrast-light-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-light-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/calendar/highcontrast-light-definition.scss';
|
|
7
|
+
@import 'ej2-calendars/styles/datepicker/highcontrast-light-definition.scss';
|
|
8
|
+
@import 'ej2-calendars/styles/datetimepicker/highcontrast-light-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-light-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-light-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/check-box/highcontrast-light-definition.scss';
|
|
13
|
+
@import '../recurrence-editor/highcontrast-light-definition.scss';
|
|
14
|
+
@import 'highcontrast-light-definition.scss';
|
|
15
|
+
@import 'icons/highcontrast-light.scss';
|
|
16
|
+
@import 'all.scss';
|
|
@@ -745,9 +745,7 @@
|
|
|
745
745
|
}
|
|
746
746
|
.e-schedule .e-event-resize.e-left-handler, .e-schedule .e-event-resize.e-right-handler {
|
|
747
747
|
height: 100%;
|
|
748
|
-
|
|
749
|
-
max-width: 10px;
|
|
750
|
-
width: 20%;
|
|
748
|
+
width: 10px;
|
|
751
749
|
}
|
|
752
750
|
.e-schedule .e-event-resize.e-left-handler {
|
|
753
751
|
cursor: ew-resize;
|
|
@@ -760,9 +758,7 @@
|
|
|
760
758
|
right: 0;
|
|
761
759
|
}
|
|
762
760
|
.e-schedule .e-event-resize.e-top-handler, .e-schedule .e-event-resize.e-bottom-handler {
|
|
763
|
-
|
|
764
|
-
max-height: 10px;
|
|
765
|
-
height: 20%;
|
|
761
|
+
height: 10px;
|
|
766
762
|
width: 100%;
|
|
767
763
|
}
|
|
768
764
|
.e-schedule .e-event-resize.e-top-handler {
|
|
@@ -1 +1,16 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-definition.scss';
|
|
2
|
+
@import 'ej2-navigations/styles/toolbar/highcontrast-definition.scss';
|
|
3
|
+
@import 'ej2-navigations/styles/treeview/highcontrast-definition.scss';
|
|
4
|
+
@import 'ej2-inputs/styles/input/highcontrast-definition.scss';
|
|
5
|
+
@import 'ej2-inputs/styles/numerictextbox/highcontrast-definition.scss';
|
|
6
|
+
@import 'ej2-calendars/styles/calendar/highcontrast-definition.scss';
|
|
7
|
+
@import 'ej2-calendars/styles/datepicker/highcontrast-definition.scss';
|
|
8
|
+
@import 'ej2-calendars/styles/datetimepicker/highcontrast-definition.scss';
|
|
9
|
+
@import 'ej2-dropdowns/styles/drop-down-list/highcontrast-definition.scss';
|
|
10
|
+
@import 'ej2-dropdowns/styles/multi-select/highcontrast-definition.scss';
|
|
11
|
+
@import 'ej2-buttons/styles/button/highcontrast-definition.scss';
|
|
12
|
+
@import 'ej2-buttons/styles/check-box/highcontrast-definition.scss';
|
|
13
|
+
@import '../recurrence-editor/highcontrast-definition.scss';
|
|
14
|
+
@import 'highcontrast-definition.scss';
|
|
15
|
+
@import 'icons/highcontrast.scss';
|
|
16
|
+
@import 'all.scss';
|
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
@include export-module('schedule-bootstrap-icons') {
|
|
2
|
+
.e-schedule {
|
|
3
|
+
.e-schedule-toolbar {
|
|
4
|
+
& .e-icon-prev::before {
|
|
5
|
+
content: '\e990';
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
& .e-icon-next::before {
|
|
9
|
+
content: '\e207';
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
& .e-icon-add::before {
|
|
13
|
+
content: '\e95c';
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
& .e-icon-today::before {
|
|
17
|
+
content: '\e312';
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
& .e-icon-down-arrow::before {
|
|
21
|
+
content: '\e968';
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
& .e-icon-day::before {
|
|
25
|
+
content: '\e318';
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
& .e-icon-week::before {
|
|
29
|
+
content: '\e320';
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
& .e-icon-workweek::before {
|
|
33
|
+
content: '\e319';
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
& .e-icon-month::before {
|
|
37
|
+
content: '\e960';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
& .e-icon-month-agenda::before {
|
|
41
|
+
content: '\e31c';
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
& .e-icon-agenda::before {
|
|
45
|
+
content: '\e31a';
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
& .e-icon-year::before {
|
|
49
|
+
content: '\e960';
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
& .e-icon-timeline-year-vertical::before {
|
|
53
|
+
content: '\e960';
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
& .e-icon-timeline-year-horizontal::before {
|
|
57
|
+
content: '\e960';
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
& .e-icon-timeline-day::before {
|
|
61
|
+
content: '\ea87';
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
& .e-icon-timeline-week::before {
|
|
65
|
+
content: '\ea8a';
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
& .e-icon-timeline-workweek::before {
|
|
69
|
+
content: '\ea8d';
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
& .e-icon-timeline-month::before {
|
|
73
|
+
content: '\ea8f';
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
&.e-toolbar {
|
|
77
|
+
.e-popup-down-icon::before {
|
|
78
|
+
content: '\e936';
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-popup-up-icon::before {
|
|
82
|
+
content: '\e936';
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
&.e-rtl {
|
|
87
|
+
& .e-icon-prev::before {
|
|
88
|
+
content: '\e207';
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
& .e-icon-next::before {
|
|
92
|
+
content: '\e990';
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-schedule-resource-toolbar {
|
|
98
|
+
& .e-icon-menu::before {
|
|
99
|
+
content: '\e941';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
& .e-icon-next::before {
|
|
103
|
+
content: '\e207';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-close-icon::before {
|
|
108
|
+
content: '\e96c';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-block-indicator::before {
|
|
112
|
+
content: '\e22a';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-appointment {
|
|
116
|
+
.e-recurrence-icon::before {
|
|
117
|
+
content: '\e308';
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.e-recurrence-edit-icon::before {
|
|
121
|
+
content: '\e30a';
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.e-up-icon::before {
|
|
125
|
+
content: '\e306';
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.e-down-icon::before {
|
|
129
|
+
content: '\e304';
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-left-icon::before {
|
|
133
|
+
content: '\e302';
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.e-right-icon::before {
|
|
137
|
+
content: '\e300';
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.e-vertical-view .e-all-day-cells {
|
|
142
|
+
.e-all-day-appointment-section::before {
|
|
143
|
+
content: '\e95d';
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
&.e-rtl {
|
|
148
|
+
.e-appointment {
|
|
149
|
+
& .e-left-icon::before {
|
|
150
|
+
content: '\e300';
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
& .e-right-icon::before {
|
|
154
|
+
content: '\e302';
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-resource-tree-icon::before {
|
|
160
|
+
content: '\e230';
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.e-schedule-dialog.e-device {
|
|
165
|
+
.e-back-icon::before {
|
|
166
|
+
content: '\e828';
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.e-save-icon::before {
|
|
170
|
+
content: '\e964';
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.e-recurrence-container {
|
|
174
|
+
.e-recurrence-edit-button {
|
|
175
|
+
.e-recurrence-edit.e-icons::before {
|
|
176
|
+
content: '\e944';
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.e-schedule-dialog.e-device.e-rtl {
|
|
183
|
+
.e-back-icon::before {
|
|
184
|
+
content: '\e84d';
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.e-quick-popup-wrapper {
|
|
189
|
+
.e-edit-icon::before {
|
|
190
|
+
content: '\e944';
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
.e-delete-icon::before {
|
|
194
|
+
content: '\e94a';
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.e-close-icon::before {
|
|
198
|
+
content: '\e96c';
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.e-time-icon::before {
|
|
202
|
+
content: '\e93e';
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.e-location-icon::before {
|
|
206
|
+
content: '\e30c';
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.e-time-zone-icon::before {
|
|
210
|
+
content: '\e30e';
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.e-description-icon::before {
|
|
214
|
+
content: '\e30d';
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.e-resource-icon::before {
|
|
218
|
+
content: '\e426';
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.e-date-time-icon::before {
|
|
222
|
+
content: '\e423';
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.e-more-popup-wrapper.e-device {
|
|
227
|
+
.e-close-icon::before {
|
|
228
|
+
content: '\e96c';
|
|
229
|
+
}
|
|
230
|
+
}
|
|
231
|
+
}
|