@syncfusion/ej2-angular-pivotview 20.2.39-ngcc → 20.2.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 (210) 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 +62 -0
  7. package/esm2020/src/pivotview/pivotview.component.mjs +150 -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 +337 -0
  11. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
  13. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  14. package/package.json +29 -15
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
  17. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
  18. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
  19. package/src/pivotview/pivotview-all.module.d.ts +6 -0
  20. package/src/pivotview/pivotview.component.d.ts +3 -0
  21. package/src/pivotview/pivotview.module.d.ts +6 -0
  22. package/styles/bootstrap-dark.css +234 -21
  23. package/styles/bootstrap.css +234 -21
  24. package/styles/bootstrap4.css +230 -22
  25. package/styles/bootstrap5-dark.css +236 -21
  26. package/styles/bootstrap5.css +236 -21
  27. package/styles/fabric-dark.css +234 -21
  28. package/styles/fabric.css +234 -21
  29. package/styles/fluent-dark.css +236 -21
  30. package/styles/fluent.css +236 -21
  31. package/styles/highcontrast-light.css +234 -21
  32. package/styles/highcontrast.css +234 -21
  33. package/styles/material-dark.css +234 -21
  34. package/styles/material.css +234 -21
  35. package/styles/pivotfieldlist/_all.scss +2 -0
  36. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
  37. package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
  38. package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
  39. package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
  40. package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
  41. package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
  42. package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
  43. package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
  44. package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
  45. package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
  46. package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
  47. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
  48. package/styles/pivotfieldlist/_layout.scss +1848 -0
  49. package/styles/pivotfieldlist/_material-dark-definition.scss +187 -0
  50. package/styles/pivotfieldlist/_material-definition.scss +187 -0
  51. package/styles/pivotfieldlist/_material3-definition.scss +190 -0
  52. package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
  53. package/styles/pivotfieldlist/_tailwind-definition.scss +190 -0
  54. package/styles/pivotfieldlist/_theme.scss +1857 -0
  55. package/styles/pivotfieldlist/bootstrap-dark.css +152 -21
  56. package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
  57. package/styles/pivotfieldlist/bootstrap.css +152 -21
  58. package/styles/pivotfieldlist/bootstrap.scss +4 -1
  59. package/styles/pivotfieldlist/bootstrap4.css +147 -21
  60. package/styles/pivotfieldlist/bootstrap4.scss +4 -1
  61. package/styles/pivotfieldlist/bootstrap5-dark.css +156 -21
  62. package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
  63. package/styles/pivotfieldlist/bootstrap5.css +156 -21
  64. package/styles/pivotfieldlist/bootstrap5.scss +4 -1
  65. package/styles/pivotfieldlist/fabric-dark.css +152 -21
  66. package/styles/pivotfieldlist/fabric-dark.scss +4 -1
  67. package/styles/pivotfieldlist/fabric.css +152 -21
  68. package/styles/pivotfieldlist/fabric.scss +4 -1
  69. package/styles/pivotfieldlist/fluent-dark.css +154 -21
  70. package/styles/pivotfieldlist/fluent-dark.scss +4 -1
  71. package/styles/pivotfieldlist/fluent.css +154 -21
  72. package/styles/pivotfieldlist/fluent.scss +4 -1
  73. package/styles/pivotfieldlist/highcontrast-light.css +152 -21
  74. package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
  75. package/styles/pivotfieldlist/highcontrast.css +152 -21
  76. package/styles/pivotfieldlist/highcontrast.scss +4 -1
  77. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
  78. package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
  79. package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
  80. package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
  81. package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
  82. package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
  83. package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
  84. package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
  85. package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
  86. package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
  87. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
  88. package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
  89. package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
  90. package/styles/pivotfieldlist/icons/_material.scss +358 -0
  91. package/styles/pivotfieldlist/icons/_material3.scss +353 -0
  92. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
  93. package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
  94. package/styles/pivotfieldlist/material-dark.css +152 -21
  95. package/styles/pivotfieldlist/material-dark.scss +4 -1
  96. package/styles/pivotfieldlist/material.css +152 -21
  97. package/styles/pivotfieldlist/material.scss +4 -1
  98. package/styles/pivotfieldlist/tailwind-dark.css +154 -21
  99. package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
  100. package/styles/pivotfieldlist/tailwind.css +154 -21
  101. package/styles/pivotfieldlist/tailwind.scss +4 -1
  102. package/styles/pivotview/_all.scss +2 -0
  103. package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
  104. package/styles/pivotview/_bootstrap-definition.scss +128 -0
  105. package/styles/pivotview/_bootstrap4-definition.scss +128 -0
  106. package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
  107. package/styles/pivotview/_bootstrap5-definition.scss +133 -0
  108. package/styles/pivotview/_fabric-dark-definition.scss +130 -0
  109. package/styles/pivotview/_fabric-definition.scss +127 -0
  110. package/styles/pivotview/_fluent-dark-definition.scss +1 -0
  111. package/styles/pivotview/_fluent-definition.scss +133 -0
  112. package/styles/pivotview/_fusionnew-definition.scss +133 -0
  113. package/styles/pivotview/_highcontrast-definition.scss +126 -0
  114. package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
  115. package/styles/pivotview/_layout.scss +1072 -0
  116. package/styles/pivotview/_material-dark-definition.scss +134 -0
  117. package/styles/pivotview/_material-definition.scss +130 -0
  118. package/styles/pivotview/_material3-definition.scss +133 -0
  119. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  120. package/styles/pivotview/_tailwind-definition.scss +133 -0
  121. package/styles/pivotview/_theme.scss +1581 -0
  122. package/styles/pivotview/bootstrap-dark.css +82 -0
  123. package/styles/pivotview/bootstrap-dark.scss +5 -1
  124. package/styles/pivotview/bootstrap.css +82 -0
  125. package/styles/pivotview/bootstrap.scss +5 -1
  126. package/styles/pivotview/bootstrap4.css +83 -1
  127. package/styles/pivotview/bootstrap4.scss +5 -1
  128. package/styles/pivotview/bootstrap5-dark.css +80 -0
  129. package/styles/pivotview/bootstrap5-dark.scss +4 -1
  130. package/styles/pivotview/bootstrap5.css +80 -0
  131. package/styles/pivotview/bootstrap5.scss +5 -1
  132. package/styles/pivotview/fabric-dark.css +82 -0
  133. package/styles/pivotview/fabric-dark.scss +5 -1
  134. package/styles/pivotview/fabric.css +82 -0
  135. package/styles/pivotview/fabric.scss +5 -1
  136. package/styles/pivotview/fluent-dark.css +82 -0
  137. package/styles/pivotview/fluent-dark.scss +4 -1
  138. package/styles/pivotview/fluent.css +82 -0
  139. package/styles/pivotview/fluent.scss +5 -1
  140. package/styles/pivotview/highcontrast-light.css +82 -0
  141. package/styles/pivotview/highcontrast-light.scss +5 -1
  142. package/styles/pivotview/highcontrast.css +82 -0
  143. package/styles/pivotview/highcontrast.scss +5 -1
  144. package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
  145. package/styles/pivotview/icons/_bootstrap.scss +184 -0
  146. package/styles/pivotview/icons/_bootstrap4.scss +184 -0
  147. package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
  148. package/styles/pivotview/icons/_bootstrap5.scss +183 -0
  149. package/styles/pivotview/icons/_fabric-dark.scss +184 -0
  150. package/styles/pivotview/icons/_fabric.scss +184 -0
  151. package/styles/pivotview/icons/_fluent-dark.scss +1 -0
  152. package/styles/pivotview/icons/_fluent.scss +183 -0
  153. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  154. package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
  155. package/styles/pivotview/icons/_highcontrast.scss +183 -0
  156. package/styles/pivotview/icons/_material-dark.scss +184 -0
  157. package/styles/pivotview/icons/_material.scss +184 -0
  158. package/styles/pivotview/icons/_material3.scss +183 -0
  159. package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
  160. package/styles/pivotview/icons/_tailwind.scss +183 -0
  161. package/styles/pivotview/material-dark.css +82 -0
  162. package/styles/pivotview/material-dark.scss +5 -1
  163. package/styles/pivotview/material.css +82 -0
  164. package/styles/pivotview/material.scss +5 -1
  165. package/styles/pivotview/tailwind-dark.css +80 -0
  166. package/styles/pivotview/tailwind-dark.scss +4 -1
  167. package/styles/pivotview/tailwind.css +80 -0
  168. package/styles/pivotview/tailwind.scss +5 -1
  169. package/styles/tailwind-dark.css +234 -21
  170. package/styles/tailwind.css +234 -21
  171. package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
  172. package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
  173. package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
  174. package/@syncfusion/ej2-angular-pivotview.js +0 -395
  175. package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
  176. package/CHANGELOG.md +0 -683
  177. package/dist/ej2-angular-pivotview.umd.js +0 -666
  178. package/dist/ej2-angular-pivotview.umd.js.map +0 -1
  179. package/dist/ej2-angular-pivotview.umd.min.js +0 -11
  180. package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
  181. package/ej2-angular-pivotview.d.ts +0 -6
  182. package/ej2-angular-pivotview.metadata.json +0 -1
  183. package/postinstall/tagchange.js +0 -18
  184. package/schematics/collection.json +0 -20
  185. package/schematics/generators/pivotview-default/index.d.ts +0 -3
  186. package/schematics/generators/pivotview-default/index.js +0 -8
  187. package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
  188. package/schematics/generators/pivotview-default/sample-details.js +0 -7
  189. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  190. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  191. package/schematics/generators/pivotview-default/schema.d.ts +0 -3
  192. package/schematics/generators/pivotview-default/schema.js +0 -2
  193. package/schematics/generators/pivotview-default/schema.json +0 -125
  194. package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
  195. package/schematics/generators/pivotview-fieldlist/index.js +0 -8
  196. package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
  197. package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
  198. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  199. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  200. package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
  201. package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
  202. package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
  203. package/schematics/ng-add/index.d.ts +0 -3
  204. package/schematics/ng-add/index.js +0 -9
  205. package/schematics/ng-add/schema.d.ts +0 -13
  206. package/schematics/ng-add/schema.js +0 -2
  207. package/schematics/ng-add/schema.json +0 -34
  208. package/schematics/tsconfig.json +0 -25
  209. package/schematics/utils/lib-details.d.ts +0 -4
  210. package/schematics/utils/lib-details.js +0 -6
