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

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 (165) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +8 -0
  3. package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
  4. package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
  5. package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
  6. package/esm2020/src/pivotview/pivotview-all.module.mjs +65 -0
  7. package/esm2020/src/pivotview/pivotview.component.mjs +163 -0
  8. package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
  9. package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +353 -0
  11. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +353 -0
  13. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  14. package/package.json +26 -12
  15. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
  16. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
  17. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
  18. package/src/pivotview/pivotview-all.module.d.ts +6 -0
  19. package/src/pivotview/pivotview.component.d.ts +3 -0
  20. package/src/pivotview/pivotview.module.d.ts +6 -0
  21. package/styles/bootstrap-dark.css +1 -1
  22. package/styles/bootstrap.css +1 -1
  23. package/styles/bootstrap4.css +1 -1
  24. package/styles/bootstrap5-dark.css +1 -1
  25. package/styles/bootstrap5.css +1 -1
  26. package/styles/fabric-dark.css +1 -1
  27. package/styles/fabric.css +1 -1
  28. package/styles/fluent-dark.css +1 -1
  29. package/styles/fluent.css +1 -1
  30. package/styles/highcontrast-light.css +1 -1
  31. package/styles/highcontrast.css +1 -1
  32. package/styles/material-dark.css +1 -1
  33. package/styles/material.css +1 -1
  34. package/styles/pivotfieldlist/_all.scss +2 -0
  35. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +240 -0
  36. package/styles/pivotfieldlist/_bootstrap-definition.scss +194 -0
  37. package/styles/pivotfieldlist/_bootstrap4-definition.scss +194 -0
  38. package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
  39. package/styles/pivotfieldlist/_bootstrap5-definition.scss +198 -0
  40. package/styles/pivotfieldlist/_fabric-dark-definition.scss +200 -0
  41. package/styles/pivotfieldlist/_fabric-definition.scss +194 -0
  42. package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
  43. package/styles/pivotfieldlist/_fluent-definition.scss +198 -0
  44. package/styles/pivotfieldlist/_fusionnew-definition.scss +197 -0
  45. package/styles/pivotfieldlist/_highcontrast-definition.scss +195 -0
  46. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +195 -0
  47. package/styles/pivotfieldlist/_layout.scss +1981 -0
  48. package/styles/pivotfieldlist/_material-dark-definition.scss +195 -0
  49. package/styles/pivotfieldlist/_material-definition.scss +195 -0
  50. package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
  51. package/styles/pivotfieldlist/_tailwind-definition.scss +198 -0
  52. package/styles/pivotfieldlist/_theme.scss +1998 -0
  53. package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
  54. package/styles/pivotfieldlist/bootstrap.scss +4 -1
  55. package/styles/pivotfieldlist/bootstrap4.scss +4 -1
  56. package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
  57. package/styles/pivotfieldlist/bootstrap5.scss +4 -1
  58. package/styles/pivotfieldlist/fabric-dark.scss +4 -1
  59. package/styles/pivotfieldlist/fabric.scss +4 -1
  60. package/styles/pivotfieldlist/fluent-dark.scss +4 -1
  61. package/styles/pivotfieldlist/fluent.scss +4 -1
  62. package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
  63. package/styles/pivotfieldlist/highcontrast.scss +4 -1
  64. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
  65. package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
  66. package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
  67. package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
  68. package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
  69. package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
  70. package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
  71. package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
  72. package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
  73. package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
  74. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
  75. package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
  76. package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
  77. package/styles/pivotfieldlist/icons/_material.scss +358 -0
  78. package/styles/pivotfieldlist/icons/_material3.scss +353 -0
  79. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
  80. package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
  81. package/styles/pivotfieldlist/material-dark.scss +4 -1
  82. package/styles/pivotfieldlist/material.scss +4 -1
  83. package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
  84. package/styles/pivotfieldlist/tailwind.scss +4 -1
  85. package/styles/pivotview/_all.scss +2 -0
  86. package/styles/pivotview/_bootstrap-dark-definition.scss +164 -0
  87. package/styles/pivotview/_bootstrap-definition.scss +161 -0
  88. package/styles/pivotview/_bootstrap4-definition.scss +161 -0
  89. package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
  90. package/styles/pivotview/_bootstrap5-definition.scss +166 -0
  91. package/styles/pivotview/_fabric-dark-definition.scss +163 -0
  92. package/styles/pivotview/_fabric-definition.scss +160 -0
  93. package/styles/pivotview/_fluent-dark-definition.scss +1 -0
  94. package/styles/pivotview/_fluent-definition.scss +166 -0
  95. package/styles/pivotview/_fusionnew-definition.scss +166 -0
  96. package/styles/pivotview/_highcontrast-definition.scss +159 -0
  97. package/styles/pivotview/_highcontrast-light-definition.scss +160 -0
  98. package/styles/pivotview/_layout.scss +1118 -0
  99. package/styles/pivotview/_material-dark-definition.scss +167 -0
  100. package/styles/pivotview/_material-definition.scss +163 -0
  101. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  102. package/styles/pivotview/_tailwind-definition.scss +166 -0
  103. package/styles/pivotview/_theme.scss +2026 -0
  104. package/styles/pivotview/bootstrap-dark.css +1 -1
  105. package/styles/pivotview/bootstrap-dark.scss +5 -1
  106. package/styles/pivotview/bootstrap.css +1 -1
  107. package/styles/pivotview/bootstrap.scss +5 -1
  108. package/styles/pivotview/bootstrap4.css +1 -1
  109. package/styles/pivotview/bootstrap4.scss +5 -1
  110. package/styles/pivotview/bootstrap5-dark.css +1 -1
  111. package/styles/pivotview/bootstrap5-dark.scss +4 -1
  112. package/styles/pivotview/bootstrap5.css +1 -1
  113. package/styles/pivotview/bootstrap5.scss +5 -1
  114. package/styles/pivotview/fabric-dark.css +1 -1
  115. package/styles/pivotview/fabric-dark.scss +5 -1
  116. package/styles/pivotview/fabric.css +1 -1
  117. package/styles/pivotview/fabric.scss +5 -1
  118. package/styles/pivotview/fluent-dark.css +1 -1
  119. package/styles/pivotview/fluent-dark.scss +4 -1
  120. package/styles/pivotview/fluent.css +1 -1
  121. package/styles/pivotview/fluent.scss +5 -1
  122. package/styles/pivotview/highcontrast-light.css +1 -1
  123. package/styles/pivotview/highcontrast-light.scss +5 -1
  124. package/styles/pivotview/highcontrast.css +1 -1
  125. package/styles/pivotview/highcontrast.scss +5 -1
  126. package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
  127. package/styles/pivotview/icons/_bootstrap.scss +184 -0
  128. package/styles/pivotview/icons/_bootstrap4.scss +184 -0
  129. package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
  130. package/styles/pivotview/icons/_bootstrap5.scss +183 -0
  131. package/styles/pivotview/icons/_fabric-dark.scss +184 -0
  132. package/styles/pivotview/icons/_fabric.scss +184 -0
  133. package/styles/pivotview/icons/_fluent-dark.scss +1 -0
  134. package/styles/pivotview/icons/_fluent.scss +183 -0
  135. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  136. package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
  137. package/styles/pivotview/icons/_highcontrast.scss +183 -0
  138. package/styles/pivotview/icons/_material-dark.scss +184 -0
  139. package/styles/pivotview/icons/_material.scss +184 -0
  140. package/styles/pivotview/icons/_material3.scss +183 -0
  141. package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
  142. package/styles/pivotview/icons/_tailwind.scss +183 -0
  143. package/styles/pivotview/material-dark.css +1 -1
  144. package/styles/pivotview/material-dark.scss +5 -1
  145. package/styles/pivotview/material.css +1 -1
  146. package/styles/pivotview/material.scss +5 -1
  147. package/styles/pivotview/tailwind-dark.css +1 -1
  148. package/styles/pivotview/tailwind-dark.scss +4 -1
  149. package/styles/pivotview/tailwind.css +1 -1
  150. package/styles/pivotview/tailwind.scss +5 -1
  151. package/styles/tailwind-dark.css +1 -1
  152. package/styles/tailwind.css +1 -1
  153. package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
  154. package/@syncfusion/ej2-angular-pivotview.es5.js +0 -439
  155. package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
  156. package/@syncfusion/ej2-angular-pivotview.js +0 -409
  157. package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
  158. package/CHANGELOG.md +0 -834
  159. package/dist/ej2-angular-pivotview.umd.js +0 -706
  160. package/dist/ej2-angular-pivotview.umd.js.map +0 -1
  161. package/dist/ej2-angular-pivotview.umd.min.js +0 -11
  162. package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
  163. package/ej2-angular-pivotview.d.ts +0 -6
  164. package/ej2-angular-pivotview.metadata.json +0 -1
  165. package/postinstall/tagchange.js +0 -18
