@progress/kendo-angular-inputs 24.0.0-develop.18 → 24.0.0-develop.19

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.
@@ -583,8 +583,8 @@ const packageMetadata = {
583
583
  productName: 'Kendo UI for Angular',
584
584
  productCode: 'KENDOUIANGULAR',
585
585
  productCodes: ['KENDOUIANGULAR'],
586
- publishDate: 1777970024,
587
- version: '24.0.0-develop.18',
586
+ publishDate: 1778145611,
587
+ version: '24.0.0-develop.19',
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.hostElement.nativeElement.hasAttribute('id')) {
2547
- return this.hostElement.nativeElement.getAttribute('id');
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 `k-${guid()}`;
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;
@@ -7,7 +7,7 @@ export const packageMetadata = {
7
7
  "productCodes": [
8
8
  "KENDOUIANGULAR"
9
9
  ],
10
- "publishDate": 1777970024,
11
- "version": "24.0.0-develop.18",
10
+ "publishDate": 1778145611,
11
+ "version": "24.0.0-develop.19",
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.18",
3
+ "version": "24.0.0-develop.19",
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": 1777970024,
58
+ "publishDate": 1778145611,
59
59
  "licensingDocsUrl": "https://www.telerik.com/kendo-angular-ui/my-license/"
60
60
  }
61
61
  },
@@ -67,20 +67,20 @@
67
67
  "@angular/platform-browser": "19 - 21",
68
68
  "@progress/kendo-drawing": "^1.25.0",
69
69
  "@progress/kendo-licensing": "^1.11.0",
70
- "@progress/kendo-angular-buttons": "24.0.0-develop.18",
71
- "@progress/kendo-angular-common": "24.0.0-develop.18",
72
- "@progress/kendo-angular-utils": "24.0.0-develop.18",
73
- "@progress/kendo-angular-navigation": "24.0.0-develop.18",
74
- "@progress/kendo-angular-dialog": "24.0.0-develop.18",
75
- "@progress/kendo-angular-intl": "24.0.0-develop.18",
76
- "@progress/kendo-angular-l10n": "24.0.0-develop.18",
77
- "@progress/kendo-angular-popup": "24.0.0-develop.18",
78
- "@progress/kendo-angular-icons": "24.0.0-develop.18",
70
+ "@progress/kendo-angular-buttons": "24.0.0-develop.19",
71
+ "@progress/kendo-angular-common": "24.0.0-develop.19",
72
+ "@progress/kendo-angular-utils": "24.0.0-develop.19",
73
+ "@progress/kendo-angular-navigation": "24.0.0-develop.19",
74
+ "@progress/kendo-angular-dialog": "24.0.0-develop.19",
75
+ "@progress/kendo-angular-intl": "24.0.0-develop.19",
76
+ "@progress/kendo-angular-l10n": "24.0.0-develop.19",
77
+ "@progress/kendo-angular-popup": "24.0.0-develop.19",
78
+ "@progress/kendo-angular-icons": "24.0.0-develop.19",
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.18",
83
+ "@progress/kendo-angular-schematics": "24.0.0-develop.19",
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;