@@ -155,6 +155,12 @@
155
155
  }
156
156
 
157
157
  /*! PivotView layout */
158
+ .e-pivotview {
159
+ /* stylelint-disable */
160
+ /* stylelint-enable */
161
+ /* stylelint-enable */
162
+ /* stylelint-disable */
163
+ }
158
164
  .e-pivotview .e-value-field-settings,
159
165
  .e-pivotview .e-member-editor-dialog,
160
166
  .e-pivotview .e-group-field-settings {
@@ -229,6 +235,7 @@
229
235
  }
230
236
  .e-pivotview .e-member-editor-dialog {
231
237
  min-width: 320px;
238
+ /* stylelint-disable */
232
239
  }
233
240
  .e-pivotview .e-member-editor-dialog .e-editor-search-container {
234
241
  display: -ms-flexbox;
@@ -245,6 +252,7 @@
245
252
  .e-pivotview .e-member-editor-dialog .e-filter-sort {
246
253
  box-shadow: none;
247
254
  margin-left: 10px;
255
+ /* stylelint-disable */
248
256
  }
249
257
  .e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
250
258
  .e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
@@ -336,6 +344,7 @@
336
344
  }
337
345
  .e-pivotview .e-member-editor-dialog .e-filter-tab-container {
338
346
  border: none;
347
+ /* stylelint-enable */
339
348
  }
