@syncfusion/ej2-angular-grids 23.2.6-ngcc → 23.2.7-52849

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 (193) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/grid/aggregate-columns.directive.mjs +84 -0
  3. package/esm2020/src/grid/aggregates.directive.mjs +69 -0
  4. package/esm2020/src/grid/columns.directive.mjs +100 -0
  5. package/esm2020/src/grid/grid-all.module.mjs +98 -0
  6. package/esm2020/src/grid/grid.component.mjs +274 -0
  7. package/esm2020/src/grid/grid.module.mjs +61 -0
  8. package/esm2020/src/grid/stacked-column.directive.mjs +100 -0
  9. package/esm2020/src/index.mjs +12 -0
  10. package/esm2020/src/pager/pager-all.module.mjs +23 -0
  11. package/esm2020/src/pager/pager.component.mjs +66 -0
  12. package/esm2020/src/pager/pager.module.mjs +25 -0
  13. package/esm2020/syncfusion-ej2-angular-grids.mjs +5 -0
  14. package/fesm2015/syncfusion-ej2-angular-grids.mjs +859 -0
  15. package/fesm2015/syncfusion-ej2-angular-grids.mjs.map +1 -0
  16. package/fesm2020/syncfusion-ej2-angular-grids.mjs +859 -0
  17. package/fesm2020/syncfusion-ej2-angular-grids.mjs.map +1 -0
  18. package/package.json +34 -20
  19. package/schematics/utils/lib-details.js +2 -2
  20. package/schematics/utils/lib-details.ts +2 -2
  21. package/src/grid/aggregate-columns.directive.d.ts +5 -0
  22. package/src/grid/aggregates.directive.d.ts +5 -0
  23. package/src/grid/columns.directive.d.ts +5 -0
  24. package/src/grid/grid-all.module.d.ts +6 -0
  25. package/src/grid/grid.component.d.ts +3 -0
  26. package/src/grid/grid.module.d.ts +10 -0
  27. package/src/grid/stacked-column.directive.d.ts +5 -0
  28. package/src/pager/pager-all.module.d.ts +6 -0
  29. package/src/pager/pager.component.d.ts +3 -0
  30. package/src/pager/pager.module.d.ts +6 -0
  31. package/styles/bootstrap-dark.css +0 -4
  32. package/styles/bootstrap.css +0 -4
  33. package/styles/bootstrap4.css +0 -4
  34. package/styles/bootstrap5-dark.css +0 -4
  35. package/styles/bootstrap5.css +0 -4
  36. package/styles/excel-filter/_all.scss +2 -0
  37. package/styles/excel-filter/_bootstrap-dark-definition.scss +62 -0
  38. package/styles/excel-filter/_bootstrap-definition.scss +67 -0
  39. package/styles/excel-filter/_bootstrap4-definition.scss +72 -0
  40. package/styles/excel-filter/_bootstrap5-dark-definition.scss +1 -0
  41. package/styles/excel-filter/_bootstrap5-definition.scss +73 -0
  42. package/styles/excel-filter/_fabric-dark-definition.scss +62 -0
  43. package/styles/excel-filter/_fabric-definition.scss +67 -0
  44. package/styles/excel-filter/_fluent-dark-definition.scss +1 -0
  45. package/styles/excel-filter/_fluent-definition.scss +73 -0
  46. package/styles/excel-filter/_fusionnew-definition.scss +73 -0
  47. package/styles/excel-filter/_highcontrast-definition.scss +62 -0
  48. package/styles/excel-filter/_highcontrast-light-definition.scss +60 -0
  49. package/styles/excel-filter/_layout.scss +511 -0
  50. package/styles/excel-filter/_material-dark-definition.scss +64 -0
  51. package/styles/excel-filter/_material-definition.scss +65 -0
  52. package/styles/excel-filter/_material3-dark-definition.scss +1 -0
  53. package/styles/excel-filter/_material3-definition.scss +73 -0
  54. package/styles/excel-filter/_office-365-definition.scss +1 -0
  55. package/styles/excel-filter/_tailwind-dark-definition.scss +1 -0
  56. package/styles/excel-filter/_tailwind-definition.scss +72 -0
  57. package/styles/excel-filter/_theme.scss +31 -0
  58. package/styles/excel-filter/bootstrap-dark.scss +17 -1
  59. package/styles/excel-filter/bootstrap.scss +17 -1
  60. package/styles/excel-filter/bootstrap4.scss +17 -1
  61. package/styles/excel-filter/bootstrap5-dark.scss +17 -1
  62. package/styles/excel-filter/bootstrap5.scss +17 -1
  63. package/styles/excel-filter/fabric-dark.scss +17 -1
  64. package/styles/excel-filter/fabric.scss +17 -1
  65. package/styles/excel-filter/fluent-dark.scss +17 -1
  66. package/styles/excel-filter/fluent.scss +17 -1
  67. package/styles/excel-filter/highcontrast-light.scss +17 -1
  68. package/styles/excel-filter/highcontrast.scss +17 -1
  69. package/styles/excel-filter/icons/_bootstrap-dark.scss +38 -0
  70. package/styles/excel-filter/icons/_bootstrap.scss +38 -0
  71. package/styles/excel-filter/icons/_bootstrap4.scss +42 -0
  72. package/styles/excel-filter/icons/_bootstrap5-dark.scss +1 -0
  73. package/styles/excel-filter/icons/_bootstrap5.scss +42 -0
  74. package/styles/excel-filter/icons/_fabric-dark.scss +38 -0
  75. package/styles/excel-filter/icons/_fabric.scss +38 -0
  76. package/styles/excel-filter/icons/_fluent-dark.scss +1 -0
  77. package/styles/excel-filter/icons/_fluent.scss +42 -0
  78. package/styles/excel-filter/icons/_fusionnew.scss +42 -0
  79. package/styles/excel-filter/icons/_highcontrast-light.scss +38 -0
  80. package/styles/excel-filter/icons/_highcontrast.scss +38 -0
  81. package/styles/excel-filter/icons/_material-dark.scss +38 -0
  82. package/styles/excel-filter/icons/_material.scss +38 -0
  83. package/styles/excel-filter/icons/_material3-dark.scss +1 -0
  84. package/styles/excel-filter/icons/_material3.scss +42 -0
  85. package/styles/excel-filter/icons/_tailwind-dark.scss +1 -0
  86. package/styles/excel-filter/icons/_tailwind.scss +42 -0
  87. package/styles/excel-filter/material-dark.scss +17 -1
  88. package/styles/excel-filter/material.scss +17 -1
  89. package/styles/excel-filter/material3-dark.scss +17 -1
  90. package/styles/excel-filter/material3.scss +17 -1
  91. package/styles/excel-filter/tailwind-dark.scss +17 -1
  92. package/styles/excel-filter/tailwind.scss +17 -1
  93. package/styles/fabric-dark.css +0 -4
  94. package/styles/fabric.css +0 -4
  95. package/styles/fluent-dark.css +0 -4
  96. package/styles/fluent.css +0 -4
  97. package/styles/grid/_all.scss +2 -0
  98. package/styles/grid/_bootstrap-dark-definition.scss +633 -0
  99. package/styles/grid/_bootstrap-definition.scss +635 -0
  100. package/styles/grid/_bootstrap4-definition.scss +640 -0
  101. package/styles/grid/_bootstrap5-dark-definition.scss +1 -0
  102. package/styles/grid/_bootstrap5-definition.scss +634 -0
  103. package/styles/grid/_fabric-dark-definition.scss +631 -0
  104. package/styles/grid/_fabric-definition.scss +631 -0
  105. package/styles/grid/_fluent-dark-definition.scss +1 -0
  106. package/styles/grid/_fluent-definition.scss +626 -0
  107. package/styles/grid/_fusionnew-definition.scss +610 -0
  108. package/styles/grid/_highcontrast-definition.scss +631 -0
  109. package/styles/grid/_highcontrast-light-definition.scss +627 -0
  110. package/styles/grid/_layout.scss +5383 -0
  111. package/styles/grid/_material-dark-definition.scss +631 -0
  112. package/styles/grid/_material-definition.scss +629 -0
  113. package/styles/grid/_material3-dark-definition.scss +1 -0
  114. package/styles/grid/_material3-definition.scss +641 -0
  115. package/styles/grid/_office-365-definition.scss +1 -0
  116. package/styles/grid/_tailwind-dark-definition.scss +1 -0
  117. package/styles/grid/_tailwind-definition.scss +640 -0
  118. package/styles/grid/_theme.scss +943 -0
  119. package/styles/grid/bootstrap-dark.css +0 -4
  120. package/styles/grid/bootstrap-dark.scss +21 -1
  121. package/styles/grid/bootstrap.css +0 -4
  122. package/styles/grid/bootstrap.scss +21 -1
  123. package/styles/grid/bootstrap4.css +0 -4
  124. package/styles/grid/bootstrap4.scss +21 -1
  125. package/styles/grid/bootstrap5-dark.css +0 -4
  126. package/styles/grid/bootstrap5-dark.scss +21 -1
  127. package/styles/grid/bootstrap5.css +0 -4
  128. package/styles/grid/bootstrap5.scss +21 -1
  129. package/styles/grid/fabric-dark.css +0 -4
  130. package/styles/grid/fabric-dark.scss +21 -1
  131. package/styles/grid/fabric.css +0 -4
  132. package/styles/grid/fabric.scss +21 -1
  133. package/styles/grid/fluent-dark.css +0 -4
  134. package/styles/grid/fluent-dark.scss +21 -1
  135. package/styles/grid/fluent.css +0 -4
  136. package/styles/grid/fluent.scss +21 -1
  137. package/styles/grid/highcontrast-light.css +0 -4
  138. package/styles/grid/highcontrast-light.scss +21 -1
  139. package/styles/grid/highcontrast.css +0 -4
  140. package/styles/grid/highcontrast.scss +21 -1
  141. package/styles/grid/icons/_bootstrap-dark.scss +226 -0
  142. package/styles/grid/icons/_bootstrap.scss +226 -0
  143. package/styles/grid/icons/_bootstrap4.scss +225 -0
  144. package/styles/grid/icons/_bootstrap5-dark.scss +1 -0
  145. package/styles/grid/icons/_bootstrap5.scss +246 -0
  146. package/styles/grid/icons/_fabric-dark.scss +225 -0
  147. package/styles/grid/icons/_fabric.scss +225 -0
  148. package/styles/grid/icons/_fluent-dark.scss +1 -0
  149. package/styles/grid/icons/_fluent.scss +246 -0
  150. package/styles/grid/icons/_fusionnew.scss +246 -0
  151. package/styles/grid/icons/_highcontrast-light.scss +225 -0
  152. package/styles/grid/icons/_highcontrast.scss +225 -0
  153. package/styles/grid/icons/_material-dark.scss +225 -0
  154. package/styles/grid/icons/_material.scss +225 -0
  155. package/styles/grid/icons/_material3-dark.scss +1 -0
  156. package/styles/grid/icons/_material3.scss +249 -0
  157. package/styles/grid/icons/_tailwind-dark.scss +1 -0
  158. package/styles/grid/icons/_tailwind.scss +246 -0
  159. package/styles/grid/material-dark.css +0 -4
  160. package/styles/grid/material-dark.scss +21 -1
  161. package/styles/grid/material.css +0 -4
  162. package/styles/grid/material.scss +21 -1
  163. package/styles/grid/material3-dark.css +0 -4
  164. package/styles/grid/material3-dark.scss +21 -1
  165. package/styles/grid/material3.css +0 -4
  166. package/styles/grid/material3.scss +21 -1
  167. package/styles/grid/tailwind-dark.css +0 -4
  168. package/styles/grid/tailwind-dark.scss +21 -1
  169. package/styles/grid/tailwind.css +0 -4
  170. package/styles/grid/tailwind.scss +21 -1
  171. package/styles/highcontrast-light.css +0 -4
  172. package/styles/highcontrast.css +0 -4
  173. package/styles/material-dark.css +0 -4
  174. package/styles/material.css +0 -4
  175. package/styles/material3-dark.css +0 -59
  176. package/styles/material3-dark.scss +1 -0
  177. package/styles/material3.css +0 -115
  178. package/styles/material3.scss +1 -0
  179. package/styles/tailwind-dark.css +0 -4
  180. package/styles/tailwind.css +0 -4
  181. package/syncfusion-ej2-angular-grids.d.ts +5 -0
  182. package/@syncfusion/ej2-angular-grids.es5.js +0 -988
  183. package/@syncfusion/ej2-angular-grids.es5.js.map +0 -1
  184. package/@syncfusion/ej2-angular-grids.js +0 -927
  185. package/@syncfusion/ej2-angular-grids.js.map +0 -1
  186. package/CHANGELOG.md +0 -2870
  187. package/dist/ej2-angular-grids.umd.js +0 -1585
  188. package/dist/ej2-angular-grids.umd.js.map +0 -1
  189. package/dist/ej2-angular-grids.umd.min.js +0 -11
  190. package/dist/ej2-angular-grids.umd.min.js.map +0 -1
  191. package/ej2-angular-grids.d.ts +0 -6
  192. package/ej2-angular-grids.metadata.json +0 -1
  193. package/postinstall/tagchange.js +0 -18
