@syncfusion/ej2-angular-pivotview 21.2.10-ngcc → 21.2.10

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.
Files changed (136) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +8 -0
  3. package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
  4. package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
  5. package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
  6. package/esm2020/src/pivotview/pivotview-all.module.mjs +65 -0
  7. package/esm2020/src/pivotview/pivotview.component.mjs +163 -0
  8. package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
  9. package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +353 -0
  11. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +353 -0
  13. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  14. package/package.json +27 -13
  15. package/schematics/utils/lib-details.d.ts +2 -2
  16. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
  17. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
  18. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
  19. package/src/pivotview/pivotview-all.module.d.ts +6 -0
  20. package/src/pivotview/pivotview.component.d.ts +3 -0
  21. package/src/pivotview/pivotview.module.d.ts +6 -0
  22. package/styles/pivotfieldlist/_all.scss +2 -0
  23. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +238 -0
  24. package/styles/pivotfieldlist/_bootstrap-definition.scss +194 -0
  25. package/styles/pivotfieldlist/_bootstrap4-definition.scss +194 -0
  26. package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
  27. package/styles/pivotfieldlist/_bootstrap5-definition.scss +198 -0
  28. package/styles/pivotfieldlist/_fabric-dark-definition.scss +200 -0
  29. package/styles/pivotfieldlist/_fabric-definition.scss +194 -0
  30. package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
  31. package/styles/pivotfieldlist/_fluent-definition.scss +198 -0
  32. package/styles/pivotfieldlist/_fusionnew-definition.scss +197 -0
  33. package/styles/pivotfieldlist/_highcontrast-definition.scss +195 -0
  34. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +195 -0
  35. package/styles/pivotfieldlist/_layout.scss +1986 -0
  36. package/styles/pivotfieldlist/_material-dark-definition.scss +195 -0
  37. package/styles/pivotfieldlist/_material-definition.scss +195 -0
  38. package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
  39. package/styles/pivotfieldlist/_tailwind-definition.scss +198 -0
  40. package/styles/pivotfieldlist/_theme.scss +1990 -0
  41. package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
  42. package/styles/pivotfieldlist/bootstrap.scss +4 -1
  43. package/styles/pivotfieldlist/bootstrap4.scss +4 -1
  44. package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
  45. package/styles/pivotfieldlist/bootstrap5.scss +4 -1
  46. package/styles/pivotfieldlist/fabric-dark.scss +4 -1
  47. package/styles/pivotfieldlist/fabric.scss +4 -1
  48. package/styles/pivotfieldlist/fluent-dark.scss +4 -1
  49. package/styles/pivotfieldlist/fluent.scss +4 -1
  50. package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
  51. package/styles/pivotfieldlist/highcontrast.scss +4 -1
  52. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
  53. package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
  54. package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
  55. package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
  56. package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
  57. package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
  58. package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
  59. package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
  60. package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
  61. package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
  62. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
  63. package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
  64. package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
  65. package/styles/pivotfieldlist/icons/_material.scss +358 -0
  66. package/styles/pivotfieldlist/icons/_material3.scss +353 -0
  67. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
  68. package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
  69. package/styles/pivotfieldlist/material-dark.scss +4 -1
  70. package/styles/pivotfieldlist/material.scss +4 -1
  71. package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
  72. package/styles/pivotfieldlist/tailwind.scss +4 -1
  73. package/styles/pivotview/_all.scss +2 -0
  74. package/styles/pivotview/_bootstrap-dark-definition.scss +164 -0
  75. package/styles/pivotview/_bootstrap-definition.scss +161 -0
  76. package/styles/pivotview/_bootstrap4-definition.scss +161 -0
  77. package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
  78. package/styles/pivotview/_bootstrap5-definition.scss +166 -0
  79. package/styles/pivotview/_fabric-dark-definition.scss +163 -0
  80. package/styles/pivotview/_fabric-definition.scss +160 -0
  81. package/styles/pivotview/_fluent-dark-definition.scss +1 -0
  82. package/styles/pivotview/_fluent-definition.scss +166 -0
  83. package/styles/pivotview/_fusionnew-definition.scss +166 -0
  84. package/styles/pivotview/_highcontrast-definition.scss +159 -0
  85. package/styles/pivotview/_highcontrast-light-definition.scss +160 -0
  86. package/styles/pivotview/_layout.scss +1118 -0
  87. package/styles/pivotview/_material-dark-definition.scss +167 -0
  88. package/styles/pivotview/_material-definition.scss +163 -0
  89. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  90. package/styles/pivotview/_tailwind-definition.scss +166 -0
  91. package/styles/pivotview/_theme.scss +2025 -0
  92. package/styles/pivotview/bootstrap-dark.scss +5 -1
  93. package/styles/pivotview/bootstrap.scss +5 -1
  94. package/styles/pivotview/bootstrap4.scss +5 -1
  95. package/styles/pivotview/bootstrap5-dark.scss +4 -1
  96. package/styles/pivotview/bootstrap5.scss +5 -1
  97. package/styles/pivotview/fabric-dark.scss +5 -1
  98. package/styles/pivotview/fabric.scss +5 -1
  99. package/styles/pivotview/fluent-dark.scss +4 -1
  100. package/styles/pivotview/fluent.scss +5 -1
  101. package/styles/pivotview/highcontrast-light.scss +5 -1
  102. package/styles/pivotview/highcontrast.scss +5 -1
  103. package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
  104. package/styles/pivotview/icons/_bootstrap.scss +184 -0
  105. package/styles/pivotview/icons/_bootstrap4.scss +184 -0
  106. package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
  107. package/styles/pivotview/icons/_bootstrap5.scss +183 -0
  108. package/styles/pivotview/icons/_fabric-dark.scss +184 -0
  109. package/styles/pivotview/icons/_fabric.scss +184 -0
  110. package/styles/pivotview/icons/_fluent-dark.scss +1 -0
  111. package/styles/pivotview/icons/_fluent.scss +183 -0
  112. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  113. package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
  114. package/styles/pivotview/icons/_highcontrast.scss +183 -0
  115. package/styles/pivotview/icons/_material-dark.scss +184 -0
  116. package/styles/pivotview/icons/_material.scss +184 -0
  117. package/styles/pivotview/icons/_material3.scss +183 -0
  118. package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
  119. package/styles/pivotview/icons/_tailwind.scss +183 -0
  120. package/styles/pivotview/material-dark.scss +5 -1
  121. package/styles/pivotview/material.scss +5 -1
  122. package/styles/pivotview/tailwind-dark.scss +4 -1
  123. package/styles/pivotview/tailwind.scss +5 -1
  124. package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
  125. package/@syncfusion/ej2-angular-pivotview.es5.js +0 -439
  126. package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
  127. package/@syncfusion/ej2-angular-pivotview.js +0 -409
  128. package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
  129. package/CHANGELOG.md +0 -913
  130. package/dist/ej2-angular-pivotview.umd.js +0 -706
  131. package/dist/ej2-angular-pivotview.umd.js.map +0 -1
  132. package/dist/ej2-angular-pivotview.umd.min.js +0 -11
  133. package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
  134. package/ej2-angular-pivotview.d.ts +0 -6
  135. package/ej2-angular-pivotview.metadata.json +0 -1
  136. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,1118 @@
