@syncfusion/ej2-angular-grids 30.1.37-ngcc → 30.1.38-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.
- package/@syncfusion/ej2-angular-grids.es5.js +1007 -1007
- package/@syncfusion/ej2-angular-grids.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-grids.js +918 -918
- package/@syncfusion/ej2-angular-grids.js.map +1 -1
- package/dist/ej2-angular-grids.umd.js +998 -999
- package/dist/ej2-angular-grids.umd.js.map +1 -1
- package/dist/ej2-angular-grids.umd.min.js +2 -2
- package/ej2-angular-grids.d.ts +6 -6
- package/{LICENSE → license} +10 -10
- package/package.json +45 -14
- package/public_api.d.ts +1 -1
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +4 -4
- package/src/grid/aggregate-columns.directive.d.ts +114 -114
- package/src/grid/aggregates.directive.d.ts +40 -40
- package/src/grid/columns.directive.d.ts +469 -469
- package/src/grid/grid-all.module.d.ts +30 -30
- package/src/grid/grid.component.d.ts +163 -163
- package/src/grid/grid.module.d.ts +5 -5
- package/src/grid/stacked-column.directive.d.ts +471 -471
- package/src/index.d.ts +11 -11
- package/src/pager/pager-all.module.d.ts +5 -5
- package/src/pager/pager.component.d.ts +40 -40
- package/src/pager/pager.module.d.ts +5 -5
|
@@ -1,40 +1,40 @@
|
|
|
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
|
+
/**
|
|
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
|
+
}
|