@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
package/dist/es6/ej2-base.es5.js
CHANGED
|
@@ -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
|
-
'
|
|
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
|
-
'
|
|
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;
|