@syncfusion/ej2-treegrid 24.2.7 → 24.2.8
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/CHANGELOG.md +8 -0
- package/dist/ej2-treegrid.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js.map +1 -1
- package/dist/es6/ej2-treegrid.es2015.js +4 -0
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +4 -0
- package/dist/es6/ej2-treegrid.es5.js.map +1 -1
- package/dist/global/ej2-treegrid.min.js +2 -2
- package/dist/global/ej2-treegrid.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/treegrid/actions/edit.js +1 -0
- package/src/treegrid/base/treegrid.js +3 -0
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -60
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -37
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version : 24.2.
|
|
3
|
+
* version : 24.2.8
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2023. 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,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-treegrid@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-treegrid@24.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-treegrid@24.2.7",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512
|
|
5
|
+
"_integrity": "sha512-OoM88SgilK7jJcbH2DdoMzGAOTDf7kPBtDxaVHjwD8vovfoVkUeTNwipnQKLRLDUbAfFcz2JOPnc34uph98UWw==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-treegrid",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"/@syncfusion/ej2-react-treegrid",
|
|
25
25
|
"/@syncfusion/ej2-vue-treegrid"
|
|
26
26
|
],
|
|
27
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-24.2.
|
|
28
|
-
"_shasum": "
|
|
27
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-24.2.7.tgz",
|
|
28
|
+
"_shasum": "4c8aeece891894c115b1bb14a24cf6907a12b4fa",
|
|
29
29
|
"_spec": "@syncfusion/ej2-treegrid@*",
|
|
30
30
|
"_where": "/jenkins/workspace/elease-automation_release_24.1.1/packages/included",
|
|
31
31
|
"author": {
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@syncfusion/ej2-base": "~24.2.7",
|
|
40
40
|
"@syncfusion/ej2-data": "~24.2.3",
|
|
41
|
-
"@syncfusion/ej2-grids": "~24.2.
|
|
42
|
-
"@syncfusion/ej2-popups": "~24.2.
|
|
41
|
+
"@syncfusion/ej2-grids": "~24.2.8",
|
|
42
|
+
"@syncfusion/ej2-popups": "~24.2.8"
|
|
43
43
|
},
|
|
44
44
|
"deprecated": false,
|
|
45
45
|
"description": "Essential JS 2 TreeGrid Component",
|
|
@@ -66,6 +66,6 @@
|
|
|
66
66
|
"url": "git+https://github.com/syncfusion/ej2-treegrid.git"
|
|
67
67
|
},
|
|
68
68
|
"typings": "index.d.ts",
|
|
69
|
-
"version": "24.2.
|
|
69
|
+
"version": "24.2.8",
|
|
70
70
|
"sideEffects": false
|
|
71
71
|
}
|
|
@@ -2849,6 +2849,9 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
2849
2849
|
record = this.grid.getCurrentViewRecords()[row.rowIndex];
|
|
2850
2850
|
}
|
|
2851
2851
|
}
|
|
2852
|
+
else if (this.rowTemplate) {
|
|
2853
|
+
record = this.grid.getCurrentViewRecords()[row.rowIndex];
|
|
2854
|
+
}
|
|
2852
2855
|
else {
|
|
2853
2856
|
record = this.grid.getCurrentViewRecords()[parseInt(row.getAttribute('data-rowindex'), 10)];
|
|
2854
2857
|
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
### Bug description
|
|
2
|
-
|
|
3
|
-
Clearly and concisely describe the problem or feature (this cannot be empty).
|
|
4
|
-
|
|
5
|
-
### Root cause
|
|
6
|
-
|
|
7
|
-
Briefly describe the root cause and analysis of the problem.
|
|
8
|
-
If there is an internal discussion on the forum, provide the link.
|
|
9
|
-
### Reason for not identifying earlier
|
|
10
|
-
|
|
11
|
-
Find how it was missed in our earlier testing and development by analysing the below checklist. This will help prevent similar mistakes in the future.
|
|
12
|
-
|
|
13
|
-
- [ ] Guidelines/documents are not followed
|
|
14
|
-
|
|
15
|
-
- Common guidelines / Core team guideline
|
|
16
|
-
- Specification document
|
|
17
|
-
- Requirement document
|
|
18
|
-
|
|
19
|
-
- [ ] Guidelines/documents are not given
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
- Common guidelines / Core team guideline
|
|
23
|
-
- Specification document
|
|
24
|
-
- Requirement document
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Reason:
|
|
28
|
-
Mention any one or more reasons from the above points.
|
|
29
|
-
|
|
30
|
-
### Action taken:
|
|
31
|
-
What action did you take to avoid this in future?
|
|
32
|
-
|
|
33
|
-
### Related areas:
|
|
34
|
-
Is there any other related areas also to be addressed?
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
### Is it a breaking issue?
|
|
38
|
-
|
|
39
|
-
If it is a breaking issue, provide the commit detail which caused this break.
|
|
40
|
-
|
|
41
|
-
### Solution description
|
|
42
|
-
|
|
43
|
-
Describe your code changes in detail for reviewers.
|
|
44
|
-
|
|
45
|
-
### Output screenshots
|
|
46
|
-
|
|
47
|
-
Post the output screenshots if an UI is affected or added due to this bug.
|
|
48
|
-
### Areas affected and ensured
|
|
49
|
-
|
|
50
|
-
List the areas affected by your code changes.
|
|
51
|
-
|
|
52
|
-
### Additional checklist
|
|
53
|
-
This may vary for different teams or products. Check with your scrum masters.
|
|
54
|
-
|
|
55
|
-
- Did you run the automation against your fix?
|
|
56
|
-
- Is there any API name change?
|
|
57
|
-
- Is there any existing behavior change of other features due to this code change?
|
|
58
|
-
- Does your new code introduce new warnings or binding errors?
|
|
59
|
-
- Does your code pass all FxCop and StyleCop rules?
|
|
60
|
-
- Did you record this case in the unit test or UI test?
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
### Feature description
|
|
2
|
-
|
|
3
|
-
Clearly and concisely describe the problem or feature (this cannot be empty).
|
|
4
|
-
|
|
5
|
-
### Analysis and design
|
|
6
|
-
|
|
7
|
-
If there is an external design, link to its project documentation area.
|
|
8
|
-
If there is an internal discussion on the forum, provide the link.
|
|
9
|
-
### Solution description
|
|
10
|
-
|
|
11
|
-
Describe your code changes in detail for reviewers.
|
|
12
|
-
|
|
13
|
-
### Output screenshots
|
|
14
|
-
|
|
15
|
-
Post the output screenshots if an UI is affected or added due to this feature.
|
|
16
|
-
### Areas affected and ensured
|
|
17
|
-
|
|
18
|
-
List the areas are affected by your code changes.
|
|
19
|
-
|
|
20
|
-
### Test cases
|
|
21
|
-
|
|
22
|
-
Provide the unit testing written file details to understand the use cases considered in this implementation.
|
|
23
|
-
If there is no TDD (if it’s not possible to follow), provide the UI automation script location and the Excel file that contains the use cases considered in this implementation.
|
|
24
|
-
Provide the test cases Excel file alone if the feature cannot be automated in any case.
|
|
25
|
-
Test bed sample location
|
|
26
|
-
|
|
27
|
-
Provide the test bed sample location where code reviewers can review the new feature’s behaviors. This depends on the CI process that your team follows. It can be from NPMCI, HockeyApp, staging site, local server, etc.
|
|
28
|
-
|
|
29
|
-
### Additional checklist
|
|
30
|
-
This may vary for different teams or products. Check with your scrum masters.
|
|
31
|
-
|
|
32
|
-
- Did you run the automation against your fix?
|
|
33
|
-
- Is there any API name change?
|
|
34
|
-
- Is there any existing behavior change of other features due to this code change?
|
|
35
|
-
- Does your new code introduce new warnings or binding errors?
|
|
36
|
-
- Does your code pass all FxCop and StyleCop rules?
|
|
37
|
-
- Did you record this case in the unit test or UI test?
|