@progress/kendo-angular-inputs 24.0.2-develop.2 → 24.0.2-develop.4

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/NOTICE.txt CHANGED
@@ -264,7 +264,7 @@ path-is-absolute 1.0.1 | https://github.com/sindresorhus/path- |
264
264
  | is-absolute |
265
265
  path-to-regexp 0.1.12 | https://github.com/pillarjs/path-to-r | MIT License
266
266
  | egexp |
267
- pdfjs-dist-for-node 4.6.82 | http://mozilla.github.io/pdf.js/ | Apache License 2.0
267
+ pdfjs-dist-for-node 5.6.205 | http://mozilla.github.io/pdf.js/ | Apache License 2.0
268
268
  picocolors 1.1.1 | https://github.com/alexeyraspopov/pic | ISC License
269
269
  | ocolors#readme |
270
270
  picomatch 4.0.3 | https://github.com/micromatch/picomat | MIT License
@@ -583,8 +583,8 @@ const packageMetadata = {
583
583
  productName: 'Kendo UI for Angular',
584
584
  productCode: 'KENDOUIANGULAR',
585
585
  productCodes: ['KENDOUIANGULAR'],
586
- publishDate: 1779778347,
587
- version: '24.0.2-develop.2',
586
+ publishDate: 1779791057,
587
+ version: '24.0.2-develop.4',
588
588
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
589
589
  };
590
590
 
