@progress/kendo-angular-inputs 22.1.0-develop.11 → 22.1.0-develop.13

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.
@@ -554,7 +554,7 @@ const packageMetadata = {
554
554
  productCode: 'KENDOUIANGULAR',
555
555
  productCodes: ['KENDOUIANGULAR'],
556
556
  publishDate: 0,
557
- version: '22.1.0-develop.11',
557
+ version: '22.1.0-develop.13',
558
558
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
559
559
  };
560
560
 
@@ -4291,6 +4291,11 @@ class NumericTextBoxComponent {
4291
4291
  this.setSelection(selectionStart - 1, selectionEnd - 1);
4292
4292
  return;
4293
4293
  }
4294
+ if (this.hasTrailingZeros(inputValue) && !this.isPasted) {
4295
+ input.value = this.inputValue;
4296
+ this.setSelection(selectionStart - 1, selectionEnd - 1);
4297
+ return;
4298
+ }
4294
4299
  const parsedValue = this.intl.parseNumber(inputValue);
4295
4300
  let value = this.restrictDecimals(parsedValue);
4296
4301
  if (this.autoCorrect) {
@@ -4667,7 +4672,7 @@ class NumericTextBoxComponent {
4667
4672
  }
4668
4673
  restrictDecimals(value, round) {
4669
4674
  let result = value;
4670
- if (value && this.hasDecimals) {
4675
+ if (this.hasDecimals && isPresent(value)) {
4671
4676
  const decimals = this.decimals;
4672
4677
  const stringValue = String(value);
4673
4678
  if (round || EXPONENT_REGEX.test(stringValue)) {
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1769691618,
11
- "version": "22.1.0-develop.11",
10
+ "publishDate": 1770023271,
11
+ "version": "22.1.0-develop.13",
12
12
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
13
13
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "22.1.0-develop.11",
3
+ "version": "22.1.0-develop.13",
4
4
  "description": "Kendo UI for Angular Inputs Package - Everything you need to build professional form functionality (Checkbox, ColorGradient, ColorPalette, ColorPicker, FlatColorPicker, FormField, MaskedTextBox, NumericTextBox, RadioButton, RangeSlider, Slider, Switch, TextArea, and TextBox Components)",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "author": "Progress",
@@ -28,7 +28,7 @@
28
28
  "package": {
29
29
  "productName": "Kendo UI for Angular",
30
30
  "productCode": "KENDOUIANGULAR",
31
- "publishDate": 1769691618,
31
+ "publishDate": 1770023271,
32
32
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
33
33
  }
34
34
  },
@@ -40,20 +40,20 @@
40
40
  "@angular/platform-browser": "19 - 21",
41
41
  "@progress/kendo-drawing": "^1.23.1",
42
42
  "@progress/kendo-licensing": "^1.10.0",
43
- "@progress/kendo-angular-buttons": "22.1.0-develop.11",
44
- "@progress/kendo-angular-common": "22.1.0-develop.11",
45
- "@progress/kendo-angular-utils": "22.1.0-develop.11",
46
- "@progress/kendo-angular-navigation": "22.1.0-develop.11",
47
- "@progress/kendo-angular-dialog": "22.1.0-develop.11",
48
- "@progress/kendo-angular-intl": "22.1.0-develop.11",
49
- "@progress/kendo-angular-l10n": "22.1.0-develop.11",
50
- "@progress/kendo-angular-popup": "22.1.0-develop.11",
51
- "@progress/kendo-angular-icons": "22.1.0-develop.11",
43
+ "@progress/kendo-angular-buttons": "22.1.0-develop.13",
44
+ "@progress/kendo-angular-common": "22.1.0-develop.13",
45
+ "@progress/kendo-angular-utils": "22.1.0-develop.13",
46
+ "@progress/kendo-angular-navigation": "22.1.0-develop.13",
47
+ "@progress/kendo-angular-dialog": "22.1.0-develop.13",
48
+ "@progress/kendo-angular-intl": "22.1.0-develop.13",
49
+ "@progress/kendo-angular-l10n": "22.1.0-develop.13",
50
+ "@progress/kendo-angular-popup": "22.1.0-develop.13",
51
+ "@progress/kendo-angular-icons": "22.1.0-develop.13",
52
52
  "rxjs": "^6.5.3 || ^7.0.0"
53
53
  },
54
54
  "dependencies": {
55
55
  "tslib": "^2.3.1",
56
- "@progress/kendo-angular-schematics": "22.1.0-develop.11",
56
+ "@progress/kendo-angular-schematics": "22.1.0-develop.13",
57
57
  "@progress/kendo-common": "^1.0.1",
58
58
  "@progress/kendo-draggable": "^3.0.0",
59
59
  "@progress/kendo-inputs-common": "^3.1.0"