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

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