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

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