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

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 +27 -13
  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 +212 -1
  23. package/styles/bootstrap.css +212 -1
  24. package/styles/bootstrap4.css +208 -2
  25. package/styles/bootstrap5-dark.css +214 -1
  26. package/styles/bootstrap5.css +214 -1
  27. package/styles/fabric-dark.css +212 -1
  28. package/styles/fabric.css +212 -1
  29. package/styles/fluent-dark.css +214 -1
  30. package/styles/fluent.css +214 -1
  31. package/styles/highcontrast-light.css +212 -1
  32. package/styles/highcontrast.css +212 -1
  33. package/styles/material-dark.css +212 -1
  34. package/styles/material.css +212 -1
  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 +1844 -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 +1858 -0
  55. package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
  56. package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
  57. package/styles/pivotfieldlist/bootstrap.css +130 -1
  58. package/styles/pivotfieldlist/bootstrap.scss +4 -1
  59. package/styles/pivotfieldlist/bootstrap4.css +125 -1
  60. package/styles/pivotfieldlist/bootstrap4.scss +4 -1
  61. package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
  62. package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
  63. package/styles/pivotfieldlist/bootstrap5.css +134 -1
  64. package/styles/pivotfieldlist/bootstrap5.scss +4 -1
  65. package/styles/pivotfieldlist/fabric-dark.css +130 -1
  66. package/styles/pivotfieldlist/fabric-dark.scss +4 -1
  67. package/styles/pivotfieldlist/fabric.css +130 -1
  68. package/styles/pivotfieldlist/fabric.scss +4 -1
  69. package/styles/pivotfieldlist/fluent-dark.css +132 -1
  70. package/styles/pivotfieldlist/fluent-dark.scss +4 -1
  71. package/styles/pivotfieldlist/fluent.css +132 -1
  72. package/styles/pivotfieldlist/fluent.scss +4 -1
  73. package/styles/pivotfieldlist/highcontrast-light.css +130 -1
  74. package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
  75. package/styles/pivotfieldlist/highcontrast.css +130 -1
  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 +130 -1
  95. package/styles/pivotfieldlist/material-dark.scss +4 -1
  96. package/styles/pivotfieldlist/material.css +130 -1
  97. package/styles/pivotfieldlist/material.scss +4 -1
  98. package/styles/pivotfieldlist/tailwind-dark.css +132 -1
  99. package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
  100. package/styles/pivotfieldlist/tailwind.css +132 -1
  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 +212 -1
  170. package/styles/tailwind.css +212 -1
  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;
@@ -243,6 +250,7 @@
243
250
  .e-pivotview .e-member-editor-dialog .e-filter-sort {
244
251
  box-shadow: none;
245
252
  margin-left: 10px;
253
+ /* stylelint-disable */
246
254
  }
247
255
  .e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
248
256
  .e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
@@ -334,6 +342,7 @@
334
342
  }
335
343
  .e-pivotview .e-member-editor-dialog .e-filter-tab-container {
336
344
  border: none;
345
+ /* stylelint-enable */
337
346
  }
338
347
  .e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
339
348
  margin: 0 0 0 6px;
@@ -591,13 +600,16 @@
591
600
  }
592
601
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
593
602
  margin-left: 18px !important;
603
+ /* stylelint-enable */
594
604
  }
595
605
  .e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
606
+ /* stylelint-disable */
596
607
  padding: 0 !important;
597
608
  }
598
609
  .e-pivotview .e-pivot-toolbar .e-reportlist-label {
599
610
  float: left;
600
611
  font-weight: 500;
612
+ /* stylelint-enable */
601
613
  }
602
614
  .e-pivotview .e-pivot-toolbar .e-reportlist-drop {
603
615
  float: right;
@@ -626,6 +638,7 @@
626
638
  }
627
639
 
628
640
  .e-pivotview-report-dialog {
641
+ /* stylelint-disable */
629
642
  max-width: 350px !important;
630
643
  }
631
644
 
@@ -645,6 +658,7 @@
645
658
  max-width: 500px !important;
646
659
  }
647
660
 
