@refinitiv-ui/efx-grid 6.0.164 → 6.0.166
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/core/dist/core.js +8 -6
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/grid/Core.js +8 -6
- package/lib/grid/index.js +1 -1
- package/lib/rt-grid/dist/rt-grid.js +12 -8
- package/lib/rt-grid/dist/rt-grid.min.js +1 -1
- package/lib/rt-grid/es6/Grid.js +4 -2
- package/package.json +1 -1
package/lib/core/dist/core.js
CHANGED
@@ -26263,7 +26263,7 @@ Core_Core.prototype._hasPendingRowChange = false;
|
|
26263
26263
|
* @return {string}
|
26264
26264
|
*/
|
26265
26265
|
Core_Core.getVersion = function () {
|
26266
|
-
return "5.2.
|
26266
|
+
return "5.2.3";
|
26267
26267
|
};
|
26268
26268
|
/** {@link ElementWrapper#dispose}
|
26269
26269
|
* @override
|
@@ -26972,11 +26972,13 @@ Core_Core.prototype.getCellInfo = function (cellRef) {
|
|
26972
26972
|
let ss = this.getSectionSettings(sectionName);
|
26973
26973
|
if(ss) {
|
26974
26974
|
let s = ss.getSection();
|
26975
|
-
|
26976
|
-
if(
|
26977
|
-
|
26978
|
-
mouseInfo
|
26979
|
-
|
26975
|
+
// WARNING: getCellInfo does not required cell to exist in the DOM (i.e., virtualized or hidden cells are included)
|
26976
|
+
if(colIndex >= 0 && colIndex < s.getColumnCount() &&
|
26977
|
+
rowIndex >= 0 && rowIndex < s.getRowCount()) {
|
26978
|
+
mouseInfo = {
|
26979
|
+
"colIndex": colIndex,
|
26980
|
+
"rowIndex": rowIndex
|
26981
|
+
};
|
26980
26982
|
ss.extendEventArg(mouseInfo);
|
26981
26983
|
}
|
26982
26984
|
}
|