340
349
  .e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
341
350
  margin: 0 0 0 6px;
@@ -580,13 +589,16 @@
580
589
  }
581
590
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
582
591
  margin-left: 18px !important;
592
+ /* stylelint-enable */
583
593
  }
584
594
  .e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
595
+ /* stylelint-disable */
585
596
  padding: 0 !important;
586
597
  }
587
598
  .e-pivotview .e-pivot-toolbar .e-reportlist-label {
588
599
  float: left;
589
600
  font-weight: 500;
601
+ /* stylelint-enable */
590
602
  }
591
603
  .e-pivotview .e-pivot-toolbar .e-reportlist-drop {
592
604
  float: right;
@@ -615,6 +627,7 @@
615
627
  }
616
628
 
617
629
  .e-pivotview-report-dialog {
630
+ /* stylelint-disable */
618
631
  max-width: 350px !important;
619
632
  }
620
633
 
@@ -634,6 +647,7 @@
634
647
  max-width: 500px !important;
635
648
  }
636
649
 
650
+ /* stylelint-enable */
637
651
  .e-report-outer {
638
652
  display: inline-block;
639
653
  width: 100%;
@@ -646,6 +660,7 @@
646
660
  padding-left: 12px;
647
661
  }
648
662
 
663
+ /* stylelint-disable */
649
664
  .e-pivotview-report-input {
650
665
  float: right;
651
666
  width: 60% !important;
@@ -667,11 +682,16 @@
667
682
  font-size: 18px !important;
668
683
  }