@@ -7640,7 +7640,12 @@ class TextBoxComponent {
7640
7640
  /**
7641
7641
  * Provides a value for the TextBox.
7642
7642
  */
7643
- value = null;
7643
+ set value(value) {
7644
+ this._value = value ?? null;
7645
+ }
7646
+ get value() {
7647
+ return this._value;
7648
+ }
7644
7649
  /**
7645
7650
  * Highlights the whole value when you click the TextBox.
7646
7651
  * @default false
@@ -7815,6 +7820,7 @@ class TextBoxComponent {
7815
7820
  prefix;
7816
7821
  control;
7817
7822
  subscriptions;
7823
+ _value = null;
7818
7824
  _isFocused = false;
7819
7825
  focusChangedProgrammatically = false;
7820
7826
  _inputAttributes;
@@ -13714,7 +13720,7 @@ class ColorPickerComponent {
13714
13720
  const gradientDragHandle = this.flatColorPicker.gradient?.gradientDragHandle;
13715
13721
  const palette = this.flatColorPicker.palette?.host;
13716
13722
  const elementToFocus = gradientDragHandle ? gradientDragHandle : palette;
13717
- elementToFocus.nativeElement.focus();
13723
+ elementToFocus.nativeElement.focus({ preventScroll: true });
13718
13724
  }
13719
13725
  });
13720
13726
  }
@@ -17421,7 +17427,12 @@ class TextFieldsBase {
17421
17427
  /**
17422
17428
  * Provides a value for the TextArea component.
17423
17429
  */
17424
- value = null;
17430
+ set value(value) {
17431
+ this._value = value ?? null;
17432
+ }
17433
+ get value() {
17434
+ return this._value;
17435
+ }
17425
17436
  /**
17426
17437
  * Determines whether the whole value will be selected when the TextArea is clicked. Defaults to `false`.
17427
17438
  *
@@ -17457,6 +17468,7 @@ class TextFieldsBase {
17457
17468
  subscriptions = new Subscription();
17458
17469
  _isFocused = false;
17459
17470
  focusChangedProgrammatically = false;
17471
+ _value = null;
17460
17472
  constructor(localizationService, ngZone, changeDetector, renderer, injector, hostElement) {
17461
17473
  this.localizationService = localizationService;
17462
17474
  this.ngZone = ngZone;
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1779778347,
11
- "version": "24.0.2-develop.2",
10
+ "publishDate": 1779791057,
11
+ "version": "24.0.2-develop.4",
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": "24.0.2-develop.2",
3
+ "version": "24.0.2-develop.4",
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",
@@ -55,7 +55,7 @@
55
55
  "package": {
56
56
  "productName": "Kendo UI for Angular",
57
57
  "productCode": "KENDOUIANGULAR",
58
- "publishDate": 1779778347,
58
+ "publishDate": 1779791057,
59
59
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
60
60
  }
61
61
  },
@@ -67,20 +67,20 @@
67
67
  "@angular/platform-browser": "19 - 21",
68
68
  "@progress/kendo-drawing": "^1.25.0",
69
69
  "@progress/kendo-licensing": "^1.11.0",
70
- "@progress/kendo-angular-buttons": "24.0.2-develop.2",
71
- "@progress/kendo-angular-common": "24.0.2-develop.2",
72
- "@progress/kendo-angular-utils": "24.0.2-develop.2",
73
- "@progress/kendo-angular-navigation": "24.0.2-develop.2",
74
- "@progress/kendo-angular-dialog": "24.0.2-develop.2",
75
- "@progress/kendo-angular-intl": "24.0.2-develop.2",
76
- "@progress/kendo-angular-l10n": "24.0.2-develop.2",
77
- "@progress/kendo-angular-popup": "24.0.2-develop.2",
78
- "@progress/kendo-angular-icons": "24.0.2-develop.2",
70
+ "@progress/kendo-angular-buttons": "24.0.2-develop.4",
71
+ "@progress/kendo-angular-common": "24.0.2-develop.4",
72
+ "@progress/kendo-angular-utils": "24.0.2-develop.4",
73
+ "@progress/kendo-angular-navigation": "24.0.2-develop.4",
74
+ "@progress/kendo-angular-dialog": "24.0.2-develop.4",
75
+ "@progress/kendo-angular-intl": "24.0.2-develop.4",
76
+ "@progress/kendo-angular-l10n": "24.0.2-develop.4",
77
+ "@progress/kendo-angular-popup": "24.0.2-develop.4",
78
+ "@progress/kendo-angular-icons": "24.0.2-develop.4",
79
79
  "rxjs": "^6.5.3 || ^7.0.0"
80
80
  },
81
81
  "dependencies": {
82
82
  "tslib": "^2.3.1",
83
- "@progress/kendo-angular-schematics": "24.0.2-develop.2",
83
+ "@progress/kendo-angular-schematics": "24.0.2-develop.4",
84
84
  "@progress/kendo-common": "^1.0.1",
85
85
  "@progress/kendo-draggable": "^3.0.0",
86
86
  "@progress/kendo-inputs-common": "^3.1.0"
@@ -39,7 +39,8 @@ export declare abstract class TextFieldsBase {
39
39
  /**
40
40
  * Provides a value for the TextArea component.
41
41
  */
42
- value: string;
42
+ set value(value: string);
43
+ get value(): string;
43
44
  /**
44
45
  * Determines whether the whole value will be selected when the TextArea is clicked. Defaults to `false`.
45
46
  *
@@ -73,6 +74,7 @@ export declare abstract class TextFieldsBase {
73
74
  protected subscriptions: Subscription;
74
75
  protected _isFocused: boolean;
75
76
  protected focusChangedProgrammatically: boolean;
77
+ private _value;
76
78
  constructor(localizationService: LocalizationService, ngZone: NgZone, changeDetector: ChangeDetectorRef, renderer: Renderer2, injector: Injector, hostElement: ElementRef);
77
79
  ngOnDestroy(): void;
78
80
  /**
@@ -66,7 +66,8 @@ export declare class TextBoxComponent implements ControlValueAccessor {
66
66
  /**
67
67
  * Provides a value for the TextBox.
68
68
  */
69
- value: string;
69
+ set value(value: string);
70
+ get value(): string;
70
71
  /**
71
72
  * Highlights the whole value when you click the TextBox.
72
73
  * @default false
@@ -213,6 +214,7 @@ export declare class TextBoxComponent implements ControlValueAccessor {
213
214
  prefix: TextBoxPrefixTemplateDirective | PrefixTemplateDirective;
214
215
  protected control: NgControl;
215
216
  protected subscriptions: Subscription;
217
+ private _value;
216
218
  private _isFocused;
217
219
  private focusChangedProgrammatically;
218
220
  private _inputAttributes;