@progress/kendo-angular-inputs 25.0.0-develop.3 → 25.0.0-develop.30
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/index.d.ts
CHANGED
|
@@ -275,6 +275,10 @@ declare class SliderComponent extends SliderBase implements AfterViewInit, Contr
|
|
|
275
275
|
* @hidden
|
|
276
276
|
*/
|
|
277
277
|
get currentValue(): string;
|
|
278
|
+
/**
|
|
279
|
+
* @hidden
|
|
280
|
+
*/
|
|
281
|
+
get hostAriaLabel(): string;
|
|
278
282
|
/**
|
|
279
283
|
* @hidden
|
|
280
284
|
*/
|
|
@@ -428,6 +432,14 @@ declare class RangeSliderComponent extends SliderBase implements AfterViewInit,
|
|
|
428
432
|
private activeHandle;
|
|
429
433
|
private focusChangedProgrammatically;
|
|
430
434
|
private isInvalid;
|
|
435
|
+
/**
|
|
436
|
+
* @hidden
|
|
437
|
+
*/
|
|
438
|
+
get startHandleAriaLabel(): string | null;
|
|
439
|
+
/**
|
|
440
|
+
* @hidden
|
|
441
|
+
*/
|
|
442
|
+
get endHandleAriaLabel(): string | null;
|
|
431
443
|
constructor(localization: LocalizationService, injector: Injector, renderer: Renderer2, ngZone: NgZone, changeDetector: ChangeDetectorRef, hostElement: ElementRef);
|
|
432
444
|
/**
|
|
433
445
|
* Focuses the RangeSlider.
|
|
@@ -668,7 +680,7 @@ declare class SwitchComponent implements ControlValueAccessor, OnInit, OnDestroy
|
|
|
668
680
|
get ariaInvalid(): boolean;
|
|
669
681
|
get hostTabIndex(): number;
|
|
670
682
|
get ariaDisabled(): boolean;
|
|
671
|
-
get ariaReadonly(): boolean;
|
|
683
|
+
get ariaReadonly(): boolean | null;
|
|
672
684
|
hostClasses: boolean;
|
|
673
685
|
get disabledClass(): boolean;
|
|
674
686
|
track: any;
|
|
@@ -1551,6 +1563,7 @@ declare class MaskedTextBoxComponent implements ControlValueAccessor, OnChanges,
|
|
|
1551
1563
|
valueChange: EventEmitter<string>;
|
|
1552
1564
|
direction: string;
|
|
1553
1565
|
get hostDisabledClass(): boolean;
|
|
1566
|
+
get hostInvalidClass(): boolean;
|
|
1554
1567
|
/**
|
|
1555
1568
|
* Returns the `ElementRef` of the visible `input` element.
|
|
1556
1569
|
*/
|
|
@@ -2512,7 +2525,6 @@ declare class TextAreaComponent extends TextFieldsBase implements ControlValueAc
|
|
|
2512
2525
|
private _inputAttributes;
|
|
2513
2526
|
private parsedAttributes;
|
|
2514
2527
|
private get defaultAttributes();
|
|
2515
|
-
private get mutableAttributes();
|
|
2516
2528
|
constructor(localizationService: LocalizationService, ngZone: NgZone, changeDetector: ChangeDetectorRef, renderer: Renderer2, injector: Injector, hostElement: ElementRef);
|
|
2517
2529
|
ngAfterContentInit(): void;
|
|
2518
2530
|
ngAfterViewInit(): void;
|
|
@@ -3583,6 +3595,7 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3583
3595
|
* @default false
|
|
3584
3596
|
*/
|
|
3585
3597
|
disabled: boolean;
|
|
3598
|
+
get ariaDisabled(): true | undefined;
|
|
3586
3599
|
/**
|
|
3587
3600
|
* When `true`, sets the Rating to read-only ([see example](https://www.telerik.com/kendo-angular-ui/components/inputs/rating/readonly)).
|
|
3588
3601
|
|
|
@@ -3590,6 +3603,7 @@ declare class RatingComponent implements OnInit, AfterViewInit, OnDestroy, Contr
|
|
|
3590
3603
|
* @default false
|
|
3591
3604
|
*/
|
|
3592
3605
|
readonly: boolean;
|
|
3606
|
+
get ariaReadonly(): true | undefined;
|
|
3593
3607
|
/**
|
|
3594
3608
|
* Sets the [`tabindex`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) of the Rating.
|
|
3595
3609
|
*
|
|
@@ -4386,8 +4400,9 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4386
4400
|
private adaptiveService;
|
|
4387
4401
|
hostClasses: boolean;
|
|
4388
4402
|
get focusedClass(): boolean;
|
|
4403
|
+
get ariaDisabled(): boolean | null;
|
|
4389
4404
|
get disabledClass(): boolean;
|
|
4390
|
-
get ariaReadonly(): boolean;
|
|
4405
|
+
get ariaReadonly(): boolean | null;
|
|
4391
4406
|
get ariaExpanded(): boolean;
|
|
4392
4407
|
get hostTabindex(): number;
|
|
4393
4408
|
direction: string;
|
|
@@ -5064,14 +5079,14 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5064
5079
|
private localizationService;
|
|
5065
5080
|
private injector;
|
|
5066
5081
|
hostClasses: boolean;
|
|
5067
|
-
get readonlyAttribute(): boolean;
|
|
5082
|
+
get readonlyAttribute(): boolean | null;
|
|
5068
5083
|
get disabledClass(): boolean;
|
|
5069
5084
|
get gradientId(): string;
|
|
5070
5085
|
direction: string;
|
|
5071
5086
|
get hostTabindex(): string;
|
|
5072
5087
|
get ariaRole(): string;
|
|
5073
5088
|
get isControlInvalid(): string;
|
|
5074
|
-
get isDisabled(): string |
|
|
5089
|
+
get isDisabled(): string | null;
|
|
5075
5090
|
/**
|
|
5076
5091
|
* @hidden
|
|
5077
5092
|
*/
|
|
@@ -5224,6 +5239,10 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5224
5239
|
* @hidden
|
|
5225
5240
|
*/
|
|
5226
5241
|
get hsvSliderValueText(): string;
|
|
5242
|
+
/**
|
|
5243
|
+
* @hidden
|
|
5244
|
+
*/
|
|
5245
|
+
get hsvSliderValueNow(): number;
|
|
5227
5246
|
/**
|
|
5228
5247
|
* @hidden
|
|
5229
5248
|
*/
|
|
@@ -5471,6 +5490,10 @@ declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
5471
5490
|
* @hidden
|
|
5472
5491
|
*/
|
|
5473
5492
|
hostClasses: boolean;
|
|
5493
|
+
/**
|
|
5494
|
+
* @hidden
|
|
5495
|
+
*/
|
|
5496
|
+
get ariaDisabled(): boolean | null;
|
|
5474
5497
|
/**
|
|
5475
5498
|
* @hidden
|
|
5476
5499
|
*/
|
|
@@ -5478,7 +5501,7 @@ declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
5478
5501
|
/**
|
|
5479
5502
|
* @hidden
|
|
5480
5503
|
*/
|
|
5481
|
-
get readonlyAttribute(): boolean;
|
|
5504
|
+
get readonlyAttribute(): boolean | null;
|
|
5482
5505
|
/**
|
|
5483
5506
|
* @hidden
|
|
5484
5507
|
*/
|
|
@@ -5649,12 +5672,12 @@ declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
5649
5672
|
private injector;
|
|
5650
5673
|
hostClasses: boolean;
|
|
5651
5674
|
get disabledClass(): boolean;
|
|
5652
|
-
get
|
|
5675
|
+
get ariaDisabled(): boolean | null;
|
|
5676
|
+
get ariaReadonly(): boolean | null;
|
|
5653
5677
|
direction: string;
|
|
5654
5678
|
get hostTabindex(): string;
|
|
5655
5679
|
ariaRole: string;
|
|
5656
5680
|
get isControlInvalid(): string;
|
|
5657
|
-
get isDisabled(): string | undefined;
|
|
5658
5681
|
/**
|
|
5659
5682
|
* @hidden
|
|
5660
5683
|
*/
|
|
@@ -6027,6 +6050,7 @@ declare class OTPInputComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
6027
6050
|
*/
|
|
6028
6051
|
onBlur: EventEmitter<any>;
|
|
6029
6052
|
wrapperClass: boolean;
|
|
6053
|
+
get disabledClass(): boolean;
|
|
6030
6054
|
get invalidClass(): boolean;
|
|
6031
6055
|
direction: string;
|
|
6032
6056
|
role: string;
|
|
@@ -6187,13 +6211,13 @@ declare class OTPInputComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
6187
6211
|
*/
|
|
6188
6212
|
declare class OTPInputMessages extends ComponentMessages {
|
|
6189
6213
|
/**
|
|
6190
|
-
* The aria-label of the OTP Input. Follows the pattern **
|
|
6191
|
-
*
|
|
6192
|
-
* **
|
|
6214
|
+
* The aria-label of the OTP Input fields. Follows the pattern **Digit {currentInput} of {totalInputs}** by default.
|
|
6215
|
+
* The default label text when the current input is 1 and the total number of inputs is 6 will be
|
|
6216
|
+
* **Digit 1 of 6**.
|
|
6193
6217
|
*
|
|
6194
|
-
* The message consists of
|
|
6195
|
-
* To allow for reordering its parts, the `ariaLabel` input accepts a string with placeholders for the current input
|
|
6196
|
-
* total number of inputs
|
|
6218
|
+
* The message consists of two parts — the current input number and the total number of inputs.
|
|
6219
|
+
* To allow for reordering its parts, the `ariaLabel` input accepts a string with placeholders for the current input
|
|
6220
|
+
* and total number of inputs. The `{currentInput}` and `{totalInputs}` placeholders will be
|
|
6197
6221
|
* replaced internally with the respective actual values.
|
|
6198
6222
|
*/
|
|
6199
6223
|
ariaLabel: string;
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "25.0.0-develop.
|
|
10
|
+
"publishDate": 1786449816,
|
|
11
|
+
"version": "25.0.0-develop.30",
|
|
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": "25.0.0-develop.
|
|
3
|
+
"version": "25.0.0-develop.30",
|
|
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",
|
|
@@ -49,13 +49,20 @@
|
|
|
49
49
|
"file": "codemods/v19/inputs-rendering-changes.js",
|
|
50
50
|
"instructionsOnly": true
|
|
51
51
|
}
|
|
52
|
+
],
|
|
53
|
+
"25": [
|
|
54
|
+
{
|
|
55
|
+
"description": "Form and ColorPicker/FlatColorPicker have rendering changes that may affect custom styling.",
|
|
56
|
+
"file": "codemods/v25/inputs-rendering-changes.js",
|
|
57
|
+
"instructionsOnly": true
|
|
58
|
+
}
|
|
52
59
|
]
|
|
53
60
|
}
|
|
54
61
|
},
|
|
55
62
|
"package": {
|
|
56
63
|
"productName": "Kendo UI for Angular",
|
|
57
64
|
"productCode": "KENDOUIANGULAR",
|
|
58
|
-
"publishDate":
|
|
65
|
+
"publishDate": 1786449816,
|
|
59
66
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
60
67
|
}
|
|
61
68
|
},
|
|
@@ -67,20 +74,20 @@
|
|
|
67
74
|
"@angular/platform-browser": "20 - 22",
|
|
68
75
|
"@progress/kendo-drawing": "^1.25.0",
|
|
69
76
|
"@progress/kendo-licensing": "^1.11.0",
|
|
70
|
-
"@progress/kendo-angular-buttons": "25.0.0-develop.
|
|
71
|
-
"@progress/kendo-angular-common": "25.0.0-develop.
|
|
72
|
-
"@progress/kendo-angular-utils": "25.0.0-develop.
|
|
73
|
-
"@progress/kendo-angular-navigation": "25.0.0-develop.
|
|
74
|
-
"@progress/kendo-angular-dialog": "25.0.0-develop.
|
|
75
|
-
"@progress/kendo-angular-intl": "25.0.0-develop.
|
|
76
|
-
"@progress/kendo-angular-l10n": "25.0.0-develop.
|
|
77
|
-
"@progress/kendo-angular-popup": "25.0.0-develop.
|
|
78
|
-
"@progress/kendo-angular-icons": "25.0.0-develop.
|
|
77
|
+
"@progress/kendo-angular-buttons": "25.0.0-develop.30",
|
|
78
|
+
"@progress/kendo-angular-common": "25.0.0-develop.30",
|
|
79
|
+
"@progress/kendo-angular-utils": "25.0.0-develop.30",
|
|
80
|
+
"@progress/kendo-angular-navigation": "25.0.0-develop.30",
|
|
81
|
+
"@progress/kendo-angular-dialog": "25.0.0-develop.30",
|
|
82
|
+
"@progress/kendo-angular-intl": "25.0.0-develop.30",
|
|
83
|
+
"@progress/kendo-angular-l10n": "25.0.0-develop.30",
|
|
84
|
+
"@progress/kendo-angular-popup": "25.0.0-develop.30",
|
|
85
|
+
"@progress/kendo-angular-icons": "25.0.0-develop.30",
|
|
79
86
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
80
87
|
},
|
|
81
88
|
"dependencies": {
|
|
82
89
|
"tslib": "^2.3.1",
|
|
83
|
-
"@progress/kendo-angular-schematics": "25.0.0-develop.
|
|
90
|
+
"@progress/kendo-angular-schematics": "25.0.0-develop.30",
|
|
84
91
|
"@progress/kendo-common": "^1.0.1",
|
|
85
92
|
"@progress/kendo-draggable": "^3.0.0",
|
|
86
93
|
"@progress/kendo-inputs-common": "^3.1.0"
|