@@ -1846,7 +1846,7 @@
1846
1846
  }
1847
1847
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1848
1848
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1849
- width: 50%;
1849
+ width: auto;
1850
1850
  }
1851
1851
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1852
1852
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -1 +1,5 @@
1
- @import 'ej2-pivotview/styles/pivotview/bootstrap-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap-dark-definition.scss';
2
+ @import '../pivotfieldlist/bootstrap-dark-definition.scss';
3
+ @import 'bootstrap-dark-definition.scss';
4
+ @import 'icons/bootstrap-dark.scss';
5
+ @import 'all.scss';
@@ -1845,7 +1845,7 @@
1845
1845
  }
1846
1846
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1847
1847
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1848
- width: 50%;
1848
+ width: auto;
1849
1849
  }
1850
1850
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1851
1851
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -1 +1,5 @@
1
- @import 'ej2-pivotview/styles/pivotview/bootstrap.scss';
1
+ @import 'ej2-base/styles/bootstrap-definition.scss';
2
+ @import '../pivotfieldlist/bootstrap-definition.scss';
3
+ @import 'bootstrap-definition.scss';
4
+ @import 'icons/bootstrap.scss';
5
+ @import 'all.scss';
@@ -1926,7 +1926,7 @@
1926
1926
  }
1927
1927
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1928
1928
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1929
- width: 50%;
1929
+ width: auto;
1930
1930
  }
