@syncfusion/ej2-react-treegrid 30.2.4 → 31.1.20
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/diConfig.json
CHANGED
|
@@ -152,6 +152,10 @@
|
|
|
152
152
|
"propertyName": "textWrapSettings",
|
|
153
153
|
"baseClass": "TextWrapSettings"
|
|
154
154
|
},
|
|
155
|
+
{
|
|
156
|
+
"propertyName": "columnChooserSettings",
|
|
157
|
+
"baseClass": "ColumnChooserSettings"
|
|
158
|
+
},
|
|
155
159
|
{
|
|
156
160
|
"propertyName": "editSettings",
|
|
157
161
|
"baseClass": "EditSettings",
|
|
@@ -423,7 +427,11 @@
|
|
|
423
427
|
"pagerTemplate",
|
|
424
428
|
"rowTemplate",
|
|
425
429
|
"detailTemplate",
|
|
426
|
-
"editSettings.template"
|
|
430
|
+
"editSettings.template",
|
|
431
|
+
"emptyRecordTemplate",
|
|
432
|
+
"columnChooserSettings.headerTemplate",
|
|
433
|
+
"columnChooserSettings.template",
|
|
434
|
+
"columnChooserSettings.footerTemplate"
|
|
427
435
|
]
|
|
428
436
|
}
|
|
429
437
|
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-react-treegrid.min.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 31.1.20
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-react-treegrid.umd.min.js
|
|
3
|
-
* version :
|
|
3
|
+
* version : 31.1.20
|
|
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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-react-treegrid",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "31.1.20",
|
|
4
4
|
"description": "Essential JS 2 TreeGrid Component for React",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"es2015": "dist/es6/ej2-react-treegrid.es2015.js",
|
|
36
36
|
"readme": "ReadMe.md",
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@syncfusion/ej2-base": "~
|
|
39
|
-
"@syncfusion/ej2-react-base": "~
|
|
40
|
-
"@syncfusion/ej2-treegrid": "
|
|
38
|
+
"@syncfusion/ej2-base": "~31.1.20",
|
|
39
|
+
"@syncfusion/ej2-react-base": "~31.1.17",
|
|
40
|
+
"@syncfusion/ej2-treegrid": "31.1.20"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {},
|
|
43
43
|
"sideEffects": false,
|
|
@@ -7,6 +7,8 @@ export interface TreeGridTypecast {
|
|
|
7
7
|
rowTemplate?: string | Function | any;
|
|
8
8
|
detailTemplate?: string | Function | any;
|
|
9
9
|
editSettings?: any;
|
|
10
|
+
emptyRecordTemplate?: string | Function | any;
|
|
11
|
+
columnChooserSettings?: any;
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
12
14
|
* `TreeTreeGridComponent` represents the react TreeTreeGrid.
|