@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
|
@@ -5778,7 +5778,13 @@ class NumberFormat$1 {
|
|
|
5778
5778
|
break;
|
|
5779
5779
|
}
|
|
5780
5780
|
}
|
|
5781
|
-
|
|
5781
|
+
const decimalSeparator = (dOptions).numberMapper.numberSymbols[mapper[3]] || '.';
|
|
5782
|
+
if (decimalPart === '') {
|
|
5783
|
+
fValue = temp[0];
|
|
5784
|
+
}
|
|
5785
|
+
else {
|
|
5786
|
+
fValue = temp[0] + decimalSeparator + decimalPart;
|
|
5787
|
+
}
|
|
5782
5788
|
}
|
|
5783
5789
|
}
|
|
5784
5790
|
if (curData.type === 'scientific') {
|