@progress/kendo-angular-inputs 17.0.1 → 17.0.2-develop.10

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.
@@ -664,6 +664,7 @@ export class ColorGradientComponent {
664
664
  [attr.title]="colorGradientHandleTitle"
665
665
  [attr.aria-label]="colorGradientHandleTitle + ' ' + colorGradientHandleAriaLabel"
666
666
  role="slider"
667
+ [style.touch-action]="disabled || readonly ? '' : 'none'"
667
668
  [attr.aria-valuetext]="hsvSliderValueText"
668
669
  [attr.aria-readonly]="readonly ? readonly : undefined"
669
670
  [attr.aria-disabled]="disabled ? disabled : undefined"
@@ -840,6 +841,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
840
841
  [attr.title]="colorGradientHandleTitle"
841
842
  [attr.aria-label]="colorGradientHandleTitle + ' ' + colorGradientHandleAriaLabel"
842
843
  role="slider"
844
+ [style.touch-action]="disabled || readonly ? '' : 'none'"
843
845
  [attr.aria-valuetext]="hsvSliderValueText"
844
846
  [attr.aria-readonly]="readonly ? readonly : undefined"
845
847
  [attr.aria-disabled]="disabled ? disabled : undefined"
@@ -153,7 +153,7 @@ export class FormFieldComponent {
153
153
  return control.valueAccessor instanceof RadioControlValueAccessor;
154
154
  }
155
155
  updateDescription() {
156
- const controls = this.findControlElements();
156
+ const controls = this.findControlElements().filter(c => !!c);
157
157
  if (!controls) {
158
158
  return;
159
159
  }
@@ -173,9 +173,11 @@ export class FormFieldComponent {
173
173
  if (!this.controlElementRefs) {
174
174
  return;
175
175
  }
176
- // if the control is KendoInput and has focusableId - dropdowns, dateinputs
176
+ // the control is KendoInput and has focusableId - dropdowns, dateinputs, editor
177
177
  if (this.kendoInput && this.kendoInput.focusableId && isDocumentAvailable()) {
178
- return [this.hostElement.nativeElement.querySelector(`#${this.kendoInput.focusableId}`)];
178
+ // Editor requires special treatment when in iframe mode
179
+ const isEditor = this.kendoInput.focusableId.startsWith('k-editor');
180
+ return isEditor ? [this.kendoInput.viewMountElement] : [this.hostElement.nativeElement.querySelector(`#${this.kendoInput.focusableId}`)];
179
181
  }
180
182
  return this.controlElementRefs.map(el => el.nativeElement);
181
183
  }
@@ -9,7 +9,7 @@ export const packageMetadata = {
9
9
  name: '@progress/kendo-angular-inputs',
10
10
  productName: 'Kendo UI for Angular',
11
11
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
12
- publishDate: 1731430629,
13
- version: '17.0.1',
12
+ publishDate: 1731943933,
13
+ version: '17.0.2-develop.10',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -546,8 +546,8 @@ const packageMetadata = {
546
546
  name: '@progress/kendo-angular-inputs',
547
547
  productName: 'Kendo UI for Angular',
548
548
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
549
- publishDate: 1731430629,
550
- version: '17.0.1',
549
+ publishDate: 1731943933,
550
+ version: '17.0.2-develop.10',
551
551
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
552
552
  };
553
553
 
@@ -8970,6 +8970,7 @@ class ColorGradientComponent {
8970
8970
  [attr.title]="colorGradientHandleTitle"
8971
8971
  [attr.aria-label]="colorGradientHandleTitle + ' ' + colorGradientHandleAriaLabel"
8972
8972
  role="slider"
8973
+ [style.touch-action]="disabled || readonly ? '' : 'none'"
8973
8974
  [attr.aria-valuetext]="hsvSliderValueText"
8974
8975
  [attr.aria-readonly]="readonly ? readonly : undefined"
8975
8976
  [attr.aria-disabled]="disabled ? disabled : undefined"
@@ -9146,6 +9147,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
9146
9147
  [attr.title]="colorGradientHandleTitle"
9147
9148
  [attr.aria-label]="colorGradientHandleTitle + ' ' + colorGradientHandleAriaLabel"
9148
9149
  role="slider"
9150
+ [style.touch-action]="disabled || readonly ? '' : 'none'"
9149
9151
  [attr.aria-valuetext]="hsvSliderValueText"
9150
9152
  [attr.aria-readonly]="readonly ? readonly : undefined"
9151
9153
  [attr.aria-disabled]="disabled ? disabled : undefined"
@@ -12714,7 +12716,7 @@ class FormFieldComponent {
12714
12716
  return control.valueAccessor instanceof RadioControlValueAccessor;
12715
12717
  }
12716
12718
  updateDescription() {
12717
- const controls = this.findControlElements();
12719
+ const controls = this.findControlElements().filter(c => !!c);
12718
12720
  if (!controls) {
12719
12721
  return;
12720
12722
  }
@@ -12734,9 +12736,11 @@ class FormFieldComponent {
12734
12736
  if (!this.controlElementRefs) {
12735
12737
  return;
12736
12738
  }
12737
- // if the control is KendoInput and has focusableId - dropdowns, dateinputs
12739
+ // the control is KendoInput and has focusableId - dropdowns, dateinputs, editor
12738
12740
  if (this.kendoInput && this.kendoInput.focusableId && isDocumentAvailable()) {
12739
- return [this.hostElement.nativeElement.querySelector(`#${this.kendoInput.focusableId}`)];
12741
+ // Editor requires special treatment when in iframe mode
12742
+ const isEditor = this.kendoInput.focusableId.startsWith('k-editor');
12743
+ return isEditor ? [this.kendoInput.viewMountElement] : [this.hostElement.nativeElement.querySelector(`#${this.kendoInput.focusableId}`)];
12740
12744
  }
12741
12745
  return this.controlElementRefs.map(el => el.nativeElement);
12742
12746
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "17.0.1",
3
+ "version": "17.0.2-develop.10",
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",
@@ -34,18 +34,18 @@
34
34
  "@angular/platform-browser": "16 - 18",
35
35
  "@progress/kendo-drawing": "^1.21.0",
36
36
  "@progress/kendo-licensing": "^1.0.2",
37
- "@progress/kendo-angular-buttons": "17.0.1",
38
- "@progress/kendo-angular-common": "17.0.1",
39
- "@progress/kendo-angular-dialog": "17.0.1",
40
- "@progress/kendo-angular-intl": "17.0.1",
41
- "@progress/kendo-angular-l10n": "17.0.1",
42
- "@progress/kendo-angular-popup": "17.0.1",
43
- "@progress/kendo-angular-icons": "17.0.1",
37
+ "@progress/kendo-angular-buttons": "17.0.2-develop.10",
38
+ "@progress/kendo-angular-common": "17.0.2-develop.10",
39
+ "@progress/kendo-angular-dialog": "17.0.2-develop.10",
40
+ "@progress/kendo-angular-intl": "17.0.2-develop.10",
41
+ "@progress/kendo-angular-l10n": "17.0.2-develop.10",
42
+ "@progress/kendo-angular-popup": "17.0.2-develop.10",
43
+ "@progress/kendo-angular-icons": "17.0.2-develop.10",
44
44
  "rxjs": "^6.5.3 || ^7.0.0"
45
45
  },
46
46
  "dependencies": {
47
47
  "tslib": "^2.3.1",
48
- "@progress/kendo-angular-schematics": "17.0.1",
48
+ "@progress/kendo-angular-schematics": "17.0.2-develop.10",
49
49
  "@progress/kendo-common": "^1.0.1",
50
50
  "@progress/kendo-draggable": "^3.0.0",
51
51
  "@progress/kendo-inputs-common": "^3.1.0"