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

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 (137) 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 +157 -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 +347 -0
  11. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +347 -0
  13. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  14. package/package.json +26 -12
  15. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
  16. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
  17. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
  18. package/src/pivotview/pivotview-all.module.d.ts +6 -0
  19. package/src/pivotview/pivotview.component.d.ts +3 -0
  20. package/src/pivotview/pivotview.module.d.ts +6 -0
  21. package/styles/pivotfieldlist/_all.scss +2 -0
  22. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +240 -0
  23. package/styles/pivotfieldlist/_bootstrap-definition.scss +194 -0
  24. package/styles/pivotfieldlist/_bootstrap4-definition.scss +194 -0
  25. package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
  26. package/styles/pivotfieldlist/_bootstrap5-definition.scss +198 -0
  27. package/styles/pivotfieldlist/_fabric-dark-definition.scss +200 -0
  28. package/styles/pivotfieldlist/_fabric-definition.scss +194 -0
  29. package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
  30. package/styles/pivotfieldlist/_fluent-definition.scss +198 -0
  31. package/styles/pivotfieldlist/_fusionnew-definition.scss +197 -0
  32. package/styles/pivotfieldlist/_highcontrast-definition.scss +195 -0
  33. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +195 -0
  34. package/styles/pivotfieldlist/_layout.scss +1960 -0
  35. package/styles/pivotfieldlist/_material-dark-definition.scss +195 -0
  36. package/styles/pivotfieldlist/_material-definition.scss +195 -0
  37. package/styles/pivotfieldlist/_material3-definition.scss +198 -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 +1938 -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 +161 -0
  75. package/styles/pivotview/_bootstrap-definition.scss +158 -0
  76. package/styles/pivotview/_bootstrap4-definition.scss +158 -0
  77. package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
  78. package/styles/pivotview/_bootstrap5-definition.scss +163 -0
  79. package/styles/pivotview/_fabric-dark-definition.scss +160 -0
  80. package/styles/pivotview/_fabric-definition.scss +157 -0
  81. package/styles/pivotview/_fluent-dark-definition.scss +1 -0
  82. package/styles/pivotview/_fluent-definition.scss +163 -0
  83. package/styles/pivotview/_fusionnew-definition.scss +163 -0
  84. package/styles/pivotview/_highcontrast-definition.scss +156 -0
  85. package/styles/pivotview/_highcontrast-light-definition.scss +157 -0
  86. package/styles/pivotview/_layout.scss +1120 -0
  87. package/styles/pivotview/_material-dark-definition.scss +164 -0
  88. package/styles/pivotview/_material-definition.scss +160 -0
  89. package/styles/pivotview/_material3-definition.scss +163 -0
  90. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  91. package/styles/pivotview/_tailwind-definition.scss +163 -0
  92. package/styles/pivotview/_theme.scss +2002 -0
  93. package/styles/pivotview/bootstrap-dark.scss +5 -1
  94. package/styles/pivotview/bootstrap.scss +5 -1
  95. package/styles/pivotview/bootstrap4.scss +5 -1
  96. package/styles/pivotview/bootstrap5-dark.scss +4 -1
  97. package/styles/pivotview/bootstrap5.scss +5 -1
  98. package/styles/pivotview/fabric-dark.scss +5 -1
  99. package/styles/pivotview/fabric.scss +5 -1
  100. package/styles/pivotview/fluent-dark.scss +4 -1
  101. package/styles/pivotview/fluent.scss +5 -1
  102. package/styles/pivotview/highcontrast-light.scss +5 -1
  103. package/styles/pivotview/highcontrast.scss +5 -1
  104. package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
  105. package/styles/pivotview/icons/_bootstrap.scss +184 -0
  106. package/styles/pivotview/icons/_bootstrap4.scss +184 -0
  107. package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
  108. package/styles/pivotview/icons/_bootstrap5.scss +183 -0
  109. package/styles/pivotview/icons/_fabric-dark.scss +184 -0
  110. package/styles/pivotview/icons/_fabric.scss +184 -0
  111. package/styles/pivotview/icons/_fluent-dark.scss +1 -0
  112. package/styles/pivotview/icons/_fluent.scss +183 -0
  113. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  114. package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
  115. package/styles/pivotview/icons/_highcontrast.scss +183 -0
  116. package/styles/pivotview/icons/_material-dark.scss +184 -0
  117. package/styles/pivotview/icons/_material.scss +184 -0
  118. package/styles/pivotview/icons/_material3.scss +183 -0
  119. package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
  120. package/styles/pivotview/icons/_tailwind.scss +183 -0
  121. package/styles/pivotview/material-dark.scss +5 -1
  122. package/styles/pivotview/material.scss +5 -1
  123. package/styles/pivotview/tailwind-dark.scss +4 -1
  124. package/styles/pivotview/tailwind.scss +5 -1
  125. package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
  126. package/@syncfusion/ej2-angular-pivotview.es5.js +0 -434
  127. package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
  128. package/@syncfusion/ej2-angular-pivotview.js +0 -404
  129. package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
  130. package/CHANGELOG.md +0 -828
  131. package/dist/ej2-angular-pivotview.umd.js +0 -686
  132. package/dist/ej2-angular-pivotview.umd.js.map +0 -1
  133. package/dist/ej2-angular-pivotview.umd.min.js +0 -11
  134. package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
  135. package/ej2-angular-pivotview.d.ts +0 -6
  136. package/ej2-angular-pivotview.metadata.json +0 -1
  137. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,1120 @@
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
+ .e-toolbar-item {
626
+ .e-tbar-btn.e-btn.e-control {
627
+ @if ($skin-name =='fabric') or ($skin-name =='fabric-dark') or ($skin-name =='material') or ($skin-name =='highcontrast') or ($skin-name =='highcontrast-light') or ($skin-name =='bootstrap4') {
628
+ background: $pivotgrid-grp-bg-color;
629
+
630
+ &:hover {
631
+ @if ($skin-name =='material') or ($skin-name =='material-dark') or ($skin-name =='fabric-dark') or ($skin-name =='bootstrap4') {
632
+ background: $pivotgrid-grp-bg-hover-color;
633
+ }
634
+ }
635
+ }
636
+ }
637
+ }
638
+ }
639
+
640
+ .e-toolbar-item .e-tbar-btn.e-btn {
641
+
642
+ .e-icons.e-btn-icon {
643
+
644
+ @if ($skin-name != 'bootstrap5') and ($skin-name != 'tailwind') and ($skin-name != 'FluentUI') {
645
+ font-size: 16px;
646
+ }
647
+ }
648
+ }
649
+
650
+ .e-pivot-toolbar-menu {
651
+ background-color: transparent;
652
+ border: none;
653
+ @if ($pivotgrid-skin == 'bootstrap4') {
654
+ background-color: $gray-100;
655
+ color: $gray-700;
656
+ }
657
+
658
+ ul .e-menu-item {
659
+ @if ($skin-name != 'tailwind') {
660
+ height: $pivotgrid-menubar-height !important;
661
+ }
662
+ overflow: hidden;
663
+ padding-left: 10px;
664
+
665
+ @if ($pivotgrid-skin == 'bootstrap4') {
666
+ background-color: $pivotgrid-grp-bg-color;
667
+ color: $gray-700;
668
+ }
669
+
670
+ @if ($pivotgrid-skin =='FluentUI') {
671
+ background-color: $pivotgrid-grp-bg-color;
672
+
673
+ &:hover {
674
+ background: $pivotgrid-grp-bg-hover-color;
675
+ }
676
+ }
677
+
678
+ .e-menu-icon {
679
+ margin-left: 0;
680
+ margin-right: 0;
681
+
682
+ @if ($skin-name != 'bootstrap5') and ($skin-name != 'tailwind') {
683
+ font-size: 16px;
684
+ }
685
+
686
+ @if ($pivotgrid-skin == 'bootstrap4') {
687
+ color: $gray-700;
688
+ }
689
+
690
+ @if ($pivotgrid-skin == 'FluentUI') {
691
+ color: $pivotgrid-active-color;
692
+ }
693
+
694
+ @if ($skin-name == 'bootstrap5') {
695
+ line-height: $pivotgrid-menubar-height;
696
+ }
697
+
698
+ @if ($skin-name == 'FluentUI') {
699
+ line-height: 28px;
700
+ }
701
+
702
+ @if ($skin-name == 'tailwind') {
703
+ line-height: 40px;
704
+ }
705
+ }
706
+
707
+ .e-caret {
708
+ @if ($pivotgrid-skin == 'bootstrap4') {
709
+ color: $gray-700;
710
+ }
711
+
712
+ @if ($pivotgrid-skin == 'FluentUI') {
713
+ color: $pivotgrid-active-color;
714
+ }
715
+
716
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
717
+ line-height: $pivotgrid-menubar-height;
718
+ }
719
+
720
+ @if ($skin-name == 'tailwind') {
721
+ line-height: 40px;
722
+ }
723
+ }
724
+ }
725
+
726
+ ul .e-menu-item.e-focused {
727
+ @if ($pivotgrid-skin == 'bootstrap4') {
728
+ background-color: $gray-600;
729
+ border-radius: $pivotgrid-default-border-radius;
730
+ }
731
+
732
+ .e-menu-icon,
733
+ .e-icons{
734
+ @if ($pivotgrid-skin == 'bootstrap4') {
735
+ color: $white;
736
+ }
737
+
738
+ @if ($pivotgrid-skin == 'FluentUI') {
739
+ color: $pivotgrid-active-color;
740
+ }
741
+ }
742
+ }
743
+ }
744
+
745
+ .e-tab .e-tab-header .e-toolbar-item.e-active {
746
+ margin-left: 18px !important;
747
+ /* stylelint-enable */
748
+ }
749
+
750
+ .e-toolbar-item.e-template {
751
+ /* stylelint-disable */
752
+ padding: 0 !important;
753
+ }
754
+
755
+ .e-reportlist-label {
756
+ float: left;
757
+ font-weight: 500;
758
+ /* stylelint-enable */
759
+ }
760
+
761
+ .e-reportlist-drop {
762
+ float: right;
763
+ margin: 0 8px;
764
+ }
765
+
766
+ &.e-rtl {
767
+ .e-reportlist-label {
768
+ float: right;
769
+ }
770
+
771
+ .e-reportlist-drop {
772
+ float: left;
773
+ }
774
+
775
+ .e-pivot-toolbar-menu {
776
+ ul .e-menu-item {
777
+ padding-left: 30px;
778
+ padding-right: 10px;
779
+ }
780
+ }
781
+ }
782
+ }
783
+
784
+ .e-frozenscrollbar {
785
+ background-color: $pivotgrid-grp-bg-color;
786
+ }
787
+ }
788
+
789
+ .e-pivotview-disable-icon {
790
+ visibility: hidden;
791
+ }
792
+
793
+ .e-pivotview-report-inner {
794
+ padding-top: 10px;
795
+ }
796
+
797
+ .e-pivotview-report-dialog {
798
+ /* stylelint-disable */
799
+ max-width: 350px !important;
800
+ }
801
+
802
+ .e-mdx-query-content {
803
+ background-color: $pivotgrid-table-background-color;
804
+ color: $pivotgrid-default-font-color;
805
+ font-size: 14px;
806
+ font-weight: 500;
807
+ height: 200px;
808
+ margin-top: 5px;
809
+ padding: 5px 10px;
810
+ resize: none;
811
+ width: 100%;
812
+ }
813
+
814
+ .e-pivotview-mdx-dialog {
815
+ max-width: 500px !important;
816
+ }
817
+ /* stylelint-enable */
818
+
819
+ .e-report-outer {
820
+ display: inline-block;
821
+ width: 100%;
822
+ @if ($skin-name == 'FluentUI') {
823
+ padding-top: 1px;
824
+ }
825
+ }
826
+
827
+ .e-pivotview-report-label {
828
+ float: left;
829
+ margin-top: $pivotgrid-report-label-margin-top;
830
+ width: 40%;
831
+ @if ($skin-name == 'bootstrap5') {
832
+ padding-left: 12px;
833
+ }
834
+ }
835
+
836
+ /* stylelint-disable */
837
+ .e-pivotview-report-input {
838
+ float: right;
839
+ width: 60% !important;
840
+ }
841
+
842
+ #{if(&, "&", "*")}.e-rtl {
843
+ .e-pivotview-report-input {
844
+ float: left;
845
+ }
846
+
847
+ .e-pivotview-report-label {
848
+ float: right;
849
+ }
850
+ }
851
+
852
+
853
+ .e-pivotview-pdf-export,
854
+ .e-pivotview-excel-export,
855
+ .e-pivotview-csv-export,
856
+ .e-pivotview-png-export,
857
+ .e-pivotview-jpeg-export,
858
+ .e-pivotview-svg-export {
859
+ font-size: 18px !important;
860
+ }
861
+ /* stylelint-enable */
862
+
863
+ .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul {
864
+ .e-dialog-multiple-axis .e-label,
865
+ .e-dialog-multiple-axis .e-label {
866
+ white-space: nowrap;
867
+ }
868
+ }
869
+
870
+ .e-drillthrough-dialog {
871
+ .e-drillthrough-body-header-container {
872
+ margin-bottom: 20px;
873
+
874
+ @if ($skin-name == 'bootstrap5') {
875
+ margin-bottom: 18px;
876
+ }
877
+ }
878
+
879
+ .e-drillthrough-body-header {
880
+ color: $pivotgrid-drillthrough-header-font-color;
881
+ font-weight: $pivotgrid-drillthrough-header-font-weight;
882
+ }
883
+
884
+ .e-drillthrough-body-header-value {
885
+ color: $pivotview-grid-header-font-color;
886
+ margin-right: 20px;
887
+ }
888
+
889
+ /* stylelint-disable */
890
+ .e-drillthrough-body-header-common {
891
+ -webkit-flex-wrap: wrap;
892
+ -moz-flex-wrap: wrap;
893
+ -ms-flex-wrap: wrap;
894
+ display: inline-block;
895
+ flex-wrap: wrap;
896
+ }
897
+ /* stylelint-enable */
898
+ }
899
+
900
+ .e-bigger .e-pivotview,
901
+ .e-bigger.e-pivotview {
902
+ .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
903
+ @if ($skin-name != 'tailwind') and ($skin-name != 'bootstrap5') {
904
+ /* stylelint-disable */
905
+ height: $pivotgrid-bigger-menubar-height !important;
906
+ /* stylelint-enable */
907
+ }
908
+
909
+ .e-menu-icon {
910
+ @if ($skin-name == 'tailwind') {
911
+ line-height: 50px;
912
+ }
913
+ }
914
+
915
+ .e-caret {
916
+ @if ($skin-name == 'tailwind') {
917
+ line-height: 50px;
918
+ }
919
+ }
920
+ }
921
+
922
+ .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
923
+ height: $pivotgrid-member-filter-list-bigger-height;
924
+ }
925
+
926
+ /* stylelint-disable */
927
+ .e-member-editor-dialog {
928
+ .e-editor-search-container {
929
+ .e-filter-sort {
930
+ .e-member-sort {
931
+ .e-sort-ascend-icon,
932
+ .e-sort-descend-icon {
933
+ font-size: 18px;
934
+ }
935
+ }
936
+ }
937
+
938
+ .e-level-drop {
939
+ .e-caret {
940
+ font-size: $pivotgrid-bigger-button-icon-size !important;
941
+ }
942
+ }
943
+ }
944
+
945
+ .e-member-editor-outer-container ul {
946
+ @if ($pivotgrid-skin == 'bootstrap4') {
947
+ margin-left: -30px !important;
948
+ }
949
+ }
950
+
951
+ &.e-rtl {
952
+ .e-member-editor-outer-container ul {
953
+ @if ($pivotgrid-skin == 'bootstrap4') {
954
+ margin-right: -30px !important;
955
+ }
956
+ }
957
+ }
958
+ }
959
+
960
+ .e-member-editor-dialog {
961
+ .e-filter-tab-container {
962
+ .e-tab-header {
963
+ .e-toolbar-item .e-icon-left + .e-tab-text {
964
+ margin: 0 0 0 6px;
965
+ }
966
+ }
967
+
968
+ &.e-rtl {
969
+ .e-tab-header {
970
+ .e-toolbar-item .e-icon-left + .e-tab-text {
971
+ margin: 0 6px 0 0;
972
+ }
973
+ }
974
+ }
975
+ }
976
+
977
+ @if ($skin-name == 'FluentUI') or ($skin-name == 'fabric') or ($skin-name == 'fabric-dark') {
978
+ &.e-node-limit {
979
+ .e-excelfilter {
980
+ .e-member-editor-container-outer-div {
981
+ height: 82px !important;
982
+ @if ($skin-name == 'fabric') or ($skin-name == 'fabric-dark') {
983
+ height: 96px !important;
984
+ }
985
+ }
986
+ }
987
+ }
988
+ }
989
+
990
+ .e-excelfilter {
991
+ .e-member-editor-container-outer-div {
992
+ height: $pivotgrid-excel-member-filter-bigger-height !important;
993
+ }
994
+ @if ($skin-name == 'tailwind') {
995
+ padding-top: 16px;
996
+ }
997
+ }
998
+
999
+ .e-label-filter,
1000
+ .e-value-filter {
1001
+ height: $pivotgrid-excel-filter-bigger-height;
1002
+
1003
+ .e-filter-text-div {
1004
+ font-size: 14px;
1005
+ }
1006
+
1007
+ .e-filter-option-container-1,
1008
+ .e-filter-option-container-2,
1009
+ .e-separator-div {
1010
+ padding-top: 24px;
1011
+ }
1012
+
1013
+ .e-between-text-div {
1014
+ padding: 10px 0;
1015
+ }
1016
+ }
1017
+
1018
+ &.e-excel-filter {
1019
+ min-width: $pivotgrid-bigger-excel-dialog-min-width;
1020
+
1021
+ @if ($skin-name =='FluentUI') or ($skin-name =='fabric') {
1022
+ height: 427px !important;
1023
+
1024
+ &.e-node-limit {
1025
+ height: 440px !important;
1026
+ }
1027
+ }
1028
+ }
1029
+ }
1030
+
1031
+ .e-member-editor-dialog,
1032
+ .e-value-field-settings,
1033
+ .e-pivot-format-dialog {
1034
+ .e-dlg-header-content {
1035
+ .e-clear-filter-button.e-small {
1036
+ font-size: 14px;
1037
+ top: 0;
1038
+ }
1039
+ }
1040
+ }
1041
+
1042
+ .e-value-field-settings {
1043
+ max-height: 510px !important;
1044
+ }
1045
+ /* stylelint-enable */
1046
+
1047
+ .e-pivot-format-dialog {
1048
+ .e-pivot-format-dialog-outer {
1049
+ padding: 0 20px 10px;
1050
+ }
1051
+ }
1052
+
1053
+ .e-group-field-settings {
1054
+ .e-caption-option-text,
1055
+ .e-checkbox-wrapper .e-label {
1056
+ font-size: 14px;
1057
+ }
1058
+
1059
+ .e-group-input-container,
1060
+ .e-group-end-option-container,
1061
+ .e-group-interval-option-container {
1062
+ padding-top: 24px;
1063
+ }
1064
+
1065
+ .e-caption-input-text,
1066
+ .e-input-option-text,
1067
+ .e-checkbox-wrapper .e-label,
1068
+ .e-group-inerval-option-text {
1069
+ font-size: 14px;
1070
+ }
1071
+
1072
+ .e-group-start-option-container .e-checkbox-wrapper {
1073
+ padding-top: $pivotgrid-grouping-bigger-padding-top;
1074
+ }
1075
+ }
1076
+
1077
+ .e-value-field-settings {
1078
+ .e-field-name-text-container {
1079
+ display: flex;
1080
+ }
1081
+
1082
+ .e-field-name-title,
1083
+ .e-field-name-content {
1084
+ font-size: 14px;
1085
+ // font-size: 13px;
1086
+ font-weight: 500;
1087
+ }
1088
+
1089
+ .e-caption-input-container,
1090
+ .e-type-option-container,
1091
+ .e-base-field-option-container,
1092
+ .e-base-item-option-container {
1093
+ padding-top: 24px;
1094
+ }
1095
+
1096
+ .e-base-field-option-text,
1097
+ .e-base-item-option-text,
1098
+ .e-type-option-text {
1099
+ font-size: 14px;
1100
+ }
1101
+ }
1102
+
1103
+ /* stylelint-disable */
1104
+ .e-value-field-settings,
1105
+ .e-group-field-settings {
1106
+ .e-value-field-div-content,
1107
+ .e-group-field-div-content {
1108
+ padding: 0 $pivotgrid-editor-search-padding-size 10px;
1109
+ }
1110
+ }
1111
+ /* stylelint-enable */
1112
+ }
1113
+
1114
+ .e-bigger .e-pivotview-report-dialog,
1115
+ .e-bigger.e-pivotview-report-dialog {
1116
+ .e-pivotview-report-label {
1117
+ margin-top: $pivotgrid-bigger-report-label-margin-top;
1118
+ }
1119
+ }
1120
+ }