661
+ /* stylelint-enable */
648
662
  .e-report-outer {
649
663
  display: inline-block;
650
664
  width: 100%;
@@ -657,6 +671,7 @@
657
671
  width: 40%;
658
672
  }
659
673
 
674
+ /* stylelint-disable */
660
675
  .e-pivotview-report-input {
661
676
  float: right;
662
677
  width: 60% !important;
@@ -678,11 +693,16 @@
678
693
  font-size: 18px !important;
679
694
  }
680
695
 
696
+ /* stylelint-enable */
681
697
  .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
682
698
  .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
683
699
  white-space: nowrap;
684
700
  }
685
701
 
702
+ .e-drillthrough-dialog {
703
+ /* stylelint-disable */
704
+ /* stylelint-enable */
705
+ }
686
706
  .e-drillthrough-dialog .e-drillthrough-body-header-container {
687
707
  margin-bottom: 20px;
688
708
  }
@@ -703,9 +723,18 @@
703
723
  flex-wrap: wrap;
704
724
  }
705
725
 
726
+ .e-bigger .e-pivotview,
727
+ .e-bigger.e-pivotview {
728
+ /* stylelint-disable */
729
+ /* stylelint-enable */
730
+ /* stylelint-disable */
731
+ /* stylelint-enable */
732
+ }
706
733
  .e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
707
734
  .e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
735
+ /* stylelint-disable */
708
736
  height: 26px !important;
737
+ /* stylelint-enable */
709
738
  }
710
739
  .e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
711
740
  .e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
@@ -861,6 +890,18 @@
861
890
  }
862
891
 
863
892
  /*! PivotView theme */
893
+ .e-pivotview {
894
+ /* stylelint-enable */
895
+ /* stylelint-disable */
896
+ /* stylelint-enable */
897
+ /* stylelint-disable */
898
+ /* stylelint-enable */
899
+ /* stylelint-disable */
900
+ /* stylelint-enable */
901
+ /* stylelint-disable */
902
+ /* stylelint-enable */
903
+ /* stylelint-enable */
904
+ }
864
905
  .e-pivotview .e-nextspan {
865
906
  display: inline-block;
866
907
  width: 18px;
@@ -881,6 +922,7 @@
881
922
  text-align: right;
882
923
  }
883
924
  .e-pivotview .e-grid .e-rowcell {
925
+ /* stylelint-disable */
884
926
  font-size: 14px !important;
885
927
  padding-left: 8px;
886
928
  -webkit-user-select: none;
@@ -1089,12 +1131,18 @@
1089
1131
  }
1090
1132
  .e-pivotview .e-rowcell {
1091
1133
  opacity: 1;
1134
+ /* stylelint-disable */
1135
+ /* stylelint-enable */
1092
1136
  }
1093
1137
  .e-pivotview .e-rowcell .e-cellvalue {
1094
1138
  -webkit-user-select: none;
1095
1139
  -ms-user-select: none;
1096
1140
  user-select: none;
1097
1141
  }
1142
+ .e-pivotview .e-grouping-bar {
1143
+ /* stylelint-disable */
1144
+ /* stylelint-enable */
1145
+ }
1098
1146
  .e-pivotview .e-grouping-bar .e-right-axis-fields {
1099
1147
  -ms-flex: auto;
1100
1148
  flex: auto;
@@ -1224,7 +1272,9 @@
1224
1272
  border: 1px solid #f3f2f1;
1225
1273
  border-radius: 2px;
1226
1274
  box-shadow: none;
1275
+ /* stylelint-disable */
1227
1276
  color: #323130 !important;
1277
+ /* stylelint-enable */
1228
1278
  cursor: default;
1229
1279
  display: -ms-flexbox;
1230
1280
  display: flex;
@@ -1235,6 +1285,8 @@
1235
1285
  text-transform: none;
1236
1286
  vertical-align: bottom;
1237
1287
  z-index: 1;
1288
+ /* stylelint-disable */
1289
+ /* stylelint-enable */
1238
1290
  }
1239
1291
  .e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
1240
1292
  .e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
