@syncfusion/ej2-base 20.4.44 → 20.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.
- package/CHANGELOG.md +14 -0
- package/bin/syncfusion-license.js +1 -1
- package/dist/ej2-base.min.js +2 -2
- package/dist/ej2-base.umd.min.js +2 -2
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +3 -3
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +3 -3
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +2 -2
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +61 -7
- package/src/draggable.d.ts +4 -0
- package/src/template.js +1 -1
- package/src/validate-lic.js +2 -2
|
@@ -6594,9 +6594,9 @@ class LicenseValidator {
|
|
|
6594
6594
|
this.platform = /JavaScript|ASPNET|ASPNETCORE|ASPNETMVC|FileFormats/i;
|
|
6595
6595
|
this.errors = {
|
|
6596
6596
|
noLicense: '<span>This application was built using a trial version of Syncfusion Essential Studio.' +
|
|
6597
|
-
'
|
|
6597
|
+
' To remove the license validation message permanently, a valid license key must be included.</span>',
|
|
6598
6598
|
trailExpired: '<span>This application was built using a trial version of Syncfusion Essential Studio.' +
|
|
6599
|
-
'
|
|
6599
|
+
' To remove the license validation message permanently, a valid license key must be included.</span>',
|
|
6600
6600
|
versionMismatched: '<span>The included Syncfusion license key is invalid.</span>',
|
|
6601
6601
|
platformMismatched: '<span>The included Syncfusion license key is invalid.</span>',
|
|
6602
6602
|
invalidKey: '<span>The included Syncfusion license key is invalid.</span>'
|
|
@@ -9244,7 +9244,7 @@ function evalExp(str, nameSpace, helper, ignorePrefix) {
|
|
|
9244
9244
|
}
|
|
9245
9245
|
else {
|
|
9246
9246
|
// evaluate normal expression
|
|
9247
|
-
cnt = '"+' + addNameSpace(cnt.replace(/,/gi, '+' + nameSpace + '.'), (localKeys.indexOf(cnt) === -1), nameSpace, localKeys, ignorePrefix) + '+"';
|
|
9247
|
+
cnt = cnt !== '' ? '"+' + addNameSpace(cnt.replace(/,/gi, '+' + nameSpace + '.'), (localKeys.indexOf(cnt) === -1), nameSpace, localKeys, ignorePrefix) + '+"' : ' ';
|
|
9248
9248
|
}
|
|
9249
9249
|
}
|
|
9250
9250
|
return cnt;
|