@progress/kendo-angular-inputs 21.3.0-develop.1 → 21.3.0-develop.10
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/esm2022/colorpicker/color-gradient.component.mjs +1 -0
- package/esm2022/colorpicker/color-palette.component.mjs +1 -0
- package/esm2022/colorpicker/colorpicker.component.mjs +1 -0
- package/esm2022/colorpicker/flatcolorpicker.component.mjs +1 -0
- package/esm2022/maskedtextbox/maskedtextbox.component.mjs +1 -0
- package/esm2022/otpinput/otpinput.component.mjs +1 -0
- package/esm2022/package-metadata.mjs +2 -2
- package/esm2022/radiobutton/radiobutton.component.mjs +1 -0
- package/esm2022/rangeslider/rangeslider.component.mjs +3 -2
- package/esm2022/signature/signature.component.mjs +7 -6
- package/esm2022/textbox/textbox.component.mjs +1 -0
- package/fesm2022/progress-kendo-angular-inputs.mjs +20 -10
- package/package.json +13 -13
|
@@ -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: '21.3.0-develop.
|
|
13
|
+
publishDate: 1765272946,
|
|
14
|
+
version: '21.3.0-develop.10',
|
|
15
15
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
16
16
|
};
|
|
@@ -108,6 +108,7 @@ export class RadioButtonComponent extends RadioCheckBoxBase {
|
|
|
108
108
|
*/
|
|
109
109
|
writeValue(value) {
|
|
110
110
|
this.checked = value === this.value;
|
|
111
|
+
this.cdr.markForCheck();
|
|
111
112
|
}
|
|
112
113
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RadioButtonComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
113
114
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: RadioButtonComponent, isStandalone: true, selector: "kendo-radiobutton", inputs: { checked: "checked" }, outputs: { checkedChange: "checkedChange" }, host: { properties: { "class.k-radio-wrap": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
@@ -271,6 +271,7 @@ export class RangeSliderComponent extends SliderBase {
|
|
|
271
271
|
validateValue(value);
|
|
272
272
|
this.value = value;
|
|
273
273
|
this.sizeComponent();
|
|
274
|
+
this.changeDetector.markForCheck();
|
|
274
275
|
}
|
|
275
276
|
/**
|
|
276
277
|
* @hidden
|
|
@@ -457,7 +458,7 @@ export class RangeSliderComponent extends SliderBase {
|
|
|
457
458
|
i18n-dragHandleEnd="kendo.rangeslider.dragHandleEnd|The title of the **End** drag handle of the Slider."
|
|
458
459
|
dragHandleEnd="Drag"
|
|
459
460
|
>
|
|
460
|
-
|
|
461
|
+
|
|
461
462
|
<div
|
|
462
463
|
#wrap
|
|
463
464
|
class="k-slider-track-wrap"
|
|
@@ -543,7 +544,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
543
544
|
i18n-dragHandleEnd="kendo.rangeslider.dragHandleEnd|The title of the **End** drag handle of the Slider."
|
|
544
545
|
dragHandleEnd="Drag"
|
|
545
546
|
>
|
|
546
|
-
|
|
547
|
+
|
|
547
548
|
<div
|
|
548
549
|
#wrap
|
|
549
550
|
class="k-slider-track-wrap"
|
|
@@ -605,6 +605,7 @@ export class SignatureComponent {
|
|
|
605
605
|
*/
|
|
606
606
|
writeValue(value) {
|
|
607
607
|
this.value = value;
|
|
608
|
+
this.cd.markForCheck();
|
|
608
609
|
}
|
|
609
610
|
/**
|
|
610
611
|
* @hidden
|
|
@@ -679,7 +680,7 @@ export class SignatureComponent {
|
|
|
679
680
|
i18n-canvasLabel="kendo.signature.canvasLabel|The message for the Canvas element aria-label."
|
|
680
681
|
canvasLabel="Signature canvas">
|
|
681
682
|
</ng-container>
|
|
682
|
-
|
|
683
|
+
|
|
683
684
|
<div
|
|
684
685
|
#canvas
|
|
685
686
|
class="k-signature-canvas"
|
|
@@ -688,7 +689,7 @@ export class SignatureComponent {
|
|
|
688
689
|
role="img"
|
|
689
690
|
[attr.aria-label]="canvasLabel"
|
|
690
691
|
></div>
|
|
691
|
-
|
|
692
|
+
|
|
692
693
|
<div class="k-signature-actions k-signature-actions-top">
|
|
693
694
|
@if (showMaximize) {
|
|
694
695
|
<button
|
|
@@ -742,7 +743,7 @@ export class SignatureComponent {
|
|
|
742
743
|
</button>
|
|
743
744
|
}
|
|
744
745
|
</div>
|
|
745
|
-
|
|
746
|
+
|
|
746
747
|
@if (isOpen) {
|
|
747
748
|
<kendo-dialog
|
|
748
749
|
autoFocusedElement=".k-signature-action.k-signature-minimize"
|
|
@@ -796,7 +797,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
796
797
|
i18n-canvasLabel="kendo.signature.canvasLabel|The message for the Canvas element aria-label."
|
|
797
798
|
canvasLabel="Signature canvas">
|
|
798
799
|
</ng-container>
|
|
799
|
-
|
|
800
|
+
|
|
800
801
|
<div
|
|
801
802
|
#canvas
|
|
802
803
|
class="k-signature-canvas"
|
|
@@ -805,7 +806,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
805
806
|
role="img"
|
|
806
807
|
[attr.aria-label]="canvasLabel"
|
|
807
808
|
></div>
|
|
808
|
-
|
|
809
|
+
|
|
809
810
|
<div class="k-signature-actions k-signature-actions-top">
|
|
810
811
|
@if (showMaximize) {
|
|
811
812
|
<button
|
|
@@ -859,7 +860,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
859
860
|
</button>
|
|
860
861
|
}
|
|
861
862
|
</div>
|
|
862
|
-
|
|
863
|
+
|
|
863
864
|
@if (isOpen) {
|
|
864
865
|
<kendo-dialog
|
|
865
866
|
autoFocusedElement=".k-signature-action.k-signature-minimize"
|
|
@@ -553,8 +553,8 @@ const packageMetadata = {
|
|
|
553
553
|
productName: 'Kendo UI for Angular',
|
|
554
554
|
productCode: 'KENDOUIANGULAR',
|
|
555
555
|
productCodes: ['KENDOUIANGULAR'],
|
|
556
|
-
publishDate:
|
|
557
|
-
version: '21.3.0-develop.
|
|
556
|
+
publishDate: 1765272946,
|
|
557
|
+
version: '21.3.0-develop.10',
|
|
558
558
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
559
559
|
};
|
|
560
560
|
|
|
@@ -2087,6 +2087,7 @@ class RangeSliderComponent extends SliderBase {
|
|
|
2087
2087
|
validateValue(value);
|
|
2088
2088
|
this.value = value;
|
|
2089
2089
|
this.sizeComponent();
|
|
2090
|
+
this.changeDetector.markForCheck();
|
|
2090
2091
|
}
|
|
2091
2092
|
/**
|
|
2092
2093
|
* @hidden
|
|
@@ -2273,7 +2274,7 @@ class RangeSliderComponent extends SliderBase {
|
|
|
2273
2274
|
i18n-dragHandleEnd="kendo.rangeslider.dragHandleEnd|The title of the **End** drag handle of the Slider."
|
|
2274
2275
|
dragHandleEnd="Drag"
|
|
2275
2276
|
>
|
|
2276
|
-
|
|
2277
|
+
|
|
2277
2278
|
<div
|
|
2278
2279
|
#wrap
|
|
2279
2280
|
class="k-slider-track-wrap"
|
|
@@ -2359,7 +2360,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
2359
2360
|
i18n-dragHandleEnd="kendo.rangeslider.dragHandleEnd|The title of the **End** drag handle of the Slider."
|
|
2360
2361
|
dragHandleEnd="Drag"
|
|
2361
2362
|
>
|
|
2362
|
-
|
|
2363
|
+
|
|
2363
2364
|
<div
|
|
2364
2365
|
#wrap
|
|
2365
2366
|
class="k-slider-track-wrap"
|
|
@@ -6046,6 +6047,7 @@ class MaskedTextBoxComponent {
|
|
|
6046
6047
|
if (this.includeLiterals) {
|
|
6047
6048
|
this.updateValue(this.maskedValue, false);
|
|
6048
6049
|
}
|
|
6050
|
+
this.changeDetector.markForCheck();
|
|
6049
6051
|
}
|
|
6050
6052
|
/**
|
|
6051
6053
|
* @hidden
|
|
@@ -7964,6 +7966,7 @@ class TextBoxComponent {
|
|
|
7964
7966
|
writeValue(value) {
|
|
7965
7967
|
this.value = value;
|
|
7966
7968
|
this.checkClearButton();
|
|
7969
|
+
this.changeDetector.markForCheck();
|
|
7967
7970
|
}
|
|
7968
7971
|
/**
|
|
7969
7972
|
* @hidden
|
|
@@ -9953,6 +9956,7 @@ class ColorGradientComponent {
|
|
|
9953
9956
|
if (isPresent(this.gradientWrapper)) {
|
|
9954
9957
|
this.updateUI();
|
|
9955
9958
|
}
|
|
9959
|
+
this.cdr.markForCheck();
|
|
9956
9960
|
}
|
|
9957
9961
|
/**
|
|
9958
9962
|
* @hidden
|
|
@@ -11072,6 +11076,7 @@ class ColorPaletteComponent {
|
|
|
11072
11076
|
writeValue(value) {
|
|
11073
11077
|
this.value = value;
|
|
11074
11078
|
this.selectCell(value);
|
|
11079
|
+
this.cdr.markForCheck();
|
|
11075
11080
|
}
|
|
11076
11081
|
/**
|
|
11077
11082
|
* @hidden
|
|
@@ -12234,6 +12239,7 @@ class FlatColorPickerComponent {
|
|
|
12234
12239
|
*/
|
|
12235
12240
|
writeValue(value) {
|
|
12236
12241
|
this.value = value;
|
|
12242
|
+
this.cdr.markForCheck();
|
|
12237
12243
|
}
|
|
12238
12244
|
/**
|
|
12239
12245
|
* @hidden
|
|
@@ -13591,6 +13597,7 @@ class ColorPickerComponent {
|
|
|
13591
13597
|
*/
|
|
13592
13598
|
writeValue(value) {
|
|
13593
13599
|
this.value = value;
|
|
13600
|
+
this.cdr.markForCheck();
|
|
13594
13601
|
}
|
|
13595
13602
|
/**
|
|
13596
13603
|
* @hidden
|
|
@@ -15019,6 +15026,7 @@ class RadioButtonComponent extends RadioCheckBoxBase {
|
|
|
15019
15026
|
*/
|
|
15020
15027
|
writeValue(value) {
|
|
15021
15028
|
this.checked = value === this.value;
|
|
15029
|
+
this.cdr.markForCheck();
|
|
15022
15030
|
}
|
|
15023
15031
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: RadioButtonComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
15024
15032
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: RadioButtonComponent, isStandalone: true, selector: "kendo-radiobutton", inputs: { checked: "checked" }, outputs: { checkedChange: "checkedChange" }, host: { properties: { "class.k-radio-wrap": "this.hostClass", "attr.dir": "this.direction" } }, providers: [
|
|
@@ -16818,6 +16826,7 @@ class SignatureComponent {
|
|
|
16818
16826
|
*/
|
|
16819
16827
|
writeValue(value) {
|
|
16820
16828
|
this.value = value;
|
|
16829
|
+
this.cd.markForCheck();
|
|
16821
16830
|
}
|
|
16822
16831
|
/**
|
|
16823
16832
|
* @hidden
|
|
@@ -16892,7 +16901,7 @@ class SignatureComponent {
|
|
|
16892
16901
|
i18n-canvasLabel="kendo.signature.canvasLabel|The message for the Canvas element aria-label."
|
|
16893
16902
|
canvasLabel="Signature canvas">
|
|
16894
16903
|
</ng-container>
|
|
16895
|
-
|
|
16904
|
+
|
|
16896
16905
|
<div
|
|
16897
16906
|
#canvas
|
|
16898
16907
|
class="k-signature-canvas"
|
|
@@ -16901,7 +16910,7 @@ class SignatureComponent {
|
|
|
16901
16910
|
role="img"
|
|
16902
16911
|
[attr.aria-label]="canvasLabel"
|
|
16903
16912
|
></div>
|
|
16904
|
-
|
|
16913
|
+
|
|
16905
16914
|
<div class="k-signature-actions k-signature-actions-top">
|
|
16906
16915
|
@if (showMaximize) {
|
|
16907
16916
|
<button
|
|
@@ -16955,7 +16964,7 @@ class SignatureComponent {
|
|
|
16955
16964
|
</button>
|
|
16956
16965
|
}
|
|
16957
16966
|
</div>
|
|
16958
|
-
|
|
16967
|
+
|
|
16959
16968
|
@if (isOpen) {
|
|
16960
16969
|
<kendo-dialog
|
|
16961
16970
|
autoFocusedElement=".k-signature-action.k-signature-minimize"
|
|
@@ -17009,7 +17018,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
17009
17018
|
i18n-canvasLabel="kendo.signature.canvasLabel|The message for the Canvas element aria-label."
|
|
17010
17019
|
canvasLabel="Signature canvas">
|
|
17011
17020
|
</ng-container>
|
|
17012
|
-
|
|
17021
|
+
|
|
17013
17022
|
<div
|
|
17014
17023
|
#canvas
|
|
17015
17024
|
class="k-signature-canvas"
|
|
@@ -17018,7 +17027,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
17018
17027
|
role="img"
|
|
17019
17028
|
[attr.aria-label]="canvasLabel"
|
|
17020
17029
|
></div>
|
|
17021
|
-
|
|
17030
|
+
|
|
17022
17031
|
<div class="k-signature-actions k-signature-actions-top">
|
|
17023
17032
|
@if (showMaximize) {
|
|
17024
17033
|
<button
|
|
@@ -17072,7 +17081,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImpo
|
|
|
17072
17081
|
</button>
|
|
17073
17082
|
}
|
|
17074
17083
|
</div>
|
|
17075
|
-
|
|
17084
|
+
|
|
17076
17085
|
@if (isOpen) {
|
|
17077
17086
|
<kendo-dialog
|
|
17078
17087
|
autoFocusedElement=".k-signature-action.k-signature-minimize"
|
|
@@ -18745,6 +18754,7 @@ class OTPInputComponent {
|
|
|
18745
18754
|
*/
|
|
18746
18755
|
writeValue(value) {
|
|
18747
18756
|
this.value = value;
|
|
18757
|
+
this.cdr.markForCheck();
|
|
18748
18758
|
}
|
|
18749
18759
|
/**
|
|
18750
18760
|
* @hidden
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "21.3.0-develop.
|
|
3
|
+
"version": "21.3.0-develop.10",
|
|
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": 1765272946,
|
|
32
32
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
33
33
|
}
|
|
34
34
|
},
|
|
@@ -38,22 +38,22 @@
|
|
|
38
38
|
"@angular/core": "18 - 21",
|
|
39
39
|
"@angular/forms": "18 - 21",
|
|
40
40
|
"@angular/platform-browser": "18 - 21",
|
|
41
|
-
"@progress/kendo-drawing": "^1.
|
|
41
|
+
"@progress/kendo-drawing": "^1.23.1",
|
|
42
42
|
"@progress/kendo-licensing": "^1.7.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "21.3.0-develop.
|
|
44
|
-
"@progress/kendo-angular-common": "21.3.0-develop.
|
|
45
|
-
"@progress/kendo-angular-utils": "21.3.0-develop.
|
|
46
|
-
"@progress/kendo-angular-navigation": "21.3.0-develop.
|
|
47
|
-
"@progress/kendo-angular-dialog": "21.3.0-develop.
|
|
48
|
-
"@progress/kendo-angular-intl": "21.3.0-develop.
|
|
49
|
-
"@progress/kendo-angular-l10n": "21.3.0-develop.
|
|
50
|
-
"@progress/kendo-angular-popup": "21.3.0-develop.
|
|
51
|
-
"@progress/kendo-angular-icons": "21.3.0-develop.
|
|
43
|
+
"@progress/kendo-angular-buttons": "21.3.0-develop.10",
|
|
44
|
+
"@progress/kendo-angular-common": "21.3.0-develop.10",
|
|
45
|
+
"@progress/kendo-angular-utils": "21.3.0-develop.10",
|
|
46
|
+
"@progress/kendo-angular-navigation": "21.3.0-develop.10",
|
|
47
|
+
"@progress/kendo-angular-dialog": "21.3.0-develop.10",
|
|
48
|
+
"@progress/kendo-angular-intl": "21.3.0-develop.10",
|
|
49
|
+
"@progress/kendo-angular-l10n": "21.3.0-develop.10",
|
|
50
|
+
"@progress/kendo-angular-popup": "21.3.0-develop.10",
|
|
51
|
+
"@progress/kendo-angular-icons": "21.3.0-develop.10",
|
|
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": "21.3.0-develop.
|
|
56
|
+
"@progress/kendo-angular-schematics": "21.3.0-develop.10",
|
|
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"
|