669
684
 
685
+ /* stylelint-enable */
670
686
  .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
671
687
  .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
672
688
  white-space: nowrap;
673
689
  }
674
690
 
691
+ .e-drillthrough-dialog {
692
+ /* stylelint-disable */
693
+ /* stylelint-enable */
694
+ }
675
695
  .e-drillthrough-dialog .e-drillthrough-body-header-container {
676
696
  margin-bottom: 20px;
677
697
  margin-bottom: 18px;
@@ -693,6 +713,13 @@
693
713
  flex-wrap: wrap;
694
714
  }
695
715
 
716
+ .e-bigger .e-pivotview,
717
+ .e-bigger.e-pivotview {
718
+ /* stylelint-disable */
719
+ /* stylelint-enable */
720
+ /* stylelint-disable */
721
+ /* stylelint-enable */
722
+ }
696
723
  .e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
697
724
  .e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
698
725
  height: 139px;
@@ -847,6 +874,18 @@
847
874
  }
848
875
 
849
876
  /*! PivotView theme */
877
+ .e-pivotview {
878
+ /* stylelint-enable */
879
+ /* stylelint-disable */
880
+ /* stylelint-enable */
881
+ /* stylelint-disable */
882
+ /* stylelint-enable */
883
+ /* stylelint-disable */
884
+ /* stylelint-enable */
885
+ /* stylelint-disable */
886
+ /* stylelint-enable */
887
+ /* stylelint-enable */
888
+ }
850
889
  .e-pivotview .e-nextspan {
851
890
  display: inline-block;
852
891
  width: 18px;
@@ -867,6 +906,7 @@
867
906
  text-align: right;
868
907
  }
869
908
  .e-pivotview .e-grid .e-rowcell {
909
+ /* stylelint-disable */
870
910
  font-size: 14px !important;
871
911
  padding-left: 8px;
872
912
  -webkit-user-select: none;
@@ -1082,12 +1122,18 @@
1082
1122
  }
