@syncfusion/ej2-treemap 19.3.43 → 19.4.52
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 +72 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +49 -0
- package/README.md +1 -1
- package/dist/ej2-treemap.umd.min.js +2 -2
- package/dist/ej2-treemap.umd.min.js.map +1 -1
- package/dist/es6/ej2-treemap.es2015.js +42 -9
- package/dist/es6/ej2-treemap.es2015.js.map +1 -1
- package/dist/es6/ej2-treemap.es5.js +42 -9
- package/dist/es6/ej2-treemap.es5.js.map +1 -1
- package/dist/global/ej2-treemap.min.js +2 -2
- package/dist/global/ej2-treemap.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +11 -11
- package/src/treemap/layout/render-panel.js +1 -1
- package/src/treemap/model/theme.js +34 -0
- package/src/treemap/treemap.js +2 -1
- package/src/treemap/utils/helper.js +5 -7
|
@@ -0,0 +1,72 @@
|
|
|
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
|
+
|
|
10
|
+
## Reason for not identifying earlier
|
|
11
|
+
|
|
12
|
+
Find how it was missed in our earlier testing and development and by whom it was missed. This will help prevent similar mistakes in the future.
|
|
13
|
+
|
|
14
|
+
### Reason
|
|
15
|
+
|
|
16
|
+
Provide reason for missing.
|
|
17
|
+
|
|
18
|
+
### Action taken:
|
|
19
|
+
|
|
20
|
+
Provide the action plan taken to avoid this issue further. Also, mention if we addressed any other area in the same product based on this learning.
|
|
21
|
+
|
|
22
|
+
### Related Area for missing test case:
|
|
23
|
+
|
|
24
|
+
Unit test case / E2E test case / Manual testing
|
|
25
|
+
|
|
26
|
+
## Is it a breaking issue?
|
|
27
|
+
|
|
28
|
+
If it is a breaking issue, provide the commit detail which caused this break.
|
|
29
|
+
|
|
30
|
+
## Solution description
|
|
31
|
+
|
|
32
|
+
Describe your code changes in detail for reviewers.
|
|
33
|
+
|
|
34
|
+
### Cause:
|
|
35
|
+
|
|
36
|
+
Technical explanation for cause.
|
|
37
|
+
|
|
38
|
+
### Fix:
|
|
39
|
+
|
|
40
|
+
Technical explanation for your fix.
|
|
41
|
+
|
|
42
|
+
## Output screenshots
|
|
43
|
+
|
|
44
|
+
Post the output screenshots if an UI is affected or added due to this bug.
|
|
45
|
+
|
|
46
|
+
### Before issue fix output image:
|
|
47
|
+
|
|
48
|
+
Provide issue image before fix.
|
|
49
|
+
|
|
50
|
+
### After issue fix output image:
|
|
51
|
+
|
|
52
|
+
Provide issue fixed image with your fix.
|
|
53
|
+
|
|
54
|
+
## Areas affected and ensured
|
|
55
|
+
|
|
56
|
+
List the areas affected by your code changes.
|
|
57
|
+
|
|
58
|
+
## Additional checklist
|
|
59
|
+
|
|
60
|
+
- [ ] Did you run the automation against your fix? <b> Yes | No Your Explanation </b>
|
|
61
|
+
|
|
62
|
+
- [ ] Is there any API name change? <b> Yes | No Your Explanation </b>
|
|
63
|
+
|
|
64
|
+
- [ ] Is there any existing behavior change of other features due to this code change? <b> Yes | No Your Explanation </b>
|
|
65
|
+
|
|
66
|
+
- [ ] Did you record this case in the unit test or UI test? <b> Yes | No Your Explanation </b>
|
|
67
|
+
|
|
68
|
+
- [ ] Did you added issue fix comment? <b> Yes | No Your Explanation </b>
|
|
69
|
+
|
|
70
|
+
- [ ] Did you tested this issue fix for all browsers? <b> [ ] Chrome [ ] Firefox [ ] Edge [ ] Internet Explorer </b>
|
|
71
|
+
|
|
72
|
+
- [ ] Does it have any known issues? <b> Yes | No Your Explanation </b>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Feature description
|
|
2
|
+
|
|
3
|
+
Clearly and concisely describe the problem/feature (this cannot be empty)
|
|
4
|
+
|
|
5
|
+
## Analysis / Design
|
|
6
|
+
|
|
7
|
+
If there is an external design, link to it project documentation area
|
|
8
|
+
If there is an internal discussion on the Forum, provide the link.
|
|
9
|
+
|
|
10
|
+
## Solution Description
|
|
11
|
+
|
|
12
|
+
Describe your code changes in detail for reviewers
|
|
13
|
+
|
|
14
|
+
## Output screenshots
|
|
15
|
+
|
|
16
|
+
Post the output screenshots if an UI is affected or added due to this feature.
|
|
17
|
+
|
|
18
|
+
## Areas affected and ensured
|
|
19
|
+
|
|
20
|
+
List out the areas are affected by your code changes.
|
|
21
|
+
|
|
22
|
+
## Test cases
|
|
23
|
+
|
|
24
|
+
Provide the unit testing written file details to understand the use cases considered in this implementation.
|
|
25
|
+
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.
|
|
26
|
+
Provide the test cases Excel file alone if the feature cannot be automated in any case.
|
|
27
|
+
|
|
28
|
+
## Test bed sample location
|
|
29
|
+
|
|
30
|
+
Provide the test bed sample location where code reviewers can review the new feature’s behaviors. It can be from NPMCI, staging site, local server, etc.
|
|
31
|
+
|
|
32
|
+
## Additional checklist
|
|
33
|
+
|
|
34
|
+
- [ ] Did you run the automation against your feature? <b> Yes | No Your Explanation </b>
|
|
35
|
+
|
|
36
|
+
- [ ] Is there any API name change? <b> Yes | No Your Explanation </b>
|
|
37
|
+
|
|
38
|
+
- [ ] Is there any existing behavior change of other features due to this code change? <b> Yes | No Your Explanation </b>
|
|
39
|
+
|
|
40
|
+
- [ ] Did you record this case in the unit test or UI test? <b> Yes | No Your Explanation </b>
|
|
41
|
+
|
|
42
|
+
- [ ] Did you add comment for your new code (Method / Class / API / Interface / Event)? <b> Yes | No Your Explanation </b>
|
|
43
|
+
|
|
44
|
+
- [ ] Did you configured third party config your feature? <b> Yes | No Your Explanation </b>
|
|
45
|
+
|
|
46
|
+
- [ ] Did you tested this feature with all browsers? <b> [ ] Chrome [ ] Firefox [ ] Edge [ ] Internet Explorer </b>
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
package/README.md
CHANGED
|
@@ -66,4 +66,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
|
|
|
66
66
|
|
|
67
67
|
Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/treemap/CHANGELOG.md?utm_source=npm&utm_campaign=treemap)
|
|
68
68
|
|
|
69
|
-
© Copyright
|
|
69
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|