@progress/kendo-angular-inputs 9.0.1-dev.202204281117 → 9.0.2
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.
|
@@ -738,7 +738,7 @@ export class NumericTextBoxComponent {
|
|
|
738
738
|
return result;
|
|
739
739
|
}
|
|
740
740
|
formatInputValue(value) {
|
|
741
|
-
let stringValue = String(value);
|
|
741
|
+
let stringValue = Object.is(value, -0) ? '-0' : String(value);
|
|
742
742
|
const exponentMatch = EXPONENT_REGEX.exec(stringValue);
|
|
743
743
|
if (exponentMatch) {
|
|
744
744
|
stringValue = value.toFixed(limitPrecision(parseInt(exponentMatch[1], 10)));
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-inputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
12
|
+
publishDate: 1654098210,
|
|
13
13
|
version: '',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
15
15
|
};
|
|
@@ -519,7 +519,7 @@ const packageMetadata = {
|
|
|
519
519
|
name: '@progress/kendo-angular-inputs',
|
|
520
520
|
productName: 'Kendo UI for Angular',
|
|
521
521
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
522
|
-
publishDate:
|
|
522
|
+
publishDate: 1654098210,
|
|
523
523
|
version: '',
|
|
524
524
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/?utm_medium=product&utm_source=kendoangular&utm_campaign=kendo-ui-angular-purchase-license-keys-warning'
|
|
525
525
|
};
|
|
@@ -4070,7 +4070,7 @@ class NumericTextBoxComponent {
|
|
|
4070
4070
|
return result;
|
|
4071
4071
|
}
|
|
4072
4072
|
formatInputValue(value) {
|
|
4073
|
-
let stringValue = String(value);
|
|
4073
|
+
let stringValue = Object.is(value, -0) ? '-0' : String(value);
|
|
4074
4074
|
const exponentMatch = EXPONENT_REGEX.exec(stringValue);
|
|
4075
4075
|
if (exponentMatch) {
|
|
4076
4076
|
stringValue = value.toFixed(limitPrecision(parseInt(exponentMatch[1], 10)));
|