@@ -1575,6 +1627,12 @@
1575
1627
  .e-pivotview .e-expand::before {
1576
1628
  font-size: 18px;
1577
1629
  }
1630
+ .e-pivotview.e-rtl {
1631
+ /* stylelint-disable */
1632
+ /* stylelint-enable */
1633
+ /* stylelint-disable */
1634
+ /* stylelint-enable */
1635
+ }
1578
1636
  .e-pivotview.e-rtl .e-expand::before,
1579
1637
  .e-pivotview.e-rtl .e-collapse::before {
1580
1638
  margin-left: 0;
@@ -1646,8 +1704,10 @@
1646
1704
  padding-right: 8px;
1647
1705
  }
1648
1706
  .e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
1707
+ /* stylelint-disable */
1649
1708
  padding-left: 8px;
1650
1709
  padding-right: 0;
1710
+ /* stylelint-enable */
1651
1711
  }
1652
1712
  .e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
1653
1713
  margin-left: 4px;
@@ -1670,6 +1730,9 @@
1670
1730
  .e-pivotview.e-rtl .e-sortfilterdiv {
1671
1731
  float: left;
1672
1732
  }
1733
+ .e-pivotview.e-device .e-grouping-bar {
1734
+ /* stylelint-disable */
1735
+ }
1673
1736
  .e-pivotview.e-device .e-grouping-bar .e-pivot-button {
1674
1737
  line-height: 1em !important;
1675
1738
  }
@@ -1747,6 +1810,13 @@
1747
1810
  margin-right: 5px;
1748
1811
  }
1749
1812
 
1813
+ .e-bigger .e-pivotview,
1814
+ .e-bigger.e-pivotview {
1815
+ /* stylelint-disable */
1816
+ /* stylelint-enable */
1817
+ /* stylelint-disable */
1818
+ /* stylelint-enable */
1819
+ }
1750
1820
  .e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
1751
1821
  .e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
1752
1822
  margin: 4px;
@@ -1809,6 +1879,10 @@
1809
1879
  .e-bigger.e-pivotview th .e-collapse {
1810
1880
  margin-top: 0;
1811
1881
  }
1882
+ .e-bigger .e-pivotview .e-grouping-bar,
1883
+ .e-bigger.e-pivotview .e-grouping-bar {
1884
+ /* stylelint-enable */
1885
+ }
1812
1886
  .e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
1813
1887
  .e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
1814
1888
  height: 36px !important;
@@ -1849,6 +1923,7 @@
1849
1923
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
1850
1924
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
1851
1925
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
1926
+ /* stylelint-disable */
1852
1927
  font-size: 14px !important;
1853
1928
  height: 20px;
1854
1929
  margin-top: 2px;
@@ -1978,8 +2053,15 @@
1978
2053
  }
1979
2054
  .e-bigger .e-pivotview .e-rowcell,
1980
2055
  .e-bigger.e-pivotview .e-rowcell {
2056
+ /* stylelint-disable */
1981
2057
  font-size: 16px !important;
1982
2058
  }
2059
+ .e-bigger .e-pivotview.e-rtl,
2060
+ .e-bigger.e-pivotview.e-rtl {
2061
+ /* stylelint-enable */
2062
+ /* stylelint-disable */
2063
+ /* stylelint-enable */
2064
+ }
1983
2065
  .e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
1984
2066
  .e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
1985
2067
  padding-right: 10px !important;
@@ -1 +1,5 @@
1
- @import 'ej2-pivotview/styles/pivotview/fluent.scss';
1
+ @import 'ej2-base/styles/fluent-definition.scss';
2
+ @import '../pivotfieldlist/fluent-definition.scss';
3
+ @import 'fluent-definition.scss';
4
+ @import 'icons/fluent.scss';
5
+ @import 'all.scss';
@@ -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 {
@@ -228,6 +234,7 @@
228
234
  }
229
235
  .e-pivotview .e-member-editor-dialog {
230
236
  min-width: 320px;
237
+ /* stylelint-disable */
231
238
  }
