@refinitiv-ui/efx-grid 6.0.50 → 6.0.51
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/core/dist/core.js +10 -8
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/data/DataTable.d.ts +1 -1
- package/lib/core/es6/data/DataTable.js +3 -3
- package/lib/core/es6/data/DataView.d.ts +1 -1
- package/lib/core/es6/data/DataView.js +3 -3
- package/lib/core/es6/grid/Core.js +1 -1
- package/lib/core/es6/grid/plugins/SortableTitlePlugin.js +3 -1
- package/lib/grid/index.js +1 -1
- package/lib/rt-grid/dist/rt-grid.js +1 -2
- package/lib/rt-grid/dist/rt-grid.min.js +1 -1
- package/lib/rt-grid/es6/ColumnDefinition.js +1 -2
- package/lib/types/es6/Core/data/DataTable.d.ts +1 -1
- package/lib/types/es6/Core/data/DataView.d.ts +3 -1
- package/lib/types/es6/Core/data/Segment.d.ts +2 -0
- package/package.json +1 -1
@@ -1070,8 +1070,7 @@ ColumnDefinition.prototype._retrieveNestedFields = function(fields) {
|
|
1070
1070
|
*/
|
1071
1071
|
ColumnDefinition.prototype._defaultRenderer = function(e) {
|
1072
1072
|
var rowDef = /** @type{RowDefinition} */(e["dataValue"]);
|
1073
|
-
|
1074
|
-
e["cell"].setContent(data);
|
1073
|
+
e["cell"].setContent(rowDef ? rowDef.getData(this._field) : null);
|
1075
1074
|
};
|
1076
1075
|
/** @private
|
1077
1076
|
* @param {Object} e
|
@@ -112,7 +112,7 @@ declare class DataTable extends DataCache {
|
|
112
112
|
|
113
113
|
public getSegmentChildIds(segmentId: string): (string)[]|null;
|
114
114
|
|
115
|
-
public sortSeparators(sortLogics: ((...params: any[]) => any)|(((...params: any[]) => any))[]|null, sortOrders
|
115
|
+
public sortSeparators(sortLogics: ((...params: any[]) => any)|(((...params: any[]) => any))[]|any|null, sortOrders?: (number)[]|null, cids?: (string)[]|null): boolean;
|
116
116
|
|
117
117
|
public sortSegments(compare: ((...params: any[]) => any)|null): boolean;
|
118
118
|
|
@@ -272,10 +272,12 @@ declare class DataView extends EventDispatcher {
|
|
272
272
|
|
273
273
|
public getSegmentChildIds(segmentRef: string|number|null): (string)[]|null;
|
274
274
|
|
275
|
-
public sortSeparators(sortLogics: (((...params: any[]) => any))[]|null, sortOrders
|
275
|
+
public sortSeparators(sortLogics: ((...params: any[]) => any)|(((...params: any[]) => any))[]|any|null, sortOrders?: (number)[]|null, cids?: (string)[]|null): void;
|
276
276
|
|
277
277
|
public sortSegments(compare: ((...params: any[]) => any)|null): void;
|
278
278
|
|
279
|
+
public enableEmptySegmentFiltering(enabled?: boolean|null): void;
|
280
|
+
|
279
281
|
public setSegmentClassification(segmentRef: string|number|null, fields: string|(string)[]|null): boolean;
|
280
282
|
|
281
283
|
public getWrapSize(): number;
|
package/package.json
CHANGED