@progress/kendo-angular-inputs 16.3.1-develop.3 → 16.4.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/esm2020/common/radio-checkbox.base.mjs +1 -1
- package/esm2020/maskedtextbox/maskedtextbox.component.mjs +2 -2
- package/esm2020/numerictextbox/numerictextbox.component.mjs +1 -1
- package/esm2020/package-metadata.mjs +2 -2
- package/esm2020/textarea/textarea.component.mjs +1 -1
- package/esm2020/textbox/textbox.component.mjs +1 -1
- package/fesm2015/progress-kendo-angular-inputs.mjs +8 -8
- package/fesm2020/progress-kendo-angular-inputs.mjs +8 -8
- package/package.json +9 -9
|
@@ -235,7 +235,7 @@ export class RadioCheckBoxBase {
|
|
|
235
235
|
}
|
|
236
236
|
}
|
|
237
237
|
setInputAttributes() {
|
|
238
|
-
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement);
|
|
238
|
+
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.ngZone);
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
241
|
RadioCheckBoxBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadioCheckBoxBase, deps: [{ token: COMPONENT_TYPE }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -339,7 +339,6 @@ export class MaskedTextBoxComponent {
|
|
|
339
339
|
disabled: this.disabled ? '' : null,
|
|
340
340
|
readonly: this.readonly ? '' : null,
|
|
341
341
|
tabindex: this.tabIndex,
|
|
342
|
-
'aria-placeholder': this.mask,
|
|
343
342
|
'aria-invalid': this.isControlInvalid,
|
|
344
343
|
title: this.title,
|
|
345
344
|
required: this.isControlRequired ? '' : null
|
|
@@ -347,6 +346,7 @@ export class MaskedTextBoxComponent {
|
|
|
347
346
|
}
|
|
348
347
|
get mutableAttributes() {
|
|
349
348
|
return {
|
|
349
|
+
'aria-placeholder': this.mask,
|
|
350
350
|
autocomplete: 'off',
|
|
351
351
|
autocorrect: 'off',
|
|
352
352
|
autocapitalize: 'off',
|
|
@@ -647,7 +647,7 @@ export class MaskedTextBoxComponent {
|
|
|
647
647
|
}
|
|
648
648
|
setInputAttributes() {
|
|
649
649
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
650
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement);
|
|
650
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.ngZone);
|
|
651
651
|
}
|
|
652
652
|
}
|
|
653
653
|
MaskedTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxComponent, deps: [{ token: i1.MaskingService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -965,7 +965,7 @@ export class NumericTextBoxComponent {
|
|
|
965
965
|
}
|
|
966
966
|
setInputAttributes() {
|
|
967
967
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
968
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.numericInput.nativeElement);
|
|
968
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.numericInput.nativeElement, this.ngZone);
|
|
969
969
|
}
|
|
970
970
|
}
|
|
971
971
|
NumericTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxComponent, deps: [{ token: i1.IntlService }, { token: i0.Renderer2 }, { token: i2.LocalizationService }, { token: i0.Injector }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-inputs',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '16.
|
|
12
|
+
publishDate: 1719845908,
|
|
13
|
+
version: '16.4.0-develop.1',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -548,7 +548,7 @@ export class TextAreaComponent extends TextFieldsBase {
|
|
|
548
548
|
}
|
|
549
549
|
setInputAttributes() {
|
|
550
550
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
551
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement);
|
|
551
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.ngZone);
|
|
552
552
|
}
|
|
553
553
|
}
|
|
554
554
|
TextAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -626,7 +626,7 @@ export class TextBoxComponent {
|
|
|
626
626
|
this.suffix = this.textBoxSuffixTemplate.first || this.suffixTemplate;
|
|
627
627
|
}
|
|
628
628
|
setInputAttributes() {
|
|
629
|
-
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement);
|
|
629
|
+
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.ngZone);
|
|
630
630
|
}
|
|
631
631
|
}
|
|
632
632
|
TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -544,8 +544,8 @@ const packageMetadata = {
|
|
|
544
544
|
name: '@progress/kendo-angular-inputs',
|
|
545
545
|
productName: 'Kendo UI for Angular',
|
|
546
546
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
547
|
-
publishDate:
|
|
548
|
-
version: '16.
|
|
547
|
+
publishDate: 1719845908,
|
|
548
|
+
version: '16.4.0-develop.1',
|
|
549
549
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
550
550
|
};
|
|
551
551
|
|
|
@@ -4573,7 +4573,7 @@ class NumericTextBoxComponent {
|
|
|
4573
4573
|
}
|
|
4574
4574
|
setInputAttributes() {
|
|
4575
4575
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
4576
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.numericInput.nativeElement);
|
|
4576
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.numericInput.nativeElement, this.ngZone);
|
|
4577
4577
|
}
|
|
4578
4578
|
}
|
|
4579
4579
|
NumericTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxComponent, deps: [{ token: i1$1.IntlService }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -5644,7 +5644,6 @@ class MaskedTextBoxComponent {
|
|
|
5644
5644
|
disabled: this.disabled ? '' : null,
|
|
5645
5645
|
readonly: this.readonly ? '' : null,
|
|
5646
5646
|
tabindex: this.tabIndex,
|
|
5647
|
-
'aria-placeholder': this.mask,
|
|
5648
5647
|
'aria-invalid': this.isControlInvalid,
|
|
5649
5648
|
title: this.title,
|
|
5650
5649
|
required: this.isControlRequired ? '' : null
|
|
@@ -5652,6 +5651,7 @@ class MaskedTextBoxComponent {
|
|
|
5652
5651
|
}
|
|
5653
5652
|
get mutableAttributes() {
|
|
5654
5653
|
return {
|
|
5654
|
+
'aria-placeholder': this.mask,
|
|
5655
5655
|
autocomplete: 'off',
|
|
5656
5656
|
autocorrect: 'off',
|
|
5657
5657
|
autocapitalize: 'off',
|
|
@@ -5953,7 +5953,7 @@ class MaskedTextBoxComponent {
|
|
|
5953
5953
|
}
|
|
5954
5954
|
setInputAttributes() {
|
|
5955
5955
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
5956
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement);
|
|
5956
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.ngZone);
|
|
5957
5957
|
}
|
|
5958
5958
|
}
|
|
5959
5959
|
MaskedTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxComponent, deps: [{ token: MaskingService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -7397,7 +7397,7 @@ class TextBoxComponent {
|
|
|
7397
7397
|
this.suffix = this.textBoxSuffixTemplate.first || this.suffixTemplate;
|
|
7398
7398
|
}
|
|
7399
7399
|
setInputAttributes() {
|
|
7400
|
-
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement);
|
|
7400
|
+
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.ngZone);
|
|
7401
7401
|
}
|
|
7402
7402
|
}
|
|
7403
7403
|
TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -8559,7 +8559,7 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
8559
8559
|
}
|
|
8560
8560
|
setInputAttributes() {
|
|
8561
8561
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
8562
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement);
|
|
8562
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.ngZone);
|
|
8563
8563
|
}
|
|
8564
8564
|
}
|
|
8565
8565
|
TextAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -14348,7 +14348,7 @@ class RadioCheckBoxBase {
|
|
|
14348
14348
|
}
|
|
14349
14349
|
}
|
|
14350
14350
|
setInputAttributes() {
|
|
14351
|
-
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement);
|
|
14351
|
+
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.ngZone);
|
|
14352
14352
|
}
|
|
14353
14353
|
}
|
|
14354
14354
|
RadioCheckBoxBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadioCheckBoxBase, deps: [{ token: COMPONENT_TYPE }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -543,8 +543,8 @@ const packageMetadata = {
|
|
|
543
543
|
name: '@progress/kendo-angular-inputs',
|
|
544
544
|
productName: 'Kendo UI for Angular',
|
|
545
545
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
546
|
-
publishDate:
|
|
547
|
-
version: '16.
|
|
546
|
+
publishDate: 1719845908,
|
|
547
|
+
version: '16.4.0-develop.1',
|
|
548
548
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
549
549
|
};
|
|
550
550
|
|
|
@@ -4565,7 +4565,7 @@ class NumericTextBoxComponent {
|
|
|
4565
4565
|
}
|
|
4566
4566
|
setInputAttributes() {
|
|
4567
4567
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
4568
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.numericInput.nativeElement);
|
|
4568
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.numericInput.nativeElement, this.ngZone);
|
|
4569
4569
|
}
|
|
4570
4570
|
}
|
|
4571
4571
|
NumericTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: NumericTextBoxComponent, deps: [{ token: i1$1.IntlService }, { token: i0.Renderer2 }, { token: i1.LocalizationService }, { token: i0.Injector }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -5636,7 +5636,6 @@ class MaskedTextBoxComponent {
|
|
|
5636
5636
|
disabled: this.disabled ? '' : null,
|
|
5637
5637
|
readonly: this.readonly ? '' : null,
|
|
5638
5638
|
tabindex: this.tabIndex,
|
|
5639
|
-
'aria-placeholder': this.mask,
|
|
5640
5639
|
'aria-invalid': this.isControlInvalid,
|
|
5641
5640
|
title: this.title,
|
|
5642
5641
|
required: this.isControlRequired ? '' : null
|
|
@@ -5644,6 +5643,7 @@ class MaskedTextBoxComponent {
|
|
|
5644
5643
|
}
|
|
5645
5644
|
get mutableAttributes() {
|
|
5646
5645
|
return {
|
|
5646
|
+
'aria-placeholder': this.mask,
|
|
5647
5647
|
autocomplete: 'off',
|
|
5648
5648
|
autocorrect: 'off',
|
|
5649
5649
|
autocapitalize: 'off',
|
|
@@ -5944,7 +5944,7 @@ class MaskedTextBoxComponent {
|
|
|
5944
5944
|
}
|
|
5945
5945
|
setInputAttributes() {
|
|
5946
5946
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
5947
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement);
|
|
5947
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.ngZone);
|
|
5948
5948
|
}
|
|
5949
5949
|
}
|
|
5950
5950
|
MaskedTextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: MaskedTextBoxComponent, deps: [{ token: MaskingService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ChangeDetectorRef }, { token: RTL, optional: true }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -7381,7 +7381,7 @@ class TextBoxComponent {
|
|
|
7381
7381
|
this.suffix = this.textBoxSuffixTemplate.first || this.suffixTemplate;
|
|
7382
7382
|
}
|
|
7383
7383
|
setInputAttributes() {
|
|
7384
|
-
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement);
|
|
7384
|
+
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.ngZone);
|
|
7385
7385
|
}
|
|
7386
7386
|
}
|
|
7387
7387
|
TextBoxComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextBoxComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -8542,7 +8542,7 @@ class TextAreaComponent extends TextFieldsBase {
|
|
|
8542
8542
|
}
|
|
8543
8543
|
setInputAttributes() {
|
|
8544
8544
|
const attributesToRender = Object.assign({}, this.mutableAttributes, this.parsedAttributes);
|
|
8545
|
-
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement);
|
|
8545
|
+
setHTMLAttributes(attributesToRender, this.renderer, this.input.nativeElement, this.ngZone);
|
|
8546
8546
|
}
|
|
8547
8547
|
}
|
|
8548
8548
|
TextAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: TextAreaComponent, deps: [{ token: i1.LocalizationService }, { token: i0.NgZone }, { token: i0.ChangeDetectorRef }, { token: i0.Renderer2 }, { token: i0.Injector }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
@@ -14311,7 +14311,7 @@ class RadioCheckBoxBase {
|
|
|
14311
14311
|
}
|
|
14312
14312
|
}
|
|
14313
14313
|
setInputAttributes() {
|
|
14314
|
-
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement);
|
|
14314
|
+
setHTMLAttributes(this.parsedAttributes, this.renderer, this.input.nativeElement, this.ngZone);
|
|
14315
14315
|
}
|
|
14316
14316
|
}
|
|
14317
14317
|
RadioCheckBoxBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RadioCheckBoxBase, deps: [{ token: COMPONENT_TYPE }, { token: i0.ElementRef }, { token: i0.Renderer2 }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.4.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",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"@angular/platform-browser": "15 - 18",
|
|
35
35
|
"@progress/kendo-drawing": "^1.19.0",
|
|
36
36
|
"@progress/kendo-licensing": "^1.0.2",
|
|
37
|
-
"@progress/kendo-angular-buttons": "16.
|
|
38
|
-
"@progress/kendo-angular-common": "16.
|
|
39
|
-
"@progress/kendo-angular-dialog": "16.
|
|
40
|
-
"@progress/kendo-angular-intl": "16.
|
|
41
|
-
"@progress/kendo-angular-l10n": "16.
|
|
42
|
-
"@progress/kendo-angular-popup": "16.
|
|
43
|
-
"@progress/kendo-angular-icons": "16.
|
|
37
|
+
"@progress/kendo-angular-buttons": "16.4.0-develop.1",
|
|
38
|
+
"@progress/kendo-angular-common": "16.4.0-develop.1",
|
|
39
|
+
"@progress/kendo-angular-dialog": "16.4.0-develop.1",
|
|
40
|
+
"@progress/kendo-angular-intl": "16.4.0-develop.1",
|
|
41
|
+
"@progress/kendo-angular-l10n": "16.4.0-develop.1",
|
|
42
|
+
"@progress/kendo-angular-popup": "16.4.0-develop.1",
|
|
43
|
+
"@progress/kendo-angular-icons": "16.4.0-develop.1",
|
|
44
44
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"tslib": "^2.3.1",
|
|
48
|
-
"@progress/kendo-angular-schematics": "16.
|
|
48
|
+
"@progress/kendo-angular-schematics": "16.4.0-develop.1",
|
|
49
49
|
"@progress/kendo-common": "^0.2.2",
|
|
50
50
|
"@progress/kendo-draggable": "^3.0.0",
|
|
51
51
|
"@progress/kendo-inputs-common": "^3.1.0"
|