@progress/kendo-angular-inputs 19.2.1-develop.3 → 19.3.0-develop.1
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/directives.d.ts +1 -1
- package/esm2022/directives.mjs +1 -1
- package/esm2022/index.mjs +1 -1
- package/esm2022/inputs.module.mjs +1 -1
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/textarea/textarea.component.mjs +10 -10
- package/esm2022/textarea.module.mjs +1 -1
- package/esm2022/textbox/textbox.directive.mjs +2 -2
- package/fesm2022/progress-kendo-angular-inputs.mjs +14 -14
- package/index.d.ts +1 -1
- package/inputs.module.d.ts +1 -1
- package/package.json +12 -12
- package/textarea/textarea.component.d.ts +1 -1
- package/textarea.module.d.ts +1 -1
- /package/esm2022/{shared → textarea}/textarea.directive.mjs +0 -0
- /package/{shared → textarea}/textarea.directive.d.ts +0 -0
package/directives.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ import { RatingItemTemplateDirective } from "./rating/directives/rating-item.dir
|
|
|
25
25
|
import { RatingSelectedItemTemplateDirective } from "./rating/directives/rating-selected-item.directive";
|
|
26
26
|
import { RatingComponent } from "./rating/rating.component";
|
|
27
27
|
import { InputSeparatorComponent } from "./shared/input-separator.component";
|
|
28
|
-
import { TextAreaDirective } from "./
|
|
28
|
+
import { TextAreaDirective } from "./textarea/textarea.directive";
|
|
29
29
|
import { SignatureCustomMessagesComponent } from "./signature/localization/custom-messages.component";
|
|
30
30
|
import { SignatureComponent } from "./signature/signature.component";
|
|
31
31
|
import { SliderCustomMessagesComponent } from "./slider/localization/custom-messages.component";
|
package/esm2022/directives.mjs
CHANGED
|
@@ -25,7 +25,7 @@ import { RatingItemTemplateDirective } from "./rating/directives/rating-item.dir
|
|
|
25
25
|
import { RatingSelectedItemTemplateDirective } from "./rating/directives/rating-selected-item.directive";
|
|
26
26
|
import { RatingComponent } from "./rating/rating.component";
|
|
27
27
|
import { InputSeparatorComponent } from "./shared/input-separator.component";
|
|
28
|
-
import { TextAreaDirective } from "./
|
|
28
|
+
import { TextAreaDirective } from "./textarea/textarea.directive";
|
|
29
29
|
import { SignatureCustomMessagesComponent } from "./signature/localization/custom-messages.component";
|
|
30
30
|
import { SignatureComponent } from "./signature/signature.component";
|
|
31
31
|
import { SliderCustomMessagesComponent } from "./slider/localization/custom-messages.component";
|
package/esm2022/index.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export { RangeSliderComponent } from './rangeslider/rangeslider.component';
|
|
|
7
7
|
export { LabelTemplateDirective } from './sliders-common/label-template.directive';
|
|
8
8
|
export { SwitchComponent } from './switch/switch.component';
|
|
9
9
|
export { TextBoxDirective } from './textbox/textbox.directive';
|
|
10
|
-
export { TextAreaDirective } from './
|
|
10
|
+
export { TextAreaDirective } from './textarea/textarea.directive';
|
|
11
11
|
export { NumericTextBoxComponent } from './numerictextbox/numerictextbox.component';
|
|
12
12
|
export { NumericTextBoxCustomMessagesComponent } from './numerictextbox/localization/custom-messages.component';
|
|
13
13
|
export { MaskedTextBoxComponent } from './maskedtextbox/maskedtextbox.component';
|
|
@@ -21,7 +21,7 @@ import * as i8 from "./numerictextbox/numerictextbox.component";
|
|
|
21
21
|
import * as i9 from "./numerictextbox/localization/custom-messages.component";
|
|
22
22
|
import * as i10 from "./maskedtextbox/maskedtextbox.component";
|
|
23
23
|
import * as i11 from "./textarea/textarea.component";
|
|
24
|
-
import * as i12 from "./
|
|
24
|
+
import * as i12 from "./textarea/textarea.directive";
|
|
25
25
|
import * as i13 from "./textarea/textarea-prefix.component";
|
|
26
26
|
import * as i14 from "./textarea/textarea-suffix.component";
|
|
27
27
|
import * as i15 from "./checkbox/checkbox.component";
|
|
@@ -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.
|
|
13
|
+
publishDate: 1751896380,
|
|
14
|
+
version: '19.3.0-develop.1',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -331,16 +331,6 @@ export class TextAreaComponent extends TextFieldsBase {
|
|
|
331
331
|
registerOnTouched(fn) {
|
|
332
332
|
this.ngTouched = fn;
|
|
333
333
|
}
|
|
334
|
-
updateValue(value) {
|
|
335
|
-
if (!areSame(this.value, value)) {
|
|
336
|
-
this.ngZone.run(() => {
|
|
337
|
-
this.value = value;
|
|
338
|
-
this.ngChange(value);
|
|
339
|
-
this.valueChange.emit(value);
|
|
340
|
-
this.changeDetector.markForCheck();
|
|
341
|
-
});
|
|
342
|
-
}
|
|
343
|
-
}
|
|
344
334
|
ngOnDestroy() {
|
|
345
335
|
super.ngOnDestroy();
|
|
346
336
|
if (this.resizeSubscription) {
|
|
@@ -488,6 +478,16 @@ export class TextAreaComponent extends TextFieldsBase {
|
|
|
488
478
|
this.isFocused = false;
|
|
489
479
|
});
|
|
490
480
|
}
|
|
481
|
+
updateValue(value) {
|
|
482
|
+
if (!areSame(this.value, value)) {
|
|
483
|
+
this.ngZone.run(() => {
|
|
484
|
+
this.value = value;
|
|
485
|
+
this.ngChange(value);
|
|
486
|
+
this.valueChange.emit(value);
|
|
487
|
+
this.changeDetector.markForCheck();
|
|
488
|
+
});
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
491
|
setSelection(start, end) {
|
|
492
492
|
if (this.isFocused) {
|
|
493
493
|
invokeElementMethod(this.input, 'setSelectionRange', start, end);
|
|
@@ -7,7 +7,7 @@ import { KENDO_TEXTAREA } from "./directives";
|
|
|
7
7
|
import { KENDO_ADORNMENTS } from "@progress/kendo-angular-common";
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
import * as i1 from "./textarea/textarea.component";
|
|
10
|
-
import * as i2 from "./
|
|
10
|
+
import * as i2 from "./textarea/textarea.directive";
|
|
11
11
|
import * as i3 from "./textarea/textarea-prefix.component";
|
|
12
12
|
import * as i4 from "./textarea/textarea-suffix.component";
|
|
13
13
|
import * as i5 from "@progress/kendo-angular-common";
|
|
@@ -76,14 +76,14 @@ export class TextBoxDirective {
|
|
|
76
76
|
this.renderer.listen(input, 'blur', () => this.onBlur.emit())
|
|
77
77
|
];
|
|
78
78
|
this.ngZone.runOutsideAngular(() => {
|
|
79
|
-
this.renderer.listen(input, 'animationstart', (e) => {
|
|
79
|
+
this.listeners.push(this.renderer.listen(input, 'animationstart', (e) => {
|
|
80
80
|
if (e.animationName === 'autoFillStart') {
|
|
81
81
|
this.autoFillStart.emit();
|
|
82
82
|
}
|
|
83
83
|
else if (e.animationName === 'autoFillEnd') {
|
|
84
84
|
this.autoFillEnd.emit();
|
|
85
85
|
}
|
|
86
|
-
});
|
|
86
|
+
}));
|
|
87
87
|
});
|
|
88
88
|
}
|
|
89
89
|
ngOnDestroy() {
|
|
@@ -554,8 +554,8 @@ const packageMetadata = {
|
|
|
554
554
|
productName: 'Kendo UI for Angular',
|
|
555
555
|
productCode: 'KENDOUIANGULAR',
|
|
556
556
|
productCodes: ['KENDOUIANGULAR'],
|
|
557
|
-
publishDate:
|
|
558
|
-
version: '19.
|
|
557
|
+
publishDate: 1751896380,
|
|
558
|
+
version: '19.3.0-develop.1',
|
|
559
559
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
560
560
|
};
|
|
561
561
|
|
|
@@ -3119,14 +3119,14 @@ class TextBoxDirective {
|
|
|
3119
3119
|
this.renderer.listen(input, 'blur', () => this.onBlur.emit())
|
|
3120
3120
|
];
|
|
3121
3121
|
this.ngZone.runOutsideAngular(() => {
|
|
3122
|
-
this.renderer.listen(input, 'animationstart', (e) => {
|
|
3122
|
+
this.listeners.push(this.renderer.listen(input, 'animationstart', (e) => {
|
|
3123
3123
|
if (e.animationName === 'autoFillStart') {
|
|
3124
3124
|
this.autoFillStart.emit();
|
|
3125
3125
|
}
|
|
3126
3126
|
else if (e.animationName === 'autoFillEnd') {
|
|
3127
3127
|
this.autoFillEnd.emit();
|
|
3128
3128
|
}
|
|
3129
|
-
});
|
|
3129
|
+
}));
|
|
3130
3130
|
});
|
|
3131
3131
|
}
|
|
3132
3132
|
ngOnDestroy() {
|
|
@@ -17332,16 +17332,6 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
17332
17332
|
registerOnTouched(fn) {
|
|
17333
17333
|
this.ngTouched = fn;
|
|
17334
17334
|
}
|
|
17335
|
-
updateValue(value) {
|
|
17336
|
-
if (!areSame(this.value, value)) {
|
|
17337
|
-
this.ngZone.run(() => {
|
|
17338
|
-
this.value = value;
|
|
17339
|
-
this.ngChange(value);
|
|
17340
|
-
this.valueChange.emit(value);
|
|
17341
|
-
this.changeDetector.markForCheck();
|
|
17342
|
-
});
|
|
17343
|
-
}
|
|
17344
|
-
}
|
|
17345
17335
|
ngOnDestroy() {
|
|
17346
17336
|
super.ngOnDestroy();
|
|
17347
17337
|
if (this.resizeSubscription) {
|
|
@@ -17489,6 +17479,16 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
17489
17479
|
this.isFocused = false;
|
|
17490
17480
|
});
|
|
17491
17481
|
}
|
|
17482
|
+
updateValue(value) {
|
|
17483
|
+
if (!areSame(this.value, value)) {
|
|
17484
|
+
this.ngZone.run(() => {
|
|
17485
|
+
this.value = value;
|
|
17486
|
+
this.ngChange(value);
|
|
17487
|
+
this.valueChange.emit(value);
|
|
17488
|
+
this.changeDetector.markForCheck();
|
|
17489
|
+
});
|
|
17490
|
+
}
|
|
17491
|
+
}
|
|
17492
17492
|
setSelection(start, end) {
|
|
17493
17493
|
if (this.isFocused) {
|
|
17494
17494
|
invokeElementMethod(this.input, 'setSelectionRange', start, end);
|
package/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export { RangeSliderValue } from './rangeslider/rangeslider-value.type';
|
|
|
8
8
|
export { LabelTemplateDirective } from './sliders-common/label-template.directive';
|
|
9
9
|
export { SwitchComponent } from './switch/switch.component';
|
|
10
10
|
export { TextBoxDirective } from './textbox/textbox.directive';
|
|
11
|
-
export { TextAreaDirective } from './
|
|
11
|
+
export { TextAreaDirective } from './textarea/textarea.directive';
|
|
12
12
|
export { NumericTextBoxComponent } from './numerictextbox/numerictextbox.component';
|
|
13
13
|
export { NumericTextBoxCustomMessagesComponent } from './numerictextbox/localization/custom-messages.component';
|
|
14
14
|
export { MaskedTextBoxComponent } from './maskedtextbox/maskedtextbox.component';
|
package/inputs.module.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ import * as i8 from "./numerictextbox/numerictextbox.component";
|
|
|
14
14
|
import * as i9 from "./numerictextbox/localization/custom-messages.component";
|
|
15
15
|
import * as i10 from "./maskedtextbox/maskedtextbox.component";
|
|
16
16
|
import * as i11 from "./textarea/textarea.component";
|
|
17
|
-
import * as i12 from "./
|
|
17
|
+
import * as i12 from "./textarea/textarea.directive";
|
|
18
18
|
import * as i13 from "./textarea/textarea-prefix.component";
|
|
19
19
|
import * as i14 from "./textarea/textarea-suffix.component";
|
|
20
20
|
import * as i15 from "./checkbox/checkbox.component";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.3.0-develop.1",
|
|
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": 1751896380,
|
|
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.
|
|
44
|
-
"@progress/kendo-angular-common": "19.
|
|
45
|
-
"@progress/kendo-angular-utils": "19.
|
|
46
|
-
"@progress/kendo-angular-navigation": "19.
|
|
47
|
-
"@progress/kendo-angular-dialog": "19.
|
|
48
|
-
"@progress/kendo-angular-intl": "19.
|
|
49
|
-
"@progress/kendo-angular-l10n": "19.
|
|
50
|
-
"@progress/kendo-angular-popup": "19.
|
|
51
|
-
"@progress/kendo-angular-icons": "19.
|
|
43
|
+
"@progress/kendo-angular-buttons": "19.3.0-develop.1",
|
|
44
|
+
"@progress/kendo-angular-common": "19.3.0-develop.1",
|
|
45
|
+
"@progress/kendo-angular-utils": "19.3.0-develop.1",
|
|
46
|
+
"@progress/kendo-angular-navigation": "19.3.0-develop.1",
|
|
47
|
+
"@progress/kendo-angular-dialog": "19.3.0-develop.1",
|
|
48
|
+
"@progress/kendo-angular-intl": "19.3.0-develop.1",
|
|
49
|
+
"@progress/kendo-angular-l10n": "19.3.0-develop.1",
|
|
50
|
+
"@progress/kendo-angular-popup": "19.3.0-develop.1",
|
|
51
|
+
"@progress/kendo-angular-icons": "19.3.0-develop.1",
|
|
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.
|
|
56
|
+
"@progress/kendo-angular-schematics": "19.3.0-develop.1",
|
|
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"
|
|
@@ -175,7 +175,6 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
175
175
|
* @hidden
|
|
176
176
|
*/
|
|
177
177
|
registerOnTouched(fn: () => any): void;
|
|
178
|
-
updateValue(value: string): void;
|
|
179
178
|
ngOnDestroy(): void;
|
|
180
179
|
/**
|
|
181
180
|
* @hidden
|
|
@@ -226,6 +225,7 @@ export declare class TextAreaComponent extends TextFieldsBase implements Control
|
|
|
226
225
|
* @hidden
|
|
227
226
|
*/
|
|
228
227
|
handleBlur(): void;
|
|
228
|
+
private updateValue;
|
|
229
229
|
private setSelection;
|
|
230
230
|
private selectAll;
|
|
231
231
|
private handleClasses;
|
package/textarea.module.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*-------------------------------------------------------------------------------------------*/
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
import * as i1 from "./textarea/textarea.component";
|
|
7
|
-
import * as i2 from "./
|
|
7
|
+
import * as i2 from "./textarea/textarea.directive";
|
|
8
8
|
import * as i3 from "./textarea/textarea-prefix.component";
|
|
9
9
|
import * as i4 from "./textarea/textarea-suffix.component";
|
|
10
10
|
import * as i5 from "@progress/kendo-angular-common";
|
|
File without changes
|
|
File without changes
|