@progress/kendo-angular-inputs 19.3.0-develop.4 → 19.3.0-develop.41

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.
Files changed (50) hide show
  1. package/colorpicker/color-palette.component.d.ts +1 -1
  2. package/colorpicker/colorpicker.component.d.ts +1 -1
  3. package/common/formservice.service.d.ts +14 -0
  4. package/common/models/gutters.d.ts +28 -0
  5. package/common/models/responsive-breakpoints.d.ts +34 -0
  6. package/common/utils.d.ts +0 -4
  7. package/directives.d.ts +19 -1
  8. package/esm2022/colorpicker/color-palette.component.mjs +3 -2
  9. package/esm2022/colorpicker/colorpicker.component.mjs +5 -4
  10. package/esm2022/common/formservice.service.mjs +21 -0
  11. package/esm2022/common/models/gutters.mjs +5 -0
  12. package/esm2022/common/models/responsive-breakpoints.mjs +5 -0
  13. package/esm2022/common/utils.mjs +0 -4
  14. package/esm2022/directives.mjs +24 -0
  15. package/esm2022/form/form.component.mjs +153 -0
  16. package/esm2022/form/formseparator.component.mjs +80 -0
  17. package/esm2022/form/utils.mjs +144 -0
  18. package/esm2022/form.module.mjs +46 -0
  19. package/esm2022/formfield/formfield.component.mjs +47 -5
  20. package/esm2022/formfieldset/formfieldset.component.mjs +170 -0
  21. package/esm2022/index.mjs +5 -0
  22. package/esm2022/inputs.module.mjs +26 -23
  23. package/esm2022/numerictextbox/numerictextbox.component.mjs +5 -4
  24. package/esm2022/otpinput/otpinput.component.mjs +6 -5
  25. package/esm2022/package-metadata.mjs +2 -2
  26. package/esm2022/rangeslider/rangeslider.component.mjs +8 -3
  27. package/esm2022/rating/rating.component.mjs +31 -26
  28. package/esm2022/shared/shared-events.directive.mjs +1 -1
  29. package/esm2022/signature/signature.component.mjs +1 -1
  30. package/esm2022/slider/slider.component.mjs +5 -3
  31. package/esm2022/switch/switch.component.mjs +2 -2
  32. package/esm2022/text-fields-common/text-fields-base.mjs +1 -1
  33. package/esm2022/textarea/models/textarea-settings.mjs +5 -0
  34. package/esm2022/textarea/textarea.component.mjs +35 -4
  35. package/fesm2022/progress-kendo-angular-inputs.mjs +717 -62
  36. package/form/form.component.d.ts +70 -0
  37. package/form/formseparator.component.d.ts +32 -0
  38. package/form/utils.d.ts +62 -0
  39. package/form.module.d.ts +36 -0
  40. package/formfield/formfield.component.d.ts +19 -4
  41. package/formfieldset/formfieldset.component.d.ts +68 -0
  42. package/index.d.ts +8 -0
  43. package/inputs.module.d.ts +25 -22
  44. package/numerictextbox/numerictextbox.component.d.ts +1 -1
  45. package/package.json +13 -13
  46. package/rangeslider/rangeslider.component.d.ts +1 -1
  47. package/slider/slider.component.d.ts +1 -1
  48. package/text-fields-common/text-fields-base.d.ts +1 -1
  49. package/textarea/models/textarea-settings.d.ts +101 -0
  50. package/textarea/textarea.component.d.ts +9 -3
@@ -2,7 +2,7 @@
2
2
  * Copyright © 2025 Progress Software Corporation. All rights reserved.
3
3
  * Licensed under commercial license. See LICENSE.md in the project root for more information
4
4
  *-------------------------------------------------------------------------------------------*/
