@progress/kendo-angular-inputs 11.4.0 → 11.4.1-develop.2

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.
@@ -328,6 +328,7 @@ export class ColorPaletteComponent {
328
328
  row: 0,
329
329
  col: 0
330
330
  };
331
+ this.activeCellId = `k-${this.focusedCell.row}-${this.focusedCell.col}-${this.uniqueId}`;
331
332
  }
332
333
  }
333
334
  /**
@@ -378,6 +379,9 @@ export class ColorPaletteComponent {
378
379
  }
379
380
  this.focusedCell = this.service.getNextCell(this.focusedCell, horizontalStep, verticalStep);
380
381
  this.focusInComponent = true;
382
+ if (this.focusedCell) {
383
+ this.activeCellId = `k-${this.focusedCell.row}-${this.focusedCell.col}-${this.uniqueId}`;
384
+ }
381
385
  }
382
386
  setHostElementAriaLabel() {
383
387
  const parsed = parseColor(this.value, this.format);
@@ -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: 1678871261,
13
- version: '11.4.0',
12
+ publishDate: 1678967943,
13
+ version: '11.4.1-develop.2',
14
14
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
15
15
  };
@@ -539,8 +539,8 @@ const packageMetadata = {
539
539
  name: '@progress/kendo-angular-inputs',
540
540
  productName: 'Kendo UI for Angular',
541
541
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
542
- publishDate: 1678871261,
543
- version: '11.4.0',
542
+ publishDate: 1678967943,
543
+ version: '11.4.1-develop.2',
544
544
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
545
545
  };
546
546
 
@@ -10899,6 +10899,7 @@ class ColorPaletteComponent {
10899
10899
  row: 0,
10900
10900
  col: 0
10901
10901
  };
10902
+ this.activeCellId = `k-${this.focusedCell.row}-${this.focusedCell.col}-${this.uniqueId}`;
10902
10903
  }
10903
10904
  }
10904
10905
  /**
@@ -10949,6 +10950,9 @@ class ColorPaletteComponent {
10949
10950
  }
10950
10951
  this.focusedCell = this.service.getNextCell(this.focusedCell, horizontalStep, verticalStep);
10951
10952
  this.focusInComponent = true;
10953
+ if (this.focusedCell) {
10954
+ this.activeCellId = `k-${this.focusedCell.row}-${this.focusedCell.col}-${this.uniqueId}`;
10955
+ }
10952
10956
  }
10953
10957
  setHostElementAriaLabel() {
10954
10958
  const parsed = parseColor(this.value, this.format);
@@ -538,8 +538,8 @@ const packageMetadata = {
538
538
  name: '@progress/kendo-angular-inputs',
539
539
  productName: 'Kendo UI for Angular',
540
540
  productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
541
- publishDate: 1678871261,
542
- version: '11.4.0',
541
+ publishDate: 1678967943,
542
+ version: '11.4.1-develop.2',
543
543
  licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
544
544
  };
545
545
 
@@ -10667,6 +10667,7 @@ class ColorPaletteComponent {
10667
10667
  row: 0,
10668
10668
  col: 0
10669
10669
  };
10670
+ this.activeCellId = `k-${this.focusedCell.row}-${this.focusedCell.col}-${this.uniqueId}`;
10670
10671
  }
10671
10672
  }
10672
10673
  /**
@@ -10717,6 +10718,9 @@ class ColorPaletteComponent {
10717
10718
  }
10718
10719
  this.focusedCell = this.service.getNextCell(this.focusedCell, horizontalStep, verticalStep);
10719
10720
  this.focusInComponent = true;
10721
+ if (this.focusedCell) {
10722
+ this.activeCellId = `k-${this.focusedCell.row}-${this.focusedCell.col}-${this.uniqueId}`;
10723
+ }
10720
10724
  }
10721
10725
  setHostElementAriaLabel() {
10722
10726
  const parsed = parseColor(this.value, this.format);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@progress/kendo-angular-inputs",
3
- "version": "11.4.0",
3
+ "version": "11.4.1-develop.2",
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",
@@ -33,19 +33,19 @@
33
33
  "@angular/platform-browser": "13 - 15",
34
34
  "@progress/kendo-drawing": "^1.17.2",
35
35
  "@progress/kendo-licensing": "^1.0.2",
36
- "@progress/kendo-angular-buttons": "11.4.0",
37
- "@progress/kendo-angular-common": "11.4.0",
38
- "@progress/kendo-angular-dialog": "11.4.0",
39
- "@progress/kendo-angular-intl": "11.4.0",
40
- "@progress/kendo-angular-l10n": "11.4.0",
41
- "@progress/kendo-angular-popup": "11.4.0",
42
- "@progress/kendo-angular-icons": "11.4.0",
36
+ "@progress/kendo-angular-buttons": "11.4.1-develop.2",
37
+ "@progress/kendo-angular-common": "11.4.1-develop.2",
38
+ "@progress/kendo-angular-dialog": "11.4.1-develop.2",
39
+ "@progress/kendo-angular-intl": "11.4.1-develop.2",
40
+ "@progress/kendo-angular-l10n": "11.4.1-develop.2",
41
+ "@progress/kendo-angular-popup": "11.4.1-develop.2",
42
+ "@progress/kendo-angular-icons": "11.4.1-develop.2",
43
43
  "rxjs": "^6.5.3 || ^7.0.0",
44
- "@progress/kendo-angular-upload": "11.4.0"
44
+ "@progress/kendo-angular-upload": "11.4.1-develop.2"
45
45
  },
46
46
  "dependencies": {
47
47
  "tslib": "^2.3.1",
48
- "@progress/kendo-angular-schematics": "11.4.0",
48
+ "@progress/kendo-angular-schematics": "11.4.1-develop.2",
49
49
  "@progress/kendo-common": "^0.2.2",
50
50
  "@progress/kendo-draggable": "^3.0.0",
51
51
  "@progress/kendo-inputs-common": "^3.1.0"