@syncfusion/ej2-angular-treegrid 30.1.38 → 30.2.4-ngcc

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 (40) hide show
  1. package/@syncfusion/ej2-angular-treegrid.es5.js +798 -0
  2. package/@syncfusion/ej2-angular-treegrid.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-treegrid.js +748 -0
  4. package/@syncfusion/ej2-angular-treegrid.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-treegrid.umd.js +978 -0
  7. package/dist/ej2-angular-treegrid.umd.js.map +1 -0
  8. package/dist/ej2-angular-treegrid.umd.min.js +11 -0
  9. package/dist/ej2-angular-treegrid.umd.min.js.map +1 -0
  10. package/ej2-angular-treegrid.d.ts +5 -0
  11. package/ej2-angular-treegrid.metadata.json +1 -0
  12. package/package.json +17 -61
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.d.ts +2 -2
  15. package/schematics/utils/lib-details.js +2 -2
  16. package/schematics/utils/lib-details.ts +4 -4
  17. package/src/index.d.ts +8 -8
  18. package/src/treegrid/aggregate-columns.directive.d.ts +86 -91
  19. package/src/treegrid/aggregates.directive.d.ts +44 -49
  20. package/src/treegrid/columns.directive.d.ts +323 -328
  21. package/src/treegrid/stacked-column.directive.d.ts +325 -330
  22. package/src/treegrid/treegrid-all.module.d.ts +27 -33
  23. package/src/treegrid/treegrid.component.d.ts +121 -124
  24. package/src/treegrid/treegrid.module.d.ts +5 -15
  25. package/CHANGELOG.md +0 -214
  26. package/esm2020/public_api.mjs +0 -2
  27. package/esm2020/src/index.mjs +0 -9
  28. package/esm2020/src/treegrid/aggregate-columns.directive.mjs +0 -72
  29. package/esm2020/src/treegrid/aggregates.directive.mjs +0 -69
  30. package/esm2020/src/treegrid/columns.directive.mjs +0 -100
  31. package/esm2020/src/treegrid/stacked-column.directive.mjs +0 -100
  32. package/esm2020/src/treegrid/treegrid-all.module.mjs +0 -89
  33. package/esm2020/src/treegrid/treegrid.component.mjs +0 -247
  34. package/esm2020/src/treegrid/treegrid.module.mjs +0 -61
  35. package/esm2020/syncfusion-ej2-angular-treegrid.mjs +0 -5
  36. package/fesm2015/syncfusion-ej2-angular-treegrid.mjs +0 -710
  37. package/fesm2015/syncfusion-ej2-angular-treegrid.mjs.map +0 -1
  38. package/fesm2020/syncfusion-ej2-angular-treegrid.mjs +0 -710
  39. package/fesm2020/syncfusion-ej2-angular-treegrid.mjs.map +0 -1
  40. package/syncfusion-ej2-angular-treegrid.d.ts +0 -5
