@syncfusion/ej2-base 24.1.42 → 24.1.46

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 (38) 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 +6 -0
  4. package/README.md +1 -1
  5. package/bin/syncfusion-license.js +1 -1
  6. package/dist/ej2-base.min.js +2 -2
  7. package/dist/ej2-base.umd.min.js +2 -2
  8. package/dist/ej2-base.umd.min.js.map +1 -1
  9. package/dist/es6/ej2-base.es2015.js +2 -2
  10. package/dist/es6/ej2-base.es2015.js.map +1 -1
  11. package/dist/es6/ej2-base.es5.js +2 -2
  12. package/dist/es6/ej2-base.es5.js.map +1 -1
  13. package/dist/global/ej2-base.min.js +2 -2
  14. package/dist/global/ej2-base.min.js.map +1 -1
  15. package/dist/global/index.d.ts +1 -1
  16. package/package.json +15 -52
  17. package/src/template.js +2 -2
  18. package/styles/bootstrap-dark.css +46 -1
  19. package/styles/bootstrap.css +46 -1
  20. package/styles/bootstrap4.css +47 -1
  21. package/styles/bootstrap5-dark.css +46 -1
  22. package/styles/bootstrap5.css +46 -1
  23. package/styles/fabric-dark.css +46 -1
  24. package/styles/fabric.css +46 -1
  25. package/styles/fluent-dark.css +46 -1
  26. package/styles/fluent.css +46 -1
  27. package/styles/highcontrast-light.css +46 -1
  28. package/styles/highcontrast.css +46 -1
  29. package/styles/material-dark.css +46 -1
  30. package/styles/material.css +46 -1
  31. package/styles/material3-dark.css +46 -1
  32. package/styles/material3.css +46 -1
  33. package/styles/offline-theme/material-dark.css +46 -1
  34. package/styles/offline-theme/material.css +46 -1
  35. package/styles/offline-theme/tailwind-dark.css +46 -1
  36. package/styles/offline-theme/tailwind.css +46 -1
  37. package/styles/tailwind-dark.css +46 -1
  38. package/styles/tailwind.css +46 -1
@@ -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,6 +2,12 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ### Common
6
+
7
+ #### Bug Fixes
8
+
9
+ - `#I531468` - The issue with "rendering the html template string" has been resolved.
10
+
5
11
  ## 23.2.6 (2023-11-28)
6
12
 
7
13
  ### Common
package/README.md CHANGED
@@ -96,5 +96,5 @@ Product support is available for through following mediums.
96
96
 
