@syncfusion/ej2-base 30.2.4 → 30.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/{README.md → ReadMe.md} +1 -1
- package/bin/syncfusion-license.js +1 -1
- package/dist/ej2-base.min.js +1 -10
- package/dist/ej2-base.umd.min.js +1 -10
- package/dist/ej2-base.umd.min.js.map +1 -1
- package/dist/es6/ej2-base.es2015.js +7 -1
- package/dist/es6/ej2-base.es2015.js.map +1 -1
- package/dist/es6/ej2-base.es5.js +7 -1
- package/dist/es6/ej2-base.es5.js.map +1 -1
- package/dist/global/ej2-base.min.js +1 -10
- package/dist/global/ej2-base.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/package.json +1 -1
- package/src/intl/number-formatter.js +7 -1
package/dist/es6/ej2-base.es5.js
CHANGED
|
@@ -5952,7 +5952,13 @@ var NumberFormat$1 = /** @__PURE__ @class */ (function () {
|
|
|
5952
5952
|
break;
|
|
5953
5953
|
}
|
|
5954
5954
|
}
|
|
5955
|
-
|
|
5955
|
+
var decimalSeparator = (dOptions).numberMapper.numberSymbols[mapper[3]] || '.';
|
|
5956
|
+
if (decimalPart === '') {
|
|
5957
|
+
fValue = temp[0];
|
|
5958
|
+
}
|
|
5959
|
+
else {
|
|
5960
|
+
fValue = temp[0] + decimalSeparator + decimalPart;
|
|
5961
|
+
}
|
|
5956
5962
|
}
|
|
5957
5963
|
}
|
|
5958
5964
|
if (curData.type === 'scientific') {
|