1931
1931
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1932
1932
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -1 +1,5 @@
1
- @import 'ej2-pivotview/styles/pivotview/bootstrap4.scss';
1
+ @import 'ej2-base/styles/bootstrap4-definition.scss';
2
+ @import '../pivotfieldlist/bootstrap4-definition.scss';
3
+ @import 'bootstrap4-definition.scss';
4
+ @import 'icons/bootstrap4.scss';
5
+ @import 'all.scss';
@@ -1893,7 +1893,7 @@
1893
1893
  }
1894
1894
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1895
1895
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1896
- width: 50%;
1896
+ width: auto;
1897
1897
  }
1898
1898
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1899
1899
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -1 +1,4 @@
1
- @import 'ej2-pivotview/styles/pivotview/bootstrap5-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap5-dark-definition.scss';
2
+ @import 'bootstrap5-dark-definition.scss';
3
+ @import 'icons/bootstrap5-dark.scss';
4
+ @import 'all.scss';
@@ -1895,7 +1895,7 @@
1895
1895
  }
1896
1896
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1897
1897
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1898
- width: 50%;
1898
+ width: auto;
1899
1899
  }
1900
1900
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1901
1901
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -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';
@@ -1853,7 +1853,7 @@
1853
1853
  }
1854
1854
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1855
1855
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1856
- width: 50%;
1856
+ width: auto;
1857
1857
  }
1858
1858
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1859
1859
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -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';
@@ -1856,7 +1856,7 @@
1856
1856
  }
1857
1857
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1858
1858
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1859
- width: 50%;
1859
+ width: auto;
1860
1860
  }