@@ -725,117 +725,6 @@ li.e-separator.e-menu-item.e-excel-separator {
725
725
  border-color: rgba(var(--color-sf-primary));
726
726
  }
727
727
 
728
- :root {
729
- --color-sf-black: 0, 0, 0;
730
- --color-sf-white: 255, 255, 255;
731
- --color-sf-primary: 103, 80, 164;
732
- --color-sf-primary-container: 234, 221, 255;
733
- --color-sf-secondary: 98, 91, 113;
734
- --color-sf-secondary-container: 232, 222, 248;
735
- --color-sf-tertiary: 125, 82, 96;
736
- --color-sf-tertiary-container: 255, 216, 228;
737
- --color-sf-surface: 255, 255, 255;
738
- --color-sf-surface-variant: 231, 224, 236;
739
- --color-sf-background: var(--color-sf-surface);
740
- --color-sf-on-primary: 255, 255, 255;
741
- --color-sf-on-primary-container: 33, 0, 94;
742
- --color-sf-on-secondary: 255, 255, 255;
743
- --color-sf-on-secondary-container: 30, 25, 43;
744
- --color-sf-on-tertiary: 255, 255, 255;
745
- --color-sf-on-tertiary-containe: 55, 11, 30;
746
- --color-sf-on-surface: 28, 27, 31;
747
- --color-sf-on-surface-variant: 73, 69, 78;
748
- --color-sf-on-background: 28, 27, 31;
749
- --color-sf-outline: 121, 116, 126;
750
- --color-sf-outline-variant: 196, 199, 197;
751
- --color-sf-shadow: 0, 0, 0;
752
- --color-sf-surface-tint-color: 103, 80, 164;
753
- --color-sf-inverse-surface: 49, 48, 51;
754
- --color-sf-inverse-on-surface: 244, 239, 244;
755
- --color-sf-inverse-primary: 208, 188, 255;
756
- --color-sf-scrim: 0, 0, 0;
757
- --color-sf-error: 179, 38, 30;
758
- --color-sf-error-container: 249, 222, 220;
759
- --color-sf-on-error: 255, 250, 250;
760
- --color-sf-on-error-container: 65, 14, 11;
761
- --color-sf-success: 32, 81, 7;
762
- --color-sf-success-container: 209, 255, 186;
763
- --color-sf-on-success: 244, 255, 239;
764
- --color-sf-on-success-container: 13, 39, 0;
765
- --color-sf-info: 1, 87, 155;
766
- --color-sf-info-container: 233, 245, 255;
767
- --color-sf-on-info: 250, 253, 255;
768
- --color-sf-on-info-container: 0, 51, 91;
769
- --color-sf-warning: 145, 76, 0;
770
- --color-sf-warning-container: 254, 236, 222;
771
- --color-sf-on-warning: 255, 255, 255;
772
- --color-sf-on-warning-container: 47, 21, 0;
773
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
774
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
775
- --color-sf-diagram-palette-background: --color-sf-white;
776
- --color-sf-success-text: 255, 255, 255;
777
- --color-sf-warning-text: 255, 255, 255;
778
- --color-sf-danger-text: 255, 255, 255;
779
- --color-sf-info-text: 255, 255, 255;
780
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
781
- --color-sf-secondary-bg-color: var(--color-sf-surface);
782
- }
783
-
784
- .e-dark-mode {
785
- --color-sf-black: 0, 0, 0;
786
- --color-sf-white: 255, 255, 255;
787
- --color-sf-primary: 208, 188, 255;
788
- --color-sf-primary-container: 79, 55, 139;
789
- --color-sf-secondary: 204, 194, 220;
790
- --color-sf-secondary-container: 74, 68, 88;
791
- --color-sf-tertiary: 239, 184, 200;
792
- --color-sf-tertiary-container: 99, 59, 72;
793
- --color-sf-surface: 28, 27, 31;
794
- --color-sf-surface-variant: 28, 27, 31;
795
- --color-sf-background: var(--color-sf-surface);
796
- --color-sf-on-primary: 55, 30, 115;
797
- --color-sf-on-primary-container: 234, 221, 255;
798
- --color-sf-on-secondary: 51, 45, 65;
799
- --color-sf-on-secondary-container: 232, 222, 248;
800
- --color-sf-on-tertiary: 73, 37, 50;
801
- --color-sf-on-tertiary-containe: 255, 216, 228;
802
- --color-sf-on-surface: 230, 225, 229;
803
- --color-sf-on-surface-variant: 202, 196, 208;
804
- --color-sf-on-background: 230, 225, 229;
805
- --color-sf-outline: 147, 143, 153;
806
- --color-sf-outline-variant: 68, 71, 70;
807
- --color-sf-shadow: 0, 0, 0;
808
- --color-sf-surface-tint-color: 208, 188, 255;
809
- --color-sf-inverse-surface: 230, 225, 229;
810
- --color-sf-inverse-on-surface: 49, 48, 51;
811
- --color-sf-inverse-primary: 103, 80, 164;
812
- --color-sf-scrim: 0, 0, 0;
813
- --color-sf-error: 242, 184, 181;
814
- --color-sf-error-container: 140, 29, 24;
815
- --color-sf-on-error: 96, 20, 16;
816
- --color-sf-on-error-container: 249, 222, 220;
817
- --color-sf-success: 83, 202, 23;
818
- --color-sf-success-container: 22, 62, 2;
819
- --color-sf-on-success: 13, 39, 0;
820
- --color-sf-on-success-container: 183, 250, 150;
821
- --color-sf-info: 71, 172, 251;
822
- --color-sf-info-container: 0, 67, 120;
823
- --color-sf-on-info: 0, 51, 91;
824
- --color-sf-on-info-container: 173, 219, 255;
825
- --color-sf-warning: 245, 180, 130;
826
- --color-sf-warning-container: 123, 65, 0;
827
- --color-sf-on-warning: 99, 52, 0;
828
- --color-sf-on-warning-container: 255, 220, 193;
829
- --color-sf-spreadsheet-gridline: 231, 224, 236;
830
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
831
- --color-sf-success-text: 0, 0, 0;
832
- --color-sf-warning-text: 0, 0, 0;
833
- --color-sf-info-text: 0, 0, 0;
834
- --color-sf-danger-text: 0, 0, 0;
835
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
836
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
837
- }
838
-
839
728
  /* stylelint-disable property-no-vendor-prefix */