1083
1123
  .e-pivotview .e-rowcell {
1084
1124
  opacity: 1;
1125
+ /* stylelint-disable */
1126
+ /* stylelint-enable */
1085
1127
  }
1086
1128
  .e-pivotview .e-rowcell .e-cellvalue {
1087
1129
  -webkit-user-select: none;
1088
1130
  -ms-user-select: none;
1089
1131
  user-select: none;
1090
1132
  }
1133
+ .e-pivotview .e-grouping-bar {
1134
+ /* stylelint-disable */
1135
+ /* stylelint-enable */
1136
+ }
1091
1137
  .e-pivotview .e-grouping-bar .e-right-axis-fields {
1092
1138
  -ms-flex: auto;
1093
1139
  flex: auto;
@@ -1248,7 +1294,9 @@
1248
1294
  border: 1px solid #dee2e6;
1249
1295
  border-radius: 4px;
1250
1296
  box-shadow: none;
1297
+ /* stylelint-disable */
1251
1298
  color: #343a40 !important;
1299
+ /* stylelint-enable */
1252
1300
  cursor: default;
1253
1301
  display: -ms-flexbox;
1254
1302
  display: flex;
@@ -1259,6 +1307,8 @@
1259
1307
  text-transform: none;
1260
1308
  vertical-align: bottom;
1261
1309
  z-index: 1;
1310
+ /* stylelint-disable */
1311
+ /* stylelint-enable */
1262
1312
  }
1263
1313
  .e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
1264
1314
  .e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
@@ -1599,6 +1649,12 @@
1599
1649
  .e-pivotview .e-expand::before {
1600
1650
  font-size: 20px;
1601
1651
  }
1652
+ .e-pivotview.e-rtl {
1653
+ /* stylelint-disable */
1654
+ /* stylelint-enable */
1655
+ /* stylelint-disable */
1656
+ /* stylelint-enable */
1657
+ }
1602
1658
  .e-pivotview.e-rtl .e-expand::before,
1603
1659
  .e-pivotview.e-rtl .e-collapse::before {
1604
1660
  margin-left: 0;
@@ -1670,8 +1726,10 @@
1670
1726
  padding-right: 8px;
1671
1727
  }
1672
1728
  .e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
1729
+ /* stylelint-disable */
1673
1730
  padding-left: 8px;
1674
1731
  padding-right: 0;
1732
+ /* stylelint-enable */
1675
1733
  }
1676
1734
  .e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
1677
1735
  margin-left: 4px;
@@ -1694,6 +1752,9 @@
1694
1752
  .e-pivotview.e-rtl .e-sortfilterdiv {
1695
1753
  float: left;
1696
1754
  }
1755
+ .e-pivotview.e-device .e-grouping-bar {
1756
+ /* stylelint-disable */
1757
+ }
1697
1758
  .e-pivotview.e-device .e-grouping-bar .e-pivot-button {
1698
1759
  line-height: 1em !important;
1699
1760
  }
@@ -1771,6 +1832,13 @@
1771
1832
  margin-right: 5px;
1772
1833
  }
1773
1834
 
1835
+ .e-bigger .e-pivotview,
1836
+ .e-bigger.e-pivotview {
1837
+ /* stylelint-disable */
1838
+ /* stylelint-enable */
1839
+ /* stylelint-disable */
1840
+ /* stylelint-enable */
1841
+ }
1774
1842
  .e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
1775
1843
  .e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
1776
1844
  margin: 4px;
@@ -1833,6 +1901,10 @@
1833
1901
  .e-bigger.e-pivotview th .e-collapse {
1834
1902
  margin-top: 0;
1835
1903
  }
1904
+ .e-bigger .e-pivotview .e-grouping-bar,
1905
+ .e-bigger.e-pivotview .e-grouping-bar {
1906
+ /* stylelint-enable */
1907
+ }
1836
1908
  .e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
1837
1909
  .e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
1838
1910
  height: 36px !important;
