@refinitiv-ui/efx-grid 6.0.25 → 6.0.26
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/core/dist/core.css +1 -1
- package/lib/core/dist/core.js +1 -1
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/grid/util/ElementFrameWork.js +1 -1
- package/lib/core/es6/tr-grid-theme.js +1 -1
- package/lib/grid/index.js +1 -1
- package/lib/rt-grid/dist/rt-grid.js +61 -2
- package/lib/rt-grid/dist/rt-grid.min.js +1 -1
- package/lib/rt-grid/es6/Grid.d.ts +3 -1
- package/lib/rt-grid/es6/Grid.js +8 -1
- package/lib/rt-grid/es6/RowDefinition.d.ts +14 -1
- package/lib/rt-grid/es6/RowDefinition.js +54 -2
- package/lib/tr-grid-column-selection/es6/ColumnSelection.d.ts +13 -11
- package/lib/tr-grid-column-selection/es6/ColumnSelection.js +233 -81
- package/lib/tr-grid-column-stack/es6/ColumnStack.js +5 -3
- package/lib/tr-grid-range-bar/es6/RangeBar.d.ts +18 -9
- package/lib/tr-grid-range-bar/es6/RangeBar.js +318 -139
- package/lib/types/es6/ColumnSelection.d.ts +13 -11
- package/lib/types/es6/ColumnStack.d.ts +3 -3
- package/lib/types/es6/Core/grid/Core.d.ts +1 -1
- package/lib/types/es6/RealtimeGrid/Grid.d.ts +3 -1
- package/lib/types/es6/RealtimeGrid/RowDefinition.d.ts +14 -1
- package/lib/types/es6/index.d.ts +1 -1
- package/lib/versions.json +3 -3
- package/package.json +1 -1
@@ -98,11 +98,11 @@ declare class ColumnStackPlugin extends GridPlugin {
|
|
98
98
|
|
99
99
|
public getStackMemberIds(stackId: string): (string)[];
|
100
100
|
|
101
|
-
public getColumnIdsByIndex(
|
101
|
+
public getColumnIdsByIndex(colIndices: number|(number)[]|null): (string)[];
|
102
102
|
|
103
|
-
public getColumnIndicesByColumnIds(
|
103
|
+
public getColumnIndicesByColumnIds(colIds: string|(string)[]|null): (string)[];
|
104
104
|
|
105
|
-
public getColumnIdsByFields(
|
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):
|
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;
|
package/lib/types/es6/index.d.ts
CHANGED
@@ -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.
|
15
|
-
"tr-grid-column-stack": "1.0.
|
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": "
|
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