@syncfusion/ej2-treegrid 19.3.48 → 19.4.38
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/.github/PULL_REQUEST_TEMPLATE/Bug.md +60 -0
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +37 -0
- package/CHANGELOG.md +5 -38
- 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 +204 -26
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +218 -29
- 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 +9 -9
- package/src/treegrid/actions/batch-edit.js +5 -5
- package/src/treegrid/actions/edit.js +24 -5
- package/src/treegrid/actions/virtual-scroll.js +5 -0
- package/src/treegrid/base/data.js +3 -1
- package/src/treegrid/base/interface.d.ts +4 -0
- package/src/treegrid/base/treegrid-model.d.ts +16 -1
- package/src/treegrid/base/treegrid.d.ts +43 -2
- package/src/treegrid/base/treegrid.js +154 -18
- package/src/treegrid/models/column.d.ts +9 -0
- package/src/treegrid/models/column.js +19 -0
- package/src/treegrid/renderer/virtual-row-model-generator.js +6 -0
- package/src/treegrid/renderer/virtual-tree-content-render.js +4 -1
- package/styles/bootstrap-dark.css +5 -0
- package/styles/bootstrap.css +5 -0
- package/styles/bootstrap4.css +5 -0
- package/styles/bootstrap5-dark.css +32 -26
- package/styles/bootstrap5.css +32 -26
- package/styles/fabric-dark.css +5 -0
- package/styles/fabric.css +5 -0
- package/styles/highcontrast-light.css +5 -0
- package/styles/highcontrast.css +5 -0
- package/styles/material-dark.css +5 -0
- package/styles/material.css +5 -0
- package/styles/tailwind-dark.css +31 -26
- package/styles/tailwind.css +5 -0
- package/styles/treegrid/_bootstrap5-definition.scss +4 -4
- package/styles/treegrid/_fluent-definition.scss +31 -0
- package/styles/treegrid/_layout.scss +8 -0
- package/styles/treegrid/_tailwind-definition.scss +4 -4
- package/styles/treegrid/bootstrap-dark.css +5 -0
- package/styles/treegrid/bootstrap.css +5 -0
- package/styles/treegrid/bootstrap4.css +5 -0
- package/styles/treegrid/bootstrap5-dark.css +32 -26
- package/styles/treegrid/bootstrap5.css +32 -26
- package/styles/treegrid/fabric-dark.css +5 -0
- package/styles/treegrid/fabric.css +5 -0
- package/styles/treegrid/highcontrast-light.css +5 -0
- package/styles/treegrid/highcontrast.css +5 -0
- package/styles/treegrid/icons/_fluent.scss +26 -0
- package/styles/treegrid/material-dark.css +5 -0
- package/styles/treegrid/material.css +5 -0
- package/styles/treegrid/tailwind-dark.css +31 -26
- package/styles/treegrid/tailwind.css +5 -0
|
@@ -0,0 +1,60 @@
|
|
|
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?
|
|
@@ -0,0 +1,37 @@
|
|
|
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?
|
package/CHANGELOG.md
CHANGED
|
@@ -4,48 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
### Tree Grid
|
|
6
6
|
|
|
7
|
-
####
|
|
8
|
-
|
|
9
|
-
- `#I342419` - Resolved performing add operation after calling refresh method.
|
|
10
|
-
|
|
11
|
-
## 19.3.47 (2021-10-26)
|
|
12
|
-
|
|
13
|
-
### Tree Grid
|
|
14
|
-
|
|
15
|
-
#### Bug Fixes
|
|
16
|
-
|
|
17
|
-
- `#F169151` - Resolved issue in drag and drop to Listbox component.
|
|
18
|
-
- `#I343484` - Resolved deleting the record by using deleteRow and deleteRecord methods in cellSelection mode.
|
|
19
|
-
- `#I345435` - Tree Column value shows properly when text wrap is enabled.
|
|
20
|
-
- `#I343976` - Resolved top records hiding issue on random expand/collapse action when Virtualization enabled.
|
|
21
|
-
- `#I342822` - Expand and collapse icon shown properly on re ordering column with `enablePersistence` property.
|
|
22
|
-
|
|
23
|
-
## 19.3.46 (2021-10-19)
|
|
24
|
-
|
|
25
|
-
### Tree Grid
|
|
26
|
-
|
|
27
|
-
#### Bug Fixes
|
|
28
|
-
|
|
29
|
-
- `#I343755` - Resolved record missing while using single root node with Virtualization and ExpandStateMapping enabled.
|
|
30
|
-
- `#I335120` - Resolved Deleting child records and creation of duplicate records after row drag and drop performed.
|
|
31
|
-
|
|
32
|
-
## 19.3.45 (2021-10-12)
|
|
7
|
+
#### New Features
|
|
33
8
|
|
|
34
|
-
|
|
9
|
+
- Provided support for `expandByKey`, `collapseByKey` methods and improved `expantAtLevel`, `collapseAtLevel` methods for nested records in tree grid.
|
|
10
|
+
- Provided Adaptive UI layout support for all devices.
|
|
35
11
|
|
|
36
12
|
#### Bug Fixes
|
|
37
13
|
|
|
38
|
-
- `#
|
|
39
|
-
- `#
|
|
40
|
-
- `#I339818` - Resolved "No records to display" issue when we expand filtered parent record with Virtualization and collapseAll enabled.
|
|
41
|
-
|
|
42
|
-
## 19.3.44 (2021-10-05)
|
|
43
|
-
|
|
44
|
-
### Tree Grid
|
|
45
|
-
|
|
46
|
-
#### New Features
|
|
47
|
-
|
|
48
|
-
- `#314841` - Provided support to freeze the columns on right, left or both sides.
|
|
14
|
+
- `#I348001`,`#I349046`,`#I349018` Throws script error while performing scroll on Virtualization enabled has been fixed.
|
|
15
|
+
- `#F167694` Resolved state changes not reflected for Treegrid column directive.
|
|
49
16
|
|
|
50
17
|
## 19.2.44 (2021-06-30)
|
|
51
18
|
|