@refinitiv-ui/efx-grid 6.0.74 → 6.0.76
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.
- package/lib/core/dist/core.js +2 -2
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/data/DataView.js +1 -1
- package/lib/core/es6/grid/Core.js +1 -1
- package/lib/grid/index.js +1 -1
- package/lib/grid/lib/efx-grid.js +2 -20
- package/lib/row-segmenting/es6/RowSegmenting.js +14 -0
- package/lib/tr-grid-column-stack/es6/ColumnStack.js +0 -20
- package/lib/types/es6/CellSelection.d.ts +2 -0
- package/lib/versions.json +3 -3
- package/package.json +1 -1
    
        package/lib/core/dist/core.js
    CHANGED
    
    | @@ -21688,7 +21688,7 @@ DataView.prototype._onDataChanged = function (e) { | |
| 21688 21688 | 
             
            		var event = events[0];
         | 
| 21689 21689 | 
             
            		if (event["globalChange"]) {
         | 
| 21690 21690 | 
             
            			this._updateRowIds(); // Reset all row ids and perform sorting
         | 
| 21691 | 
            -
            			this._dispatchDataChange( | 
| 21691 | 
            +
            			this._dispatchDataChange(event);
         | 
| 21692 21692 | 
             
            			return;
         | 
| 21693 21693 | 
             
            		}
         | 
| 21694 21694 |  | 
| @@ -26109,7 +26109,7 @@ Core_Core.prototype._firstRendered = false; | |
| 26109 26109 | 
             
            * @return {string}
         | 
| 26110 26110 | 
             
            */
         | 
| 26111 26111 | 
             
            Core_Core.getVersion = function () {
         | 
| 26112 | 
            -
            	return "5.1. | 
| 26112 | 
            +
            	return "5.1.82";
         | 
| 26113 26113 | 
             
            };
         | 
| 26114 26114 | 
             
            /** {@link ElementWrapper#dispose}
         | 
| 26115 26115 | 
             
            * @override
         |