@syncfusion/ej2-angular-treegrid 28.2.6-ngcc → 29.1.33-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-treegrid.es5.js +1 -1
- package/@syncfusion/ej2-angular-treegrid.es5.js.map +1 -1
- package/@syncfusion/ej2-angular-treegrid.js +1 -1
- package/@syncfusion/ej2-angular-treegrid.js.map +1 -1
- package/README.md +6 -6
- package/dist/ej2-angular-treegrid.umd.js +1 -3
- package/dist/ej2-angular-treegrid.umd.js.map +1 -1
- package/dist/ej2-angular-treegrid.umd.min.js +2 -2
- package/dist/ej2-angular-treegrid.umd.min.js.map +1 -1
- package/package.json +9 -9
- package/schematics/utils/lib-details.d.ts +2 -2
- package/schematics/utils/lib-details.js +2 -2
- package/schematics/utils/lib-details.ts +2 -2
- package/src/treegrid/aggregate-columns.directive.d.ts +26 -28
- package/src/treegrid/aggregates.directive.d.ts +2 -2
- package/src/treegrid/columns.directive.d.ts +54 -74
- package/src/treegrid/stacked-column.directive.d.ts +54 -74
- package/src/treegrid/treegrid.component.d.ts +1 -1
package/README.md
CHANGED
@@ -35,9 +35,9 @@ ng new my-app
|
|
35
35
|
cd my-app
|
36
36
|
```
|
37
37
|
|
38
|
-
### Adding Syncfusion
|
38
|
+
### Adding Syncfusion Tree Grid package
|
39
39
|
|
40
|
-
All Syncfusion
|
40
|
+
All Syncfusion angular packages are published in [npmjs.com](https://www.npmjs.com/~syncfusionorg) registry. To install angular tree grid package, use the following command.
|
41
41
|
|
42
42
|
```bash
|
43
43
|
ng add @syncfusion/ej2-angular-treegrid
|
@@ -47,13 +47,13 @@ The above command does the below configuration to your Angular app.
|
|
47
47
|
|
48
48
|
* Adds `@syncfusion/ej2-angular-treegrid` package and its peer dependencies to your `package.json` file.
|
49
49
|
* Imports the `TreeGridModule` in your application module `app.module.ts`.
|
50
|
-
* Registers the Syncfusion
|
50
|
+
* Registers the Syncfusion UI default theme (material) in the `angular.json` file.
|
51
51
|
|
52
|
-
This makes it easy to add the Syncfusion
|
52
|
+
This makes it easy to add the Syncfusion Angular TreeGrid module to your project and start using it in your application.
|
53
53
|
|
54
54
|
### Add Tree Grid Component
|
55
55
|
|
56
|
-
In **src/app/app.component.ts**, use `<ejs-treegrid>` selector in `template` attribute of `@Component` directive to render the Syncfusion
|
56
|
+
In **src/app/app.component.ts**, use `<ejs-treegrid>` selector in `template` attribute of `@Component` directive to render the Syncfusion Angular TreeGrid component.
|
57
57
|
|
58
58
|
```typescript
|
59
59
|
import { Component, OnInit } from '@angular/core';
|
@@ -140,7 +140,7 @@ Check the changelog [here](https://github.com/syncfusion/ej2-angular-ui-componen
|
|
140
140
|
|
141
141
|
## License and copyright
|
142
142
|
|
143
|
-
> This is a commercial product and requires a paid license for possession or use. Syncfusion
|
143
|
+
> This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's [EULA](https://www.syncfusion.com/eula/es/). To acquire a license for 80+ [Angular UI components](https://www.syncfusion.com/angular-components), you can [purchase](https://www.syncfusion.com/sales/products) or [start a free 30-day trial](https://www.syncfusion.com/account/manage-trials/start-trials).
|
144
144
|
|
145
145
|
> A free community [license](https://www.syncfusion.com/products/communitylicense) is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
|
146
146
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
2
|
* filename: ej2-angular-treegrid.umd.js
|
3
|
-
* version :
|
3
|
+
* version : 29.1.33
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved.
|
5
5
|
* Use of this code is subject to the terms of our license.
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
@@ -911,9 +911,7 @@ exports.table = ej2Treegrid.table;
|
|
911
911
|
exports.leftRight = ej2Treegrid.leftRight;
|
912
912
|
exports.frozenRight = ej2Treegrid.frozenRight;
|
913
913
|
exports.frozenLeft = ej2Treegrid.frozenLeft;
|
914
|
-
exports.dataColIndex = ej2Treegrid.dataColIndex;
|
915
914
|
exports.ariaColIndex = ej2Treegrid.ariaColIndex;
|
916
|
-
exports.dataRowIndex = ej2Treegrid.dataRowIndex;
|
917
915
|
exports.ariaRowIndex = ej2Treegrid.ariaRowIndex;
|
918
916
|
exports.actionFailure = ej2Treegrid.actionFailure;
|
919
917
|
exports.DataManipulation = ej2Treegrid.DataManipulation;
|