@progress/kendo-angular-inputs 24.0.0-develop.2 → 24.0.0-develop.20
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 +2599 -172
- package/fesm2022/progress-kendo-angular-inputs.mjs +19 -8
- package/package-metadata.mjs +2 -2
- package/package.json +13 -13
- package/switch/switch.component.d.ts +2 -0
- package/textarea/textarea-prefix.component.d.ts +1 -1
- package/textarea/textarea-suffix.component.d.ts +1 -1
|
@@ -583,8 +583,8 @@ const packageMetadata = {
|
|
|
583
583
|
productName: 'Kendo UI for Angular',
|
|
584
584
|
productCode: 'KENDOUIANGULAR',
|
|
585
585
|
productCodes: ['KENDOUIANGULAR'],
|
|
586
|
-
publishDate:
|
|
587
|
-
version: '24.0.0-develop.
|
|
586
|
+
publishDate: 1778149416,
|
|
587
|
+
version: '24.0.0-develop.20',
|
|
588
588
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
589
589
|
};
|
|
590
590
|
|
|
@@ -2542,11 +2542,19 @@ class SwitchComponent {
|
|
|
2542
2542
|
/**
|
|
2543
2543
|
* @hidden
|
|
2544
2544
|
*/
|
|
2545
|
+
set focusableId(value) {
|
|
2546
|
+
this._focusableId = value;
|
|
2547
|
+
}
|
|
2545
2548
|
get focusableId() {
|
|
2546
|
-
if (this.
|
|
2547
|
-
|
|
2549
|
+
if (!this._focusableId) {
|
|
2550
|
+
if (this.hostElement.nativeElement.hasAttribute('id')) {
|
|
2551
|
+
this._focusableId = this.hostElement.nativeElement.getAttribute('id');
|
|
2552
|
+
}
|
|
2553
|
+
else {
|
|
2554
|
+
this._focusableId = `k-${guid()}`;
|
|
2555
|
+
}
|
|
2548
2556
|
}
|
|
2549
|
-
return
|
|
2557
|
+
return this._focusableId;
|
|
2550
2558
|
}
|
|
2551
2559
|
/**
|
|
2552
2560
|
* Set the **On** label.
|
|
@@ -2674,6 +2682,7 @@ class SwitchComponent {
|
|
|
2674
2682
|
control;
|
|
2675
2683
|
domSubscriptions = [];
|
|
2676
2684
|
_checked = false;
|
|
2685
|
+
_focusableId;
|
|
2677
2686
|
_size;
|
|
2678
2687
|
_trackRounded;
|
|
2679
2688
|
_thumbRounded;
|
|
@@ -14410,7 +14419,7 @@ class FormService {
|
|
|
14410
14419
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FormService, decorators: [{
|
|
14411
14420
|
type: Injectable,
|
|
14412
14421
|
args: [{
|
|
14413
|
-
providedIn: 'root'
|
|
14422
|
+
providedIn: 'root'
|
|
14414
14423
|
}]
|
|
14415
14424
|
}] });
|
|
14416
14425
|
|
|
@@ -17225,7 +17234,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
17225
17234
|
* ```html
|
|
17226
17235
|
* <kendo-textarea>
|
|
17227
17236
|
* <kendo-textarea-prefix>
|
|
17228
|
-
* <button kendoButton
|
|
17237
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
17229
17238
|
* </kendo-textarea-prefix>
|
|
17230
17239
|
* </kendo-textarea>
|
|
17231
17240
|
* ```
|
|
@@ -17287,7 +17296,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
17287
17296
|
* ```html
|
|
17288
17297
|
* <kendo-textarea>
|
|
17289
17298
|
* <kendo-textarea-suffix>
|
|
17290
|
-
* <button kendoButton
|
|
17299
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
17291
17300
|
* </kendo-textarea-suffix>
|
|
17292
17301
|
* </kendo-textarea>
|
|
17293
17302
|
* ```
|
|
@@ -19442,6 +19451,7 @@ class FormComponent {
|
|
|
19442
19451
|
}
|
|
19443
19452
|
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FormComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: FormService }, { token: i1.LocalizationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
19444
19453
|
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: FormComponent, isStandalone: true, selector: "form[kendoForm]", inputs: { orientation: "orientation", cols: "cols", gutters: "gutters" }, host: { properties: { "class": "this.formClass", "class.k-form-horizontal": "this.horizontalClass", "attr.dir": "this.direction" } }, providers: [
|
|
19454
|
+
FormService,
|
|
19445
19455
|
LocalizationService,
|
|
19446
19456
|
{ provide: L10N_PREFIX, useValue: 'kendo.form' }
|
|
19447
19457
|
], exportAs: ["kendoForm"], usesOnChanges: true, ngImport: i0, template: `
|
|
@@ -19471,6 +19481,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
19471
19481
|
standalone: true,
|
|
19472
19482
|
imports: [NgClass, NgStyle, ResizeSensorComponent, WatermarkOverlayComponent],
|
|
19473
19483
|
providers: [
|
|
19484
|
+
FormService,
|
|
19474
19485
|
LocalizationService,
|
|
19475
19486
|
{ provide: L10N_PREFIX, useValue: 'kendo.form' }
|
|
19476
19487
|
],
|
package/package-metadata.mjs
CHANGED
|
@@ -7,7 +7,7 @@ export const packageMetadata = {
|
|
|
7
7
|
"productCodes": [
|
|
8
8
|
"KENDOUIANGULAR"
|
|
9
9
|
],
|
|
10
|
-
"publishDate":
|
|
11
|
-
"version": "24.0.0-develop.
|
|
10
|
+
"publishDate": 1778149416,
|
|
11
|
+
"version": "24.0.0-develop.20",
|
|
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": "24.0.0-develop.
|
|
3
|
+
"version": "24.0.0-develop.20",
|
|
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",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"package": {
|
|
56
56
|
"productName": "Kendo UI for Angular",
|
|
57
57
|
"productCode": "KENDOUIANGULAR",
|
|
58
|
-
"publishDate":
|
|
58
|
+
"publishDate": 1778149416,
|
|
59
59
|
"licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
|
|
60
60
|
}
|
|
61
61
|
},
|
|
@@ -65,22 +65,22 @@
|
|
|
65
65
|
"@angular/core": "19 - 21",
|
|
66
66
|
"@angular/forms": "19 - 21",
|
|
67
67
|
"@angular/platform-browser": "19 - 21",
|
|
68
|
-
"@progress/kendo-drawing": "^1.
|
|
68
|
+
"@progress/kendo-drawing": "^1.25.0",
|
|
69
69
|
"@progress/kendo-licensing": "^1.11.0",
|
|
70
|
-
"@progress/kendo-angular-buttons": "24.0.0-develop.
|
|
71
|
-
"@progress/kendo-angular-common": "24.0.0-develop.
|
|
72
|
-
"@progress/kendo-angular-utils": "24.0.0-develop.
|
|
73
|
-
"@progress/kendo-angular-navigation": "24.0.0-develop.
|
|
74
|
-
"@progress/kendo-angular-dialog": "24.0.0-develop.
|
|
75
|
-
"@progress/kendo-angular-intl": "24.0.0-develop.
|
|
76
|
-
"@progress/kendo-angular-l10n": "24.0.0-develop.
|
|
77
|
-
"@progress/kendo-angular-popup": "24.0.0-develop.
|
|
78
|
-
"@progress/kendo-angular-icons": "24.0.0-develop.
|
|
70
|
+
"@progress/kendo-angular-buttons": "24.0.0-develop.20",
|
|
71
|
+
"@progress/kendo-angular-common": "24.0.0-develop.20",
|
|
72
|
+
"@progress/kendo-angular-utils": "24.0.0-develop.20",
|
|
73
|
+
"@progress/kendo-angular-navigation": "24.0.0-develop.20",
|
|
74
|
+
"@progress/kendo-angular-dialog": "24.0.0-develop.20",
|
|
75
|
+
"@progress/kendo-angular-intl": "24.0.0-develop.20",
|
|
76
|
+
"@progress/kendo-angular-l10n": "24.0.0-develop.20",
|
|
77
|
+
"@progress/kendo-angular-popup": "24.0.0-develop.20",
|
|
78
|
+
"@progress/kendo-angular-icons": "24.0.0-develop.20",
|
|
79
79
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
82
|
"tslib": "^2.3.1",
|
|
83
|
-
"@progress/kendo-angular-schematics": "24.0.0-develop.
|
|
83
|
+
"@progress/kendo-angular-schematics": "24.0.0-develop.20",
|
|
84
84
|
"@progress/kendo-common": "^1.0.1",
|
|
85
85
|
"@progress/kendo-draggable": "^3.0.0",
|
|
86
86
|
"@progress/kendo-inputs-common": "^3.1.0"
|
|
@@ -31,6 +31,7 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
31
31
|
/**
|
|
32
32
|
* @hidden
|
|
33
33
|
*/
|
|
34
|
+
set focusableId(value: string);
|
|
34
35
|
get focusableId(): string;
|
|
35
36
|
/**
|
|
36
37
|
* Set the **On** label.
|
|
@@ -120,6 +121,7 @@ export declare class SwitchComponent implements ControlValueAccessor, OnInit, On
|
|
|
120
121
|
protected control: NgControl;
|
|
121
122
|
private domSubscriptions;
|
|
122
123
|
private _checked;
|
|
124
|
+
private _focusableId;
|
|
123
125
|
private _size;
|
|
124
126
|
private _trackRounded;
|
|
125
127
|
private _thumbRounded;
|
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
* ```html
|
|
13
13
|
* <kendo-textarea>
|
|
14
14
|
* <kendo-textarea-prefix>
|
|
15
|
-
* <button kendoButton
|
|
15
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
16
16
|
* </kendo-textarea-prefix>
|
|
17
17
|
* </kendo-textarea>
|
|
18
18
|
* ```
|
|
@@ -12,7 +12,7 @@ import * as i0 from "@angular/core";
|
|
|
12
12
|
* ```html
|
|
13
13
|
* <kendo-textarea>
|
|
14
14
|
* <kendo-textarea-suffix>
|
|
15
|
-
* <button kendoButton
|
|
15
|
+
* <button kendoButton fillMode="clear" [svgIcon]="imageIcon"></button>
|
|
16
16
|
* </kendo-textarea-suffix>
|
|
17
17
|
* </kendo-textarea>
|
|
18
18
|
* ```
|