@syncfusion/ej2-angular-grids 31.1.17-ngcc → 31.1.20-769223

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 (45) hide show
  1. package/CHANGELOG.md +2804 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/grid/aggregate-columns.directive.mjs +84 -0
  4. package/esm2020/src/grid/aggregates.directive.mjs +69 -0
  5. package/esm2020/src/grid/columns.directive.mjs +100 -0
  6. package/esm2020/src/grid/grid-all.module.mjs +98 -0
  7. package/esm2020/src/grid/grid.component.mjs +298 -0
  8. package/esm2020/src/grid/grid.module.mjs +61 -0
  9. package/esm2020/src/grid/stacked-column.directive.mjs +100 -0
  10. package/esm2020/src/index.mjs +12 -0
  11. package/esm2020/src/pager/pager-all.module.mjs +23 -0
  12. package/esm2020/src/pager/pager.component.mjs +66 -0
  13. package/esm2020/src/pager/pager.module.mjs +25 -0
  14. package/esm2020/syncfusion-ej2-angular-grids.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-grids.mjs +881 -0
  16. package/fesm2015/syncfusion-ej2-angular-grids.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-grids.mjs +881 -0
  18. package/fesm2020/syncfusion-ej2-angular-grids.mjs.map +1 -0
  19. package/package.json +22 -9
  20. package/public_api.d.ts +1 -1
  21. package/schematics/utils/lib-details.js +2 -2
  22. package/schematics/utils/lib-details.ts +2 -2
  23. package/src/grid/aggregate-columns.directive.d.ts +119 -114
  24. package/src/grid/aggregates.directive.d.ts +45 -40
  25. package/src/grid/columns.directive.d.ts +484 -479
  26. package/src/grid/grid-all.module.d.ts +36 -30
  27. package/src/grid/grid.component.d.ts +166 -163
  28. package/src/grid/grid.module.d.ts +15 -5
  29. package/src/grid/stacked-column.directive.d.ts +486 -481
  30. package/src/index.d.ts +11 -11
  31. package/src/pager/pager-all.module.d.ts +11 -5
  32. package/src/pager/pager.component.d.ts +43 -40
  33. package/src/pager/pager.module.d.ts +11 -5
  34. package/syncfusion-ej2-angular-grids.d.ts +5 -0
  35. package/@syncfusion/ej2-angular-grids.es5.js +0 -1008
  36. package/@syncfusion/ej2-angular-grids.es5.js.map +0 -1
  37. package/@syncfusion/ej2-angular-grids.js +0 -947
  38. package/@syncfusion/ej2-angular-grids.js.map +0 -1
  39. package/LICENSE +0 -10
  40. package/dist/ej2-angular-grids.umd.js +0 -1634
  41. package/dist/ej2-angular-grids.umd.js.map +0 -1
  42. package/dist/ej2-angular-grids.umd.min.js +0 -11
  43. package/dist/ej2-angular-grids.umd.min.js.map +0 -1
  44. package/ej2-angular-grids.d.ts +0 -6
  45. package/ej2-angular-grids.metadata.json +0 -1
@@ -1,40 +1,45 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-aggregate` directive represent a aggregate row of the Angular Grid.
5
- * It must be contained in a Grid component(`ejs-grid`).
6
- * ```html
7
- * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
8
- * <e-columns>
9
- * <e-column field='ID' width='100'></e-column>
10
- * <e-column field='name' headerText='Name' width='100'></e-column>
11
- * </e-columns>
12
- * <e-aggregates>
13
- * <e-aggregate>
14
- * <e-columns>
15
- * <e-column field='ID' type='Min'></e-column>
16
- * </e-columns>
17
- * </e-aggregate>
18
- * </e-aggregates>
19
- * </ejs-grid>
20
- * ```
21
- */
22
- export declare class AggregateDirective extends ComplexBase<AggregateDirective> {
23
- private viewContainerRef;
24
- directivePropList: any;
25
- childColumns: any;
26
- tags: string[];
27
- /**
28
- * Configures the aggregate columns.
29
- * @default []
30
- */
31
- columns: any;
32
- constructor(viewContainerRef: ViewContainerRef);
33
- }
34
- /**
35
- * Aggregate Array Directive
36
- * @private
37
- */
38
- export declare class AggregatesDirective extends ArrayBase<AggregatesDirective> {
39
- constructor();
40
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
4
+ /**
5
+ * `e-aggregate` directive represent a aggregate row of the Angular Grid.
6
+ * It must be contained in a Grid component(`ejs-grid`).
7
+ * ```html
8
+ * <ejs-grid [dataSource]='data' allowPaging='true' allowSorting='true'>
9
+ * <e-columns>
10
+ * <e-column field='ID' width='100'></e-column>
11
+ * <e-column field='name' headerText='Name' width='100'></e-column>
12
+ * </e-columns>
13
+ * <e-aggregates>
14
+ * <e-aggregate>
15
+ * <e-columns>
16
+ * <e-column field='ID' type='Min'></e-column>
17
+ * </e-columns>
18
+ * </e-aggregate>
19
+ * </e-aggregates>
20
+ * </ejs-grid>
21
+ * ```
22
+ */
23
+ export declare class AggregateDirective extends ComplexBase<AggregateDirective> {
24
+ private viewContainerRef;
25
+ directivePropList: any;
26
+ childColumns: any;
27
+ tags: string[];
28
+ /**
29
+ * Configures the aggregate columns.
30
+ * @default []
31
+ */
32
+ columns: any;
33
+ constructor(viewContainerRef: ViewContainerRef);
34
+ static ɵfac: i0.ɵɵFactoryDeclaration<AggregateDirective, never>;
35
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AggregateDirective, "ejs-grid>e-aggregates>e-aggregate", never, { "columns": "columns"; }, {}, ["childColumns"]>;
36
+ }
37
+ /**
38
+ * Aggregate Array Directive
39
+ * @private
40
+ */
41
+ export declare class AggregatesDirective extends ArrayBase<AggregatesDirective> {
42
+ constructor();
43
+ static ɵfac: i0.ɵɵFactoryDeclaration<AggregatesDirective, never>;
44
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AggregatesDirective, "ejs-grid>e-aggregates", never, {}, {}, ["children"]>;
45
+ }