1861
1861
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1862
1862
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -1 +1,5 @@
1
- @import 'ej2-pivotview/styles/pivotview/fabric.scss';
1
+ @import 'ej2-base/styles/fabric-definition.scss';
2
+ @import '../pivotfieldlist/fabric-definition.scss';
3
+ @import 'fabric-definition.scss';
4
+ @import 'icons/fabric.scss';
5
+ @import 'all.scss';
@@ -1883,7 +1883,7 @@
1883
1883
  }
1884
1884
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1885
1885
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1886
- width: 50%;
1886
+ width: auto;
1887
1887
  }
1888
1888
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1889
1889
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -1 +1,4 @@
1
- @import 'ej2-pivotview/styles/pivotview/fluent-dark.scss';
1
+ @import 'ej2-base/styles/fluent-dark-definition.scss';
2
+ @import 'fluent-dark-definition.scss';
3
+ @import 'icons/fluent-dark.scss';
4
+ @import 'all.scss';
@@ -1885,7 +1885,7 @@
1885
1885
  }
1886
1886
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1887
1887
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1888
- width: 50%;
1888
+ width: auto;
1889
1889
  }
1890
1890
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1891
1891
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -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';
@@ -1850,7 +1850,7 @@
1850
1850
  }
1851
1851
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1852
1852
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1853
- width: 50%;
1853
+ width: auto;
1854
1854
  }
1855
1855
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1856
1856
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -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';
@@ -1850,7 +1850,7 @@
1850
1850
  }
1851
1851
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-row-maindiv.e-page-size-disable .e-pivotview-text-div,
1852
1852
  .e-pivotview .e-pivot-pager.e-compact-view .e-pivot-pager-maindiv:not(.e-pivot-pager-single-maindiv) .e-pivot-pager-column-maindiv.e-page-size-disable .e-pivotview-text-div {
1853
- width: 50%;
1853
+ width: auto;
1854
1854
  }
1855
1855
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-row-pager-settings,
1856
1856
  .e-pivotview .e-pivot-pager.e-compact-view.e-rtl .e-pivot-pager-maindiv .e-pivot-pager-row-maindiv .e-pivotview-text-div .e-pivot-column-pager-settings,
