@refinitiv-ui/efx-grid 6.0.25 → 6.0.26

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.
@@ -98,11 +98,11 @@ declare class ColumnStackPlugin extends GridPlugin {
98
98
 
99
99
  public getStackMemberIds(stackId: string): (string)[];
100
100
 
101
- public getColumnIdsByIndex(columnIndex: number|(number)[]|null): (string)[];
101
+ public getColumnIdsByIndex(colIndices: number|(number)[]|null): (string)[];
102
102
 
103
- public getColumnIndicesByColumnIds(columnId: string|(string)[]|null): (string)[];
103
+ public getColumnIndicesByColumnIds(colIds: string|(string)[]|null): (string)[];
104
104
 
105
- public getColumnIdsByFields(field: string|(string)[]|null): (string)[];
105
+ public getColumnIdsByFields(fields: string|(string)[]|null): (string)[];
106
106
 
107
107
  public addColumnToStack(colRef: number|string|null, stackId: string): void;
108
108
 
@@ -1,5 +1,5 @@
1
1
  import Ext from "../../../../tr-grid-util/es6/Ext.js";
2
- import GroupDefinitions from "tr-grid-util/es6/GroupDefinitions.js"; // eslint-disable-line
2
+ import GroupDefinitions from "../../../../tr-grid-util/es6/GroupDefinitions.js"; // eslint-disable-line
3
3
  import ElementWrapper from "./components/ElementWrapper.js";
4
4
  import ILayoutGrid from "./ILayoutGrid.js"; // eslint-disable-line
5
5
  import LayoutGrid from "./LayoutGrid.js";
@@ -226,6 +226,8 @@ declare class Grid extends EventDispatcher {
226
226
 
227
227
  public getColumnDefinitionsById(colIds: (string)[]|null): ColumnDefinition|null;
228
228
 
229
+ public getRowType(rowRef: number|string|null): string;
230
+
229
231
  public getRowDefinition(rowRef: number|string|null): RowDefinition|null;
230
232
 
231
233
  public getRowDefinitions(): (RowDefinition)[];
@@ -314,7 +316,7 @@ declare class Grid extends EventDispatcher {
314
316
 
315
317
  declare function borders(gridOptions?: any): any;
316
318
 
317
- declare function colCount(rowRef: number|string|null): RowDefinition|null;
319
+ declare function colCount(rowRef: number|string|null): string;
318
320
 
319
321
  export { Grid };
320
322
  export default Grid;
@@ -15,6 +15,15 @@ declare namespace RowDefinition {
15
15
  hidden?: boolean|null
16
16
  };
17
17
 
18
+ type RowTypes = {
19
+ CONTENT: string,
20
+ CHAIN: string,
21
+ CONSTITUENT: string,
22
+ GROUP_HEADER: string,
23
+ SUBGROUP_HEADER: string,
24
+ GROUP_MEMBER: string
25
+ };
26
+
18
27
  }
19
28
 
20
29
  declare class RowDefinition {
@@ -35,6 +44,8 @@ declare class RowDefinition {
35
44
 
36
45
  public getDataId(): string;
37
46
 
47
+ public getType(): string;
48
+
38
49
  public setDataSource(dataSource: DataCache|null): void;
39
50
 
40
51
  public getDataSource(): DataCache|null;
@@ -125,7 +136,9 @@ declare class RowDefinition {
125
136
 
126
137
  declare const ROW_DEF: string;
127
138
 
139
+ declare const ROW_TYPES: RowDefinition.RowTypes|null;
140
+
128
141
  declare function rowData(userInput: string): boolean;
129
142
 
130
- export {RowDefinition, ROW_DEF};
143
+ export {RowDefinition, ROW_DEF, ROW_TYPES};
131
144
  export default RowDefinition;
@@ -72,7 +72,7 @@ export { ExtensionColumnOptions } from "./ExtensionColumnOptions";
72
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
- export { RowDefinition } from "./RealtimeGrid/RowDefinition";
75
+ export { RowDefinition, ROW_TYPES } from "./RealtimeGrid/RowDefinition";
76
76
  export { CompositeGrid } from "./CompositeGrid";
77
77
 
78
78
 
package/lib/versions.json CHANGED
@@ -11,8 +11,8 @@
11
11
  "tr-grid-column-formatting": "0.9.34",
12
12
  "tr-grid-column-grouping": "1.0.44",
13
13
  "tr-grid-column-resizing": "1.0.28",
14
- "tr-grid-column-selection": "1.0.25",
15
- "tr-grid-column-stack": "1.0.49",
14
+ "tr-grid-column-selection": "1.0.26",
15
+ "tr-grid-column-stack": "1.0.50",
16
16
  "tr-grid-conditional-coloring": "1.0.57",
17
17
  "tr-grid-content-wrap": "1.0.19",
18
18
  "tr-grid-contextmenu": "1.0.38",
@@ -22,7 +22,7 @@
22
22
  "tr-grid-pagination": "1.0.24",
23
23
  "tr-grid-percent-bar": "1.0.22",
24
24
  "tr-grid-printer": "1.0.16",
25
- "tr-grid-range-bar": "1.0.9",
25
+ "tr-grid-range-bar": "2.0.2",
26
26
  "tr-grid-row-dragging": "1.0.24",
27
27
  "tr-grid-row-filtering": "1.0.55",
28
28
  "tr-grid-row-grouping": "1.0.80",
package/package.json CHANGED
@@ -62,5 +62,5 @@
62
62
  "publishConfig": {
63
63
  "access": "public"
64
64
  },
65
- "version": "6.0.25"
65
+ "version": "6.0.26"
66
66
  }