cronapp-lib-js 2.8.7 → 2.8.8

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.
@@ -28,6 +28,8 @@
28
28
  //FIX_027 - CRONAPP-4621 Permitir validação reativa
29
29
  //FIX_028 - CRONAPP-4939 Criar componente breadcumb (Adicionado componente breadcrumb)
30
30
  //FIX_029 - CRONAPP-5473 Erro no componente Caixa de checagem
31
+ //FIX_030 - CRONAPP-6933 Caixa de Seleção dinâmica trava e recarrega em loop quando são acessado pelas tecla Tab+seta para baixo. Componente não fica em foco quando acessado com a tecla Tab
32
+
31
33
 
32
34
  /**
33
35
  * Kendo UI v2019.1.220 (http://www.telerik.com/kendo-ui)
@@ -68150,9 +68152,17 @@
68150
68152
  var rows = this.tbody.children(), classesRegEx = /k-grouping-row|k-detail-row|k-group-footer/, idx = tr.sectionRowIndex, j, correctIdx;
68151
68153
  correctIdx = idx;
68152
68154
  for (j = 0; j < idx; j++) {
68153
- if (classesRegEx.test(rows[j].className)) {
68155
+ //BEGIN FIX FIX_030
68156
+ /*OLD
68157
+ if (classesRegEx.test(rows[j].className)) {
68158
+ correctIdx--;
68159
+ }
68160
+ */
68161
+ //NEW
68162
+ if (rows[j] && rows[j].className && classesRegEx.test(rows[j].className)) {
68154
68163
  correctIdx--;
68155
68164
  }
68165
+ //END FIX_030
68156
68166
  }
68157
68167
  return this._data[correctIdx];
68158
68168
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cronapp-lib-js",
3
- "version": "2.8.7",
3
+ "version": "2.8.8",
4
4
  "description": "Javascript library for CronApp's projects",
5
5
  "main": "index.js",
6
6
  "scripts": {