@@ -1 +1,5 @@
1
- @import 'ej2-pivotview/styles/pivotview/highcontrast.scss';
1
+ @import 'ej2-base/styles/highcontrast-definition.scss';
2
+ @import '../pivotfieldlist/highcontrast-definition.scss';
3
+ @import 'highcontrast-definition.scss';
4
+ @import 'icons/highcontrast.scss';
5
+ @import 'all.scss';
@@ -0,0 +1,184 @@
1
+ @include export-module('pivotview-bootstrap-icons') {
2
+ .e-pivotview {
3
+ .e-expand::before {
4
+ content: '\e207';
5
+ }
6
+
7
+ .e-collapse::before {
8
+ content: '\e95d';
9
+ }
10
+
11
+ &.e-rtl {
12
+ .e-expand::before {
13
+ content: '\e990';
14
+ }
15
+ }
16
+
17
+ .e-sort::before {
18
+ content: '\ea79';
19
+ }
20
+
21
+ .e-pv-filter::before {
22
+ content: '\ebb0';
23
+ }
24
+
25
+ .e-pv-filtered::before {
26
+ color: $pivotgrid-active-color;
27
+ content: '\ebb2';
28
+ }
29
+
30
+ .e-remove::before {
31
+ content: '\ea7b';
32
+ }
33
+
34
+ .e-selected-option-icon::before {
35
+ content: '\ea84';
36
+ }
37
+
38
+ .e-clear-filter-icon::before {
39
+ content: '\ebab';
40
+ }
41
+
42
+ .e-dropdown-icon::before {
43
+ content: '\e95d';
44
+ }
45
+
46
+ .e-export::before {
47
+ content: '\e702';
48
+ }
49
+
50
+ .e-new-report::before {
51
+ content: '\e709';
52
+ }
53
+
54
+ .e-save-report::before {
55
+ content: '\e701';
56
+ }
57
+
58
+ .e-saveas-report::before {
59
+ content: '\e703';
60
+ }
61
+
62
+ .e-rename-report::before {
63
+ content: '\e704';
64
+ }
65
+
66
+ .e-remove-report::before {
67
+ content: '\e70c';
68
+ }
69
+
70
+ .e-sub-total::before {
71
+ content: '\e710';
72
+ }
73
+
74
+ .e-grand-total::before {
75
+ content: '\e708';
76
+ }
77
+
78
+ .e-toolbar-fieldlist::before {
79
+ content: '\e434';
80
+ }
81
+
82
+ .e-toolbar-grid::before {
83
+ content: '\e70f';
84
+ }
85
+
86
+ .e-toolbar-chart::before {
87
+ content: '\e70d';
88
+ }
89
+
90
+ .e-toolbar-formatting::before {
91
+ content: '\e725';
92
+ }
93
+
94
+ .e-pivot-button .e-edit::before {
95
+ content: '\e338';
96
+ }
97
+
98
+ .e-sort-ascend-icon::before {
99
+ content: '\e734';
100
+ }
101
+
102
+ .e-sort-descend-icon::before {
103
+ content: '\e733';
104
+ }
105
+ }
106
+
107
+ .e-pivotview-pdf-export::before {
108
+ content: '\e707';
109
+ }
110
+
111
+ .e-pivotview-excel-export::before {
112
+ content: '\e70b';
113
+ }
114
+
115
+ .e-pivotview-csv-export::before {
116
+ content: '\e712';
117
+ }
118
+
119
+ .e-pivotview-png-export::before {
120
+ content: '\e715';
121
+ }
122
+
123
+ .e-pivotview-jpeg-export::before {
124
+ content: '\e713';
125
+ }
126
+
127
+ .e-pivotview-svg-export::before {
128
+ content: '\e716';
129
+ }
130
+
131
+ .e-mdx::before {
132
+ content: '\e724';
133
+ }
134
+
135
+ .e-pivotview-select-icon::before {
136
+ content: '\e614';
137
+ }
138
+
139
+ .e-pivotview-grid::before {
140
+ content: '\e70f';
141
+ }
142
+
143
+ .e-pivotview-export::before {
144
+ content: '\e702';
145
+ }
146
+
147
+ .e-pivotview-expand::before {
148
+ content: '\e558';
149
+ }
150
+
151
+ .e-pivotview-collapse::before {
152
+ content: '\e557';
153
+ }
154
+
155
+ .e-pivot-format-menu::before {
156
+ content: '\e728';
157
+ }
158
+
159
+ .e-pivot-number-format-menu::before {
160
+ content: '\e711';
161
+ }
162
+
163
+ .e-pivot-conditional-format-menu::before {
164
+ content: '\e725';
165
+ }
166
+
167
+ .e-pivot-format-toolbar::before {
168
+ content: '\e711';
169
+ }
170
+
171
+ .e-pivotview-group::before {
172
+ content: '\e740';
173
+ }
174
+
175
+ .e-pivotview-ungroup::before {
176
+ content: '\e741';
177
+ }
178
+
179
+ .e-level-options {
180
+ .e-selected-level-icon::before {
181
+ content: '\e614';
182
+ }
183
+ }
184
+ }
@@ -0,0 +1,184 @@
1
+ @include export-module('pivotview-bootstrap-icons') {
2
+ .e-pivotview {
3
+ .e-expand::before {
4
+ content: '\e207';
5
+ }
6
+
7
+ .e-collapse::before {
8
+ content: '\e95d';
9
+ }
10
+
11
+ &.e-rtl {
12
+ .e-expand::before {
13
+ content: '\e990';
14
+ }
15
+ }
16
+
17
+ .e-sort::before {
18
+ content: '\ea79';
19
+ }
20
+
21
+ .e-pv-filter::before {
22
+ content: '\ebb0';
23
+ }
24
+
25
+ .e-pv-filtered::before {
26
+ color: $pivotgrid-active-color;
27
+ content: '\ebb2';
28
+ }
29
+
30
+ .e-remove::before {
31
+ content: '\ea7b';
32
+ }
33
+
34
+ .e-selected-option-icon::before {
35
+ content: '\ea84';
36
+ }
37
+
38
+ .e-clear-filter-icon::before {
39
+ content: '\ebab';
40
+ }
41
+
42
+ .e-dropdown-icon::before {
43
+ content: '\e95d';
44
+ }
45
+
46
+ .e-export::before {
47
+ content: '\e702';
48
+ }
49
+
50
+ .e-new-report::before {
51
+ content: '\e709';
52
+ }
53
+
54
+ .e-save-report::before {
55
+ content: '\e701';
56
+ }
57
+
58
+ .e-saveas-report::before {
59
+ content: '\e703';
60
+ }
61
+
62
+ .e-rename-report::before {
63
+ content: '\e704';
64
+ }
65
+
66
+ .e-remove-report::before {
67
+ content: '\e70c';
68
+ }
69
+
70
+ .e-sub-total::before {
71
+ content: '\e710';
72
+ }
73
+
74
+ .e-grand-total::before {
75
+ content: '\e708';
76
+ }
77
+
78
+ .e-toolbar-fieldlist::before {
79
+ content: '\e434';
80
+ }
81
+
82
+ .e-toolbar-grid::before {
83
+ content: '\e70f';
84
+ }
85
+
86
+ .e-toolbar-chart::before {
87
+ content: '\e70d';
88
+ }
89
+
90
+ .e-toolbar-formatting::before {
91
+ content: '\e725';
92
+ }
93
+
94
+ .e-pivot-button .e-edit::before {
95
+ content: '\e338';
96
+ }
97
+
98
+ .e-sort-ascend-icon::before {
99
+ content: '\e734';
100
+ }
101
+
102
+ .e-sort-descend-icon::before {
103
+ content: '\e733';
104
+ }
105
+ }
106
+
107
+ .e-pivotview-pdf-export::before {
108
+ content: '\e707';
109
+ }
110
+
111
+ .e-pivotview-excel-export::before {
112
+ content: '\e70b';
113
+ }
114
+
115
+ .e-pivotview-csv-export::before {
116
+ content: '\e712';
117
+ }
118
+
119
+ .e-pivotview-png-export::before {
120
+ content: '\e715';
121
+ }
122
+
123
+ .e-pivotview-jpeg-export::before {
124
+ content: '\e713';
125
+ }
126
+
127
+ .e-pivotview-svg-export::before {
128
+ content: '\e716';
129
+ }
130
+
131
+ .e-mdx::before {
132
+ content: '\e724';
133
+ }
134
+
135
+ .e-pivotview-select-icon::before {
136
+ content: '\e614';
137
+ }
138
+
139
+ .e-pivotview-grid::before {
140
+ content: '\e70f';
141
+ }
142
+
143
+ .e-pivotview-export::before {
144
+ content: '\e702';
145
+ }
146
+
147
+ .e-pivotview-expand::before {
148
+ content: '\e558';
149
+ }
150
+
151
+ .e-pivotview-collapse::before {
152
+ content: '\e557';
153
+ }
154
+
155
+ .e-pivot-format-menu::before {
156
+ content: '\e728';
157
+ }
158
+
159
+ .e-pivot-number-format-menu::before {
160
+ content: '\e711';
161
+ }
162
+
163
+ .e-pivot-conditional-format-menu::before {
164
+ content: '\e725';
165
+ }
166
+
167
+ .e-pivot-format-toolbar::before {
168
+ content: '\e711';
169
+ }
170
+
171
+ .e-pivotview-group::before {
172
+ content: '\e740';
173
+ }
174
+
175
+ .e-pivotview-ungroup::before {
176
+ content: '\e741';
177
+ }
178
+
179
+ .e-level-options {
180
+ .e-selected-level-icon::before {
181
+ content: '\e614';
182
+ }
183
+ }
184
+ }