840
729
  @keyframes e-input-ripple {
841
730
  100% {
@@ -5590,10 +5479,6 @@ li.e-separator.e-menu-item.e-excel-separator {
5590
5479
  background-color: rgba(var(--color-sf-on-surface), 0.05);
5591
5480
  }
5592
5481
 
5593
- .e-spreadsheet .e-ftrchk.e-chkfocus {
5594
- background-color: rgba(var(--color-sf-on-surface), 0.05);
5595
- }
5596
-
5597
5482
  .e-tooltip-wrap.e-griderror,
5598
5483
  .e-control.e-tooltip-wrap.e-popup.e-griderror {
5599
5484
  background-color: rgba(var(--color-sf-error-container));
@@ -1,3 +1,4 @@
1
1
 
2
+
2
3
  @import 'excel-filter/material3.scss';
3
4
  @import 'grid/material3.scss';
@@ -5151,10 +5151,6 @@ li.e-separator.e-menu-item.e-excel-separator {
5151
5151
  background-color: #4b5563;
5152
5152
  }
5153
5153
 
5154
- .e-spreadsheet .e-ftrchk.e-chkfocus {
5155
- background-color: #4b5563;
5156
- }
5157
-
5158
5154
  .e-tooltip-wrap.e-griderror,
5159
5155
  .e-control.e-tooltip-wrap.e-popup.e-griderror {
5160
5156
  background-color: #fee2e2;
@@ -5151,10 +5151,6 @@ li.e-separator.e-menu-item.e-excel-separator {
5151
5151
  background-color: #f3f4f6;
5152
5152
  }
5153
5153
 
5154
- .e-spreadsheet .e-ftrchk.e-chkfocus {
5155
- background-color: #f3f4f6;
5156
- }
5157
-
5158
5154
  .e-tooltip-wrap.e-griderror,
5159
5155
  .e-control.e-tooltip-wrap.e-popup.e-griderror {
5160
5156
  background-color: #fee2e2;
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ /// <amd-module name="@syncfusion/ej2-angular-grids" />
5
+ export * from './public_api';