@syncfusion/ej2-angular-schedule 22.1.34 → 22.1.35
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +122 -48
- package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +3 -3
- package/esm2020/src/schedule/headerrows.directive.mjs +1 -1
- package/esm2020/src/schedule/schedule.component.mjs +9 -3
- package/esm2020/src/schedule/views.directive.mjs +9 -3
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs +18 -6
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -1
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs +18 -6
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/utils/lib-details.ts +2 -2
- package/src/recurrence-editor/recurrenceeditor.component.d.ts +1 -1
- package/src/schedule/headerrows.directive.d.ts +6 -5
- package/src/schedule/schedule.component.d.ts +20 -6
- package/src/schedule/views.directive.d.ts +32 -17
- package/styles/material3-dark.css +20 -11
- package/styles/material3.css +20 -11
- package/styles/recurrence-editor/material3-dark.css +20 -11
- package/styles/recurrence-editor/material3.css +20 -11
- package/styles/schedule/material3-dark.css +20 -11
- package/styles/schedule/material3.css +20 -11
|
@@ -62,7 +62,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
62
62
|
firstMonthOfYear: any;
|
|
63
63
|
/**
|
|
64
64
|
* Allows to set different resource grouping options on all available schedule view modes.
|
|
65
|
-
* @default { byDate: false, byGroupID: true, allowGroupEdit: false, resources:[]}
|
|
65
|
+
* @default { byDate: false, byGroupID: true, allowGroupEdit: false, resources:[], hideNonWorkingDays: false }
|
|
66
66
|
*/
|
|
67
67
|
group: any;
|
|
68
68
|
/**
|
|
@@ -78,7 +78,8 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
78
78
|
interval: any;
|
|
79
79
|
/**
|
|
80
80
|
* To denote whether the view name given on the `option` is active or not.
|
|
81
|
-
* It acts similar to the `currentView`
|
|
81
|
+
* It acts similar to the [`currentView`](../../schedule/#current-view/)
|
|
82
|
+
* property and defines the active view of Schedule.
|
|
82
83
|
* @default false
|
|
83
84
|
*/
|
|
84
85
|
isSelected: any;
|
|
@@ -100,26 +101,26 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
100
101
|
/**
|
|
101
102
|
* It accepts the schedule view name, based on which we can define with its related properties in a single object.
|
|
102
103
|
* The applicable view names are,
|
|
103
|
-
* * Day
|
|
104
|
-
* * Week
|
|
105
|
-
* * WorkWeek
|
|
106
|
-
* * Month
|
|
107
|
-
* * Year
|
|
108
|
-
* * Agenda
|
|
109
|
-
* * MonthAgenda
|
|
110
|
-
* * TimelineDay
|
|
111
|
-
* * TimelineWeek
|
|
112
|
-
* * TimelineWorkWeek
|
|
113
|
-
* * TimelineMonth
|
|
114
|
-
* * TimelineYear
|
|
104
|
+
* * Day - Denotes Day view of the scheduler.
|
|
105
|
+
* * Week - Denotes Week view of the scheduler.
|
|
106
|
+
* * WorkWeek - Denotes Work Week view of the scheduler.
|
|
107
|
+
* * Month - Denotes Month view of the scheduler.
|
|
108
|
+
* * Year - Denotes Year view of the scheduler.
|
|
109
|
+
* * Agenda - Denotes Agenda view of the scheduler.
|
|
110
|
+
* * MonthAgenda - Denotes Month Agenda view of the scheduler.
|
|
111
|
+
* * TimelineDay - Denotes Timeline Day view of the scheduler.
|
|
112
|
+
* * TimelineWeek - Denotes Timeline Week view of the scheduler.
|
|
113
|
+
* * TimelineWorkWeek - Denotes Timeline Work Week view of the scheduler.
|
|
114
|
+
* * TimelineMonth - Denotes Timeline Month view of the scheduler.
|
|
115
|
+
* * TimelineYear - Denotes Timeline Year view of the scheduler.
|
|
115
116
|
* @default null
|
|
116
117
|
*/
|
|
117
118
|
option: any;
|
|
118
119
|
/**
|
|
119
120
|
* It is used to specify the year view rendering orientation on the schedule.
|
|
120
121
|
* The applicable orientation values are,
|
|
121
|
-
* * Horizontal
|
|
122
|
-
* * Vertical
|
|
122
|
+
* * Horizontal - Denotes the horizontal orientation of Timeline Year view.
|
|
123
|
+
* * Vertical - Denotes the vertical orientation of Timeline Year view.
|
|
123
124
|
* @default 'Horizontal'
|
|
124
125
|
*/
|
|
125
126
|
orientation: any;
|
|
@@ -174,13 +175,21 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
174
175
|
* date header cells. The field that can be accessed via this template is `date`.
|
|
175
176
|
* It gets applied only to the view objects on which it is defined.
|
|
176
177
|
* @default null
|
|
178
|
+
* @asptype string
|
|
177
179
|
*/
|
|
178
180
|
dateHeaderTemplate: any;
|
|
181
|
+
/**
|
|
182
|
+
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.
|
|
183
|
+
* @default null
|
|
184
|
+
* @asptype string
|
|
185
|
+
*/
|
|
186
|
+
dateRangeTemplate: any;
|
|
179
187
|
/**
|
|
180
188
|
* It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the
|
|
181
189
|
* Year view day cell header.
|
|
182
190
|
* This template is only applicable for year view header cells.
|
|
183
191
|
* @default null
|
|
192
|
+
* @asptype string
|
|
184
193
|
*/
|
|
185
194
|
dayHeaderTemplate: any;
|
|
186
195
|
/**
|
|
@@ -188,6 +197,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
188
197
|
* month date cells.
|
|
189
198
|
* This template is only applicable for month view day cells.
|
|
190
199
|
* @default null
|
|
200
|
+
* @asptype string
|
|
191
201
|
*/
|
|
192
202
|
cellHeaderTemplate: any;
|
|
193
203
|
/**
|
|
@@ -195,6 +205,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
195
205
|
* template accepts either the string or HTMLElement as template design and then the parsed design is displayed onto the work cells.
|
|
196
206
|
* The field accessible via template is `date`. It gets applied only to the view objects on which it is defined.
|
|
197
207
|
* @default null
|
|
208
|
+
* @asptype string
|
|
198
209
|
*/
|
|
199
210
|
cellTemplate: any;
|
|
200
211
|
/**
|
|
@@ -203,6 +214,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
203
214
|
* It is similar to that of the `template` option available within the `eventSettings` property,
|
|
204
215
|
* whereas it will get applied only on the events of the view to which it is currently being defined.
|
|
205
216
|
* @default null
|
|
217
|
+
* @asptype string
|
|
206
218
|
*/
|
|
207
219
|
eventTemplate: any;
|
|
208
220
|
/**
|
|
@@ -210,6 +222,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
210
222
|
* Year view day cell header.
|
|
211
223
|
* This template is only applicable for year view header cells.
|
|
212
224
|
* @default null
|
|
225
|
+
* @asptype string
|
|
213
226
|
*/
|
|
214
227
|
monthHeaderTemplate: any;
|
|
215
228
|
/**
|
|
@@ -218,6 +231,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
218
231
|
* All the resource fields mapped within resources can be accessed within this template code.
|
|
219
232
|
* It gets applied only to the view objects on which it is defined.
|
|
220
233
|
* @default null
|
|
234
|
+
* @asptype string
|
|
221
235
|
*/
|
|
222
236
|
resourceHeaderTemplate: any;
|
|
223
237
|
/**
|
|
@@ -225,6 +239,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
225
239
|
* template accepts either the string or HTMLElement as template design and then the parsed design is displayed onto the header indent cell.
|
|
226
240
|
* It gets applied only to the view objects on which it is defined.
|
|
227
241
|
* @default null
|
|
242
|
+
* @asptype string
|
|
228
243
|
*/
|
|
229
244
|
headerIndentTemplate: any;
|
|
230
245
|
timeScale_minorSlotTemplate: any;
|
|
@@ -232,7 +247,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
|
|
|
232
247
|
group_headerTooltipTemplate: any;
|
|
233
248
|
constructor(viewContainerRef: ViewContainerRef);
|
|
234
249
|
static ɵfac: i0.ɵɵFactoryDeclaration<ViewDirective, never>;
|
|
235
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ViewDirective, "e-views>e-view", never, { "allowVirtualScrolling": "allowVirtualScrolling"; "cellHeaderTemplate": "cellHeaderTemplate"; "cellTemplate": "cellTemplate"; "dateFormat": "dateFormat"; "dateHeaderTemplate": "dateHeaderTemplate"; "dayHeaderTemplate": "dayHeaderTemplate"; "displayDate": "displayDate"; "displayName": "displayName"; "endHour": "endHour"; "eventTemplate": "eventTemplate"; "firstDayOfWeek": "firstDayOfWeek"; "firstMonthOfYear": "firstMonthOfYear"; "group": "group"; "headerIndentTemplate": "headerIndentTemplate"; "headerRows": "headerRows"; "interval": "interval"; "isSelected": "isSelected"; "monthHeaderTemplate": "monthHeaderTemplate"; "monthsCount": "monthsCount"; "numberOfWeeks": "numberOfWeeks"; "option": "option"; "orientation": "orientation"; "readonly": "readonly"; "resourceHeaderTemplate": "resourceHeaderTemplate"; "showWeekNumber": "showWeekNumber"; "showWeekend": "showWeekend"; "startHour": "startHour"; "timeFormat": "timeFormat"; "timeScale": "timeScale"; "workDays": "workDays"; }, {}, ["dateHeaderTemplate", "dayHeaderTemplate", "cellHeaderTemplate", "cellTemplate", "eventTemplate", "monthHeaderTemplate", "resourceHeaderTemplate", "headerIndentTemplate", "timeScale_minorSlotTemplate", "timeScale_majorSlotTemplate", "group_headerTooltipTemplate"]>;
|
|
250
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ViewDirective, "e-views>e-view", never, { "allowVirtualScrolling": "allowVirtualScrolling"; "cellHeaderTemplate": "cellHeaderTemplate"; "cellTemplate": "cellTemplate"; "dateFormat": "dateFormat"; "dateHeaderTemplate": "dateHeaderTemplate"; "dateRangeTemplate": "dateRangeTemplate"; "dayHeaderTemplate": "dayHeaderTemplate"; "displayDate": "displayDate"; "displayName": "displayName"; "endHour": "endHour"; "eventTemplate": "eventTemplate"; "firstDayOfWeek": "firstDayOfWeek"; "firstMonthOfYear": "firstMonthOfYear"; "group": "group"; "headerIndentTemplate": "headerIndentTemplate"; "headerRows": "headerRows"; "interval": "interval"; "isSelected": "isSelected"; "monthHeaderTemplate": "monthHeaderTemplate"; "monthsCount": "monthsCount"; "numberOfWeeks": "numberOfWeeks"; "option": "option"; "orientation": "orientation"; "readonly": "readonly"; "resourceHeaderTemplate": "resourceHeaderTemplate"; "showWeekNumber": "showWeekNumber"; "showWeekend": "showWeekend"; "startHour": "startHour"; "timeFormat": "timeFormat"; "timeScale": "timeScale"; "workDays": "workDays"; }, {}, ["dateHeaderTemplate", "dateRangeTemplate", "dayHeaderTemplate", "cellHeaderTemplate", "cellTemplate", "eventTemplate", "monthHeaderTemplate", "resourceHeaderTemplate", "headerIndentTemplate", "timeScale_minorSlotTemplate", "timeScale_majorSlotTemplate", "group_headerTooltipTemplate"]>;
|
|
236
251
|
}
|
|
237
252
|
/**
|
|
238
253
|
* View Array Directive
|
|
@@ -135,21 +135,26 @@
|
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
138
|
-
margin:
|
|
139
|
-
min-height:
|
|
140
|
-
min-width:
|
|
141
|
-
padding: 6px;
|
|
138
|
+
margin: 0 6px;
|
|
139
|
+
min-height: 30px;
|
|
140
|
+
min-width: 30px;
|
|
142
141
|
}
|
|
143
142
|
|
|
144
143
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
145
144
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
146
|
-
min-height:
|
|
147
|
-
min-width:
|
|
145
|
+
min-height: 38px;
|
|
146
|
+
min-width: 38px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
150
|
+
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
151
|
+
min-height: 22px;
|
|
152
|
+
min-width: 22px;
|
|
148
153
|
}
|
|
149
154
|
|
|
150
155
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
151
156
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
152
|
-
padding:
|
|
157
|
+
padding: 4px 16px 4px 0;
|
|
153
158
|
}
|
|
154
159
|
|
|
155
160
|
.e-input-group.e-ddl,
|
|
@@ -169,7 +174,7 @@
|
|
|
169
174
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
|
|
170
175
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
|
|
171
176
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
172
|
-
margin:
|
|
177
|
+
margin: 4px;
|
|
173
178
|
}
|
|
174
179
|
|
|
175
180
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -178,7 +183,7 @@
|
|
|
178
183
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
179
184
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
180
185
|
.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
|
|
181
|
-
padding:
|
|
186
|
+
padding: 4px 5px 4px 12px;
|
|
182
187
|
}
|
|
183
188
|
|
|
184
189
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
@@ -188,8 +193,8 @@
|
|
|
188
193
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
189
194
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
190
195
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
191
|
-
min-height:
|
|
192
|
-
min-width:
|
|
196
|
+
min-height: 34px;
|
|
197
|
+
min-width: 34px;
|
|
193
198
|
}
|
|
194
199
|
|
|
195
200
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -202,6 +207,10 @@
|
|
|
202
207
|
padding: 8px 16px;
|
|
203
208
|
}
|
|
204
209
|
|
|
210
|
+
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
211
|
+
margin: 0 4px;
|
|
212
|
+
}
|
|
213
|
+
|
|
205
214
|
.e-ddl.e-popup.e-outline .e-filter-parent {
|
|
206
215
|
padding: 4px 8px;
|
|
207
216
|
}
|
package/styles/material3.css
CHANGED
|
@@ -191,21 +191,26 @@
|
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
194
|
-
margin:
|
|
195
|
-
min-height:
|
|
196
|
-
min-width:
|
|
197
|
-
padding: 6px;
|
|
194
|
+
margin: 0 6px;
|
|
195
|
+
min-height: 30px;
|
|
196
|
+
min-width: 30px;
|
|
198
197
|
}
|
|
199
198
|
|
|
200
199
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
201
200
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
202
|
-
min-height:
|
|
203
|
-
min-width:
|
|
201
|
+
min-height: 38px;
|
|
202
|
+
min-width: 38px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
206
|
+
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
207
|
+
min-height: 22px;
|
|
208
|
+
min-width: 22px;
|
|
204
209
|
}
|
|
205
210
|
|
|
206
211
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
207
212
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
208
|
-
padding:
|
|
213
|
+
padding: 4px 16px 4px 0;
|
|
209
214
|
}
|
|
210
215
|
|
|
211
216
|
.e-input-group.e-ddl,
|
|
@@ -225,7 +230,7 @@
|
|
|
225
230
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
|
|
226
231
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
|
|
227
232
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
228
|
-
margin:
|
|
233
|
+
margin: 4px;
|
|
229
234
|
}
|
|
230
235
|
|
|
231
236
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -234,7 +239,7 @@
|
|
|
234
239
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
235
240
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
236
241
|
.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
|
|
237
|
-
padding:
|
|
242
|
+
padding: 4px 5px 4px 12px;
|
|
238
243
|
}
|
|
239
244
|
|
|
240
245
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
@@ -244,8 +249,8 @@
|
|
|
244
249
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
245
250
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
246
251
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
247
|
-
min-height:
|
|
248
|
-
min-width:
|
|
252
|
+
min-height: 34px;
|
|
253
|
+
min-width: 34px;
|
|
249
254
|
}
|
|
250
255
|
|
|
251
256
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -258,6 +263,10 @@
|
|
|
258
263
|
padding: 8px 16px;
|
|
259
264
|
}
|
|
260
265
|
|
|
266
|
+
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
267
|
+
margin: 0 4px;
|
|
268
|
+
}
|
|
269
|
+
|
|
261
270
|
.e-ddl.e-popup.e-outline .e-filter-parent {
|
|
262
271
|
padding: 4px 8px;
|
|
263
272
|
}
|
|
@@ -115,21 +115,26 @@
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
118
|
-
margin:
|
|
119
|
-
min-height:
|
|
120
|
-
min-width:
|
|
121
|
-
padding: 6px;
|
|
118
|
+
margin: 0 6px;
|
|
119
|
+
min-height: 30px;
|
|
120
|
+
min-width: 30px;
|
|
122
121
|
}
|
|
123
122
|
|
|
124
123
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
125
124
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
126
|
-
min-height:
|
|
127
|
-
min-width:
|
|
125
|
+
min-height: 38px;
|
|
126
|
+
min-width: 38px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
130
|
+
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
131
|
+
min-height: 22px;
|
|
132
|
+
min-width: 22px;
|
|
128
133
|
}
|
|
129
134
|
|
|
130
135
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
131
136
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
132
|
-
padding:
|
|
137
|
+
padding: 4px 16px 4px 0;
|
|
133
138
|
}
|
|
134
139
|
|
|
135
140
|
.e-input-group.e-ddl,
|
|
@@ -149,7 +154,7 @@
|
|
|
149
154
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
|
|
150
155
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
|
|
151
156
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
152
|
-
margin:
|
|
157
|
+
margin: 4px;
|
|
153
158
|
}
|
|
154
159
|
|
|
155
160
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -158,7 +163,7 @@
|
|
|
158
163
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
159
164
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
160
165
|
.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
|
|
161
|
-
padding:
|
|
166
|
+
padding: 4px 5px 4px 12px;
|
|
162
167
|
}
|
|
163
168
|
|
|
164
169
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
@@ -168,8 +173,8 @@
|
|
|
168
173
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
169
174
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
170
175
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
171
|
-
min-height:
|
|
172
|
-
min-width:
|
|
176
|
+
min-height: 34px;
|
|
177
|
+
min-width: 34px;
|
|
173
178
|
}
|
|
174
179
|
|
|
175
180
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -182,6 +187,10 @@
|
|
|
182
187
|
padding: 8px 16px;
|
|
183
188
|
}
|
|
184
189
|
|
|
190
|
+
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
191
|
+
margin: 0 4px;
|
|
192
|
+
}
|
|
193
|
+
|
|
185
194
|
.e-ddl.e-popup.e-outline .e-filter-parent {
|
|
186
195
|
padding: 4px 8px;
|
|
187
196
|
}
|
|
@@ -171,21 +171,26 @@
|
|
|
171
171
|
}
|
|
172
172
|
|
|
173
173
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
174
|
-
margin:
|
|
175
|
-
min-height:
|
|
176
|
-
min-width:
|
|
177
|
-
padding: 6px;
|
|
174
|
+
margin: 0 6px;
|
|
175
|
+
min-height: 30px;
|
|
176
|
+
min-width: 30px;
|
|
178
177
|
}
|
|
179
178
|
|
|
180
179
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
181
180
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
182
|
-
min-height:
|
|
183
|
-
min-width:
|
|
181
|
+
min-height: 38px;
|
|
182
|
+
min-width: 38px;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
186
|
+
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
187
|
+
min-height: 22px;
|
|
188
|
+
min-width: 22px;
|
|
184
189
|
}
|
|
185
190
|
|
|
186
191
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
187
192
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
188
|
-
padding:
|
|
193
|
+
padding: 4px 16px 4px 0;
|
|
189
194
|
}
|
|
190
195
|
|
|
191
196
|
.e-input-group.e-ddl,
|
|
@@ -205,7 +210,7 @@
|
|
|
205
210
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
|
|
206
211
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
|
|
207
212
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
208
|
-
margin:
|
|
213
|
+
margin: 4px;
|
|
209
214
|
}
|
|
210
215
|
|
|
211
216
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -214,7 +219,7 @@
|
|
|
214
219
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
215
220
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
216
221
|
.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
|
|
217
|
-
padding:
|
|
222
|
+
padding: 4px 5px 4px 12px;
|
|
218
223
|
}
|
|
219
224
|
|
|
220
225
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
@@ -224,8 +229,8 @@
|
|
|
224
229
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
225
230
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
226
231
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
227
|
-
min-height:
|
|
228
|
-
min-width:
|
|
232
|
+
min-height: 34px;
|
|
233
|
+
min-width: 34px;
|
|
229
234
|
}
|
|
230
235
|
|
|
231
236
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -238,6 +243,10 @@
|
|
|
238
243
|
padding: 8px 16px;
|
|
239
244
|
}
|
|
240
245
|
|
|
246
|
+
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
247
|
+
margin: 0 4px;
|
|
248
|
+
}
|
|
249
|
+
|
|
241
250
|
.e-ddl.e-popup.e-outline .e-filter-parent {
|
|
242
251
|
padding: 4px 8px;
|
|
243
252
|
}
|
|
@@ -135,21 +135,26 @@
|
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
138
|
-
margin:
|
|
139
|
-
min-height:
|
|
140
|
-
min-width:
|
|
141
|
-
padding: 6px;
|
|
138
|
+
margin: 0 6px;
|
|
139
|
+
min-height: 30px;
|
|
140
|
+
min-width: 30px;
|
|
142
141
|
}
|
|
143
142
|
|
|
144
143
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
145
144
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
146
|
-
min-height:
|
|
147
|
-
min-width:
|
|
145
|
+
min-height: 38px;
|
|
146
|
+
min-width: 38px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
150
|
+
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
151
|
+
min-height: 22px;
|
|
152
|
+
min-width: 22px;
|
|
148
153
|
}
|
|
149
154
|
|
|
150
155
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
151
156
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
152
|
-
padding:
|
|
157
|
+
padding: 4px 16px 4px 0;
|
|
153
158
|
}
|
|
154
159
|
|
|
155
160
|
.e-input-group.e-ddl,
|
|
@@ -169,7 +174,7 @@
|
|
|
169
174
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
|
|
170
175
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
|
|
171
176
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
172
|
-
margin:
|
|
177
|
+
margin: 4px;
|
|
173
178
|
}
|
|
174
179
|
|
|
175
180
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -178,7 +183,7 @@
|
|
|
178
183
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
179
184
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
180
185
|
.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
|
|
181
|
-
padding:
|
|
186
|
+
padding: 4px 5px 4px 12px;
|
|
182
187
|
}
|
|
183
188
|
|
|
184
189
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
@@ -188,8 +193,8 @@
|
|
|
188
193
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
189
194
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
190
195
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
191
|
-
min-height:
|
|
192
|
-
min-width:
|
|
196
|
+
min-height: 34px;
|
|
197
|
+
min-width: 34px;
|
|
193
198
|
}
|
|
194
199
|
|
|
195
200
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -202,6 +207,10 @@
|
|
|
202
207
|
padding: 8px 16px;
|
|
203
208
|
}
|
|
204
209
|
|
|
210
|
+
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
211
|
+
margin: 0 4px;
|
|
212
|
+
}
|
|
213
|
+
|
|
205
214
|
.e-ddl.e-popup.e-outline .e-filter-parent {
|
|
206
215
|
padding: 4px 8px;
|
|
207
216
|
}
|
|
@@ -191,21 +191,26 @@
|
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
194
|
-
margin:
|
|
195
|
-
min-height:
|
|
196
|
-
min-width:
|
|
197
|
-
padding: 6px;
|
|
194
|
+
margin: 0 6px;
|
|
195
|
+
min-height: 30px;
|
|
196
|
+
min-width: 30px;
|
|
198
197
|
}
|
|
199
198
|
|
|
200
199
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
201
200
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
202
|
-
min-height:
|
|
203
|
-
min-width:
|
|
201
|
+
min-height: 38px;
|
|
202
|
+
min-width: 38px;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
206
|
+
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
|
|
207
|
+
min-height: 22px;
|
|
208
|
+
min-width: 22px;
|
|
204
209
|
}
|
|
205
210
|
|
|
206
211
|
.e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
|
|
207
212
|
.e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
|
|
208
|
-
padding:
|
|
213
|
+
padding: 4px 16px 4px 0;
|
|
209
214
|
}
|
|
210
215
|
|
|
211
216
|
.e-input-group.e-ddl,
|
|
@@ -225,7 +230,7 @@
|
|
|
225
230
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
|
|
226
231
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
|
|
227
232
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
228
|
-
margin:
|
|
233
|
+
margin: 4px;
|
|
229
234
|
}
|
|
230
235
|
|
|
231
236
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -234,7 +239,7 @@
|
|
|
234
239
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
235
240
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
|
|
236
241
|
.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
|
|
237
|
-
padding:
|
|
242
|
+
padding: 4px 5px 4px 12px;
|
|
238
243
|
}
|
|
239
244
|
|
|
240
245
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
|
|
@@ -244,8 +249,8 @@
|
|
|
244
249
|
.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
245
250
|
.e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
|
|
246
251
|
.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
|
|
247
|
-
min-height:
|
|
248
|
-
min-width:
|
|
252
|
+
min-height: 34px;
|
|
253
|
+
min-width: 34px;
|
|
249
254
|
}
|
|
250
255
|
|
|
251
256
|
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
|
|
@@ -258,6 +263,10 @@
|
|
|
258
263
|
padding: 8px 16px;
|
|
259
264
|
}
|
|
260
265
|
|
|
266
|
+
.e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
|
|
267
|
+
margin: 0 4px;
|
|
268
|
+
}
|
|
269
|
+
|
|
261
270
|
.e-ddl.e-popup.e-outline .e-filter-parent {
|
|
262
271
|
padding: 4px 8px;
|
|
263
272
|
}
|