@refinitiv-ui/efx-grid 6.0.121 → 6.0.122

Sign up to get free protection for your applications and to get access to all the features.
package/lib/grid/index.js CHANGED
@@ -1,3 +1,3 @@
1
1
  import {Grid} from "./lib/efx-grid.js";
2
2
  export {Grid}
3
- window.EFX_GRID = { version: "6.0.121" };
3
+ window.EFX_GRID = { version: "6.0.122" };
@@ -13210,7 +13210,7 @@ RowDefinition.prototype.initialize = function(rowOptions) {
13210
13210
  this._asSegment = val ? true : false;
13211
13211
  }
13212
13212
 
13213
- if(this._isChain) {
13213
+ if(this._isChain || this._asSegment) {
13214
13214
  this._collapsed = extractedOptions["collapsed"]; // Temporary state
13215
13215
  }
13216
13216
 
@@ -14348,6 +14348,7 @@ RowDefinition.extractRowOptions = function(rowOptions) {
14348
14348
  let permId = rowOptions["permId"];
14349
14349
  let chainRic = rowOptions["chainRic"];
14350
14350
  let collapsed = rowOptions["collapsed"];
14351
+ let asSegment = rowOptions["asSegment"];
14351
14352
  let asChain = rowOptions["asChain"];
14352
14353
  if(asChain == null && chainRic){
14353
14354
  asChain = true;
@@ -14360,6 +14361,8 @@ RowDefinition.extractRowOptions = function(rowOptions) {
14360
14361
  expanded = true;
14361
14362
  } else if(asChain) {
14362
14363
  expanded = false;
14364
+ } else if(asSegment) {
14365
+ expanded = true;
14363
14366
  }
14364
14367
 
14365
14368
  let extractedOptions = {};