@@ -1873,6 +1945,7 @@
1873
1945
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
1874
1946
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
1875
1947
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
1948
+ /* stylelint-disable */
1876
1949
  font-size: 14px !important;
1877
1950
  height: 20px;
1878
1951
  margin-top: 2px;
@@ -2003,8 +2076,15 @@
2003
2076
  }
2004
2077
  .e-bigger .e-pivotview .e-rowcell,
2005
2078
  .e-bigger.e-pivotview .e-rowcell {
2079
+ /* stylelint-disable */
2006
2080
  font-size: 16px !important;
2007
2081
  }
2082
+ .e-bigger .e-pivotview.e-rtl,
2083
+ .e-bigger.e-pivotview.e-rtl {
2084
+ /* stylelint-enable */
2085
+ /* stylelint-disable */
2086
+ /* stylelint-enable */
2087
+ }
2008
2088
  .e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
2009
2089
  .e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
2010
2090
  padding-right: 10px !important;
@@ -1 +1,5 @@
1
- @import 'ej2-pivotview/styles/pivotview/bootstrap5.scss';
1
+ @import 'ej2-base/styles/bootstrap5-definition.scss';
2
+ @import '../pivotfieldlist/bootstrap5-definition.scss';
3
+ @import 'bootstrap5-definition.scss';
4
+ @import 'icons/bootstrap5.scss';
5
+ @import 'all.scss';
@@ -156,6 +156,12 @@
156
156
  }
157
157
 
158
158
  /*! PivotView layout */
159
+ .e-pivotview {
160
+ /* stylelint-disable */
161
+ /* stylelint-enable */
162
+ /* stylelint-enable */
163
+ /* stylelint-disable */
164
+ }
159
165
  .e-pivotview .e-value-field-settings,
160
166
  .e-pivotview .e-member-editor-dialog,
161
167
  .e-pivotview .e-group-field-settings {
@@ -229,6 +235,7 @@
229
235
  }
230
236
  .e-pivotview .e-member-editor-dialog {
231
237
  min-width: 320px;
238
+ /* stylelint-disable */
232
239
  }
233
240
  .e-pivotview .e-member-editor-dialog .e-editor-search-container {
234
241
  display: -ms-flexbox;
@@ -242,6 +249,7 @@
242
249
  .e-pivotview .e-member-editor-dialog .e-filter-sort {
243
250
  box-shadow: none;
244
251
  margin-left: 10px;
252
+ /* stylelint-disable */
245
253
  }
246
254
  .e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
247
255
  .e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
@@ -333,6 +341,7 @@
333
341
  }
334
342
  .e-pivotview .e-member-editor-dialog .e-filter-tab-container {
335
343
  border: none;
344
+ /* stylelint-enable */
336
345
  }
337
346
  .e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
338
347
  margin: 0 0 0 6px;
@@ -568,13 +577,16 @@
568
577
  }
569
578
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
570
579
  margin-left: 18px !important;
580
+ /* stylelint-enable */
571
581
  }
572
582
  .e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
583
+ /* stylelint-disable */
573
584
  padding: 0 !important;
574
585
  }
575
586
  .e-pivotview .e-pivot-toolbar .e-reportlist-label {
576
587
  float: left;
577
588
  font-weight: 500;
589
+ /* stylelint-enable */
578
590
  }
579
591
  .e-pivotview .e-pivot-toolbar .e-reportlist-drop {
580
592
  float: right;
@@ -603,6 +615,7 @@
603
615
  }
604
616
 
605
617
  .e-pivotview-report-dialog {
618
+ /* stylelint-disable */
606
619
  max-width: 350px !important;
607
620
  }
608
621
 
@@ -622,6 +635,7 @@
622
635
  max-width: 500px !important;
623
636
  }
624
637
 
638
+ /* stylelint-enable */
625
639
  .e-report-outer {
626
640
  display: inline-block;
627
641
  width: 100%;
@@ -633,6 +647,7 @@
633
647
  width: 40%;
634
648
  }
