@progress/kendo-angular-inputs 25.0.0-develop.7 → 25.0.0
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/NOTICE.txt +33 -34
- package/codemods/libs/common/src/codemods/utils.js +15 -0
- package/codemods/libs/inputs/codemods/v25/inputs-rendering-changes.js +35 -0
- package/fesm2022/progress-kendo-angular-inputs.mjs +539 -441
- package/index.d.ts +37 -14
- package/package-metadata.mjs +2 -2
- package/package.json +19 -12
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,8 @@ declare class ColorPickerComponent implements OnInit, AfterViewInit, OnChanges,
|
|
|
4386
4400
|
private adaptiveService;
|
|
4387
4401
|
hostClasses: boolean;
|
|
4388
4402
|
get focusedClass(): boolean;
|
|
4389
|
-
get disabledClass(): boolean;
|
|
4390
4403
|
get ariaDisabled(): boolean | null;
|
|
4404
|
+
get disabledClass(): boolean;
|
|
4391
4405
|
get ariaReadonly(): boolean | null;
|
|
4392
4406
|
get ariaExpanded(): boolean;
|
|
4393
4407
|
get hostTabindex(): number;
|
|
@@ -5065,14 +5079,14 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5065
5079
|
private localizationService;
|
|
5066
5080
|
private injector;
|
|
5067
5081
|
hostClasses: boolean;
|
|
5068
|
-
get readonlyAttribute(): boolean;
|
|
5082
|
+
get readonlyAttribute(): boolean | null;
|
|
5069
5083
|
get disabledClass(): boolean;
|
|
5070
5084
|
get gradientId(): string;
|
|
5071
5085
|
direction: string;
|
|
5072
5086
|
get hostTabindex(): string;
|
|
5073
5087
|
get ariaRole(): string;
|
|
5074
5088
|
get isControlInvalid(): string;
|
|
5075
|
-
get isDisabled(): string |
|
|
5089
|
+
get isDisabled(): string | null;
|
|
5076
5090
|
/**
|
|
5077
5091
|
* @hidden
|
|
5078
5092
|
*/
|
|
@@ -5225,6 +5239,10 @@ declare class ColorGradientComponent implements OnInit, OnChanges, OnDestroy, Co
|
|
|
5225
5239
|
* @hidden
|
|
5226
5240
|
*/
|
|
5227
5241
|
get hsvSliderValueText(): string;
|
|
5242
|
+
/**
|
|
5243
|
+
* @hidden
|
|
5244
|
+
*/
|
|
5245
|
+
get hsvSliderValueNow(): number;
|
|
5228
5246
|
/**
|
|
5229
5247
|
* @hidden
|
|
5230
5248
|
*/
|
|
@@ -5472,6 +5490,10 @@ declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
5472
5490
|
* @hidden
|
|
5473
5491
|
*/
|
|
5474
5492
|
hostClasses: boolean;
|
|
5493
|
+
/**
|
|
5494
|
+
* @hidden
|
|
5495
|
+
*/
|
|
5496
|
+
get ariaDisabled(): boolean | null;
|
|
5475
5497
|
/**
|
|
5476
5498
|
* @hidden
|
|
5477
5499
|
*/
|
|
@@ -5479,7 +5501,7 @@ declare class ColorPaletteComponent implements OnInit, AfterViewInit, OnDestroy,
|
|
|
5479
5501
|
/**
|
|
5480
5502
|
* @hidden
|
|
5481
5503
|
*/
|
|
5482
|
-
get readonlyAttribute(): boolean;
|
|
5504
|
+
get readonlyAttribute(): boolean | null;
|
|
5483
5505
|
/**
|
|
5484
5506
|
* @hidden
|
|
5485
5507
|
*/
|
|
@@ -5650,12 +5672,12 @@ declare class FlatColorPickerComponent implements OnInit, AfterViewInit, OnDestr
|
|
|
5650
5672
|
private injector;
|
|
5651
5673
|
hostClasses: boolean;
|
|
5652
5674
|
get disabledClass(): boolean;
|
|
5653
|
-
get
|
|
5675
|
+
get ariaDisabled(): boolean | null;
|
|
5676
|
+
get ariaReadonly(): boolean | null;
|
|
5654
5677
|
direction: string;
|
|
5655
5678
|
get hostTabindex(): string;
|
|
5656
5679
|
ariaRole: string;
|
|
5657
5680
|
get isControlInvalid(): string;
|
|
5658
|
-
get isDisabled(): string | undefined;
|
|
5659
5681
|
/**
|
|
5660
5682
|
* @hidden
|
|
5661
5683
|
*/
|
|
@@ -6028,6 +6050,7 @@ declare class OTPInputComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
6028
6050
|
*/
|
|
6029
6051
|
onBlur: EventEmitter<any>;
|
|
6030
6052
|
wrapperClass: boolean;
|
|
6053
|
+
get disabledClass(): boolean;
|
|
6031
6054
|
get invalidClass(): boolean;
|
|
6032
6055
|
direction: string;
|
|
6033
6056
|
role: string;
|
|
@@ -6188,13 +6211,13 @@ declare class OTPInputComponent implements ControlValueAccessor, OnInit, AfterVi
|
|
|
6188
6211
|
*/
|
|
6189
6212
|
declare class OTPInputMessages extends ComponentMessages {
|
|
6190
6213
|
/**
|
|
6191
|
-
* The aria-label of the OTP Input. Follows the pattern **
|
|
6192
|
-
*
|
|
6193
|
-
* **
|
|
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**.
|
|
6194
6217
|
*
|
|
6195
|
-
* The message consists of
|
|
6196
|
-
* To allow for reordering its parts, the `ariaLabel` input accepts a string with placeholders for the current input
|
|
6197
|
-
* 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
|
|
6198
6221
|
* replaced internally with the respective actual values.
|
|
6199
6222
|
*/
|
|
6200
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
|
|
10
|
+
"publishDate": 1786525865,
|
|
11
|
+
"version": "25.0.0",
|
|
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
|
|
3
|
+
"version": "25.0.0",
|
|
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": 1786525865,
|
|
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
|
|
71
|
-
"@progress/kendo-angular-common": "25.0.0
|
|
72
|
-
"@progress/kendo-angular-utils": "25.0.0
|
|
73
|
-
"@progress/kendo-angular-navigation": "25.0.0
|
|
74
|
-
"@progress/kendo-angular-dialog": "25.0.0
|
|
75
|
-
"@progress/kendo-angular-intl": "25.0.0
|
|
76
|
-
"@progress/kendo-angular-l10n": "25.0.0
|
|
77
|
-
"@progress/kendo-angular-popup": "25.0.0
|
|
78
|
-
"@progress/kendo-angular-icons": "25.0.0
|
|
77
|
+
"@progress/kendo-angular-buttons": "25.0.0",
|
|
78
|
+
"@progress/kendo-angular-common": "25.0.0",
|
|
79
|
+
"@progress/kendo-angular-utils": "25.0.0",
|
|
80
|
+
"@progress/kendo-angular-navigation": "25.0.0",
|
|
81
|
+
"@progress/kendo-angular-dialog": "25.0.0",
|
|
82
|
+
"@progress/kendo-angular-intl": "25.0.0",
|
|
83
|
+
"@progress/kendo-angular-l10n": "25.0.0",
|
|
84
|
+
"@progress/kendo-angular-popup": "25.0.0",
|
|
85
|
+
"@progress/kendo-angular-icons": "25.0.0",
|
|
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
|
|
90
|
+
"@progress/kendo-angular-schematics": "25.0.0",
|
|
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"
|