@refinitiv-ui/efx-grid 6.0.48 → 6.0.49

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/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.48" };
3
+ window.EFX_GRID = { version: "6.0.49" };
@@ -276,8 +276,6 @@ declare class DataView extends EventDispatcher {
276
276
 
277
277
  public sortSegments(compare: ((...params: any[]) => any)|null): void;
278
278
 
279
- public enableEmptySegmentFiltering(enabled?: boolean|null): void;
280
-
281
279
  public setSegmentClassification(segmentRef: string|number|null, fields: string|(string)[]|null): boolean;
282
280
 
283
281
  public getWrapSize(): number;
@@ -27,8 +27,6 @@ declare class Segment extends EventDispatcher {
27
27
 
28
28
  public getChildIds(): (string)[];
29
29
 
30
- public getChildren(): any;
31
-
32
30
  public getChildCount(): number;
33
31
 
34
32
  public getClassification(): (string)[]|null;
@@ -405,6 +405,10 @@ declare class Core extends ElementWrapper {
405
405
 
406
406
  public getColumnGroupChildIds(groupId: string): (string)[]|null;
407
407
 
408
+ public getValidColumnList(colIds: (string)[]|null, columnMap?: any): (string)[];
409
+
410
+ public createColumnMap(colIds?: (string)[]|null): any;
411
+
408
412
  public startBatch(batchType: string): boolean;
409
413
 
410
414
  public stopBatch(batchType: string): boolean;
package/package.json CHANGED
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "version": "6.0.48"
69
+ "version": "6.0.49"
70
70
  }