@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.
@@ -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
- ' You should include the valid license key to remove the license validation message permanently.</span>',
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
- ' You should include the valid license key to remove the license validation message permanently.</span>',
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;