@syncfusion/ej2-angular-pivotview 23.1.44-ngcc → 23.1.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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +65 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +163 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +353 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +353 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +26 -12
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/material3-dark.css +0 -55
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +0 -111
- package/styles/material3.scss +1 -0
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +231 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +213 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +213 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +217 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +219 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +213 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +217 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +216 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +214 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +214 -0
- package/styles/pivotfieldlist/_layout.scss +1951 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +214 -0
- package/styles/pivotfieldlist/_material-definition.scss +214 -0
- package/styles/pivotfieldlist/_material3-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_material3-definition.scss +224 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +217 -0
- package/styles/pivotfieldlist/_theme.scss +1972 -0
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_material.scss +358 -0
- package/styles/pivotfieldlist/icons/_material3-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_material3.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/material3-dark.scss +4 -1
- package/styles/pivotfieldlist/material3.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +176 -0
- package/styles/pivotview/_bootstrap-definition.scss +173 -0
- package/styles/pivotview/_bootstrap4-definition.scss +173 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +178 -0
- package/styles/pivotview/_fabric-dark-definition.scss +175 -0
- package/styles/pivotview/_fabric-definition.scss +172 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +178 -0
- package/styles/pivotview/_fusionnew-definition.scss +178 -0
- package/styles/pivotview/_highcontrast-definition.scss +171 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +172 -0
- package/styles/pivotview/_layout.scss +1169 -0
- package/styles/pivotview/_material-dark-definition.scss +179 -0
- package/styles/pivotview/_material-definition.scss +175 -0
- package/styles/pivotview/_material3-dark-definition.scss +1 -0
- package/styles/pivotview/_material3-definition.scss +181 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +178 -0
- package/styles/pivotview/_theme.scss +2042 -0
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3-dark.scss +1 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/material3-dark.scss +4 -1
- package/styles/pivotview/material3.scss +5 -1
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.scss +5 -1
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -439
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -409
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -870
- package/dist/ej2-angular-pivotview.umd.js +0 -725
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
@include export-module('field-list-icons') {
|
|
2
|
+
|
|
3
|
+
/*! field-list component icons */
|
|
4
|
+
.e-pivotfieldlist {
|
|
5
|
+
.e-select-table::before {
|
|
6
|
+
content: '\e751';
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.e-pivot-formatting-dialog {
|
|
11
|
+
.e-format-delete-icon::before {
|
|
12
|
+
content: '\e7e7';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-add-icon::before {
|
|
16
|
+
content: '\e805';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-colorpicker-wrapper .e-format-back-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
20
|
+
.e-colorpicker-container .e-format-back-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
21
|
+
content: '\e783';
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.e-colorpicker-wrapper .e-format-font-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
25
|
+
.e-colorpicker-container .e-format-font-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
26
|
+
content: '\e76f';
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-level-options {
|
|
31
|
+
.e-selected-level-icon::before {
|
|
32
|
+
content: '\e774';
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.e-pivot-calc-dialog-div {
|
|
37
|
+
.e-drag::before {
|
|
38
|
+
content: '\e726';
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.e-pivot-all-field-title-wrapper .e-info.e-icons::before,
|
|
42
|
+
.e-pivot-all-field-title-container .e-info.e-icons::before {
|
|
43
|
+
content: '\e800';
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-list-item .e-text-content .e-edited.e-icons::before {
|
|
47
|
+
content: '\e740';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-list-item .e-text-content .e-edit.e-icons::before {
|
|
51
|
+
content: '\e730';
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-list-item .e-text-content .e-remove-report.e-icons::before {
|
|
55
|
+
content: '\e820';
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-remove-report.e-icons::before {
|
|
59
|
+
content: '\e820';
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-list-item .e-text-content .e-format.e-icons::before {
|
|
63
|
+
content: '\e748';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/* stylelint-disable */
|
|
67
|
+
.e-measureGroupCDB-icon::before {
|
|
68
|
+
content: '\e7d2' !important;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.e-measure-icon::before {
|
|
72
|
+
content: '\e7d2' !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.e-folderCDB-icon::before {
|
|
76
|
+
content: '\e83c' !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.e-folderCDB-open-icon::before {
|
|
80
|
+
content: '\e760' !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.e-dimensionCDB-icon::before {
|
|
84
|
+
content: '\e81d' !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.e-kpiCDB-icon::before {
|
|
88
|
+
content: '\e73f' !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.e-kpiGoal-icon::before {
|
|
92
|
+
content: '\e73f' !important;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.e-kpiStatus-icon::before {
|
|
96
|
+
content: '\e73f' !important;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.e-kpiTrend-icon::before {
|
|
100
|
+
content: '\e73f' !important;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.e-kpiValue-icon::before {
|
|
104
|
+
content: '\e73f' !important;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-namedSetCDB-icon::before {
|
|
108
|
+
content: '\e829' !important;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-hierarchyCDB-icon::before {
|
|
112
|
+
content: '\e709' !important;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-attributeCDB-icon::before {
|
|
116
|
+
content: '\e73e' !important;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.e-hierarchy-level-0-icon::before {
|
|
120
|
+
content: '\e76a' !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.e-hierarchy-level-1-icon::before {
|
|
124
|
+
content: '\e76a' !important;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-hierarchy-level-2-icon::before {
|
|
128
|
+
content: '\e807' !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.e-hierarchy-level-3-icon::before {
|
|
132
|
+
content: '\e780' !important;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.e-hierarchy-level-4-icon::before {
|
|
136
|
+
content: '\e711' !important;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-hierarchy-level-5-icon::before {
|
|
140
|
+
content: '\e837' !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-calcMemberGroupCDB::before {
|
|
144
|
+
content: '\e798' !important;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.e-calc-measure-icon::before {
|
|
148
|
+
content: '\e7d2' !important;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-calc-dimension-icon::before {
|
|
152
|
+
content: '\e81d' !important;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-sort-none::before {
|
|
156
|
+
content: '\e824' !important;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-sort-ascend::before {
|
|
160
|
+
content: '\e7df' !important;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-sort-descend::before {
|
|
164
|
+
content: '\e7d8' !important;
|
|
165
|
+
}
|
|
166
|
+
/* stylelint-enable */
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.e-pivotfieldlist-wrapper,
|
|
170
|
+
.e-pivotfieldlist-container {
|
|
171
|
+
.e-field-list-back-icon::before {
|
|
172
|
+
content: '\e773';
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.e-sort::before {
|
|
176
|
+
content: '\e7df';
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.e-pv-filter::before {
|
|
180
|
+
content: '\e7f7';
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.e-pv-filtered::before {
|
|
184
|
+
content: '\e735';
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.e-drag::before {
|
|
188
|
+
content: '\e726';
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.e-add-icon::before {
|
|
192
|
+
content: '\e805';
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.e-remove::before {
|
|
196
|
+
content: '\e7e7';
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.e-axis-rows::before {
|
|
200
|
+
content: '\e7e6';
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.e-axis-columns::before {
|
|
204
|
+
content: '\e76b';
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.e-axis-values::before {
|
|
208
|
+
content: '\e7d2';
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.e-axis-filters::before {
|
|
212
|
+
content: '\e7f7';
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-selected-option-icon::before {
|
|
216
|
+
content: '\e72b';
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.e-clear-filter-icon::before {
|
|
220
|
+
content: '\e72c';
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.e-dropdown-icon::before {
|
|
224
|
+
content: '\e729';
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
/* stylelint-disable */
|
|
228
|
+
.e-measureGroupCDB-icon::before {
|
|
229
|
+
content: '\e7d2' !important;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.e-measure-icon::before {
|
|
233
|
+
content: '\e7d2' !important;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.e-folderCDB-icon::before {
|
|
237
|
+
content: '\e83c' !important;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.e-folderCDB-open-icon::before {
|
|
241
|
+
content: '\e760' !important;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.e-dimensionCDB-icon::before {
|
|
245
|
+
content: '\e81d' !important;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
.e-kpiCDB-icon::before {
|
|
249
|
+
content: '\e73f' !important;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.e-kpiGoal-icon::before {
|
|
253
|
+
content: '\e73f' !important;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.e-kpiStatus-icon::before {
|
|
257
|
+
content: '\e73f' !important;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.e-kpiTrend-icon::before {
|
|
261
|
+
content: '\e73f' !important;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.e-kpiValue-icon::before {
|
|
265
|
+
content: '\e73f' !important;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
.e-namedSetCDB-icon::before {
|
|
269
|
+
content: '\e829' !important;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.e-hierarchyCDB-icon::before {
|
|
273
|
+
content: '\e709' !important;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.e-attributeCDB-icon::before {
|
|
277
|
+
content: '\e73e' !important;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.e-hierarchy-level-0-icon::before {
|
|
281
|
+
content: '\e76a' !important;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.e-hierarchy-level-1-icon::before {
|
|
285
|
+
content: '\e76a' !important;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.e-hierarchy-level-2-icon::before {
|
|
289
|
+
content: '\e807' !important;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.e-hierarchy-level-3-icon::before {
|
|
293
|
+
content: '\e780' !important;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.e-hierarchy-level-4-icon::before {
|
|
297
|
+
content: '\e711' !important;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.e-hierarchy-level-5-icon::before {
|
|
301
|
+
content: '\e837' !important;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
.e-calcMemberGroupCDB::before {
|
|
305
|
+
content: '\e798' !important;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.e-calc-measure-icon::before {
|
|
309
|
+
content: '\e7d2' !important;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.e-calc-dimension-icon::before {
|
|
313
|
+
content: '\e81d' !important;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
.e-sort-none::before {
|
|
317
|
+
content: '\e824' !important;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.e-sort-ascend::before {
|
|
321
|
+
content: '\e7df' !important;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.e-sort-descend::before {
|
|
325
|
+
content: '\e7d8' !important;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.e-field-list-search-icon::before {
|
|
329
|
+
content: '\e754' !important;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
/* stylelint-enable */
|
|
333
|
+
|
|
334
|
+
.e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
335
|
+
content: '\e740';
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
.e-pivot-calc-outer-div .e-pivot-accord .e-edit.e-icons::before {
|
|
339
|
+
content: '\e730';
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.e-pivot-calc-outer-div .e-pivot-accord .e-remove-report.e-icons::before {
|
|
343
|
+
content: '\e820';
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.e-pivot-button .e-edit::before {
|
|
347
|
+
content: '\e730';
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
.e-sort-ascend-icon::before {
|
|
351
|
+
content: '\e7a3';
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.e-sort-descend-icon::before {
|
|
355
|
+
content: '\e7b6';
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
}
|
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
@include export-module('field-list-icons') {
|
|
2
|
+
|
|
3
|
+
/*! field-list component icons */
|
|
4
|
+
.e-pivotfieldlist {
|
|
5
|
+
.e-select-table::before {
|
|
6
|
+
content: '\e434';
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.e-pivot-formatting-dialog {
|
|
11
|
+
.e-format-delete-icon::before {
|
|
12
|
+
content: '\ea7f';
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.e-add-icon::before {
|
|
16
|
+
content: '\e823';
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.e-colorpicker-wrapper .e-format-back-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
20
|
+
.e-colorpicker-container .e-format-back-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
21
|
+
content: '\e35c';
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.e-colorpicker-wrapper .e-format-font-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
25
|
+
.e-colorpicker-container .e-format-font-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
26
|
+
content: '\e35f';
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-level-options {
|
|
31
|
+
.e-selected-level-icon::before {
|
|
32
|
+
content: '\e614';
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.e-pivot-calc-dialog-div {
|
|
37
|
+
.e-drag::before {
|
|
38
|
+
content: '\e330';
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.e-pivot-all-field-title-wrapper .e-info.e-icons::before,
|
|
42
|
+
.e-pivot-all-field-title-container .e-info.e-icons::before {
|
|
43
|
+
content: '\e607';
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-list-item .e-text-content .e-edited.e-icons::before {
|
|
47
|
+
content: '\e7a3';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-list-item .e-text-content .e-edit.e-icons::before {
|
|
51
|
+
content: '\e97c';
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-list-item .e-text-content .e-remove-report.e-icons::before {
|
|
55
|
+
content: '\e704';
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-remove-report.e-icons::before {
|
|
59
|
+
content: '\e704';
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-list-item .e-text-content .e-format.e-icons::before {
|
|
63
|
+
content: '\e22f';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
/* stylelint-disable */
|
|
67
|
+
.e-measureGroupCDB-icon::before {
|
|
68
|
+
content: '\ebad' !important;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.e-measure-icon::before {
|
|
72
|
+
content: '\ebad' !important;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.e-folderCDB-icon::before {
|
|
76
|
+
content: '\e60b' !important;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.e-folderCDB-open-icon::before {
|
|
80
|
+
content: '\e609' !important;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.e-dimensionCDB-icon::before {
|
|
84
|
+
content: '\e65b' !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.e-kpiCDB-icon::before {
|
|
88
|
+
content: '\e664' !important;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.e-kpiGoal-icon::before {
|
|
92
|
+
content: '\e664' !important;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.e-kpiStatus-icon::before {
|
|
96
|
+
content: '\e664' !important;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.e-kpiTrend-icon::before {
|
|
100
|
+
content: '\e664' !important;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.e-kpiValue-icon::before {
|
|
104
|
+
content: '\e664' !important;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-namedSetCDB-icon::before {
|
|
108
|
+
content: '\e65d' !important;
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-hierarchyCDB-icon::before {
|
|
112
|
+
content: '\e663' !important;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-attributeCDB-icon::before {
|
|
116
|
+
content: '\e65c' !important;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.e-hierarchy-level-0-icon::before {
|
|
120
|
+
content: '\e65a' !important;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.e-hierarchy-level-1-icon::before {
|
|
124
|
+
content: '\e65a' !important;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-hierarchy-level-2-icon::before {
|
|
128
|
+
content: '\e662' !important;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.e-hierarchy-level-3-icon::before {
|
|
132
|
+
content: '\e65e' !important;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.e-hierarchy-level-4-icon::before {
|
|
136
|
+
content: '\e660' !important;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-hierarchy-level-5-icon::before {
|
|
140
|
+
content: '\e661' !important;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-calcMemberGroupCDB::before {
|
|
144
|
+
content: '\e731' !important;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.e-calc-measure-icon::before {
|
|
148
|
+
content: '\ebad' !important;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-calc-dimension-icon::before {
|
|
152
|
+
content: '\e65b' !important;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-sort-none::before {
|
|
156
|
+
content: '\e666' !important;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-sort-ascend::before {
|
|
160
|
+
content: '\e667' !important;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-sort-descend::before {
|
|
164
|
+
content: '\e665' !important;
|
|
165
|
+
}
|
|
166
|
+
/* stylelint-enable */
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
.e-pivotfieldlist-wrapper,
|
|
170
|
+
.e-pivotfieldlist-container {
|
|
171
|
+
.e-field-list-back-icon::before {
|
|
172
|
+
content: '\e962';
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.e-sort::before {
|
|
176
|
+
content: '\ea7c';
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.e-pv-filter::before {
|
|
180
|
+
content: '\ebb4';
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
.e-pv-filtered::before {
|
|
184
|
+
color: $field-list-active-color;
|
|
185
|
+
content: '\ebac';
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.e-drag::before {
|
|
189
|
+
content: '\e330';
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.e-add-icon::before {
|
|
193
|
+
content: '\e823';
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.e-remove::before {
|
|
197
|
+
content: '\ea7f';
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.e-axis-rows::before {
|
|
201
|
+
content: '\ebb1';
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.e-axis-columns::before {
|
|
205
|
+
content: '\ebaf';
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.e-axis-values::before {
|
|
209
|
+
content: '\ebad';
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.e-axis-filters::before {
|
|
213
|
+
content: '\ebb4';
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.e-selected-option-icon::before {
|
|
217
|
+
content: '\ea84';
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.e-clear-filter-icon::before {
|
|
221
|
+
content: '\ebae';
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.e-dropdown-icon::before {
|
|
225
|
+
content: '\e84f';
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/* stylelint-disable */
|
|
229
|
+
.e-measureGroupCDB-icon::before {
|
|
230
|
+
content: '\ebad' !important;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.e-measure-icon::before {
|
|
234
|
+
content: '\ebad' !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.e-folderCDB-icon::before {
|
|
238
|
+
content: '\e60b' !important;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.e-folderCDB-open-icon::before {
|
|
242
|
+
content: '\e609' !important;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.e-dimensionCDB-icon::before {
|
|
246
|
+
content: '\e65b' !important;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.e-kpiCDB-icon::before {
|
|
250
|
+
content: '\e664' !important;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.e-kpiGoal-icon::before {
|
|
254
|
+
content: '\e664' !important;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.e-kpiStatus-icon::before {
|
|
258
|
+
content: '\e664' !important;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.e-kpiTrend-icon::before {
|
|
262
|
+
content: '\e664' !important;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.e-kpiValue-icon::before {
|
|
266
|
+
content: '\e664' !important;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.e-namedSetCDB-icon::before {
|
|
270
|
+
content: '\e65d' !important;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.e-hierarchyCDB-icon::before {
|
|
274
|
+
content: '\e663' !important;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.e-attributeCDB-icon::before {
|
|
278
|
+
content: '\e65c' !important;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.e-hierarchy-level-0-icon::before {
|
|
282
|
+
content: '\e65a' !important;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.e-hierarchy-level-1-icon::before {
|
|
286
|
+
content: '\e65a' !important;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.e-hierarchy-level-2-icon::before {
|
|
290
|
+
content: '\e662' !important;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.e-hierarchy-level-3-icon::before {
|
|
294
|
+
content: '\e65e' !important;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
.e-hierarchy-level-4-icon::before {
|
|
298
|
+
content: '\e660' !important;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.e-hierarchy-level-5-icon::before {
|
|
302
|
+
content: '\e661' !important;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
.e-calcMemberGroupCDB::before {
|
|
306
|
+
content: '\e731' !important;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
.e-calc-measure-icon::before {
|
|
310
|
+
content: '\ebad' !important;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
.e-calc-dimension-icon::before {
|
|
314
|
+
content: '\e65b' !important;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.e-sort-none::before {
|
|
318
|
+
content: '\e666' !important;
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.e-sort-ascend::before {
|
|
322
|
+
content: '\e667' !important;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.e-sort-descend::before {
|
|
326
|
+
content: '\e665' !important;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
.e-field-list-search-icon::before {
|
|
330
|
+
content: '\e275' !important;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
/* stylelint-enable */
|
|
334
|
+
|
|
335
|
+
.e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
336
|
+
content: '\e7a3';
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
.e-pivot-calc-outer-div .e-pivot-accord .e-edit.e-icons::before {
|
|
340
|
+
content: '\e97c';
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.e-pivot-calc-outer-div .e-pivot-accord .e-remove-report.e-icons::before {
|
|
344
|
+
content: '\e704';
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.e-pivot-button .e-edit::before {
|
|
348
|
+
content: '\e97c';
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.e-sort-ascend-icon::before {
|
|
352
|
+
content: '\e734';
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.e-sort-descend-icon::before {
|
|
356
|
+
content: '\e733';
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|