1
+ @include export-module('pivotview-layout') {
2
+
3
+ /*! PivotView layout */
4
+ .e-pivotview {
5
+
6
+ /* stylelint-disable */
7
+ .e-value-field-settings,
8
+ .e-member-editor-dialog,
9
+ .e-group-field-settings {
10
+ max-height: 450px !important;
11
+ border-radius: $pivotgrid-default-border-radius;
12
+ max-width: 400px !important;
13
+ width: auto !important;
14
+ }
15
+
16
+ .e-pivot-format-dialog {
17
+ border-radius: $pivotgrid-default-border-radius;
18
+ max-width: 400px !important;
19
+ width: auto !important;
20
+ }
21
+ /* stylelint-enable */
22
+
23
+ .e-value-field-settings {
24
+ .e-field-name-text-container {
25
+ display: flex;
26
+ }
27
+
28
+ .e-field-name-title {
29
+ flex: none;
30
+ font-size: 13px;
31
+ font-weight: 500;
32
+ }
33
+
34
+ .e-field-name-content {
35
+ flex: auto;
36
+ font-size: 13px;
37
+ font-weight: 500;
38
+ width: 100%;
39
+ }
40
+
41
+ .e-caption-input-container,
42
+ .e-type-option-container,
43
+ .e-base-field-option-container,
44
+ .e-base-item-option-container {
45
+ padding-top: $pivotgrid-editor-search-padding-size;
46
+ }
47
+
48
+ .e-base-field-option-text,
49
+ .e-base-item-option-text,
50
+ .e-type-option-text {
51
+ font-size: 13px;
52
+ font-weight: 500;
53
+ width: 100%;
54
+
55
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
56
+ padding-bottom: 4px;
57
+ }
58
+ }
59
+
60
+ .e-caption-input-text {
61
+ font-size: 13px;
62
+ }
63
+ }
64
+
65
+ .e-group-field-settings {
66
+ .e-caption-option-text,
67
+ .e-input-option-text,
68
+ .e-group-inerval-option-text,
69
+ .e-checkbox-wrapper {
70
+ padding-bottom: $pivotgrid-grouping-padding-bottom;
71
+ }
72
+
73
+ .e-group-start-option-container .e-checkbox-wrapper {
74
+ padding-top: $pivotgrid-grouping-padding-top;
75
+ }
76
+
77
+ .e-caption-option-text,
78
+ .e-input-option-text,
79
+ .e-group-inerval-option-text,
80
+ .e-checkbox-wrapper .e-label {
81
+ font-size: 13px;
82
+ font-weight: 500;
83
+ width: 100%;
84
+ }
85
+
86
+ .e-group-input-container,
87
+ .e-group-end-option-container,
88
+ .e-group-interval-option-container {
89
+ padding-top: $pivotgrid-editor-search-padding-size;
90
+ }
91
+
92
+ .e-group-field-div-content {
93
+ margin-bottom: 10px;
94
+ }
95
+ }
96
+
97
+ .e-member-editor-dialog {
98
+ min-width: 320px;
99
+
100
+ .e-editor-search-container {
101
+ display: flex;
102
+ padding: 0 $pivotgrid-editor-search-padding-size 10px;
103
+ @if ($skin-name == 'FluentUI') {
104
+ padding-top: 1px;
105
+ }
106
+
107
+ .e-clear-icon-hide {
108
+ display: inline-block;
109
+ visibility: hidden;
110
+ }
111
+ }
112
+
113
+ @if ($pivotgrid-skin == 'bootstrap4') {
114
+ &:not(.e-excel-filter) {
115
+ .e-editor-search-container {
116
+ padding: 5px $pivotgrid-editor-search-padding-size 10px;
117
+ }
118
+ }
119
+ }
120
+
121
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') {
122
+ &:not(.e-excel-filter) {
123
+ .e-editor-search-container {
124
+ padding: 5px $pivotgrid-editor-search-padding-size 10px;
125
+ }
126
+ }
127
+ }
128
+
129
+ @if ($skin-name == 'tailwind') {
130
+ &:not(.e-excel-filter) {
131
+ .e-editor-search-container {
132
+ padding: 5px $pivotgrid-editor-search-padding-size 10px;
133
+ }
134
+ }
135
+ }
136
+
137
+ .e-filter-sort {
138
+ box-shadow: none;
139
+ margin-left: $pivotgrid-sort-wrapper-padding-size;
140
+
141
+ /* stylelint-disable */
142
+ .e-member-sort {
143
+ @if ($pivotgrid-skin == 'bootstrap4') {
144
+ background-color: $content-bg;
145
+ border-color: $gray-400;
146
+ color: $gray-700;
147
+ }
148
+
149
+ &:hover {
150
+ @if ($pivotgrid-skin == 'bootstrap4') {
151
+ background-color: $gray-600 !important;
152
+ border-color: $gray-600 !important;
153
+ color: $white !important;
154
+ }
155
+ }
156
+
157
+ &.e-active {
158
+ @if ($pivotgrid-skin == 'bootstrap4') {
159
+ background-color: $pivotgrid-sort-select-background-color;
160
+ border-color: $pivotgrid-sort-select-border-color;
161
+ color: $pivotgrid-sort-select-color;
162
+ outline: none;
163
+ }
164
+ }
165
+
166
+ .e-sort-ascend-icon,
167
+ .e-sort-descend-icon {
168
+ font-size: 16px;
169
+ }
170
+
171
+ &:focus {
172
+ @if ($pivotgrid-skin == 'bootstrap4') {
173
+ background-color: $gray-600 !important;
174
+ border-color: $gray-600 !important;
175
+ color: $white !important;
176
+ }
177
+
178
+ &.e-active {
179
+ @if ($skin-name == 'bootstrap4') {
180
+ background-color: $pivotgrid-sort-select-background-color;
181
+ border-color: $pivotgrid-sort-select-border-color;
182
+ color: $pivotgrid-sort-select-color;
183
+ outline: none;
184
+ }
185
+ }
186
+ }
187
+ }
188
+ }
189
+
190
+ .e-member-prompt {
191
+ padding: 15px $pivotgrid-editor-search-padding-size;
192
+ text-align: center;
193
+ width: 100%;
194
+ }
195
+
196
+ .e-member-editor-container-outer-div {
197
+ display: inline-block;
198
+ height: $pivotgrid-member-filter-list-height;
199
+ max-width: 400px;
200
+ overflow: auto;
201
+ width: 100%;
202
+ }
203
+
204
+ .e-member-editor-container {
205
+ display: inline-table;
206
+ width: 100%;
207
+
208
+ &.e-olap-field-list-tree {
209
+ overflow-x: auto;
210
+ }
211
+ }
212
+
213
+ .e-select-all-container ul,
214
+ .e-member-editor-container ul {
215
+ margin-left: $pivotgrid-member-filter-list-padding-size;
216
+ overflow: hidden;
217
+
218
+ li {
219
+ .e-list-text {
220
+ font-family: $field-list-font-family;
221
+ }
222
+
223
+ .e-list-icon {
224
+ margin: 0;
225
+ }
226
+ }
227
+ }
228
+
229
+ .e-select-all-container ul,
230
+ .e-member-editor-container ul {
231
+ margin-left: $pivotgrid-member-filter-list-padding-size;
232
+ overflow: hidden;
233
+
234
+ li {
235
+ .e-list-text {
236
+ font-family: $field-list-font-family;
237
+ }
238
+
239
+ .e-list-icon {
240
+ margin: 0;
241
+ }
242
+ }
243
+ }
244
+
245
+ .e-excelfilter {
246
+ padding-top: 20px;
247
+
248
+ @if ($skin-name == 'tailwind') {
249
+ padding-top: 12px;
250
+ }
251
+
252
+ .e-member-editor-container-outer-div {
253
+ height: $pivotgrid-excel-member-filter-height;
254
+ }
255
+
256
+ .e-editor-label-container {
257
+ opacity: $pivotgrid-editor-label-excel-opacity;
258
+ padding: $pivotgrid-editor-label-excel-padding-size;
259
+ }
260
+ }
261
+
262
+ .e-label-filter,
263
+ .e-value-filter {
264
+ height: $pivotgrid-excel-filter-height;
265
+ overflow: auto;
266
+ padding: 20px;
267
+ padding-bottom: 0;
268
+
269
+ .e-filter-text-div {
270
+ color: $pivotview-grid-header-font-color !important;
271
+ font-size: 13px;
272
+ font-weight: 500;
273
+ }
274
+
275
+ .e-filter-option-container-1,
276
+ .e-filter-option-container-2,
277
+ .e-separator-div {
278
+ padding-top: 20px;
279
+ }
280
+
281
+ .e-between-text-div {
282
+ padding: 8px 0;
283
+ }
284
+
285
+ .e-disable {
286
+ display: none;
287
+ }
288
+
289
+ @if ($skin-name == 'tailwind') {
290
+ padding-top: 0;
291
+ }
292
+
293
+ }
294
+
295
+ .e-filter-tab-container {
296
+ border: none;
297
+ /* stylelint-enable */
298
+
299
+ .e-tab-header {
300
+ .e-toolbar-item .e-icon-left + .e-tab-text {
301
+ margin: 0 0 0 6px;
302
+ }
303
+
304
+ .e-text-wrap {
305
+ .e-tab-icon {
306
+ height: 14px;
307
+ min-width: 14px;
308
+ width: 14px;
309
+ @if ($pivotgrid-skin == 'bootstrap4') or ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
310
+ height: auto;
311
+ }
312
+
313
+ &::before {
314
+ font-size: 14px;
315
+ }
316
+ }
317
+ }
318
+ }
319
+
320
+ &.e-rtl {
321
+ .e-tab-header {
322
+ .e-toolbar-item .e-icon-left + .e-tab-text {
323
+ margin: 0 6px 0 0;
324
+ }
325
+ }
326
+ }
327
+ }
328
+
329
+ /* stylelint-disable */
330
+ .e-disable {
331
+ display: none !important;
332
+ }
333
+
334
+ .e-clear-filter-button {
335
+ float: left;
336
+ margin: 0;
337
+
338
+ @if ($skin-name == 'FluentUI') {
339
+ margin-left: 0 !important;
340
+ margin-right: 0 !important;
341
+ }
342
+
343
+ &.e-disable {
344
+ display: none;
345
+ }
346
+ }
347
+ .e-editor-label-container {
348
+ background-color: $pivotgrid-editor-label-fill;
349
+ opacity: $pivotgrid-editor-label-excel-opacity;
350
+ padding: $pivotgrid-editor-label-padding-size;
351
+
352
+ .e-editor-label {
353
+ color: $pivotgrid-editor-label-color;
354
+ font: $pivotgrid-editor-label-font;
355
+ opacity: $pivotgrid-editor-label-opacity;
356
+ overflow: hidden;
357
+ text-overflow: ellipsis;
358
+ white-space: nowrap;
359
+ }
360
+ }
361
+
362
+ &.e-rtl {
363
+ .e-member-editor-outer-container {
364
+ .e-editor-search-container {
365
+ .e-filter-sort {
366
+ margin-left: 0;
367
+ margin-right: $pivotgrid-sort-wrapper-padding-size;
368
+ }
369
+ }
370
+
371
+ ul {
372
+ margin-left: 0;
373
+ margin-right: $pivotgrid-member-filter-list-padding-size;
374
+ }
375
+ }
376
+ .e-member-editor-outer-container {
377
+ .e-editor-search-container {
378
+ .e-filter-sort {
379
+ margin-left: 0;
380
+ margin-right: $pivotgrid-sort-wrapper-padding-size;
381
+ }
382
+ }
383
+
384
+ ul {
385
+ margin-left: 0;
386
+ margin-right: $pivotgrid-member-filter-list-padding-size;
387
+ }
388
+ }
389
+
390
+ .e-footer-content {
391
+ .e-clear-filter-button {
392
+ float: right;
393
+ margin: 0;
394
+ }
395
+ }
396
+ }
397
+
398
+ &.e-olap-editor-dialog {
399
+ .e-member-editor-outer-container {
400
+ .e-select-all-container ul,
401
+ .e-member-editor-container ul {
402
+ margin-left: 0;
403
+ }
404
+
405
+ .e-treeview ul:first-child {
406
+ padding-left: 10px;
407
+ padding-right: 10px;
408
+ }
409
+
410
+ .e-editor-search-container {
411
+ .e-level-drop {
412
+ margin: 0 5px;
413
+
414
+ .e-caret {
415
+ font-size: $pivotgrid-button-icon-size;
416
+ }
417
+
418
+ li .e-disabled {
419
+ opacity: .5;
420
+ pointer-events: none;
421
+ }
422
+ }
423
+ }
424
+ }
425
+ .e-member-editor-outer-container {
426
+ .e-select-all-container ul,
427
+ .e-member-editor-container ul {
428
+ margin-left: 0;
429
+ }
430
+
431
+ .e-treeview ul:first-child {
432
+ padding-left: 10px;
433
+ padding-right: 10px;
434
+ }
435
+
436
+ .e-editor-search-container {
437
+ .e-level-drop {
438
+ margin: 0 5px;
439
+
440
+ .e-caret {
441
+ font-size: $pivotgrid-button-icon-size;
442
+ }
443
+
444
+ li .e-disabled {
445
+ opacity: .5;
446
+ pointer-events: none;
447
+ }
448
+ }
449
+ }
450
+ }
451
+
452
+ &.e-rtl {
453
+ .e-member-editor-outer-container {
454
+ ul {
455
+ margin-right: 0;
456
+ }
457
+ }
458
+ }
459
+ }
460
+ }
461
+
462
+ .e-value-field-settings,
463
+ .e-member-editor-dialog,
464
+ .e-pivot-format-dialog,
465
+ .e-group-field-settings {
466
+
467
+ .e-dlg-header-content {
468
+ border: 0;
469
+ border-radius: $pivotgrid-default-border-radius;
470
+ font-weight: normal;
471
+ }
472
+
473
+ .e-footer-content {
474
+ border-top-left-radius: 0;
475
+ border-top-right-radius: 0;
476
+ border-radius: $pivotgrid-default-border-radius;
477
+
478
+ @if ($skin-name != 'FluentUI') {
479
+ padding-bottom: 8px;
480
+ padding-top: 8px;
481
+ }
482
+ }
483
+
484
+ .e-dlg-content {
485
+ overflow: hidden;
486
+
487
+ .e-empty-field::-webkit-input-placeholder {
488
+ color: $error-font-color !important;
489
+ font-weight: 600 !important;
490
+ }
491
+
492
+ .e-empty-field:-moz-placeholder {
493
+ color: $error-font-color !important;
494
+ font-weight: 600 !important;
495
+ }
496
+
497
+ .e-empty-field::-moz-placeholder {
498
+ color: $error-font-color !important;
499
+ font-weight: 600 !important;
500
+ }
501
+
502
+ .e-empty-field:-ms-input-placeholder {
503
+ color: $error-font-color !important;
504
+ font-weight: 600 !important;
505
+ }
506
+ }
507
+ }
508
+
509
+ .e-member-editor-dialog,
510
+ .e-pivot-format-dialog {
511
+ .e-dlg-content {
512
+ @if ($skin-name != 'FluentUI') {
513
+ padding: 0;
514
+ }
515
+
516
+ @if ($skin-name == 'FluentUI') {
517
+ padding-left: 0 !important;
518
+ padding-right: 0 !important;
519
+ }
520
+ }
521
+ }
522
+ /* stylelint-enable */
523
+
524
+ .e-value-field-settings,
525
+ .e-member-editor-dialog {
526
+ .e-footer-content {
527
+ border-top: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
528
+
529
+ @if ($skin-name == 'FluentUI') {
530
+ border-top: 0;
531
+ }
532
+ }
533
+ }
534
+
535
+ .e-value-field-settings,
536
+ .e-pivot-format-dialog {
537
+ min-width: 300px;
538
+
539
+ .e-dlg-content {
540
+ overflow: auto;
541
+
542
+ @if ($skin-name == 'tailwind') {
543
+ padding-top: 12px;
544
+ }
545
+ }
546
+ }
547
+
548
+ /* stylelint-disable */
549
+ .e-pivotchart-type-dialog {
550
+ max-width: 350px !important;
551
+ max-height: 380px !important;
552
+
553
+ .e-chart-type-option-container,
554
+ .e-chart-type-option-text {
555
+ padding-bottom: 20px;
556
+
557
+ .e-chart-type-option-text {
558
+ padding-bottom: 5px;
559
+ }
560
+ }
561
+
562
+ .e-multiple-axes-mode-container {
563
+ padding-top: 20px;
564
+
565
+ .e-multiple-axes-mode-text {
566
+ padding-bottom: 5px;
567
+ }
568
+ }
569
+
570
+ .e-dialog-multiple-axis,
571
+ .e-dialog-show-legend {
572
+ width: 49%;
573
+ }
574
+ }
575
+
576
+ .e-pivot-format-dialog {
577
+ max-height: 550px !important;
578
+ max-width: 350px !important;
579
+
580
+ .e-pivot-format-dialog-outer {
581
+ padding: 0 $pivotgrid-editor-search-padding-size;
582
+
583
+ .e-pivot-format-value-lable,
584
+ .e-pivot-format-lable,
585
+ .e-pivot-format-custom-lable,
586
+ .e-pivot-format-grouping-lable,
587
+ .e-pivot-format-decimal-lable {
588
+ font-weight: 500;
589
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
590
+ padding-bottom: 4px;
591
+ }
592
+ }
593
+
594
+ .e-pivot-format-value-drop,
595
+ .e-pivot-format-drop,
596
+ .e-pivot-format-custom-text,
597
+ .e-pivot-format-grouping-drop,
598
+ .e-pivot-format-decimal-drop {
599
+ margin-bottom: 20px;
600
+ @if ($skin-name == 'tailwind') {
601
+ margin-bottom: 12px;
602
+ }
603
+ }
604
+ }
605
+ }
606
+
607
+ .e-pivot-toolbar {
608
+ background: $pivotgrid-grp-bg-color;
609
+ border-bottom: 0;
610
+ border-style: solid;
611
+
612
+ @if($skin-name == 'FluentUI') {
613
+ box-shadow: none;
614
+ }
615
+
616
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
617
+ border-top: 1px solid $pivotgrid-border;
618
+ border-left: 1px solid $pivotgrid-border;
619
+ border-right: 1px solid $pivotgrid-border;
620
+ }
621
+
622
+ .e-toolbar-items {
623
+ background: $pivotgrid-grp-bg-color;
624
+ }
625
+
626
+ .e-toolbar-item .e-tbar-btn.e-btn {
627
+
628
+ .e-icons.e-btn-icon {
629
+
630
+ @if ($skin-name != 'bootstrap5') and ($skin-name != 'tailwind') and ($skin-name != 'FluentUI') {
631
+ font-size: 16px;
632
+ }
633
+ }
634
+ }
635
+
636
+ .e-pivot-toolbar-menu {
637
+ background-color: transparent;
638
+ border: none;
639
+ @if ($pivotgrid-skin == 'bootstrap4') {
640
+ background-color: $gray-100;
641
+ color: $gray-700;
642
+ }
643
+
644
+ ul .e-menu-item {
645
+ @if ($skin-name != 'tailwind') {
646
+ height: $pivotgrid-menubar-height !important;
647
+ }
648
+ overflow: hidden;
649
+ padding-left: 10px;
650
+
651
+ @if ($pivotgrid-skin == 'bootstrap4') {
652
+ background-color: $pivotgrid-grp-bg-color;
653
+ color: $gray-700;
654
+ }
655
+
656
+ @if ($pivotgrid-skin =='FluentUI') {
657
+ background-color: $pivotgrid-grp-bg-color;
658
+
659
+ &:hover {
660
+ background: $pivotgrid-grp-bg-hover-color;
661
+ }
662
+ }
663
+
664
+ .e-menu-icon {
665
+ margin-left: 0;
666
+ margin-right: 0;
667
+
668
+ @if ($skin-name != 'bootstrap5') and ($skin-name != 'tailwind') {
669
+ font-size: 16px;
670
+ }
671
+
672
+ @if ($pivotgrid-skin == 'bootstrap4') {
673
+ color: $gray-700;
674
+ }
675
+
676
+ @if ($pivotgrid-skin == 'FluentUI') {
677
+ color: $pivotgrid-active-color;
678
+ }
679
+
680
+ @if ($skin-name == 'bootstrap5') {
681
+ line-height: $pivotgrid-menubar-height;
682
+ }
683
+
684
+ @if ($skin-name == 'FluentUI') {
685
+ line-height: 28px;
686
+ }
687
+
688
+ @if ($skin-name == 'tailwind') {
689
+ line-height: 40px;
690
+ }
691
+ }
692
+
693
+ .e-caret {
694
+ @if ($pivotgrid-skin == 'bootstrap4') {
695
+ color: $gray-700;
696
+ }
697
+
698
+ @if ($pivotgrid-skin == 'FluentUI') {
699
+ color: $pivotgrid-active-color;
700
+ }
701
+
702
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
703
+ line-height: $pivotgrid-menubar-height;
704
+ }
705
+
706
+ @if ($skin-name == 'tailwind') {
707
+ line-height: 40px;
708
+ }
709
+ }
710
+ }
711
+
712
+ ul .e-menu-item.e-focused {
713
+ @if ($pivotgrid-skin == 'bootstrap4') {
714
+ background-color: $gray-600;
715
+ border-radius: $pivotgrid-default-border-radius;
716
+ }
717
+
718
+ .e-menu-icon,
719
+ .e-icons{
720
+ @if ($pivotgrid-skin == 'bootstrap4') {
721
+ color: $white;
722
+ }
723
+
724
+ @if ($pivotgrid-skin == 'FluentUI') {
725
+ color: $pivotgrid-active-color;
726
+ }
727
+ }
728
+ }
729
+
730
+ ul.e-menu {
731
+ @if ($pivotgrid-skin == 'fabric') or ($pivotgrid-skin == 'fabric-dark') or
732
+ ($pivotgrid-skin == 'highcontrast') or ($pivotgrid-skin == 'highcontrast-light') {
733
+ padding-left: 0 !important;
734
+ padding-right: 0 !important;
735
+ }
736
+ }
737
+ }
738
+
739
+ .e-tab .e-tab-header .e-toolbar-item.e-active {
740
+ margin-left: 18px !important;
741
+ /* stylelint-enable */
742
+ }
743
+
744
+ .e-toolbar-item.e-template {
745
+ /* stylelint-disable */
746
+ padding: 0 !important;
747
+ }
748
+
749
+ .e-reportlist-label {
750
+ float: left;
751
+ font-weight: 500;
752
+ /* stylelint-enable */
753
+ }
754
+
755
+ .e-reportlist-drop {
756
+ float: right;
757
+ margin: 0 8px;
758
+ }
759
+
760
+ &.e-rtl {
761
+ .e-reportlist-label {
762
+ float: right;
763
+ }
764
+
765
+ .e-reportlist-drop {
766
+ float: left;
767
+ }
768
+
769
+ .e-pivot-toolbar-menu {
770
+ ul .e-menu-item {
771
+ padding-left: 30px;
772
+ padding-right: 10px;
773
+ }
774
+ }
775
+ }
776
+ }
777
+
778
+ .e-frozenscrollbar {
779
+ background-color: $pivotgrid-grp-bg-color;
780
+ }
781
+ }
782
+
783
+ .e-pivotview-disable-icon {
784
+ visibility: hidden;
785
+ }
786
+
787
+ .e-pivotview-report-inner {
788
+ padding-top: 10px;
789
+ }
790
+
791
+ .e-pivotview-report-dialog {
792
+ /* stylelint-disable */
793
+ max-width: 350px !important;
794
+ }
795
+
796
+ .e-mdx-query-content {
797
+ background-color: $pivotgrid-table-background-color;
798
+ color: $pivotgrid-default-font-color;
799
+ font-size: 14px;
800
+ font-weight: 500;
801
+ height: 200px;
802
+ margin-top: 5px;
803
+ padding: 5px 10px;
804
+ resize: none;
805
+ width: 100%;
806
+ }
807
+
808
+ .e-pivotview-mdx-dialog {
809
+ max-width: 500px !important;
810
+ }
811
+ /* stylelint-enable */
812
+
813
+ .e-report-outer {
814
+ display: inline-block;
815
+ width: 100%;
816
+ @if ($skin-name == 'FluentUI') {
817
+ padding-top: 1px;
818
+ }
819
+ }
820
+
821
+ .e-pivotview-report-label {
822
+ float: left;
823
+ margin-top: $pivotgrid-report-label-margin-top;
824
+ width: 40%;
825
+ @if ($skin-name == 'bootstrap5') {
826
+ padding-left: 12px;
827
+ }
828
+ }
829
+
830
+ /* stylelint-disable */
831
+ .e-pivotview-report-input {
832
+ float: right;
833
+ width: 60% !important;
834
+ }
835
+
836
+ #{if(&, "&", "*")}.e-rtl {
837
+ .e-pivotview-report-input {
838
+ float: left;
839
+ }
840
+
841
+ .e-pivotview-report-label {
842
+ float: right;
843
+ }
844
+ }
845
+
846
+
847
+ .e-pivotview-pdf-export,
848
+ .e-pivotview-excel-export,
849
+ .e-pivotview-csv-export,
850
+ .e-pivotview-png-export,
851
+ .e-pivotview-jpeg-export,
852
+ .e-pivotview-svg-export {
853
+ font-size: 18px !important;
854
+ }
855
+ /* stylelint-enable */
856
+
857
+ .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul {
858
+ .e-dialog-multiple-axis .e-label,
859
+ .e-dialog-multiple-axis .e-label {
860
+ white-space: nowrap;
861
+ }
862
+ }
863
+
864
+ .e-drillthrough-dialog {
865
+ .e-drillthrough-body-header-container {
866
+ margin-bottom: 20px;
867
+
868
+ @if ($skin-name == 'bootstrap5') {
869
+ margin-bottom: 18px;
870
+ }
871
+ }
872
+
873
+ .e-drillthrough-body-header {
874
+ color: $pivotgrid-drillthrough-header-font-color;
875
+ font-weight: $pivotgrid-drillthrough-header-font-weight;
876
+ }
877
+
878
+ .e-drillthrough-body-header-value {
879
+ color: $pivotgrid-drillthrough-header-value-font-color;
880
+ margin-right: 20px;
881
+ }
882
+
883
+ /* stylelint-disable */
884
+ .e-drillthrough-body-header-common {
885
+ -webkit-flex-wrap: wrap;
886
+ -moz-flex-wrap: wrap;
887
+ -ms-flex-wrap: wrap;
888
+ display: inline-block;
889
+ flex-wrap: wrap;
890
+ }
891
+ /* stylelint-enable */
892
+ }
893
+
894
+ .e-bigger .e-pivotview,
895
+ .e-bigger.e-pivotview {
896
+ .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
897
+ @if ($skin-name != 'tailwind') and ($skin-name != 'bootstrap5') {
898
+ /* stylelint-disable */
899
+ height: $pivotgrid-bigger-menubar-height !important;
900
+ /* stylelint-enable */
901
+ }
902
+
903
+ .e-menu-icon {
904
+ @if ($skin-name == 'tailwind') {
905
+ line-height: 50px;
906
+ }
907
+ }
908
+
909
+ .e-caret {
910
+ @if ($skin-name == 'tailwind') {
911
+ line-height: 50px;
912
+ }
913
+ }
914
+ }
915
+
916
+ .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
917
+ height: $pivotgrid-member-filter-list-bigger-height;
918
+ }
919
+
920
+ /* stylelint-disable */
921
+ .e-member-editor-dialog {
922
+ .e-editor-search-container {
923
+ .e-filter-sort {
924
+ .e-member-sort {
925
+ .e-sort-ascend-icon,
926
+ .e-sort-descend-icon {
927
+ font-size: 18px;
928
+ }
929
+ }
930
+ }
931
+
932
+ .e-level-drop {
933
+ .e-caret {
934
+ font-size: $pivotgrid-bigger-button-icon-size !important;
935
+ }
936
+ }
937
+ }
938
+
939
+ .e-member-editor-outer-container ul {
940
+ @if ($pivotgrid-skin == 'bootstrap4') {
941
+ margin-left: -30px !important;
942
+ }
943
+ }
944
+
945
+ &.e-rtl {
946
+ .e-member-editor-outer-container ul {
947
+ @if ($pivotgrid-skin == 'bootstrap4') {
948
+ margin-right: -30px !important;
949
+ }
950
+ }
951
+ }
952
+ }
953
+
954
+ .e-member-editor-dialog {
955
+ .e-filter-tab-container {
956
+ .e-tab-header {
957
+ .e-toolbar-item .e-icon-left + .e-tab-text {
958
+ margin: 0 0 0 6px;
959
+ }
960
+ }
961
+
962
+ &.e-rtl {
963
+ .e-tab-header {
964
+ .e-toolbar-item .e-icon-left + .e-tab-text {
965
+ margin: 0 6px 0 0;
966
+ }
967
+ }
968
+ }
969
+ }
970
+
971
+ @if ($skin-name == 'FluentUI') or ($skin-name == 'fabric') or ($skin-name == 'fabric-dark') {
972
+ &.e-node-limit {
973
+ .e-excelfilter {
974
+ .e-member-editor-container-outer-div {
975
+ height: 82px !important;
976
+ @if ($skin-name == 'fabric') or ($skin-name == 'fabric-dark') {
977
+ height: 96px !important;
978
+ }
979
+ }
980
+ }
981
+ }
982
+ }
983
+
984
+ .e-excelfilter {
985
+ .e-member-editor-container-outer-div {
986
+ height: $pivotgrid-excel-member-filter-bigger-height !important;
987
+ }
988
+ @if ($skin-name == 'tailwind') {
989
+ padding-top: 16px;
990
+ }
991
+ }
992
+
993
+ .e-label-filter,
994
+ .e-value-filter {
995
+ height: $pivotgrid-excel-filter-bigger-height;
996
+
997
+ .e-filter-text-div {
998
+ font-size: 14px;
999
+ }
1000
+
1001
+ .e-filter-option-container-1,
1002
+ .e-filter-option-container-2,
1003
+ .e-separator-div {
1004
+ padding-top: 24px;
1005
+ }
1006
+
1007
+ .e-between-text-div {
1008
+ padding: 10px 0;
1009
+ }
1010
+ }
1011
+
1012
+ &.e-excel-filter {
1013
+ min-width: $pivotgrid-bigger-excel-dialog-min-width;
1014
+
1015
+ @if ($skin-name =='FluentUI') or ($skin-name =='fabric') {
1016
+ height: 427px !important;
1017
+
1018
+ &.e-node-limit {
1019
+ height: 440px !important;
1020
+ }
1021
+ }
1022
+ }
1023
+ }
1024
+
1025
+ .e-member-editor-dialog,
1026
+ .e-value-field-settings,
1027
+ .e-pivot-format-dialog {
1028
+ .e-dlg-header-content {
1029
+ .e-clear-filter-button.e-small {
1030
+ font-size: 14px;
1031
+ top: 0;
1032
+ }
1033
+ }
1034
+ }
1035
+
1036
+ .e-value-field-settings {
1037
+ max-height: 510px !important;
1038
+
1039
+ .e-dlg-content {
1040
+ padding: 0;
1041
+ }
1042
+ }
1043
+ /* stylelint-enable */
1044
+
1045
+ .e-pivot-format-dialog {
1046
+ .e-pivot-format-dialog-outer {
1047
+ padding: 0 20px 10px;
1048
+ }
1049
+ }
1050
+
1051
+ .e-group-field-settings {
1052
+ .e-caption-option-text,
1053
+ .e-checkbox-wrapper .e-label {
1054
+ font-size: 14px;
1055
+ }
1056
+
1057
+ .e-group-input-container,
1058
+ .e-group-end-option-container,
1059
+ .e-group-interval-option-container {
1060
+ padding-top: 24px;
1061
+ }
1062
+
1063
+ .e-caption-input-text,
1064
+ .e-input-option-text,
1065
+ .e-checkbox-wrapper .e-label,
1066
+ .e-group-inerval-option-text {
1067
+ font-size: 14px;
1068
+ }
1069
+
1070
+ .e-group-start-option-container .e-checkbox-wrapper {
1071
+ padding-top: $pivotgrid-grouping-bigger-padding-top;
1072
+ }
1073
+ }
1074
+
1075
+ .e-value-field-settings {
1076
+ .e-field-name-text-container {
1077
+ display: flex;
1078
+ }
1079
+
1080
+ .e-field-name-title,
1081
+ .e-field-name-content {
1082
+ font-size: 14px;
1083
+ // font-size: 13px;
1084
+ font-weight: 500;
1085
+ }
1086
+
1087
+ .e-caption-input-container,
1088
+ .e-type-option-container,
1089
+ .e-base-field-option-container,
1090
+ .e-base-item-option-container {
1091
+ padding-top: 24px;
1092
+ }
1093
+
1094
+ .e-base-field-option-text,
1095
+ .e-base-item-option-text,
1096
+ .e-type-option-text {
1097
+ font-size: 14px;
1098
+ }
1099
+ }
1100
+
1101
+ /* stylelint-disable */
1102
+ .e-value-field-settings,
1103
+ .e-group-field-settings {
1104
+ .e-value-field-div-content,
1105
+ .e-group-field-div-content {
1106
+ padding: 0 $pivotgrid-editor-search-padding-size 10px;
1107
+ }
1108
+ }
1109
+ /* stylelint-enable */
1110
+ }
1111
+
1112
+ .e-bigger .e-pivotview-report-dialog,
1113
+ .e-bigger.e-pivotview-report-dialog {
1114
+ .e-pivotview-report-label {
1115
+ margin-top: $pivotgrid-bigger-report-label-margin-top;
1116
+ }
1117
+ }
1118
+ }