@syncfusion/ej2-pivotview 20.1.61 → 20.2.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/ej2-pivotview.umd.min.js +2 -2
- package/dist/ej2-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-pivotview.es2015.js +281 -99
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +283 -100
- package/dist/es6/ej2-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-pivotview.min.js +2 -2
- package/dist/global/ej2-pivotview.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/helpers/e2e/index.js +9 -7
- package/helpers/e2e/pivotfieldlist.js +47 -31
- package/helpers/e2e/pivotview.js +68 -52
- package/package.json +22 -22
- package/src/base/engine.js +2 -2
- package/src/base/olap/engine.js +12 -0
- package/src/base/olap/mdx-query.js +1 -1
- package/src/common/actions/event-base.d.ts +4 -2
- package/src/common/actions/event-base.js +18 -10
- package/src/common/actions/field-list.js +2 -1
- package/src/common/actions/pivot-button.js +4 -4
- package/src/common/base/css-constant.d.ts +16 -0
- package/src/common/base/css-constant.js +16 -0
- package/src/common/calculatedfield/calculated-field.js +24 -15
- package/src/common/conditionalformatting/conditional-formatting.js +5 -5
- package/src/common/grouping-bar/grouping-bar.js +1 -1
- package/src/common/popups/aggregate-menu.js +4 -3
- package/src/common/popups/drillthrough-dialog.js +5 -4
- package/src/common/popups/error-dialog.js +1 -1
- package/src/common/popups/filter-dialog.js +25 -14
- package/src/common/popups/formatting-dialog.js +2 -2
- package/src/common/popups/grouping.js +14 -7
- package/src/common/popups/toolbar.js +11 -10
- package/src/pivotfieldlist/base/field-list-model.d.ts +5 -0
- package/src/pivotfieldlist/base/field-list.d.ts +4 -0
- package/src/pivotfieldlist/base/field-list.js +5 -0
- package/src/pivotfieldlist/renderer/dialog-renderer.js +17 -9
- package/src/pivotfieldlist/renderer/tree-renderer.d.ts +4 -0
- package/src/pivotfieldlist/renderer/tree-renderer.js +102 -8
- package/src/pivotview/base/pivotview-model.d.ts +7 -0
- package/src/pivotview/base/pivotview.d.ts +6 -0
- package/src/pivotview/base/pivotview.js +9 -3
- package/src/pivotview/renderer/render.js +3 -0
- package/styles/bootstrap-dark.css +165 -32
- package/styles/bootstrap.css +165 -32
- package/styles/bootstrap4.css +166 -36
- package/styles/bootstrap5-dark.css +209 -45
- package/styles/bootstrap5.css +209 -45
- package/styles/fabric-dark.css +165 -32
- package/styles/fabric.css +165 -32
- package/styles/fluent-dark.css +183 -49
- package/styles/fluent.css +183 -49
- package/styles/highcontrast-light.css +165 -32
- package/styles/highcontrast.css +165 -32
- package/styles/material-dark.css +165 -32
- package/styles/material.css +165 -32
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +10 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +10 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +11 -1
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +15 -6
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +10 -1
- package/styles/pivotfieldlist/_fabric-definition.scss +10 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +18 -8
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +10 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +10 -0
- package/styles/pivotfieldlist/_layout.scss +30 -14
- package/styles/pivotfieldlist/_material-dark-definition.scss +10 -0
- package/styles/pivotfieldlist/_material-definition.scss +10 -0
- package/styles/pivotfieldlist/_material3-definition.scss +189 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +19 -10
- package/styles/pivotfieldlist/_theme.scss +142 -7
- package/styles/pivotfieldlist/bootstrap-dark.css +146 -10
- package/styles/pivotfieldlist/bootstrap.css +146 -10
- package/styles/pivotfieldlist/bootstrap4.css +147 -11
- package/styles/pivotfieldlist/bootstrap5-dark.css +151 -15
- package/styles/pivotfieldlist/bootstrap5.css +151 -15
- package/styles/pivotfieldlist/fabric-dark.css +146 -10
- package/styles/pivotfieldlist/fabric.css +146 -10
- package/styles/pivotfieldlist/fluent-dark.css +154 -18
- package/styles/pivotfieldlist/fluent.css +154 -18
- package/styles/pivotfieldlist/highcontrast-light.css +146 -10
- package/styles/pivotfieldlist/highcontrast.css +146 -10
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +5 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +5 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +5 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +5 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +5 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +5 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +5 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +5 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +5 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +5 -0
- package/styles/pivotfieldlist/icons/_material.scss +4 -0
- package/styles/pivotfieldlist/icons/_material3.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +4 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +4 -0
- package/styles/pivotfieldlist/material-dark.css +146 -10
- package/styles/pivotfieldlist/material.css +146 -10
- package/styles/pivotfieldlist/tailwind-dark.css +155 -21
- package/styles/pivotfieldlist/tailwind.css +156 -21
- package/styles/pivotview/_bootstrap-dark-definition.scss +4 -2
- package/styles/pivotview/_bootstrap-definition.scss +4 -2
- package/styles/pivotview/_bootstrap4-definition.scss +4 -2
- package/styles/pivotview/_bootstrap5-definition.scss +9 -8
- package/styles/pivotview/_fabric-dark-definition.scss +4 -1
- package/styles/pivotview/_fabric-definition.scss +4 -2
- package/styles/pivotview/_fluent-definition.scss +11 -9
- package/styles/pivotview/_fusionnew-definition.scss +131 -0
- package/styles/pivotview/_highcontrast-definition.scss +4 -2
- package/styles/pivotview/_highcontrast-light-definition.scss +4 -2
- package/styles/pivotview/_layout.scss +3 -17
- package/styles/pivotview/_material-dark-definition.scss +4 -1
- package/styles/pivotview/_material-definition.scss +4 -2
- package/styles/pivotview/_material3-definition.scss +131 -0
- package/styles/pivotview/_tailwind-definition.scss +8 -5
- package/styles/pivotview/_theme.scss +47 -27
- package/styles/pivotview/bootstrap-dark.css +19 -22
- package/styles/pivotview/bootstrap.css +19 -22
- package/styles/pivotview/bootstrap4.css +19 -25
- package/styles/pivotview/bootstrap5-dark.css +58 -30
- package/styles/pivotview/bootstrap5.css +58 -30
- package/styles/pivotview/fabric-dark.css +19 -22
- package/styles/pivotview/fabric.css +19 -22
- package/styles/pivotview/fluent-dark.css +29 -31
- package/styles/pivotview/fluent.css +29 -31
- package/styles/pivotview/highcontrast-light.css +19 -22
- package/styles/pivotview/highcontrast.css +19 -22
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/material-dark.css +19 -22
- package/styles/pivotview/material.css +19 -22
- package/styles/pivotview/tailwind-dark.css +27 -31
- package/styles/pivotview/tailwind.css +27 -31
- package/styles/tailwind-dark.css +182 -52
- package/styles/tailwind.css +183 -52
|
@@ -0,0 +1,352 @@
|
|
|
1
|
+
@include export-module('field-list-icons') {
|
|
2
|
+
/*! field-list component icons */
|
|
3
|
+
.e-pivotfieldlist {
|
|
4
|
+
.e-select-table::before {
|
|
5
|
+
content: '\e751';
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.e-pivot-formatting-dialog {
|
|
10
|
+
.e-format-delete-icon::before {
|
|
11
|
+
content: '\e7e7';
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.e-add-icon::before {
|
|
15
|
+
content: '\e805';
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.e-colorpicker-wrapper .e-format-back-color+.e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
19
|
+
.e-colorpicker-container .e-format-back-color+.e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
20
|
+
content: '\e783';
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.e-colorpicker-wrapper .e-format-font-color+.e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
24
|
+
.e-colorpicker-container .e-format-font-color+.e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
25
|
+
content: '\e76f';
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-level-options {
|
|
30
|
+
.e-selected-level-icon::before {
|
|
31
|
+
content: '\e774';
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.e-pivot-calc-dialog-div {
|
|
36
|
+
.e-drag::before {
|
|
37
|
+
content: '\e726';
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.e-pivot-all-field-title-wrapper .e-info.e-icons::before,
|
|
41
|
+
.e-pivot-all-field-title-container .e-info.e-icons::before {
|
|
42
|
+
content: '\e800';
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.e-list-item .e-text-content .e-edited.e-icons::before {
|
|
46
|
+
content: '\e740';
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.e-list-item .e-text-content .e-edit.e-icons::before {
|
|
50
|
+
content: '\e730';
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-list-item .e-text-content .e-remove-report.e-icons::before {
|
|
54
|
+
content: '\e820';
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-remove-report.e-icons::before {
|
|
58
|
+
content: '\e820';
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.e-list-item .e-text-content .e-format.e-icons::before {
|
|
62
|
+
content: '\e75c';
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// sass-lint:disable-all
|
|
66
|
+
.e-measureGroupCDB-icon::before {
|
|
67
|
+
content: '\e7d2' !important;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-measure-icon::before {
|
|
71
|
+
content: '\e7d2' !important;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.e-folderCDB-icon::before {
|
|
75
|
+
content: '\e83c' !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-folderCDB-open-icon::before {
|
|
79
|
+
content: '\e760' !important;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.e-dimensionCDB-icon::before {
|
|
83
|
+
content: '\e81d' !important;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.e-kpiCDB-icon::before {
|
|
87
|
+
content: '\e73f' !important;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.e-kpiGoal-icon::before {
|
|
91
|
+
content: '\e73f' !important;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-kpiStatus-icon::before {
|
|
95
|
+
content: '\e73f' !important;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.e-kpiTrend-icon::before {
|
|
99
|
+
content: '\e73f' !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-kpiValue-icon::before {
|
|
103
|
+
content: '\e73f' !important;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.e-namedSetCDB-icon::before {
|
|
107
|
+
content: '\e829' !important;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.e-hierarchyCDB-icon::before {
|
|
111
|
+
content: '\e709' !important;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.e-attributeCDB-icon::before {
|
|
115
|
+
content: '\e73e' !important;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-hierarchy-level-0-icon::before {
|
|
119
|
+
content: '\e76a' !important;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.e-hierarchy-level-1-icon::before {
|
|
123
|
+
content: '\e76a' !important;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.e-hierarchy-level-2-icon::before {
|
|
127
|
+
content: '\e807' !important;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.e-hierarchy-level-3-icon::before {
|
|
131
|
+
content: '\e780' !important;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.e-hierarchy-level-4-icon::before {
|
|
135
|
+
content: '\e711' !important;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.e-hierarchy-level-5-icon::before {
|
|
139
|
+
content: '\e837' !important;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.e-calcMemberGroupCDB::before {
|
|
143
|
+
content: '\e798' !important;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.e-calc-measure-icon::before {
|
|
147
|
+
content: '\e7d2' !important;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.e-calc-dimension-icon::before {
|
|
151
|
+
content: '\e81d' !important;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.e-sort-none::before {
|
|
155
|
+
content: '\e824' !important;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.e-sort-ascend::before {
|
|
159
|
+
content: '\e7df' !important;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.e-sort-descend::before {
|
|
163
|
+
content: '\e7d8' !important;
|
|
164
|
+
}
|
|
165
|
+
// sass-lint:enable-all
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.e-pivotfieldlist-wrapper,
|
|
169
|
+
.e-pivotfieldlist-container {
|
|
170
|
+
.e-field-list-back-icon::before {
|
|
171
|
+
content: '\e773';
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.e-sort::before {
|
|
175
|
+
content: '\e7df';
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.e-pv-filter::before {
|
|
179
|
+
content: '\e7f7';
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.e-pv-filtered::before {
|
|
183
|
+
content: '\e735';
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.e-drag::before {
|
|
187
|
+
content: '\e726';
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
.e-add-icon::before {
|
|
191
|
+
content: '\e805';
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.e-remove::before {
|
|
195
|
+
content: '\e7e7';
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
.e-axis-rows::before {
|
|
199
|
+
content: '\e7e6';
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.e-axis-columns::before {
|
|
203
|
+
content: '\e76b';
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.e-axis-values::before {
|
|
207
|
+
content: '\e7d2';
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.e-axis-filters::before {
|
|
211
|
+
content: '\e7f7';
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.e-selected-option-icon::before {
|
|
215
|
+
content: '\e72b';
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.e-clear-filter-icon::before {
|
|
219
|
+
content: '\e72c';
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.e-dropdown-icon::before {
|
|
223
|
+
content: '\e729';
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
// sass-lint:disable-all
|
|
227
|
+
.e-measureGroupCDB-icon::before {
|
|
228
|
+
content: '\e7d2' !important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.e-measure-icon::before {
|
|
232
|
+
content: '\e7d2' !important;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.e-folderCDB-icon::before {
|
|
236
|
+
content: '\e83c' !important;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.e-folderCDB-open-icon::before {
|
|
240
|
+
content: '\e760' !important;
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
.e-dimensionCDB-icon::before {
|
|
244
|
+
content: '\e81d' !important;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.e-kpiCDB-icon::before {
|
|
248
|
+
content: '\e73f' !important;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.e-kpiGoal-icon::before {
|
|
252
|
+
content: '\e73f' !important;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
.e-kpiStatus-icon::before {
|
|
256
|
+
content: '\e73f' !important;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.e-kpiTrend-icon::before {
|
|
260
|
+
content: '\e73f' !important;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.e-kpiValue-icon::before {
|
|
264
|
+
content: '\e73f' !important;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.e-namedSetCDB-icon::before {
|
|
268
|
+
content: '\e829' !important;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.e-hierarchyCDB-icon::before {
|
|
272
|
+
content: '\e709' !important;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.e-attributeCDB-icon::before {
|
|
276
|
+
content: '\e73e' !important;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.e-hierarchy-level-0-icon::before {
|
|
280
|
+
content: '\e76a' !important;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.e-hierarchy-level-1-icon::before {
|
|
284
|
+
content: '\e76a' !important;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.e-hierarchy-level-2-icon::before {
|
|
288
|
+
content: '\e807' !important;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.e-hierarchy-level-3-icon::before {
|
|
292
|
+
content: '\e780' !important;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.e-hierarchy-level-4-icon::before {
|
|
296
|
+
content: '\e711' !important;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.e-hierarchy-level-5-icon::before {
|
|
300
|
+
content: '\e837' !important;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.e-calcMemberGroupCDB::before {
|
|
304
|
+
content: '\e798' !important;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.e-calc-measure-icon::before {
|
|
308
|
+
content: '\e7d2' !important;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.e-calc-dimension-icon::before {
|
|
312
|
+
content: '\e81d' !important;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.e-sort-none::before {
|
|
316
|
+
content: '\e824' !important;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.e-sort-ascend::before {
|
|
320
|
+
content: '\e7df' !important;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.e-sort-descend::before {
|
|
324
|
+
content: '\e7d8' !important;
|
|
325
|
+
}
|
|
326
|
+
// sass-lint:enable-all
|
|
327
|
+
|
|
328
|
+
.e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
329
|
+
content: '\e740';
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.e-pivot-calc-outer-div .e-pivot-accord .e-edit.e-icons::before {
|
|
333
|
+
content: '\e730';
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.e-pivot-calc-outer-div .e-pivot-accord .e-remove-report.e-icons::before {
|
|
337
|
+
content: '\e820';
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.e-pivot-button .e-edit::before {
|
|
341
|
+
content: '\e730';
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
.e-sort-ascend-icon::before {
|
|
345
|
+
content: '\e7a3';
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.e-sort-descend-icon::before {
|
|
349
|
+
content: '\e7b6';
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
}
|
|
@@ -323,6 +323,10 @@
|
|
|
323
323
|
.e-sort-descend::before {
|
|
324
324
|
content: '\e7d8' !important;
|
|
325
325
|
}
|
|
326
|
+
|
|
327
|
+
.e-field-list-search-icon::before {
|
|
328
|
+
content: '\e754' !important;
|
|
329
|
+
}
|
|
326
330
|
// sass-lint:enable-all
|
|
327
331
|
|
|
328
332
|
.e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
@@ -277,6 +277,10 @@
|
|
|
277
277
|
.e-pivotfieldlist-container .e-sort-descend::before {
|
|
278
278
|
content: "\e665" !important;
|
|
279
279
|
}
|
|
280
|
+
.e-pivotfieldlist-wrapper .e-field-list-search-icon::before,
|
|
281
|
+
.e-pivotfieldlist-container .e-field-list-search-icon::before {
|
|
282
|
+
content: "\e993" !important;
|
|
283
|
+
}
|
|
280
284
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before,
|
|
281
285
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
282
286
|
content: "\e7a3";
|
|
@@ -316,7 +320,6 @@
|
|
|
316
320
|
|
|
317
321
|
.e-pivot-formatting-dialog {
|
|
318
322
|
max-height: 480px !important;
|
|
319
|
-
min-width: 628px !important;
|
|
320
323
|
width: 628px !important;
|
|
321
324
|
}
|
|
322
325
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -331,6 +334,7 @@
|
|
|
331
334
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
332
335
|
padding-bottom: 14px;
|
|
333
336
|
padding-right: 18px;
|
|
337
|
+
white-space: nowrap;
|
|
334
338
|
}
|
|
335
339
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
336
340
|
vertical-align: bottom;
|
|
@@ -347,6 +351,7 @@
|
|
|
347
351
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
348
352
|
padding-left: 14px;
|
|
349
353
|
padding-top: 14px;
|
|
354
|
+
width: 579px;
|
|
350
355
|
}
|
|
351
356
|
.e-pivot-formatting-dialog .e-format-outer-div {
|
|
352
357
|
background-color: #303030;
|
|
@@ -422,6 +427,9 @@
|
|
|
422
427
|
min-width: 320px !important;
|
|
423
428
|
width: 100% !important;
|
|
424
429
|
}
|
|
430
|
+
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
431
|
+
width: 100% !important;
|
|
432
|
+
}
|
|
425
433
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
426
434
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
427
435
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -466,7 +474,6 @@
|
|
|
466
474
|
|
|
467
475
|
.e-bigger.e-pivot-formatting-dialog,
|
|
468
476
|
.e-bigger .e-pivot-formatting-dialog {
|
|
469
|
-
min-width: 680px !important;
|
|
470
477
|
width: 680px !important;
|
|
471
478
|
}
|
|
472
479
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -484,6 +491,7 @@
|
|
|
484
491
|
.e-bigger .e-pivot-formatting-dialog .e-format-inner-div {
|
|
485
492
|
padding-left: 16px;
|
|
486
493
|
padding-top: 16px;
|
|
494
|
+
width: 656px;
|
|
487
495
|
}
|
|
488
496
|
.e-bigger.e-pivot-formatting-dialog .e-format-outer-div,
|
|
489
497
|
.e-bigger .e-pivot-formatting-dialog .e-format-outer-div {
|
|
@@ -857,8 +865,8 @@
|
|
|
857
865
|
|
|
858
866
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
859
867
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
860
|
-
max-height:
|
|
861
|
-
min-width:
|
|
868
|
+
max-height: 600px !important;
|
|
869
|
+
min-width: 401px !important;
|
|
862
870
|
}
|
|
863
871
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
864
872
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -899,8 +907,8 @@
|
|
|
899
907
|
}
|
|
900
908
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
901
909
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
902
|
-
max-height:
|
|
903
|
-
min-width: 580px;
|
|
910
|
+
max-height: 750px !important;
|
|
911
|
+
min-width: 580px !important;
|
|
904
912
|
}
|
|
905
913
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
906
914
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -976,7 +984,7 @@
|
|
|
976
984
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
977
985
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
978
986
|
margin-left: -35px;
|
|
979
|
-
overflow:
|
|
987
|
+
overflow: auto !important;
|
|
980
988
|
}
|
|
981
989
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
982
990
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -1013,6 +1021,9 @@
|
|
|
1013
1021
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog.e-rtl .e-member-editor-outer-container ul {
|
|
1014
1022
|
margin-right: 0;
|
|
1015
1023
|
}
|
|
1024
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
1025
|
+
margin-left: 20px;
|
|
1026
|
+
}
|
|
1016
1027
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-clear-filter-button {
|
|
1017
1028
|
float: left;
|
|
1018
1029
|
margin: 0;
|
|
@@ -1107,6 +1118,10 @@
|
|
|
1107
1118
|
opacity: 100%;
|
|
1108
1119
|
padding: 14px 10px 9px 20px;
|
|
1109
1120
|
}
|
|
1121
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-toolbar .e-toolbar-items {
|
|
1122
|
+
margin-left: 0;
|
|
1123
|
+
margin-right: 20px;
|
|
1124
|
+
}
|
|
1110
1125
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container .e-editor-search-container .e-filter-sort {
|
|
1111
1126
|
margin-left: 0;
|
|
1112
1127
|
margin-right: 10px;
|
|
@@ -1131,6 +1146,10 @@
|
|
|
1131
1146
|
margin-left: 0;
|
|
1132
1147
|
margin-right: 10px;
|
|
1133
1148
|
}
|
|
1149
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul {
|
|
1150
|
+
min-height: 170px;
|
|
1151
|
+
overflow: auto;
|
|
1152
|
+
}
|
|
1134
1153
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-measure-icon,
|
|
1135
1154
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-dimension-icon,
|
|
1136
1155
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-attributeCDB-icon,
|
|
@@ -1246,7 +1265,7 @@
|
|
|
1246
1265
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content,
|
|
1247
1266
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
1248
1267
|
overflow: hidden;
|
|
1249
|
-
padding: 0;
|
|
1268
|
+
padding: 0 !important;
|
|
1250
1269
|
}
|
|
1251
1270
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
1252
1271
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -1505,7 +1524,7 @@
|
|
|
1505
1524
|
}
|
|
1506
1525
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
1507
1526
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
1508
|
-
min-width: 350px;
|
|
1527
|
+
min-width: 350px !important;
|
|
1509
1528
|
}
|
|
1510
1529
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
1511
1530
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -1620,6 +1639,25 @@
|
|
|
1620
1639
|
min-height: 36px;
|
|
1621
1640
|
min-width: 36px;
|
|
1622
1641
|
}
|
|
1642
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog,
|
|
1643
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
1644
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
1645
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
1646
|
+
max-height: 400px !important;
|
|
1647
|
+
min-width: 370px !important;
|
|
1648
|
+
}
|
|
1649
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1650
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
1651
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1652
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
1653
|
+
min-height: 113px !important;
|
|
1654
|
+
}
|
|
1655
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1656
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1657
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1658
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul {
|
|
1659
|
+
height: auto;
|
|
1660
|
+
}
|
|
1623
1661
|
|
|
1624
1662
|
.e-pivotfieldlist-container {
|
|
1625
1663
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
|
|
@@ -1840,6 +1878,9 @@
|
|
|
1840
1878
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-list-text {
|
|
1841
1879
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
|
|
1842
1880
|
}
|
|
1881
|
+
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li.e-disable {
|
|
1882
|
+
display: none !important;
|
|
1883
|
+
}
|
|
1843
1884
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree ul li {
|
|
1844
1885
|
margin-left: 0;
|
|
1845
1886
|
margin-right: 0;
|
|
@@ -2285,6 +2326,59 @@
|
|
|
2285
2326
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table.e-olap-axis-table {
|
|
2286
2327
|
width: 60%;
|
|
2287
2328
|
}
|
|
2329
|
+
.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
2330
|
+
max-height: 750px;
|
|
2331
|
+
}
|
|
2332
|
+
.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
2333
|
+
height: 261px;
|
|
2334
|
+
}
|
|
2335
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2336
|
+
min-height: 540px;
|
|
2337
|
+
}
|
|
2338
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2339
|
+
height: 369px;
|
|
2340
|
+
}
|
|
2341
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
2342
|
+
height: 392px !important;
|
|
2343
|
+
}
|
|
2344
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
2345
|
+
height: 392px;
|
|
2346
|
+
}
|
|
2347
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
2348
|
+
height: 162px !important;
|
|
2349
|
+
}
|
|
2350
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt {
|
|
2351
|
+
color: #bdbdbd;
|
|
2352
|
+
padding: 25px 12px;
|
|
2353
|
+
text-align: center;
|
|
2354
|
+
width: 100%;
|
|
2355
|
+
}
|
|
2356
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt.e-disable {
|
|
2357
|
+
display: none;
|
|
2358
|
+
}
|
|
2359
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search {
|
|
2360
|
+
display: -ms-flexbox;
|
|
2361
|
+
display: flex;
|
|
2362
|
+
padding: 6px 20px;
|
|
2363
|
+
}
|
|
2364
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
2365
|
+
float: right;
|
|
2366
|
+
font-size: 14px;
|
|
2367
|
+
}
|
|
2368
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group .e-input-group-icon,
|
|
2369
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
2370
|
+
border-width: 0 !important;
|
|
2371
|
+
cursor: text !important;
|
|
2372
|
+
}
|
|
2373
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group-icon:hover {
|
|
2374
|
+
background-color: transparent !important;
|
|
2375
|
+
border: transparent !important;
|
|
2376
|
+
color: currentColor !important;
|
|
2377
|
+
}
|
|
2378
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-tree-outer-div .e-disable,
|
|
2379
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-disable {
|
|
2380
|
+
display: none !important;
|
|
2381
|
+
}
|
|
2288
2382
|
.e-pivotfieldlist-container .e-calculated-field {
|
|
2289
2383
|
color: #fff;
|
|
2290
2384
|
font-size: 13px;
|
|
@@ -2369,7 +2463,7 @@
|
|
|
2369
2463
|
width: 100%;
|
|
2370
2464
|
}
|
|
2371
2465
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-field-table .e-field-list-tree-outer-div {
|
|
2372
|
-
height:
|
|
2466
|
+
height: 180px;
|
|
2373
2467
|
}
|
|
2374
2468
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-center-div {
|
|
2375
2469
|
display: none;
|
|
@@ -2431,6 +2525,11 @@
|
|
|
2431
2525
|
background-color: transparent;
|
|
2432
2526
|
color: #616161;
|
|
2433
2527
|
}
|
|
2528
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2529
|
+
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2530
|
+
height: 210px;
|
|
2531
|
+
overflow: auto;
|
|
2532
|
+
}
|
|
2434
2533
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2435
2534
|
display: -ms-flexbox;
|
|
2436
2535
|
display: flex;
|
|
@@ -3321,4 +3420,41 @@
|
|
|
3321
3420
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-pivot-button .e-edit {
|
|
3322
3421
|
padding-left: 0;
|
|
3323
3422
|
padding-right: 4px;
|
|
3423
|
+
}
|
|
3424
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
3425
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
3426
|
+
max-height: 750px;
|
|
3427
|
+
}
|
|
3428
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container,
|
|
3429
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container {
|
|
3430
|
+
max-height: 800px;
|
|
3431
|
+
}
|
|
3432
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table,
|
|
3433
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
3434
|
+
height: 270px;
|
|
3435
|
+
}
|
|
3436
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3437
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3438
|
+
max-height: 600px !important;
|
|
3439
|
+
min-height: 550px !important;
|
|
3440
|
+
}
|
|
3441
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3442
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
3443
|
+
height: 387px;
|
|
3444
|
+
}
|
|
3445
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table,
|
|
3446
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
3447
|
+
height: 400px !important;
|
|
3448
|
+
}
|
|
3449
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table,
|
|
3450
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
3451
|
+
height: 404px;
|
|
3452
|
+
}
|
|
3453
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3454
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3455
|
+
height: 165px !important;
|
|
3456
|
+
}
|
|
3457
|
+
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3458
|
+
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3459
|
+
max-height: 190px;
|
|
3324
3460
|
}
|