@@ -1,91 +1,86 @@
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->e-column` directive represent a aggregate column of the Angular TreeGrid.
6
- * ```html
7
- * <ejs-treegrid [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-treegrid>
20
- * ```
21
- */
22
- export declare class AggregateColumnDirective extends ComplexBase<AggregateColumnDirective> {
23
- private viewContainerRef;
24
- directivePropList: any;
25
- /**
26
- * Defines the aggregate type(s) for a particular column.
27
- * To apply multiple aggregates to a single column, specify the `type` as an array.
28
- * Available aggregate types include:
29
- * * `sum`: Calculates the sum of all values in a column.
30
- * * `average`: Computes the average of the column values.
31
- * * `max`: Finds the maximum value in a column.
32
- * * `min`: Finds the minimum value in a column.
33
- * * `count`: Counts the number of records.
34
- * * `falsecount`: Counts the number of false values.
35
- * * `truecount`: Counts the number of true values.
36
- * * `custom`: Allows for a custom aggregate function.
37
- *
38
- * Use `custom` to specify a custom aggregation.
39
- *
40
- * @asptype string
41
- * @default null
42
- */
43
- type: any;
44
- /**
45
- * Specifies the column name to display the aggregate value. If not defined, the `field` name is used by default.
46
- * @default null
47
- */
48
- columnName: any;
49
- /**
50
- * Defines a custom function to calculate the aggregate value. The `type` must be set to `custom`.
51
- * Use the custom value as `${custom}` in templates.
52
- * * `Total aggregation`: The custom function is called with the entire dataset and the current `AggregateColumn` object.
53
- * * `Group aggregation`: It is called with the current group details and the `AggregateColumn` object.
54
- * @default null
55
- */
56
- customAggregate: any;
57
- /**
58
- * Specifies the column name on which to perform the aggregation.
59
- * @default null
60
- */
61
- field: any;
62
- /**
63
- * Specifies the format to be applied to the calculated aggregate value before display.
64
- * Supports both standard and custom formats for numbers and dates.
65
- * Refer to the Syncfusion documentation for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)
66
- * and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats.
67
- * @asptype string
68
- * @default null
69
- */
70
- format: any;
71
- /**
72
- * Defines a template for the footer cell of the aggregate column.
73
- * Use the aggregate `type` names within the template to access aggregate values.
74
- * @default null
75
- * @asptype string
76
-
77
- */
78
- footerTemplate: any;
79
- constructor(viewContainerRef: ViewContainerRef);
80
- static ɵfac: i0.ɵɵFactoryDeclaration<AggregateColumnDirective, never>;
81
- static ɵdir: i0.ɵɵDirectiveDeclaration<AggregateColumnDirective, "ejs-treegrid>e-aggregates>e-aggregate>e-columns>e-column", never, { "columnName": "columnName"; "customAggregate": "customAggregate"; "field": "field"; "footerTemplate": "footerTemplate"; "format": "format"; "type": "type"; }, {}, ["footerTemplate"]>;
82
- }
83
- /**
84
- * AggregateColumn Array Directive
85
- * @private
86
- */
87
- export declare class AggregateColumnsDirective extends ArrayBase<AggregateColumnsDirective> {
88
- constructor();
89
- static ɵfac: i0.ɵɵFactoryDeclaration<AggregateColumnsDirective, never>;
90
- static ɵdir: i0.ɵɵDirectiveDeclaration<AggregateColumnsDirective, "ejs-treegrid>e-aggregates>e-aggregate>e-columns", never, {}, {}, ["children"]>;
91
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-aggregate->e-column` directive represent a aggregate column of the Angular TreeGrid.
5
+ * ```html
6
+ * <ejs-treegrid [dataSource]='data' allowPaging='true' allowSorting='true'>
7
+ * <e-columns>
8
+ * <e-column field='ID' width='100'></e-column>
9
+ * <e-column field='name' headerText='Name' width='100'></e-column>
10
+ * </e-columns>
11
+ * <e-aggregates>
12
+ * <e-aggregate>
13
+ * <e-columns>
14
+ * <e-column field='ID' type='Min'></e-column>
15
+ * </e-columns>
16
+ * </e-aggregate>
17
+ * </e-aggregates>
18
+ * </ejs-treegrid>
19
+ * ```
20
+ */
21
+ export declare class AggregateColumnDirective extends ComplexBase<AggregateColumnDirective> {
22
+ private viewContainerRef;
23
+ directivePropList: any;
24
+ /**
25
+ * Defines the aggregate type(s) for a particular column.
26
+ * To apply multiple aggregates to a single column, specify the `type` as an array.
27
+ * Available aggregate types include:
28
+ * * `sum`: Calculates the sum of all values in a column.
29
+ * * `average`: Computes the average of the column values.
30
+ * * `max`: Finds the maximum value in a column.
31
+ * * `min`: Finds the minimum value in a column.
32
+ * * `count`: Counts the number of records.
33
+ * * `falsecount`: Counts the number of false values.
34
+ * * `truecount`: Counts the number of true values.
35
+ * * `custom`: Allows for a custom aggregate function.
36
+ *
37
+ * Use `custom` to specify a custom aggregation.
38
+ *
39
+ * @asptype string
40
+ * @default null
41
+ */
42
+ type: any;
43
+ /**
44
+ * Specifies the column name to display the aggregate value. If not defined, the `field` name is used by default.
45
+ * @default null
46
+ */
47
+ columnName: any;
48
+ /**
49
+ * Defines a custom function to calculate the aggregate value. The `type` must be set to `custom`.
50
+ * Use the custom value as `${custom}` in templates.
51
+ * * `Total aggregation`: The custom function is called with the entire dataset and the current `AggregateColumn` object.
52
+ * * `Group aggregation`: It is called with the current group details and the `AggregateColumn` object.
53
+ * @default null
54
+ */
55
+ customAggregate: any;
56
+ /**
57
+ * Specifies the column name on which to perform the aggregation.
58
+ * @default null
59
+ */
60
+ field: any;
61
+ /**
62
+ * Specifies the format to be applied to the calculated aggregate value before display.
63
+ * Supports both standard and custom formats for numbers and dates.
64
+ * Refer to the Syncfusion documentation for [number](https://ej2.syncfusion.com/documentation/common/internationalization/#supported-format-string)
65
+ * and [date](https://ej2.syncfusion.com/documentation/common/internationalization#date-formatting) formats.
66
+ * @asptype string
67
+ * @default null
68
+ */
69
+ format: any;
70
+ /**
71
+ * Defines a template for the footer cell of the aggregate column.
72
+ * Use the aggregate `type` names within the template to access aggregate values.
73
+ * @default null
74
+ * @asptype string
75
+
76
+ */
77
+ footerTemplate: any;
78
+ constructor(viewContainerRef: ViewContainerRef);
79
+ }
80
+ /**
81
+ * AggregateColumn Array Directive
82
+ * @private
83
+ */
84
+ export declare class AggregateColumnsDirective extends ArrayBase<AggregateColumnsDirective> {
85
+ constructor();
86
+ }
@@ -1,49 +1,44 @@
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 TreeGrid.
6
- * It must be contained in a TreeGrid component(`ejs-treegrid`).
7
- * ```html
8
- * <ejs-treegrid [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-treegrid>
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 collection of aggregate columns.
30
- * @default []
31
- */
32
- columns: any;
33
- /**
34
- * Determines whether to display child summaries for each parent row.
35
- */
36
- showChildSummary: any;
37
- constructor(viewContainerRef: ViewContainerRef);
38
- static ɵfac: i0.ɵɵFactoryDeclaration<AggregateDirective, never>;
39
- static ɵdir: i0.ɵɵDirectiveDeclaration<AggregateDirective, "ejs-treegrid>e-aggregates>e-aggregate", never, { "columns": "columns"; "showChildSummary": "showChildSummary"; }, {}, ["childColumns"]>;
40
- }
41
- /**
42
- * Aggregate Array Directive
43
- * @private
44
- */
45
- export declare class AggregatesDirective extends ArrayBase<AggregatesDirective> {
46
- constructor();
47
- static ɵfac: i0.ɵɵFactoryDeclaration<AggregatesDirective, never>;
48
- static ɵdir: i0.ɵɵDirectiveDeclaration<AggregatesDirective, "ejs-treegrid>e-aggregates", never, {}, {}, ["children"]>;
49
- }
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 TreeGrid.
5
+ * It must be contained in a TreeGrid component(`ejs-treegrid`).
6
+ * ```html
7
+ * <ejs-treegrid [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-treegrid>
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 collection of aggregate columns.
29
+ * @default []
30
+ */
31
+ columns: any;
32
+ /**
33
+ * Determines whether to display child summaries for each parent row.
34
+ */
35
+ showChildSummary: any;
36
+ constructor(viewContainerRef: ViewContainerRef);
37
+ }
38
+ /**
39
+ * Aggregate Array Directive
40
+ * @private
41
+ */
42
+ export declare class AggregatesDirective extends ArrayBase<AggregatesDirective> {
43
+ constructor();
44
+ }