635
649
 
650
+ /* stylelint-disable */
636
651
  .e-pivotview-report-input {
637
652
  float: right;
638
653
  width: 60% !important;
@@ -654,11 +669,16 @@
654
669
  font-size: 18px !important;
655
670
  }
656
671
 
672
+ /* stylelint-enable */
657
673
  .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
658
674
  .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
659
675
  white-space: nowrap;
660
676
  }
661
677
 
678
+ .e-drillthrough-dialog {
679
+ /* stylelint-disable */
680
+ /* stylelint-enable */
681
+ }
662
682
  .e-drillthrough-dialog .e-drillthrough-body-header-container {
663
683
  margin-bottom: 20px;
664
684
  }
@@ -679,9 +699,18 @@
679
699
  flex-wrap: wrap;
680
700
  }
681
701
 
702
+ .e-bigger .e-pivotview,
703
+ .e-bigger.e-pivotview {
704
+ /* stylelint-disable */
705
+ /* stylelint-enable */
706
+ /* stylelint-disable */
707
+ /* stylelint-enable */
708
+ }
682
709
  .e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
683
710
  .e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
711
+ /* stylelint-disable */
684
712
  height: 48px !important;
713
+ /* stylelint-enable */
685
714
  }
686
715
  .e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
687
716
  .e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
@@ -837,6 +866,18 @@
837
866
  }
838
867
 
839
868
  /*! PivotView theme */
869
+ .e-pivotview {
870
+ /* stylelint-enable */
871
+ /* stylelint-disable */
872
+ /* stylelint-enable */
873
+ /* stylelint-disable */
874
+ /* stylelint-enable */
875
+ /* stylelint-disable */
876
+ /* stylelint-enable */
877
+ /* stylelint-disable */
878
+ /* stylelint-enable */
879
+ /* stylelint-enable */
880
+ }
840
881
  .e-pivotview .e-nextspan {
841
882
  display: inline-block;
842
883
  width: 18px;
@@ -857,6 +898,7 @@
857
898
  text-align: right;
858
899
  }
859
900
  .e-pivotview .e-grid .e-rowcell {
901
+ /* stylelint-disable */
860
902
  font-size: 13px !important;
861
903
  padding-left: 8px;
862
904
  -webkit-user-select: none;
@@ -1062,12 +1104,18 @@
1062
1104
  }
1063
1105
  .e-pivotview .e-rowcell {
1064
1106
  opacity: 1;
1107
+ /* stylelint-disable */
1108
+ /* stylelint-enable */
1065
1109
  }
1066
1110
  .e-pivotview .e-rowcell .e-cellvalue {
1067
1111
  -webkit-user-select: none;
1068
1112
  -ms-user-select: none;
1069
1113
  user-select: none;
1070
1114
  }
1115
+ .e-pivotview .e-grouping-bar {
1116
+ /* stylelint-disable */
1117
+ /* stylelint-enable */
1118
+ }
1071
1119
  .e-pivotview .e-grouping-bar .e-right-axis-fields {
1072
1120
  -ms-flex: auto;
1073
1121
  flex: auto;
@@ -1193,7 +1241,9 @@
1193
1241
  border: 1px solid #414040;
1194
1242
  border-radius: 0;
1195
1243
  box-shadow: none;
1244
+ /* stylelint-disable */
1196
1245
  color: #dadada !important;
1246
+ /* stylelint-enable */
1197
1247
  cursor: default;
1198
1248
  display: -ms-flexbox;
1199
1249
  display: flex;
@@ -1204,6 +1254,8 @@
1204
1254
  text-transform: none;
1205
1255
  vertical-align: bottom;
1206
1256
  z-index: 1;
1257
+ /* stylelint-disable */
1258
+ /* stylelint-enable */
1207
1259
  }
