@syncfusion/ej2-base 23.2.4 → 23.2.6
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 +8 -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 +2 -2
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +2 -2
- 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/e2e/protractor.config.js +34 -19
- package/package.json +6 -63
- package/src/template.js +2 -2
|
@@ -9294,7 +9294,7 @@ Touch = __decorate$5([
|
|
|
9294
9294
|
/**
|
|
9295
9295
|
* Template Engine
|
|
9296
9296
|
*/
|
|
9297
|
-
const LINES = new RegExp('\\n
|
|
9297
|
+
const LINES = new RegExp('[\\n\\r\\s]+', 'g');
|
|
9298
9298
|
const QUOTES = new RegExp(/'|"/g);
|
|
9299
9299
|
const IF_STMT = new RegExp('if ?\\(');
|
|
9300
9300
|
const ELSEIF_STMT = new RegExp('else if ?\\(');
|
|
@@ -9410,7 +9410,7 @@ function evalExp(str, nameSpace, helper, ignorePrefix) {
|
|
|
9410
9410
|
str = str.replace(value, singleSpace);
|
|
9411
9411
|
});
|
|
9412
9412
|
}
|
|
9413
|
-
return str.replace(LINES, '').replace(DBL_QUOTED_STR, '\'$1\'').replace(exp,
|
|
9413
|
+
return str.replace(LINES, ' ').replace(DBL_QUOTED_STR, '\'$1\'').replace(exp,
|
|
9414
9414
|
// eslint-disable-next-line
|
|
9415
9415
|
(match, cnt, offset, matchStr) => {
|
|
9416
9416
|
const SPECIAL_CHAR = /@|#|\$/gm;
|