@syncfusion/ej2-base 19.3.56 → 19.4.48

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.
Files changed (49) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +60 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/feature.md +42 -0
  3. package/CHANGELOG.md +3 -9
  4. package/README.md +3 -3
  5. package/dist/ej2-base.umd.min.js +2 -2
  6. package/dist/ej2-base.umd.min.js.map +1 -1
  7. package/dist/es6/ej2-base.es2015.js +45 -35
  8. package/dist/es6/ej2-base.es2015.js.map +1 -1
  9. package/dist/es6/ej2-base.es5.js +45 -35
  10. package/dist/es6/ej2-base.es5.js.map +1 -1
  11. package/dist/global/ej2-base.min.js +2 -2
  12. package/dist/global/ej2-base.min.js.map +1 -1
  13. package/dist/global/index.d.ts +1 -1
  14. package/package.json +73 -7
  15. package/src/animation.js +1 -1
  16. package/src/component.d.ts +1 -0
  17. package/src/component.js +5 -0
  18. package/src/draggable-model.d.ts +1 -0
  19. package/src/draggable.d.ts +4 -2
  20. package/src/draggable.js +38 -33
  21. package/src/intl/intl-base.js +1 -1
  22. package/styles/_fluent-dark-definition.scss +10 -0
  23. package/styles/_fluent-definition.scss +10 -0
  24. package/styles/bootstrap4.css +1 -1
  25. package/styles/bootstrap5-dark.css +1 -1
  26. package/styles/bootstrap5.css +1 -1
  27. package/styles/definition/_bootstrap-dark.scss +1 -0
  28. package/styles/definition/_bootstrap.scss +1 -0
  29. package/styles/definition/_bootstrap4.scss +1 -0
  30. package/styles/definition/_bootstrap5-dark.scss +1 -0
  31. package/styles/definition/_bootstrap5.scss +2 -1
  32. package/styles/definition/_fabric-dark.scss +1 -0
  33. package/styles/definition/_fabric.scss +1 -0
  34. package/styles/definition/_fluent-dark.scss +408 -0
  35. package/styles/definition/_fluent.scss +410 -0
  36. package/styles/definition/_highcontrast-light.scss +1 -0
  37. package/styles/definition/_highcontrast.scss +1 -0
  38. package/styles/definition/_material-dark.scss +1 -0
  39. package/styles/definition/_material.scss +1 -0
  40. package/styles/definition/_tailwind-dark.scss +1 -0
  41. package/styles/definition/_tailwind.scss +1 -0
  42. package/styles/fabric-dark.css +1 -1
  43. package/styles/fabric.css +1 -1
  44. package/styles/highcontrast-light.css +1 -1
  45. package/styles/highcontrast.css +1 -1
  46. package/styles/material-dark.css +1 -1
  47. package/styles/material.css +1 -1
  48. package/styles/tailwind-dark.css +1 -629
  49. package/styles/tailwind.css +1 -629
@@ -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,42 @@
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
+ ### Test bed sample location
30
+
31
+ 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.
32
+
33
+
34
+ ### Additional checklist
35
+ This may vary for different teams or products. Check with your scrum masters.
36
+
37
+ - Did you run the automation against your fix?
38
+ - Is there any API name change?
39
+ - Is there any existing behavior change of other features due to this code change?
40
+ - Does your new code introduce new warnings or binding errors?
41
+ - Does your code pass all FxCop and StyleCop rules?
42
+ - Did you record this case in the unit test or UI test?
package/CHANGELOG.md CHANGED
@@ -2,21 +2,15 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### Common
6
-
7
- #### Bug Fixes
8
-
9
- - `I348163` - Resolved the issue while using the `ww` format in the `dateformatter`.
10
-
11
- ## 19.3.54 (2021-11-17)
5
+ ## 19.4.42 (2022-01-11)
12
6
 
13
7
  ### Common
14
8
 
15
9
  #### Bug Fixes
16
10
 
17
- - `I339954` - Resolved the issue with Template compilation malfunctions when `href` value is empty.
11
+ - `I339589` - Resolved the `DropdownButton` issue with react component as target.
18
12
 
19
- ## 19.3.47 (2021-10-26)
13
+ ## 19.4.38 (2021-12-17)
20
14
 
21
15
  ### Common
22
16
 
package/README.md CHANGED
@@ -91,11 +91,11 @@ Product support is available for through following mediums.
91
91
 
92
92
  ## License
93
93
 
94
- Check the license detail [here](https://github.com/syncfusion/ej2-base/blob/master/license).
94
+ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/license).
95
95
 
96
96
  ## Changelog
97
97
 
98
- Check the changelog [here](https://ej2.syncfusion.com/documentation/release-notes?utm_source=npm&utm_campaign=ej2-base)
98
+ Check the changelog [here](https://ej2.syncfusion.com/documentation/release-notes/index?utm_source=npm&utm_campaign=ej2-base)
99
99
 
100
- © Copyright 2019 Syncfusion, Inc. All Rights Reserved.
100
+ © Copyright 2021 Syncfusion, Inc. All Rights Reserved.
101
101
  The Syncfusion Essential Studio license and copyright applies to this distribution.