1208
1260
  .e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
1209
1261
  .e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
@@ -1540,6 +1592,12 @@
1540
1592
  .e-pivotview .e-expand::before {
1541
1593
  font-size: 10px;
1542
1594
  }
1595
+ .e-pivotview.e-rtl {
1596
+ /* stylelint-disable */
1597
+ /* stylelint-enable */
1598
+ /* stylelint-disable */
1599
+ /* stylelint-enable */
1600
+ }
1543
1601
  .e-pivotview.e-rtl .e-expand::before,
1544
1602
  .e-pivotview.e-rtl .e-collapse::before {
1545
1603
  margin-left: 0;
@@ -1611,8 +1669,10 @@
1611
1669
  padding-right: 8px;
1612
1670
  }
1613
1671
  .e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
1672
+ /* stylelint-disable */
1614
1673
  padding-left: 8px;
1615
1674
  padding-right: 0;
1675
+ /* stylelint-enable */
1616
1676
  }
1617
1677
  .e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
1618
1678
  margin-left: 4px;
@@ -1635,6 +1695,9 @@
1635
1695
  .e-pivotview.e-rtl .e-sortfilterdiv {
1636
1696
  float: left;
1637
1697
  }
1698
+ .e-pivotview.e-device .e-grouping-bar {
1699
+ /* stylelint-disable */
1700
+ }
1638
1701
  .e-pivotview.e-device .e-grouping-bar .e-pivot-button {
1639
1702
  line-height: 1em !important;
1640
1703
  }
@@ -1712,6 +1775,13 @@
1712
1775
  margin-right: 5px;
1713
1776
  }
1714
1777
 
1778
+ .e-bigger .e-pivotview,
1779
+ .e-bigger.e-pivotview {
1780
+ /* stylelint-disable */
1781
+ /* stylelint-enable */
1782
+ /* stylelint-disable */
1783
+ /* stylelint-enable */
1784
+ }
1715
1785
  .e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
1716
1786
  .e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
1717
1787
  margin: 5px;
@@ -1774,6 +1844,10 @@
1774
1844
  .e-bigger.e-pivotview th .e-collapse {
1775
1845
  margin-top: 7px;
1776
1846
  }
1847
+ .e-bigger .e-pivotview .e-grouping-bar,
1848
+ .e-bigger.e-pivotview .e-grouping-bar {
1849
+ /* stylelint-enable */
1850
+ }
1777
1851
  .e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
1778
1852
  .e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
1779
1853
  height: 36px !important;
@@ -1814,6 +1888,7 @@
1814
1888
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
1815
1889
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
1816
1890
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
1891
+ /* stylelint-disable */
1817
1892
  font-size: 14px !important;
1818
1893
  height: 20px;
1819
1894
  margin-top: 1px;
@@ -1930,8 +2005,15 @@
1930
2005
  }
1931
2006
  .e-bigger .e-pivotview .e-rowcell,
1932
2007
  .e-bigger.e-pivotview .e-rowcell {
2008
+ /* stylelint-disable */
1933
2009
  font-size: 13px !important;
1934
2010
  }
2011
+ .e-bigger .e-pivotview.e-rtl,
2012
+ .e-bigger.e-pivotview.e-rtl {
2013
+ /* stylelint-enable */
2014
+ /* stylelint-disable */
2015
+ /* stylelint-enable */
2016
+ }
1935
2017
  .e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
1936
2018
  .e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
1937
2019
  padding-right: 10px !important;
@@ -1 +1,5 @@
1
- @import 'ej2-pivotview/styles/pivotview/fabric-dark.scss';
1
+ @import 'ej2-base/styles/fabric-dark-definition.scss';
2
+ @import '../pivotfieldlist/fabric-dark-definition.scss';
3
+ @import 'fabric-dark-definition.scss';
4
+ @import 'icons/fabric-dark.scss';
5
+ @import 'all.scss';