@refinitiv-ui/efx-grid 6.0.76 → 6.0.78
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/column-dragging/es6/ColumnDragging.js +6 -5
- package/lib/core/dist/core.js +21 -3
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/data/DataView.d.ts +4 -0
- package/lib/core/es6/data/DataView.js +19 -1
- package/lib/core/es6/grid/Core.js +1 -1
- package/lib/core/es6/grid/components/Scrollbar.js +1 -1
- package/lib/grid/index.js +1 -1
- package/lib/tr-grid-checkbox/es6/Checkbox.d.ts +6 -0
- package/lib/tr-grid-checkbox/es6/Checkbox.js +296 -232
- package/lib/types/es6/Checkbox.d.ts +6 -0
- package/lib/types/es6/Core/data/DataView.d.ts +4 -0
- package/lib/versions.json +3 -3
- package/package.json +1 -1
@@ -48,6 +48,12 @@ declare class CheckboxPlugin extends GridPlugin {
|
|
48
48
|
|
49
49
|
public deselectAll(check: boolean): void;
|
50
50
|
|
51
|
+
public selectCheckboxes(rowRefs: (number|string)[]|null, checked: boolean): void;
|
52
|
+
|
53
|
+
public deselectCheckboxes(rowRefs: (number|string)[]|null, checked: boolean): void;
|
54
|
+
|
55
|
+
public setCheckStates(rowRefs: (number|string)[]|null, checked: boolean): void;
|
56
|
+
|
51
57
|
public checkAll(checked: boolean): void;
|
52
58
|
|
53
59
|
public setAllCheckStates(checked: boolean): void;
|
@@ -194,6 +194,10 @@ declare class DataView extends EventDispatcher {
|
|
194
194
|
|
195
195
|
public getDefaultCollapse(): boolean;
|
196
196
|
|
197
|
+
public isCollapsible(): boolean;
|
198
|
+
|
199
|
+
public disableCollapsing(bool?: boolean|null): void;
|
200
|
+
|
197
201
|
public getVisibleRowCount(): number;
|
198
202
|
|
199
203
|
public isRowDataInGroup(rowData: any, groupID?: string|null): boolean;
|
package/lib/versions.json
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
{
|
2
2
|
"tr-grid-util": "1.3.134",
|
3
3
|
"tr-grid-printer": "1.0.17",
|
4
|
-
"@grid/column-dragging": "1.0.
|
4
|
+
"@grid/column-dragging": "1.0.15",
|
5
5
|
"@grid/row-segmenting": "1.0.30",
|
6
|
-
"@grid/statistics-row": "1.0.
|
6
|
+
"@grid/statistics-row": "1.0.16",
|
7
7
|
"@grid/zoom": "1.0.11",
|
8
8
|
"tr-grid-auto-tooltip": "1.1.6",
|
9
9
|
"tr-grid-cell-selection": "1.0.34",
|
10
|
-
"tr-grid-checkbox": "1.0.
|
10
|
+
"tr-grid-checkbox": "1.0.61",
|
11
11
|
"tr-grid-column-fitter": "1.0.39",
|
12
12
|
"tr-grid-column-formatting": "0.9.35",
|
13
13
|
"tr-grid-column-grouping": "1.0.57",
|
package/package.json
CHANGED