@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.
@@ -6769,9 +6769,9 @@ var LicenseValidator = /** @__PURE__ @class */ (function () {
6769
6769
  this.platform = /JavaScript|ASPNET|ASPNETCORE|ASPNETMVC|FileFormats/i;
6770
6770
  this.errors = {
6771
6771
  noLicense: '<span>This application was built using a trial version of Syncfusion Essential Studio.' +
6772
- ' You should include the valid license key to remove the license validation message permanently.</span>',
6772
+ ' To remove the license validation message permanently, a valid license key must be included.</span>',
6773
6773
  trailExpired: '<span>This application was built using a trial version of Syncfusion Essential Studio.' +
6774
- ' You should include the valid license key to remove the license validation message permanently.</span>',
6774
+ ' To remove the license validation message permanently, a valid license key must be included.</span>',
6775
6775
  versionMismatched: '<span>The included Syncfusion license key is invalid.</span>',
6776
6776
  platformMismatched: '<span>The included Syncfusion license key is invalid.</span>',
6777
6777
  invalidKey: '<span>The included Syncfusion license key is invalid.</span>'
@@ -9364,7 +9364,7 @@ function evalExp(str, nameSpace, helper, ignorePrefix) {
9364
9364
  }
9365
9365
  else {
9366
9366
  // evaluate normal expression
9367
- cnt = '"+' + addNameSpace(cnt.replace(/,/gi, '+' + nameSpace + '.'), (localKeys.indexOf(cnt) === -1), nameSpace, localKeys, ignorePrefix) + '+"';
9367
+ cnt = cnt !== '' ? '"+' + addNameSpace(cnt.replace(/,/gi, '+' + nameSpace + '.'), (localKeys.indexOf(cnt) === -1), nameSpace, localKeys, ignorePrefix) + '+"' : ' ';
9368
9368
  }
9369
9369
  }
9370
9370
  return cnt;