@progress/kendo-angular-inputs 23.0.1 → 23.0.2-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/common/radio-checkbox.base.d.ts +6 -0
- package/fesm2022/progress-kendo-angular-inputs.mjs +23 -2
- package/maskedtextbox/maskedtextbox.component.d.ts +5 -0
- package/numerictextbox/numerictextbox.component.d.ts +5 -0
- package/package-metadata.mjs +2 -2
- package/package.json +12 -12
- package/rating/rating.component.d.ts +0 -1
- package/text-fields-common/text-fields-base.d.ts +3 -0
- package/textbox/textbox.component.d.ts +3 -0
|
@@ -23,6 +23,9 @@ export declare class RadioCheckBoxBase implements ControlValueAccessor {
|
|
|
23
23
|
focusableId: string;
|
|
24
24
|
/**
|
|
25
25
|
* Sets the `title` attribute of the `input` element of the component.
|
|
26
|
+
*
|
|
27
|
+
* @remarks
|
|
28
|
+
* This property is related to accessibility.
|
|
26
29
|
*/
|
|
27
30
|
title: string;
|
|
28
31
|
/**
|
|
@@ -59,6 +62,9 @@ export declare class RadioCheckBoxBase implements ControlValueAccessor {
|
|
|
59
62
|
get size(): InputSize;
|
|
60
63
|
/**
|
|
61
64
|
* Sets the HTML attributes of the inner focusable input element. Attributes which are essential for certain component functionalities cannot be changed.
|
|
65
|
+
*
|
|
66
|
+
* @remarks
|
|
67
|
+
* This property is related to accessibility.
|
|
62
68
|
*/
|
|
63
69
|
set inputAttributes(attributes: {
|
|
64
70
|
[key: string]: string;
|
|
@@ -567,7 +567,7 @@ const packageMetadata = {
|
|
|
567
567
|
productCode: 'KENDOUIANGULAR',
|
|
568
568
|
productCodes: ['KENDOUIANGULAR'],
|
|
569
569
|
publishDate: 0,
|
|
570
|
-
version: '23.0.1',
|
|
570
|
+
version: '23.0.2-develop.1',
|
|
571
571
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
572
572
|
};
|
|
573
573
|
|
|
@@ -3869,6 +3869,9 @@ class NumericTextBoxComponent {
|
|
|
3869
3869
|
readonly = false;
|
|
3870
3870
|
/**
|
|
3871
3871
|
* Sets the `title` attribute of the input element.
|
|
3872
|
+
*
|
|
3873
|
+
* @remarks
|
|
3874
|
+
* This property is related to accessibility.
|
|
3872
3875
|
*/
|
|
3873
3876
|
title = '';
|
|
3874
3877
|
/**
|
|
@@ -3922,6 +3925,8 @@ class NumericTextBoxComponent {
|
|
|
3922
3925
|
rangeValidation = true;
|
|
3923
3926
|
/**
|
|
3924
3927
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
3928
|
+
*
|
|
3929
|
+
* @default 0
|
|
3925
3930
|
*/
|
|
3926
3931
|
tabindex = 0;
|
|
3927
3932
|
/**
|
|
@@ -5623,6 +5628,9 @@ class MaskedTextBoxComponent {
|
|
|
5623
5628
|
readonly = false;
|
|
5624
5629
|
/**
|
|
5625
5630
|
* Sets the `title` attribute of the input element.
|
|
5631
|
+
*
|
|
5632
|
+
* @remarks
|
|
5633
|
+
* This property is related to accessibility.
|
|
5626
5634
|
*/
|
|
5627
5635
|
title;
|
|
5628
5636
|
/**
|
|
@@ -5702,6 +5710,8 @@ class MaskedTextBoxComponent {
|
|
|
5702
5710
|
maskValidation = true;
|
|
5703
5711
|
/**
|
|
5704
5712
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) attribute of the component.
|
|
5713
|
+
*
|
|
5714
|
+
* @default 0
|
|
5705
5715
|
*/
|
|
5706
5716
|
tabindex = 0;
|
|
5707
5717
|
/**
|
|
@@ -6442,6 +6452,9 @@ class RadioCheckBoxBase {
|
|
|
6442
6452
|
focusableId = `k-${guid()}`;
|
|
6443
6453
|
/**
|
|
6444
6454
|
* Sets the `title` attribute of the `input` element of the component.
|
|
6455
|
+
*
|
|
6456
|
+
* @remarks
|
|
6457
|
+
* This property is related to accessibility.
|
|
6445
6458
|
*/
|
|
6446
6459
|
title;
|
|
6447
6460
|
/**
|
|
@@ -6487,6 +6500,9 @@ class RadioCheckBoxBase {
|
|
|
6487
6500
|
}
|
|
6488
6501
|
/**
|
|
6489
6502
|
* Sets the HTML attributes of the inner focusable input element. Attributes which are essential for certain component functionalities cannot be changed.
|
|
6503
|
+
*
|
|
6504
|
+
* @remarks
|
|
6505
|
+
* This property is related to accessibility.
|
|
6490
6506
|
*/
|
|
6491
6507
|
set inputAttributes(attributes) {
|
|
6492
6508
|
if (isObjectPresent(this.parsedAttributes)) {
|
|
@@ -7549,6 +7565,9 @@ class TextBoxComponent {
|
|
|
7549
7565
|
focusableId = `k-${guid()}`;
|
|
7550
7566
|
/**
|
|
7551
7567
|
* Sets the `title` attribute of the `input` element of the TextBox.
|
|
7568
|
+
*
|
|
7569
|
+
* @remarks
|
|
7570
|
+
* This property is related to accessibility.
|
|
7552
7571
|
*/
|
|
7553
7572
|
title;
|
|
7554
7573
|
/**
|
|
@@ -15299,7 +15318,6 @@ class RatingComponent {
|
|
|
15299
15318
|
readonly = false;
|
|
15300
15319
|
/**
|
|
15301
15320
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the Rating.
|
|
15302
|
-
|
|
15303
15321
|
*
|
|
15304
15322
|
* @default 0
|
|
15305
15323
|
*/
|
|
@@ -17325,6 +17343,9 @@ class TextFieldsBase {
|
|
|
17325
17343
|
hostElement;
|
|
17326
17344
|
/**
|
|
17327
17345
|
* Sets the `title` attribute of the internal textarea input element of the component.
|
|
17346
|
+
*
|
|
17347
|
+
* @remarks
|
|
17348
|
+
* This property is related to accessibility.
|
|
17328
17349
|
*/
|
|
17329
17350
|
title;
|
|
17330
17351
|
/**
|
|
@@ -56,6 +56,9 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
56
56
|
readonly: boolean;
|
|
57
57
|
/**
|
|
58
58
|
* Sets the `title` attribute of the input element.
|
|
59
|
+
*
|
|
60
|
+
* @remarks
|
|
61
|
+
* This property is related to accessibility.
|
|
59
62
|
*/
|
|
60
63
|
title: string;
|
|
61
64
|
/**
|
|
@@ -120,6 +123,8 @@ export declare class MaskedTextBoxComponent implements ControlValueAccessor, OnC
|
|
|
120
123
|
maskValidation: boolean;
|
|
121
124
|
/**
|
|
122
125
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) attribute of the component.
|
|
126
|
+
*
|
|
127
|
+
* @default 0
|
|
123
128
|
*/
|
|
124
129
|
tabindex: number;
|
|
125
130
|
/**
|
|
@@ -52,6 +52,9 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
52
52
|
readonly: boolean;
|
|
53
53
|
/**
|
|
54
54
|
* Sets the `title` attribute of the input element.
|
|
55
|
+
*
|
|
56
|
+
* @remarks
|
|
57
|
+
* This property is related to accessibility.
|
|
55
58
|
*/
|
|
56
59
|
title: string;
|
|
57
60
|
/**
|
|
@@ -100,6 +103,8 @@ export declare class NumericTextBoxComponent implements ControlValueAccessor, On
|
|
|
100
103
|
rangeValidation: boolean;
|
|
101
104
|
/**
|
|
102
105
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the component.
|
|
106
|
+
*
|
|
107
|
+
* @default 0
|
|
103
108
|
*/
|
|
104
109
|
tabindex: number;
|
|
105
110
|
/**
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "23.0.1",
|
|
10
|
+
"publishDate": 1771334763,
|
|
11
|
+
"version": "23.0.2-develop.1",
|
|
12
12
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
13
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-inputs",
|
|
3
|
-
"version": "23.0.1",
|
|
3
|
+
"version": "23.0.2-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": 1771334763,
|
|
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": "19 - 21",
|
|
41
41
|
"@progress/kendo-drawing": "^1.24.0",
|
|
42
42
|
"@progress/kendo-licensing": "^1.10.0",
|
|
43
|
-
"@progress/kendo-angular-buttons": "23.0.1",
|
|
44
|
-
"@progress/kendo-angular-common": "23.0.1",
|
|
45
|
-
"@progress/kendo-angular-utils": "23.0.1",
|
|
46
|
-
"@progress/kendo-angular-navigation": "23.0.1",
|
|
47
|
-
"@progress/kendo-angular-dialog": "23.0.1",
|
|
48
|
-
"@progress/kendo-angular-intl": "23.0.1",
|
|
49
|
-
"@progress/kendo-angular-l10n": "23.0.1",
|
|
50
|
-
"@progress/kendo-angular-popup": "23.0.1",
|
|
51
|
-
"@progress/kendo-angular-icons": "23.0.1",
|
|
43
|
+
"@progress/kendo-angular-buttons": "23.0.2-develop.1",
|
|
44
|
+
"@progress/kendo-angular-common": "23.0.2-develop.1",
|
|
45
|
+
"@progress/kendo-angular-utils": "23.0.2-develop.1",
|
|
46
|
+
"@progress/kendo-angular-navigation": "23.0.2-develop.1",
|
|
47
|
+
"@progress/kendo-angular-dialog": "23.0.2-develop.1",
|
|
48
|
+
"@progress/kendo-angular-intl": "23.0.2-develop.1",
|
|
49
|
+
"@progress/kendo-angular-l10n": "23.0.2-develop.1",
|
|
50
|
+
"@progress/kendo-angular-popup": "23.0.2-develop.1",
|
|
51
|
+
"@progress/kendo-angular-icons": "23.0.2-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": "23.0.1",
|
|
56
|
+
"@progress/kendo-angular-schematics": "23.0.2-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"
|
|
@@ -19,6 +19,9 @@ export declare abstract class TextFieldsBase {
|
|
|
19
19
|
protected hostElement: ElementRef;
|
|
20
20
|
/**
|
|
21
21
|
* Sets the `title` attribute of the internal textarea input element of the component.
|
|
22
|
+
*
|
|
23
|
+
* @remarks
|
|
24
|
+
* This property is related to accessibility.
|
|
22
25
|
*/
|
|
23
26
|
title: string | undefined;
|
|
24
27
|
/**
|
|
@@ -38,6 +38,9 @@ export declare class TextBoxComponent implements ControlValueAccessor {
|
|
|
38
38
|
focusableId: string;
|
|
39
39
|
/**
|
|
40
40
|
* Sets the `title` attribute of the `input` element of the TextBox.
|
|
41
|
+
*
|
|
42
|
+
* @remarks
|
|
43
|
+
* This property is related to accessibility.
|
|
41
44
|
*/
|
|
42
45
|
title: string;
|
|
43
46
|
/**
|