232
239
  .e-pivotview .e-member-editor-dialog .e-editor-search-container {
233
240
  display: -ms-flexbox;
@@ -241,6 +248,7 @@
241
248
  .e-pivotview .e-member-editor-dialog .e-filter-sort {
242
249
  box-shadow: none;
243
250
  margin-left: 10px;
251
+ /* stylelint-disable */
244
252
  }
245
253
  .e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
246
254
  .e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
@@ -332,6 +340,7 @@
332
340
  }
333
341
  .e-pivotview .e-member-editor-dialog .e-filter-tab-container {
334
342
  border: none;
343
+ /* stylelint-enable */
335
344
  }
336
345
  .e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
337
346
  margin: 0 0 0 6px;
@@ -567,13 +576,16 @@
567
576
  }
568
577
  .e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
569
578
  margin-left: 18px !important;
579
+ /* stylelint-enable */
570
580
  }
571
581
  .e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
582
+ /* stylelint-disable */
572
583
  padding: 0 !important;
573
584
  }
574
585
  .e-pivotview .e-pivot-toolbar .e-reportlist-label {
575
586
  float: left;
576
587
  font-weight: 500;
588
+ /* stylelint-enable */
577
589
  }
578
590
  .e-pivotview .e-pivot-toolbar .e-reportlist-drop {
579
591
  float: right;
@@ -602,6 +614,7 @@
602
614
  }
603
615
 
604
616
  .e-pivotview-report-dialog {
617
+ /* stylelint-disable */
605
618
  max-width: 350px !important;
606
619
  }
607
620
 
@@ -621,6 +634,7 @@
621
634
  max-width: 500px !important;
622
635
  }
623
636
 
637
+ /* stylelint-enable */
624
638
  .e-report-outer {
625
639
  display: inline-block;
626
640
  width: 100%;
@@ -632,6 +646,7 @@
632
646
  width: 40%;
633
647
  }
634
648
 
649
+ /* stylelint-disable */
635
650
  .e-pivotview-report-input {
636
651
  float: right;
637
652
  width: 60% !important;
@@ -653,11 +668,16 @@
653
668
  font-size: 18px !important;
654
669
  }
655
670
 
671
+ /* stylelint-enable */
656
672
  .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
657
673
  .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
658
674
  white-space: nowrap;
659
675
  }
660
676
 
677
+ .e-drillthrough-dialog {
678
+ /* stylelint-disable */
679
+ /* stylelint-enable */
680
+ }
661
681
  .e-drillthrough-dialog .e-drillthrough-body-header-container {
662
682
  margin-bottom: 20px;
663
683
  }
@@ -678,9 +698,18 @@
678
698
  flex-wrap: wrap;
679
699
  }
680
700
 
701
+ .e-bigger .e-pivotview,
702
+ .e-bigger.e-pivotview {
703
+ /* stylelint-disable */
704
+ /* stylelint-enable */
705
+ /* stylelint-disable */
706
+ /* stylelint-enable */
707
+ }
681
708
  .e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
682
709
  .e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
710
+ /* stylelint-disable */
683
711
  height: 46px !important;
712
+ /* stylelint-enable */
684
713
  }
685
714
  .e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
686
715
  .e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
@@ -836,6 +865,18 @@
836
865
  }
837
866
 
838
867
  /*! PivotView theme */
868
+ .e-pivotview {
869
+ /* stylelint-enable */
870
+ /* stylelint-disable */
871
+ /* stylelint-enable */
872
+ /* stylelint-disable */
873
+ /* stylelint-enable */
874
+ /* stylelint-disable */
875
+ /* stylelint-enable */
876
+ /* stylelint-disable */
877
+ /* stylelint-enable */
878
+ /* stylelint-enable */
879
+ }
839
880
  .e-pivotview .e-nextspan {
840
881
  display: inline-block;
841
882
  width: 24px;
@@ -856,6 +897,7 @@
856
897
  text-align: right;
857
898
  }
