@syncfusion/ej2-angular-calendars 19.2.55 → 19.3.44
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/@syncfusion/ej2-angular-calendars.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-calendars.js.map +1 -1
- package/CHANGELOG.md +20 -0
- package/dist/ej2-angular-calendars.umd.js +1 -1
- package/dist/ej2-angular-calendars.umd.js.map +1 -1
- package/dist/ej2-angular-calendars.umd.min.js +1 -1
- package/dist/ej2-angular-calendars.umd.min.js.map +1 -1
- package/package.json +8 -8
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/calendar/calendar.component.d.ts +5 -0
- package/src/datepicker/datepicker.component.d.ts +10 -0
- package/src/daterangepicker/daterangepicker.component.d.ts +13 -2
- package/src/datetimepicker/datetimepicker.component.d.ts +10 -0
- package/src/timepicker/timepicker.component.d.ts +9 -0
- package/styles/bootstrap-dark.css +17 -2
- package/styles/bootstrap.css +17 -2
- package/styles/bootstrap4.css +17 -2
- package/styles/bootstrap5-dark.css +2676 -0
- package/styles/bootstrap5-dark.scss +5 -0
- package/styles/bootstrap5.css +2676 -0
- package/styles/bootstrap5.scss +5 -0
- package/styles/calendar/bootstrap-dark.css +17 -2
- package/styles/calendar/bootstrap.css +17 -2
- package/styles/calendar/bootstrap4.css +17 -2
- package/styles/calendar/bootstrap5-dark.css +1038 -0
- package/styles/calendar/bootstrap5-dark.scss +1 -0
- package/styles/calendar/bootstrap5.css +1038 -0
- package/styles/calendar/bootstrap5.scss +1 -0
- package/styles/calendar/fabric-dark.css +15 -0
- package/styles/calendar/fabric.css +15 -0
- package/styles/calendar/highcontrast-light.css +15 -0
- package/styles/calendar/highcontrast.css +15 -0
- package/styles/calendar/material-dark.css +28 -13
- package/styles/calendar/material.css +15 -0
- package/styles/calendar/tailwind-dark.css +17 -2
- package/styles/calendar/tailwind.css +17 -2
- package/styles/datepicker/bootstrap5-dark.css +177 -0
- package/styles/datepicker/bootstrap5-dark.scss +1 -0
- package/styles/datepicker/bootstrap5.css +177 -0
- package/styles/datepicker/bootstrap5.scss +1 -0
- package/styles/datepicker/material-dark.css +3 -3
- package/styles/daterangepicker/bootstrap5-dark.css +1029 -0
- package/styles/daterangepicker/bootstrap5-dark.scss +1 -0
- package/styles/daterangepicker/bootstrap5.css +1029 -0
- package/styles/daterangepicker/bootstrap5.scss +1 -0
- package/styles/daterangepicker/material-dark.css +9 -9
- package/styles/datetimepicker/bootstrap5-dark.css +205 -0
- package/styles/datetimepicker/bootstrap5-dark.scss +1 -0
- package/styles/datetimepicker/bootstrap5.css +205 -0
- package/styles/datetimepicker/bootstrap5.scss +1 -0
- package/styles/datetimepicker/material-dark.css +4 -4
- package/styles/fabric-dark.css +15 -0
- package/styles/fabric.css +15 -0
- package/styles/highcontrast-light.css +15 -0
- package/styles/highcontrast.css +15 -0
- package/styles/material-dark.css +48 -33
- package/styles/material.css +15 -0
- package/styles/tailwind-dark.css +17 -2
- package/styles/tailwind.css +17 -2
- package/styles/timepicker/bootstrap5-dark.css +223 -0
- package/styles/timepicker/bootstrap5-dark.scss +1 -0
- package/styles/timepicker/bootstrap5.css +223 -0
- package/styles/timepicker/bootstrap5.scss +1 -0
- package/styles/timepicker/material-dark.css +4 -4
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
/*! calendar bootstrap5 theme variables */
|
|
2
|
+
/*! component icons */
|
|
3
|
+
.e-input-group-icon.e-date-icon,
|
|
4
|
+
*.e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
5
|
+
font-size: 18px;
|
|
6
|
+
margin: 0;
|
|
7
|
+
min-height: 18px;
|
|
8
|
+
min-width: 30px;
|
|
9
|
+
outline: none;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.e-input-group-icon.e-date-icon::before,
|
|
13
|
+
*.e-control-wrapper .e-input-group-icon.e-date-icon::before {
|
|
14
|
+
content: '\e75e';
|
|
15
|
+
font-family: 'e-icons';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-input-group-icon.e-date-icon:focus,
|
|
19
|
+
*.e-control-wrapper .e-input-group-icon.e-date-icon:focus {
|
|
20
|
+
background: #fff;
|
|
21
|
+
border-radius: 50%;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.e-bigger .e-input-group-icon.e-date-icon,
|
|
25
|
+
*.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon,
|
|
26
|
+
*.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
27
|
+
font-size: 22px;
|
|
28
|
+
margin: 0;
|
|
29
|
+
min-height: 18px;
|
|
30
|
+
min-width: 36px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.e-bigger .e-input-group-icon.e-date-icon::before,
|
|
34
|
+
*.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon::before,
|
|
35
|
+
*.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon::before {
|
|
36
|
+
content: '\e75e';
|
|
37
|
+
font-family: 'e-icons';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.e-bigger .e-input-group-icon.e-date-icon:focus,
|
|
41
|
+
*.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon:focus,
|
|
42
|
+
*.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon:focus {
|
|
43
|
+
background: #fff;
|
|
44
|
+
border-radius: 50%;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.e-small .e-input-group-icon.e-date-icon,
|
|
48
|
+
*.e-control-wrapper.e-small .e-input-group-icon.e-date-icon,
|
|
49
|
+
*.e-small .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
50
|
+
font-size: 16px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-small.e-bigger .e-input-group-icon.e-date-icon,
|
|
54
|
+
*.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-date-icon,
|
|
55
|
+
*.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
56
|
+
font-size: 20px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.e-input-group.e-control-wrapper.e-date-wrapper.e-non-edit.e-input-focus .e-input:focus ~ .e-clear-icon,
|
|
60
|
+
.e-float-input.e-control-wrapper.e-input-group.e-date-wrapper.e-non-edit.e-input-focus input:focus ~ .e-clear-icon {
|
|
61
|
+
display: -ms-flexbox;
|
|
62
|
+
display: flex;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.e-datepicker .e-calendar .e-content table tbody tr.e-month-hide:last-child {
|
|
66
|
+
display: none;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.e-datepicker.e-popup-wrapper {
|
|
70
|
+
border-radius: 6px;
|
|
71
|
+
overflow-y: hidden;
|
|
72
|
+
pointer-events: auto;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.e-datepicker.e-date-modal {
|
|
76
|
+
background-color: rgba(0, 0, 0, 0.5);
|
|
77
|
+
height: 100%;
|
|
78
|
+
left: 0;
|
|
79
|
+
opacity: .5;
|
|
80
|
+
pointer-events: auto;
|
|
81
|
+
position: fixed;
|
|
82
|
+
top: 0;
|
|
83
|
+
width: 100%;
|
|
84
|
+
z-index: 999;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.e-datepicker .e-model-header {
|
|
88
|
+
background-color: #6c757d;
|
|
89
|
+
color: #e9ecef;
|
|
90
|
+
cursor: default;
|
|
91
|
+
display: block;
|
|
92
|
+
padding: 10px 10px 10px 15px;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.e-datepicker .e-model-header .e-model-year {
|
|
96
|
+
font-size: 14px;
|
|
97
|
+
font-weight: 500;
|
|
98
|
+
line-height: 32px;
|
|
99
|
+
margin: 0;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-datepicker .e-model-month,
|
|
103
|
+
.e-datepicker .e-model-day {
|
|
104
|
+
font-size: 20px;
|
|
105
|
+
font-weight: 500;
|
|
106
|
+
line-height: 32px;
|
|
107
|
+
margin: 0;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.e-date-overflow {
|
|
111
|
+
overflow: hidden !important;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.e-datepick-mob-popup-wrap {
|
|
115
|
+
-ms-flex-align: center;
|
|
116
|
+
align-items: center;
|
|
117
|
+
display: -ms-flexbox;
|
|
118
|
+
display: flex;
|
|
119
|
+
-ms-flex-direction: column;
|
|
120
|
+
flex-direction: column;
|
|
121
|
+
height: 100%;
|
|
122
|
+
-ms-flex-pack: center;
|
|
123
|
+
justify-content: center;
|
|
124
|
+
left: 0;
|
|
125
|
+
max-height: 100%;
|
|
126
|
+
position: fixed;
|
|
127
|
+
top: 0;
|
|
128
|
+
width: 100%;
|
|
129
|
+
z-index: 1002;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-wrapper.e-lib.e-popup.e-control.e-popup-open {
|
|
133
|
+
position: relative;
|
|
134
|
+
top: 0 !important;
|
|
135
|
+
left: 0 !important;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.e-content-placeholder.e-datepicker.e-placeholder-datepicker {
|
|
139
|
+
background-size: 250px 33px;
|
|
140
|
+
min-height: 33px;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-bigger .e-content-placeholder.e-datepicker.e-placeholder-datepicker,
|
|
144
|
+
.e-bigger.e-content-placeholder.e-datepicker.e-placeholder-datepicker {
|
|
145
|
+
background-size: 250px 40px;
|
|
146
|
+
min-height: 40px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
@media screen and (orientation: landscape) and (max-height: 360px) {
|
|
150
|
+
.e-datepicker .e-calendar.e-device .e-month table tbody {
|
|
151
|
+
display: inline-block;
|
|
152
|
+
height: 130px;
|
|
153
|
+
overflow: auto;
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.e-datepicker.e-popup-wrapper,
|
|
158
|
+
.e-bigger.e-small .e-datepicker.e-popup-wrapper {
|
|
159
|
+
border: 1px solid #dee2e6;
|
|
160
|
+
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.175);
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-datepicker .e-calendar,
|
|
164
|
+
.e-bigger.e-small .e-datepicker .e-calendar {
|
|
165
|
+
background-color: #fff;
|
|
166
|
+
border: none;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
*.e-input-group.e-date-wrapper.e-dateinput-active:active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
170
|
+
border: none;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.e-date-wrapper span.e-input-group-icon.e-date-icon.e-icons.e-active {
|
|
174
|
+
background: #565e64;
|
|
175
|
+
border-color: #ced4da;
|
|
176
|
+
color: #fff;
|
|
177
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-calendars/styles/datepicker/bootstrap5.scss';
|
|
@@ -124,7 +124,7 @@
|
|
|
124
124
|
}
|
|
125
125
|
|
|
126
126
|
.e-datepicker .e-model-header {
|
|
127
|
-
background-color: #
|
|
127
|
+
background-color: #00b0ff;
|
|
128
128
|
color: #fff;
|
|
129
129
|
cursor: default;
|
|
130
130
|
display: block;
|
|
@@ -210,9 +210,9 @@
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
.e-date-wrapper span.e-input-group-icon.e-date-icon.e-icons.e-active {
|
|
213
|
-
color: #
|
|
213
|
+
color: #00b0ff;
|
|
214
214
|
}
|
|
215
215
|
|
|
216
216
|
.e-date-wrapper span.e-input-group-icon.e-date-icon.e-icons.e-active {
|
|
217
|
-
color: #
|
|
217
|
+
color: #00b0ff;
|
|
218
218
|
}
|