97
97
  Check the changelog [here](https://ej2.syncfusion.com/documentation/release-notes/index/?utm_source=npm&utm_campaign=ej2-base).
98
98
 
99
- © Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
99
+ © Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
100
100
  The Syncfusion Essential Studio license and copyright applies to this distribution.
@@ -1,2 +1,2 @@
1
1
  #! /usr/bin/env node
2
- 'use strict';var _0x22d3b7=_0x2301;(function(_0x36980c,_0x3f37ed){var _0x1af19a=_0x2301,_0x599ddc=_0x36980c();while(!![]){try{var _0x354680=parseInt(_0x1af19a(0x1d6))/0x1+-parseInt(_0x1af19a(0x1cf))/0x2*(parseInt(_0x1af19a(0x1b8))/0x3)+parseInt(_0x1af19a(0x1cd))/0x4*(-parseInt(_0x1af19a(0x1cc))/0x5)+-parseInt(_0x1af19a(0x1cb))/0x6+parseInt(_0x1af19a(0x1d5))/0x7+-parseInt(_0x1af19a(0x1c5))/0x8*(parseInt(_0x1af19a(0x1b6))/0x9)+parseInt(_0x1af19a(0x1da))/0xa;if(_0x354680===_0x3f37ed)break;else _0x599ddc['push'](_0x599ddc['shift']());}catch(_0x45ee7c){_0x599ddc['push'](_0x599ddc['shift']());}}}(_0x4157,0x9bf2d));var fs=global['fs']=global['fs']||require('fs');const args=process[_0x22d3b7(0x1bc)]['slice'](0x2),envKey=process[_0x22d3b7(0x1d4)]['SYNCFUSION_LICENSE'];if(args==_0x22d3b7(0x1c7)){var licKey='';if(fs[_0x22d3b7(0x1bd)](_0x22d3b7(0x1c8)))licKey=fs['readFileSync']('./syncfusion-license.txt','UTF8');else envKey&&(licKey=envKey);if(licKey!=''){var licKeySplit=licKey['split'](';'),pkey=[0x530000,0x790000,0x4e0000,0x630000,0x460000,0x750000,0x530000,0x690000,0x4f0000,0x6e0000,0x400000,0x440000,0x650000,0x760000,0x500000,0x6c0000,0x610000,0x740000,0x460000,0x6f0000,0x720000,0x6d0000],decryptedStr=[],resultArray=[];for(var i=0x0;i<licKeySplit[_0x22d3b7(0x1bf)];i++){var lKey=licKeySplit[i],decodeStr=getDecryptedData(lKey);if(!decodeStr)continue;var k=0x0,buffr='';for(var i=0x0;i<decodeStr[_0x22d3b7(0x1bf)];i++,k++){k===pkey[_0x22d3b7(0x1bf)]&&(k=0x0);var c=decodeStr[_0x22d3b7(0x1c0)](i);buffr+=String[_0x22d3b7(0x1db)](c^pkey[k]>>0x10);}decryptedStr=buffr[_0x22d3b7(0x1ba)](';');if(decryptedStr[_0x22d3b7(0x1bf)]>0x3){resultArray[_0x22d3b7(0x1be)]({'currentPlatform':decryptedStr[0x0],'version':decryptedStr[0x1],'expiryDate':decryptedStr[0x2]});var licData=resultArray[0x0]['currentPlatform']+';'+resultArray[0x0][_0x22d3b7(0x1d2)]+';'+resultArray[0x0][_0x22d3b7(0x1bb)]+';',encryptedKey=getEncryptedKey(licData),jsFiles=['./node_modules/@syncfusion/ej2-base/src/validate-lic.js',_0x22d3b7(0x1b7),'./node_modules/@syncfusion/ej2-base/dist/es6/ej2-base.es5.js',_0x22d3b7(0x1ca)];for(var n=0x0;n<jsFiles[_0x22d3b7(0x1bf)];n++){if(fs[_0x22d3b7(0x1bd)](jsFiles[n])){var content=fs[_0x22d3b7(0x1d1)](jsFiles[n],_0x22d3b7(0x1d9)),regex=jsFiles[n]===_0x22d3b7(0x1ca)?/npxKeyReplace[^"]*/:/npxKeyReplace[^']*/;content=content[_0x22d3b7(0x1c3)](regex,_0x22d3b7(0x1c6)+encryptedKey),fs[_0x22d3b7(0x1c4)](jsFiles[n],content);}}console[_0x22d3b7(0x1ce)](_0x22d3b7(0x1c2));}else console['log'](_0x22d3b7(0x1b9));}}else console[_0x22d3b7(0x1ce)]('Please\x20add\x20the\x20syncfusion-license.txt\x20file\x20or\x20set\x20environment\x20variable\x20SYNCFUSION_LICENSE');}else console[_0x22d3b7(0x1ce)](_0x22d3b7(0x1d0));function getEncryptedKey(_0x338737){var _0x256085=_0x22d3b7,_0x3817ed='',_0x370013=[],_0xdddd33=[],_0x3ff1cb=new Array();for(var _0x3c5c0f=0x0;_0x3c5c0f<_0x338737[_0x256085(0x1bf)];_0x3c5c0f++){_0x370013[_0x3c5c0f]=_0x338737[_0x3c5c0f][_0x256085(0x1c0)](0x0);}for(var _0x4c123c=0x0,_0x595b93=0x41;_0x4c123c<0x1a;_0x4c123c++,_0x595b93++){_0xdddd33[_0x4c123c]=String['fromCharCode'](_0x595b93);}var _0x13e1ee=Math[_0x256085(0x1d3)](Math['random']()*(_0xdddd33['length']-0x1-0x0+0x1)+0x0),_0x4fa1dd=_0xdddd33[_0x13e1ee][_0x256085(0x1c0)](0x0);for(var _0x3c5c0f=0x0;_0x3c5c0f<_0x338737[_0x256085(0x1bf)];_0x3c5c0f++){_0x3ff1cb[_0x3c5c0f]=parseInt(_0x370013[_0x3c5c0f])+parseInt(_0xdddd33[_0x13e1ee][_0x256085(0x1c0)](0x0));}_0x3ff1cb[_0x370013['length']]=_0x4fa1dd;for(var _0x3c5c0f=0x0;_0x3c5c0f<_0x3ff1cb['length'];_0x3c5c0f++){_0x3817ed+=String['fromCharCode'](_0x3ff1cb[_0x3c5c0f]);}return Buffer[_0x256085(0x1c1)](_0x3817ed,_0x256085(0x1c9))[_0x256085(0x1d7)](_0x256085(0x1d8));}function _0x4157(){var _0x46d787=['existsSync','push','length','charCodeAt','from','(INFO)\x20Syncfusion\x20License\x20imported\x20successfully.','replace','writeFileSync','56pliYwn','npxKeyReplace','activate','./syncfusion-license.txt','ascii','./node_modules/@syncfusion/ej2-base/dist/ej2-base.umd.min.js','5619048ghIJOp','635010BFnhls','32yXrjgs','log','2KAzzTh','Supported\x20command:\x20npx\x20syncfusion-license\x20activate','readFileSync','version','floor','env','5468568OKTGHL','928138CUROIR','toString','base64','UTF8','29728190vDsDzn','fromCharCode','1064277xgADVd','./node_modules/@syncfusion/ej2-base/dist/es6/ej2-base.es2015.js','3789363jTYGty','(Error)\x20License\x20key\x20is\x20not\x20valid.','split','expiryDate','argv'];_0x4157=function(){return _0x46d787;};return _0x4157();}function getDecryptedData(_0x20e4d5){var _0x2b8e1c=_0x22d3b7;try{return Buffer[_0x2b8e1c(0x1c1)](_0x20e4d5,'base64')[_0x2b8e1c(0x1d7)]('binary');}catch(_0x3bade6){return'';}};function _0x2301(_0x3de54b,_0x5df47d){var _0x4157f1=_0x4157();return _0x2301=function(_0x230148,_0x11c727){_0x230148=_0x230148-0x1b6;var _0x4dbf24=_0x4157f1[_0x230148];return _0x4dbf24;},_0x2301(_0x3de54b,_0x5df47d);}process['exit'](0x0);
2
+ 'use strict';var _0x19c751=_0x5ae6;(function(_0x2dc79d,_0x5ebfd4){var _0x4c9ab6=_0x5ae6,_0x533b4e=_0x2dc79d();while(!![]){try{var _0x5bea50=-parseInt(_0x4c9ab6(0xf8))/0x1+-parseInt(_0x4c9ab6(0xfa))/0x2+-parseInt(_0x4c9ab6(0xf1))/0x3+-parseInt(_0x4c9ab6(0xf9))/0x4+parseInt(_0x4c9ab6(0xf5))/0x5+-parseInt(_0x4c9ab6(0xec))/0x6*(parseInt(_0x4c9ab6(0xe9))/0x7)+parseInt(_0x4c9ab6(0xfb))/0x8;if(_0x5bea50===_0x5ebfd4)break;else _0x533b4e['push'](_0x533b4e['shift']());}catch(_0x163b09){_0x533b4e['push'](_0x533b4e['shift']());}}}(_0x1f03,0x1a506));var fs=global['fs']=global['fs']||require('fs');const args=process['argv'][_0x19c751(0xfc)](0x2),envKey=process[_0x19c751(0xeb)][_0x19c751(0x105)];if(args==_0x19c751(0xe7)){var licKey='';if(fs[_0x19c751(0x100)](_0x19c751(0xf7)))licKey=fs[_0x19c751(0xef)](_0x19c751(0xf7),_0x19c751(0xed));else envKey&&(licKey=envKey);if(licKey!=''){var licKeySplit=licKey[_0x19c751(0xe1)](';'),pkey=[0x530000,0x790000,0x4e0000,0x630000,0x460000,0x750000,0x530000,0x690000,0x4f0000,0x6e0000,0x400000,0x440000,0x650000,0x760000,0x500000,0x6c0000,0x610000,0x740000,0x460000,0x6f0000,0x720000,0x6d0000],decryptedStr=[],resultArray=[];for(var i=0x0;i<licKeySplit['length'];i++){var lKey=licKeySplit[i],decodeStr=getDecryptedData(lKey);if(!decodeStr)continue;var k=0x0,buffr='';for(var i=0x0;i<decodeStr[_0x19c751(0xe0)];i++,k++){k===pkey[_0x19c751(0xe0)]&&(k=0x0);var c=decodeStr[_0x19c751(0xf6)](i);buffr+=String[_0x19c751(0xe5)](c^pkey[k]>>0x10);}decryptedStr=buffr['split'](';');if(decryptedStr[_0x19c751(0xe0)]>0x3){resultArray['push']({'currentPlatform':decryptedStr[0x0],'version':decryptedStr[0x1],'expiryDate':decryptedStr[0x2]});var licData=resultArray[0x0][_0x19c751(0x101)]+';'+resultArray[0x0][_0x19c751(0xe3)]+';'+resultArray[0x0][_0x19c751(0xfe)]+';',encryptedKey=getEncryptedKey(licData),jsFiles=[_0x19c751(0x104),_0x19c751(0x106),_0x19c751(0x107),'./node_modules/@syncfusion/ej2-base/dist/ej2-base.umd.min.js'];for(var n=0x0;n<jsFiles[_0x19c751(0xe0)];n++){if(fs[_0x19c751(0x100)](jsFiles[n])){var content=fs['readFileSync'](jsFiles[n],_0x19c751(0xed)),regex=jsFiles[n]===_0x19c751(0xf2)?/npxKeyReplace[^"]*/:/npxKeyReplace[^']*/;content=content[_0x19c751(0xff)](regex,_0x19c751(0xea)+encryptedKey),fs['writeFileSync'](jsFiles[n],content);}}console[_0x19c751(0x102)](_0x19c751(0x103));}else console['log'](_0x19c751(0xf0));}}else console[_0x19c751(0x102)](_0x19c751(0xe8));}else console[_0x19c751(0x102)]('Supported\x20command:\x20npx\x20syncfusion-license\x20activate');function _0x5ae6(_0x756a7d,_0x5d8f91){var _0x1f0346=_0x1f03();return _0x5ae6=function(_0x5ae6ab,_0x5dbc8f){_0x5ae6ab=_0x5ae6ab-0xe0;var _0x4217de=_0x1f0346[_0x5ae6ab];return _0x4217de;},_0x5ae6(_0x756a7d,_0x5d8f91);}function _0x1f03(){var _0x3eb210=['slice','from','expiryDate','replace','existsSync','currentPlatform','log','(INFO)\x20Syncfusion\x20License\x20imported\x20successfully.','./node_modules/@syncfusion/ej2-base/src/validate-lic.js','SYNCFUSION_LICENSE','./node_modules/@syncfusion/ej2-base/dist/es6/ej2-base.es2015.js','./node_modules/@syncfusion/ej2-base/dist/es6/ej2-base.es5.js','length','split','floor','version','random','fromCharCode','binary','activate','Please\x20add\x20the\x20syncfusion-license.txt\x20file\x20or\x20set\x20environment\x20variable\x20SYNCFUSION_LICENSE','85477DutZzX','npxKeyReplace','env','78ueFNeb','UTF8','toString','readFileSync','(Error)\x20License\x20key\x20is\x20not\x20valid.','468612woMDsn','./node_modules/@syncfusion/ej2-base/dist/ej2-base.umd.min.js','exit','base64','479265CxeWXW','charCodeAt','./syncfusion-license.txt','215468TJtZyh','202088AfbEty','111394tnUUTB','5188504YIVTUF'];_0x1f03=function(){return _0x3eb210;};return _0x1f03();}function getEncryptedKey(_0x183c18){var _0xdaaad9=_0x19c751,_0x57fc5b='',_0x1f61dc=[],_0x3d94bb=[],_0x44f2a4=new Array();for(var _0x1c7b77=0x0;_0x1c7b77<_0x183c18['length'];_0x1c7b77++){_0x1f61dc[_0x1c7b77]=_0x183c18[_0x1c7b77][_0xdaaad9(0xf6)](0x0);}for(var _0x3bbe5d=0x0,_0x194213=0x41;_0x3bbe5d<0x1a;_0x3bbe5d++,_0x194213++){_0x3d94bb[_0x3bbe5d]=String[_0xdaaad9(0xe5)](_0x194213);}var _0x441bef=Math[_0xdaaad9(0xe2)](Math[_0xdaaad9(0xe4)]()*(_0x3d94bb[_0xdaaad9(0xe0)]-0x1-0x0+0x1)+0x0),_0x7b2fcf=_0x3d94bb[_0x441bef][_0xdaaad9(0xf6)](0x0);for(var _0x1c7b77=0x0;_0x1c7b77<_0x183c18['length'];_0x1c7b77++){_0x44f2a4[_0x1c7b77]=parseInt(_0x1f61dc[_0x1c7b77])+parseInt(_0x3d94bb[_0x441bef][_0xdaaad9(0xf6)](0x0));}_0x44f2a4[_0x1f61dc['length']]=_0x7b2fcf;for(var _0x1c7b77=0x0;_0x1c7b77<_0x44f2a4['length'];_0x1c7b77++){_0x57fc5b+=String[_0xdaaad9(0xe5)](_0x44f2a4[_0x1c7b77]);}return Buffer[_0xdaaad9(0xfd)](_0x57fc5b,'ascii')[_0xdaaad9(0xee)](_0xdaaad9(0xf4));}function getDecryptedData(_0x4c4497){var _0x31a512=_0x19c751;try{return Buffer[_0x31a512(0xfd)](_0x4c4497,_0x31a512(0xf4))[_0x31a512(0xee)](_0x31a512(0xe6));}catch(_0x59a456){return'';}};process[_0x19c751(0xf3)](0x0);