5
- import { ElementRef, EventEmitter, NgZone, Renderer2, ChangeDetectorRef, Injector } from '@angular/core';
5
+ import { ElementRef, EventEmitter, NgZone, Renderer2, ChangeDetectorRef, Injector, AfterContentInit, AfterViewInit, OnChanges, OnDestroy, OnInit } from '@angular/core';
6
6
  import { ControlValueAccessor } from '@angular/forms';
7
7
  import { SeparatorOrientation } from '@progress/kendo-angular-common';
8
8
  import { LocalizationService } from '@progress/kendo-angular-l10n';
@@ -27,7 +27,7 @@ import * as i0 from "@angular/core";
27
27
  * @remarks
28
28
  * Supported children components are: {@link TextAreaPrefixComponent}, {@link TextAreaSuffixComponent}.
29
29
  */
30
- export declare class TextAreaComponent extends TextFieldsBase implements ControlValueAccessor {
30
+ export declare class TextAreaComponent extends TextFieldsBase implements ControlValueAccessor, OnInit, OnChanges, AfterViewInit, AfterContentInit, OnDestroy {
31
31
  protected localizationService: LocalizationService;
32
32
  protected ngZone: NgZone;
33
33
  protected changeDetector: ChangeDetectorRef;
@@ -74,6 +74,10 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
74
74
  * Sets the maximum number of characters allowed in the text area.
75
75
  */
76
76
  maxlength: number;
77
+ /**
78
+ * @hidden
79
+ */
80
+ maxResizableRows: number;
77
81
  /**
78
82
  * Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
79
83
  * @default 0
@@ -142,6 +146,7 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
142
146
  */
143
147
  valueChange: EventEmitter<any>;
144
148
  private initialHeight;
149
+ private maxResizableHeight;
145
150
  private resizeSubscription;
146
151
  private _size;
147
152
  private _rounded;
@@ -152,6 +157,7 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
152
157
  private get defaultAttributes();
153
158
  private get mutableAttributes();
154
159
  constructor(localizationService: LocalizationService, ngZone: NgZone, changeDetector: ChangeDetectorRef, renderer: Renderer2, injector: Injector, hostElement: ElementRef);
160
+ ngAfterContentInit(): void;
155
161
  ngAfterViewInit(): void;
156
162
  ngOnInit(): void;
157
163
  ngOnChanges(changes: any): void;
@@ -232,5 +238,5 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
232
238
  private handleFlow;
233
239
  private setInputAttributes;
234
240
  static ɵfac: i0.ɵɵFactoryDeclaration<TextAreaComponent, never>;
235
- static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "kendo-textarea", ["kendoTextArea"], { "focusableId": { "alias": "focusableId"; "required": false; }; "flow": { "alias": "flow"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "adornmentsOrientation": { "alias": "adornmentsOrientation"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "showPrefixSeparator": { "alias": "showPrefixSeparator"; "required": false; }; "showSuffixSeparator": { "alias": "showSuffixSeparator"; "required": false; }; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, ["prefix", "suffix"], ["kendo-textarea-prefix", "kendo-textarea-suffix"], true, never>;
241
+ static ɵcmp: i0.ɵɵComponentDeclaration<TextAreaComponent, "kendo-textarea", ["kendoTextArea"], { "focusableId": { "alias": "focusableId"; "required": false; }; "flow": { "alias": "flow"; "required": false; }; "inputAttributes": { "alias": "inputAttributes"; "required": false; }; "adornmentsOrientation": { "alias": "adornmentsOrientation"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "cols": { "alias": "cols"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "maxResizableRows": { "alias": "maxResizableRows"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "size": { "alias": "size"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "fillMode": { "alias": "fillMode"; "required": false; }; "showPrefixSeparator": { "alias": "showPrefixSeparator"; "required": false; }; "showSuffixSeparator": { "alias": "showSuffixSeparator"; "required": false; }; }, { "onFocus": "focus"; "onBlur": "blur"; "valueChange": "valueChange"; }, ["prefix", "suffix"], ["kendo-textarea-prefix", "kendo-textarea-suffix"], true, never>;
236
242
  }