@progress/kendo-angular-inputs 19.3.0-develop.7 → 19.3.0-develop.9
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.
|
@@ -10,7 +10,7 @@ export const packageMetadata = {
|
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCode: 'KENDOUIANGULAR',
|
|
12
12
|
productCodes: ['KENDOUIANGULAR'],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: '19.3.0-develop.
|
|
13
|
+
publishDate: 1752672139,
|
|
14
|
+
version: '19.3.0-develop.9',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import { Component, HostBinding, Input, Output, ElementRef, EventEmitter, NgZone, Renderer2, ChangeDetectorRef, Injector, forwardRef, ContentChild } from '@angular/core';
|
|
6
6
|
import { fromEvent } from 'rxjs';
|
|
7
|
-
import { debounceTime } from 'rxjs/operators';
|
|
7
|
+
import { debounceTime, take } from 'rxjs/operators';
|
|
8
8
|
import { NG_VALUE_ACCESSOR, NgControl } from '@angular/forms';
|
|
9
9
|
import { KendoInput, guid, isDocumentAvailable, hasObservers, setHTMLAttributes, isControlRequired, isObjectPresent, removeHTMLAttributes, parseAttributes, EventsOutsideAngularDirective } from '@progress/kendo-angular-common';
|
|
10
10
|
import { LocalizationService, L10N_PREFIX } from '@progress/kendo-angular-l10n';
|
|
@@ -252,6 +252,12 @@ export class TextAreaComponent extends TextFieldsBase {
|
|
|
252
252
|
validatePackage(packageMetadata);
|
|
253
253
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
254
254
|
}
|
|
255
|
+
ngAfterContentInit() {
|
|
256
|
+
this.ngZone.onStable.pipe((take(1))).subscribe(() => {
|
|
257
|
+
this.prefix && (this.prefix.orientation = this.adornmentsOrientation);
|
|
258
|
+
this.suffix && (this.suffix.orientation = this.adornmentsOrientation);
|
|
259
|
+
});
|
|
260
|
+
}
|
|
255
261
|
ngAfterViewInit() {
|
|
256
262
|
this.ngZone.runOutsideAngular(() => {
|
|
257
263
|
this.handleFlow();
|
|
@@ -550,8 +550,8 @@ const packageMetadata = {
|
|
|
550
550
|
productName: 'Kendo UI for Angular',
|
|
551
551
|
productCode: 'KENDOUIANGULAR',
|
|
552
552
|
productCodes: ['KENDOUIANGULAR'],
|
|
553
|
-
publishDate:
|
|
554
|
-
version: '19.3.0-develop.
|
|
553
|
+
publishDate: 1752672139,
|
|
554
|
+
version: '19.3.0-develop.9',
|
|
555
555
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
556
556
|
};
|
|
557
557
|
|
|
@@ -17434,6 +17434,12 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
17434
17434
|
validatePackage(packageMetadata);
|
|
17435
17435
|
this.direction = localizationService.rtl ? 'rtl' : 'ltr';
|
|
17436
17436
|
}
|
|
17437
|
+
ngAfterContentInit() {
|
|
17438
|
+
this.ngZone.onStable.pipe((take(1))).subscribe(() => {
|
|
17439
|
+
this.prefix && (this.prefix.orientation = this.adornmentsOrientation);
|
|
17440
|
+
this.suffix && (this.suffix.orientation = this.adornmentsOrientation);
|
|
17441
|
+
});
|
|
17442
|
+
}
|
|
17437
17443
|
ngAfterViewInit() {
|
|
17438
17444
|
this.ngZone.runOutsideAngular(() => {
|
|
17439
17445
|
this.handleFlow();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "19.3.0-develop.
|
|
3
|
+
"version": "19.3.0-develop.9",
|
|
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":
|
|
31
|
+
"publishDate": 1752672139,
|
|
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": "16 - 20",
|
|
41
41
|
"@progress/kendo-drawing": "^1.21.0",
|
|
42
42
|
"@progress/kendo-licensing": "^1.5.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "19.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-common": "19.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-utils": "19.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "19.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dialog": "19.3.0-develop.
|
|
48
|
-
"@progress/kendo-angular-intl": "19.3.0-develop.
|
|
49
|
-
"@progress/kendo-angular-l10n": "19.3.0-develop.
|
|
50
|
-
"@progress/kendo-angular-popup": "19.3.0-develop.
|
|
51
|
-
"@progress/kendo-angular-icons": "19.3.0-develop.
|
|
43
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.9",
|
|
44
|
+
"@progress/kendo-angular-common": "19.3.0-develop.9",
|
|
45
|
+
"@progress/kendo-angular-utils": "19.3.0-develop.9",
|
|
46
|
+
"@progress/kendo-angular-navigation": "19.3.0-develop.9",
|
|
47
|
+
"@progress/kendo-angular-dialog": "19.3.0-develop.9",
|
|
48
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.9",
|
|
49
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.9",
|
|
50
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.9",
|
|
51
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.9",
|
|
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": "19.3.0-develop.
|
|
56
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.9",
|
|
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"
|
|
@@ -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;
|
|
@@ -152,6 +152,7 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
152
152
|
private get defaultAttributes();
|
|
153
153
|
private get mutableAttributes();
|
|
154
154
|
constructor(localizationService: LocalizationService, ngZone: NgZone, changeDetector: ChangeDetectorRef, renderer: Renderer2, injector: Injector, hostElement: ElementRef);
|
|
155
|
+
ngAfterContentInit(): void;
|
|
155
156
|
ngAfterViewInit(): void;
|
|
156
157
|
ngOnInit(): void;
|
|
157
158
|
ngOnChanges(changes: any): void;
|