858
899
  .e-pivotview .e-grid .e-rowcell {
900
+ /* stylelint-disable */
859
901
  font-size: 13px !important;
860
902
  padding-left: 8px;
861
903
  -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 #000;
1194
1242
  border-radius: 0;
1195
1243
  box-shadow: none;
1244
+ /* stylelint-disable */
1196
1245
  color: #000 !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 {
@@ -1541,6 +1593,12 @@
1541
1593
  .e-pivotview .e-expand::before {
1542
1594
  font-size: 10px;
1543
1595
  }
1596
+ .e-pivotview.e-rtl {
1597
+ /* stylelint-disable */
1598
+ /* stylelint-enable */
1599
+ /* stylelint-disable */
1600
+ /* stylelint-enable */
1601
+ }
1544
1602
  .e-pivotview.e-rtl .e-expand::before,
1545
1603
  .e-pivotview.e-rtl .e-collapse::before {
1546
1604
  margin-left: 0;
@@ -1612,8 +1670,10 @@
1612
1670
  padding-right: 8px;
1613
1671
  }
1614
1672
  .e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
1673
+ /* stylelint-disable */
1615
1674
  padding-left: 8px;
1616
1675
  padding-right: 0;
1676
+ /* stylelint-enable */
1617
1677
  }
1618
1678
  .e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
1619
1679
  margin-left: 4px;
@@ -1636,6 +1696,9 @@
1636
1696
  .e-pivotview.e-rtl .e-sortfilterdiv {
1637
1697
  float: left;
1638
1698
  }
1699
+ .e-pivotview.e-device .e-grouping-bar {
1700
+ /* stylelint-disable */
1701
+ }
1639
1702
  .e-pivotview.e-device .e-grouping-bar .e-pivot-button {
1640
1703
  line-height: 1em !important;
1641
1704
  }
@@ -1713,6 +1776,13 @@
1713
1776
  margin-right: 5px;
1714
1777
  }
1715
1778
 
1779
+ .e-bigger .e-pivotview,
1780
+ .e-bigger.e-pivotview {
1781
+ /* stylelint-disable */
1782
+ /* stylelint-enable */
1783
+ /* stylelint-disable */
1784
+ /* stylelint-enable */
1785
+ }
1716
1786
  .e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
1717
1787
  .e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
1718
1788
  margin: 5px;
@@ -1775,6 +1845,10 @@
1775
1845
  .e-bigger.e-pivotview th .e-collapse {
1776
1846
  margin-top: 2px;
1777
1847
  }
1848
+ .e-bigger .e-pivotview .e-grouping-bar,
1849
+ .e-bigger.e-pivotview .e-grouping-bar {
1850
+ /* stylelint-enable */
1851
+ }
1778
1852
  .e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
1779
1853
  .e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
1780
1854
  height: 36px !important;
@@ -1815,6 +1889,7 @@
1815
1889
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
1816
1890
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
1817
1891
  .e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
1892
+ /* stylelint-disable */
1818
1893
  font-size: 16px !important;
1819
1894
  height: 20px;
1820
1895
  margin-top: 0;
@@ -1931,8 +2006,15 @@
1931
2006
  }
1932
2007
  .e-bigger .e-pivotview .e-rowcell,
1933
2008
  .e-bigger.e-pivotview .e-rowcell {
2009
+ /* stylelint-disable */
1934
2010
  font-size: 13px !important;
1935
2011
  }
2012
+ .e-bigger .e-pivotview.e-rtl,
2013
+ .e-bigger.e-pivotview.e-rtl {
2014
+ /* stylelint-enable */
2015
+ /* stylelint-disable */
2016
+ /* stylelint-enable */
2017
+ }
1936
2018
  .e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
1937
2019
  .e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
1938
2020
  padding-right: 10px !important;
@@ -1 +1,5 @@
1
- @import 'ej2-pivotview/styles/pivotview/highcontrast-light.scss';
1
+ @import 'ej2-base/styles/highcontrast-light-definition.scss';
2
+ @import '../pivotfieldlist/highcontrast-light-definition.scss';
3
+ @import 'highcontrast-light-definition.scss';
4
+ @import 'icons/highcontrast-light.scss';
5
+ @import 'all.scss';