@refinitiv-ui/efx-grid 6.0.23 → 6.0.24

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.23" };
3
+ window.EFX_GRID = { version: "6.0.24" };
@@ -91,7 +91,7 @@ declare class ColumnDefinition {
91
91
 
92
92
  public isRealTimeField(): boolean;
93
93
 
94
- public isTimeSeriesField(): boolean;
94
+ public isTimeSeries(): boolean;
95
95
 
96
96
  public isFormulaField(): boolean;
97
97
 
@@ -18,7 +18,13 @@ declare namespace FieldDefinition {
18
18
 
19
19
  function setFieldCaching(caching: boolean): void;
20
20
 
21
- function isTimeSeriesField(field: string): boolean;
21
+ function isFormula(field: string): boolean;
22
+
23
+ function isAdc(field: string): boolean;
24
+
25
+ function isRealTimeField(field: string): boolean;
26
+
27
+ function isTimeSeries(field: string): boolean;
22
28
 
23
29
  }
24
30
 
@@ -69,7 +69,7 @@ export { ExtensionColumnOptions } from "./ExtensionColumnOptions";
69
69
 
70
70
 
71
71
  // Core
72
- export { Core, Core as CoreGrid, DataView } from "./Core";
72
+ export { Core, Core as CoreGrid, LayoutGrid, DataTable, DataView, Cell, CellSpan, CellSpans, Column, Scrollbar, HScrollbar, VScrollbar, VirtualizedLayoutGrid, SectionSettings, SortableTitlePlugin } from "./Core";
73
73
  export { Grid as RealtimeGrid } from "./RealtimeGrid";
74
74
  export { ColumnDefinition } from "./RealtimeGrid/ColumnDefinition";
75
75
  export { RowDefinition } from "./RealtimeGrid/RowDefinition";
package/package.json CHANGED
@@ -62,5 +62,5 @@
62
62
  "publishConfig": {
63
63
  "access": "public"
64
64
  },
65
- "version": "6.0.23"
65
+ "version": "6.0.24"
66
66
  }