@refinitiv-ui/efx-grid 6.0.85 → 6.0.87

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. package/lib/column-format-dialog/lib/column-format-dialog.js +5 -8
  2. package/lib/column-format-dialog/lib/preview-table.d.ts +1 -1
  3. package/lib/column-format-dialog/lib/preview-table.js +15 -15
  4. package/lib/column-selection-dialog/themes/base.less +0 -1
  5. package/lib/column-selection-dialog/themes/elemental/dark/column-selection-dialog.js +1 -1
  6. package/lib/column-selection-dialog/themes/elemental/dark/es5/all-elements.js +1 -1
  7. package/lib/column-selection-dialog/themes/elemental/light/column-selection-dialog.js +1 -1
  8. package/lib/column-selection-dialog/themes/elemental/light/es5/all-elements.js +1 -1
  9. package/lib/column-selection-dialog/themes/halo/dark/column-selection-dialog.js +1 -1
  10. package/lib/column-selection-dialog/themes/halo/dark/es5/all-elements.js +1 -1
  11. package/lib/column-selection-dialog/themes/halo/light/column-selection-dialog.js +1 -1
  12. package/lib/column-selection-dialog/themes/halo/light/es5/all-elements.js +1 -1
  13. package/lib/column-selection-dialog/themes/solar/charcoal/column-selection-dialog.js +1 -1
  14. package/lib/column-selection-dialog/themes/solar/charcoal/es5/all-elements.js +1 -1
  15. package/lib/column-selection-dialog/themes/solar/pearl/column-selection-dialog.js +1 -1
  16. package/lib/column-selection-dialog/themes/solar/pearl/es5/all-elements.js +1 -1
  17. package/lib/core/dist/core.js +50 -11
  18. package/lib/core/dist/core.min.js +1 -1
  19. package/lib/core/es6/data/DataView.d.ts +4 -0
  20. package/lib/core/es6/data/DataView.js +24 -1
  21. package/lib/core/es6/grid/Core.d.ts +2 -0
  22. package/lib/core/es6/grid/Core.js +26 -10
  23. package/lib/grid/index.js +1 -1
  24. package/lib/rt-grid/dist/rt-grid.js +10 -10
  25. package/lib/rt-grid/dist/rt-grid.min.js +1 -1
  26. package/lib/rt-grid/es6/ColumnDefinition.js +2 -2
  27. package/lib/rt-grid/es6/RowDefinition.js +3 -3
  28. package/lib/tr-grid-checkbox/es6/Checkbox.d.ts +2 -0
  29. package/lib/tr-grid-checkbox/es6/Checkbox.js +38 -0
  30. package/lib/tr-grid-column-grouping/es6/ColumnGrouping.js +3 -4
  31. package/lib/tr-grid-filter-input/es6/FilterInput.js +1 -1
  32. package/lib/tr-grid-range-bar/es6/RangeBar.js +4 -1
  33. package/lib/tr-grid-row-filtering/es6/RowFiltering.d.ts +2 -0
  34. package/lib/tr-grid-row-filtering/es6/RowFiltering.js +3 -3
  35. package/lib/tr-grid-util/es6/Dom.d.ts +1 -1
  36. package/lib/tr-grid-util/es6/Dom.js +1 -1
  37. package/lib/tr-grid-util/es6/ExpressionParser.js +1 -1
  38. package/lib/tr-grid-util/es6/FilterBuilder.d.ts +1 -1
  39. package/lib/tr-grid-util/es6/FilterBuilder.js +1 -1
  40. package/lib/tr-grid-util/es6/PercentBar.d.ts +1 -1
  41. package/lib/tr-grid-util/es6/PercentBar.js +1 -1
  42. package/lib/tr-grid-util/es6/RangeBar.d.ts +1 -1
  43. package/lib/tr-grid-util/es6/RangeBar.js +8 -7
  44. package/lib/tr-grid-util/es6/TextHighlighter.d.ts +0 -2
  45. package/lib/tr-grid-util/es6/TextHighlighter.js +1 -6
  46. package/lib/tr-grid-util/es6/formula/Formula.js +1 -1
  47. package/lib/tr-grid-util/es6/formula/VariableToken.js +1 -1
  48. package/lib/tr-grid-util/es6/formula/functions/Excel.d.ts +1 -1
  49. package/lib/tr-grid-util/es6/formula/functions/Excel.js +1 -1
  50. package/lib/tr-grid-util/es6/index.js +1 -1
  51. package/lib/tr-grid-util/es6/jet/DataGenerator.d.ts +1 -1
  52. package/lib/tr-grid-util/es6/jet/DataGenerator.js +1 -1
  53. package/lib/types/es6/Checkbox.d.ts +2 -0
  54. package/lib/types/es6/Core/data/DataView.d.ts +4 -0
  55. package/lib/types/es6/Core/grid/Core.d.ts +2 -0
  56. package/lib/types/es6/RowFiltering.d.ts +2 -0
  57. package/lib/versions.json +8 -8
  58. package/package.json +1 -1
@@ -799,7 +799,7 @@ ColumnDefinition.prototype.getConfigObject = function(colOptions) {
799
799
  }
800
800
 
801
801
  value = core.getMinimumColumnWidth(colIndex);
802
- if(value !== 0) {
802
+ if(value > 0) {
803
803
  obj["minWidth"] = value;
804
804
  }
805
805
 
@@ -901,7 +901,7 @@ ColumnDefinition.prototype.getChildren = function() {
901
901
  };
902
902
  /**
903
903
  * @private
904
- * @param {string} colDef Child column definition
904
+ * @param {ColumnDefinition} colDef Child column definition
905
905
  */
906
906
  ColumnDefinition.prototype._addChild = function(colDef) {
907
907
  if(this === colDef || this._children.indexOf(colDef) > -1) {
@@ -116,7 +116,7 @@ RowDefinition.prototype._dataId = ""; // Data id can be different from rowId for
116
116
  * @private
117
117
  */
118
118
  RowDefinition.prototype._dc = null;
119
- /** @type {DataTable}
119
+ /** @type {DataView}
120
120
  * @private
121
121
  */
122
122
  RowDefinition.prototype._view = null;
@@ -394,8 +394,8 @@ RowDefinition.prototype.getConfigObject = function(rowOptions) {
394
394
  }
395
395
 
396
396
  val = this._realTime;
397
- if(val !== true) {
398
- obj["realTime"] = val;
397
+ if(!val) {
398
+ obj["realTime"] = false;
399
399
  }
400
400
 
401
401
  val = this._permId;
@@ -76,5 +76,7 @@ declare class CheckboxPlugin extends GridPlugin {
76
76
 
77
77
  declare function val(gridOptions?: any): any;
78
78
 
79
+ declare function newState(sectionRef: any, rowIndex: number, context?: any): void;
80
+
79
81
  export default CheckboxPlugin;
80
82
  export { CheckboxPlugin, CheckboxPlugin as Checkbox, CheckboxPlugin as CheckboxExtension };
@@ -1425,6 +1425,44 @@ CheckboxPlugin.prototype._onCheckboxChanged = function (e, toggling) {
1425
1425
 
1426
1426
  e.stopPropagation();
1427
1427
  };
1428
+
1429
+ /** @public
1430
+ * @description Check/Uncheck a specified row by a simulated mouse click input. This is for testing purpose.
1431
+ * @ignore
1432
+ * @param {Object} sectionRef Grid SectionReference object
1433
+ * @param {number} rowIndex
1434
+ * @param {Object=} context
1435
+ */
1436
+ CheckboxPlugin.prototype.toggleCheckByMouse = function(sectionRef, rowIndex, context) {
1437
+ var eventObj = context || {};
1438
+ eventObj.sectionType = sectionRef;
1439
+ eventObj = this._mockMouseEvent(this._displayColumn, rowIndex, eventObj);
1440
+
1441
+ var checkbox = this.getCheckbox(sectionRef, rowIndex);
1442
+ if(!checkbox) {
1443
+ return;
1444
+ }
1445
+ var curState = CheckboxPlugin._getCheckState(checkbox);
1446
+ CheckboxPlugin._setBooleanProp(checkbox, "checked", curState !== "checked");
1447
+ eventObj.currentTarget = eventObj.target = checkbox;
1448
+
1449
+ this._onCheckboxMousedown(eventObj);
1450
+ this._onCheckboxClicked(eventObj);
1451
+ };
1452
+ /** @public
1453
+ * @description Supply an keyboard input. This is for testing purpose.
1454
+ * @ignore
1455
+ * @param {string} keyName
1456
+ * @param {number} rowIndex
1457
+ * @param {Object} context
1458
+ */
1459
+ CheckboxPlugin.prototype.supplyKey = function(keyName, rowIndex, context) {
1460
+ var checkbox = this.getCheckbox("content", rowIndex);
1461
+ var eventObj = this._mockKeyboardEvent(keyName, context);
1462
+ eventObj.currentTarget = eventObj.target = checkbox;
1463
+ this._onCheckboxKeydown(eventObj);
1464
+ };
1465
+
1428
1466
  /** @private
1429
1467
  * @param {Event} e
1430
1468
  */
@@ -161,9 +161,7 @@ ColumnGroupingPlugin._toGroupDefinition = function (obj, groupId) {
161
161
  */
162
162
  ColumnGroupingPlugin._cloneObject = function (obj) {
163
163
  var newObj = cloneObject(obj);
164
- if (Array.isArray(newObj.children)) {
165
- newObj.children = newObj.children;
166
- } else {
164
+ if (!Array.isArray(newObj.children)) {
167
165
  newObj.children = [];
168
166
  }
169
167
  return newObj;
@@ -548,7 +546,8 @@ ColumnGroupingPlugin.prototype._evaluateGroupStructure = function () {
548
546
  this._maxDepth = maxDepth + 1; // Column header depth = maximum group depth + 1
549
547
  };
550
548
 
551
- /** @private Add pinning state to group definition for further verification.
549
+ /** Add pinning state to group definition for further verification.
550
+ * @private
552
551
  * @param {Object} groupDef
553
552
  * @param {string} side
554
553
  */
@@ -748,7 +748,7 @@ FilterInputPlugin.prototype.updateUI = function (colIndex, text) {
748
748
  };
749
749
  /** @private
750
750
  * @param {number} colIndex
751
- * @param {string} text
751
+ * @param {string|number} text
752
752
  * @param {Object=} textMap
753
753
  * @return {Object} Column option
754
754
  */
@@ -1,4 +1,4 @@
1
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
2
  import { Ext } from '../../tr-grid-util/es6/Ext.js';
3
3
  import { GridPlugin } from '../../tr-grid-util/es6/GridPlugin.js';
4
4
  import { ElfUtil } from '../../tr-grid-util/es6/ElfUtil.js';
@@ -477,6 +477,9 @@ RangeBarPlugin.prototype._onPostSectionBinding = function (e) {
477
477
  continue;
478
478
  }
479
479
  var rowData = this._getRowData(dataRows[r]);
480
+ if (!rowData) {
481
+ continue;
482
+ }
480
483
  var rangeBarData = _getRangeBarData(rBarOpt, rowData);
481
484
  var low = rangeBarData.low;
482
485
  var last = rangeBarData.last;
@@ -77,6 +77,8 @@ declare class RowFilteringPlugin extends GridPlugin {
77
77
 
78
78
  public setColumnFilter(colIndex: number, exp: RowFilteringPlugin.Expression|null, ctx?: (any|string)|null): boolean;
79
79
 
80
+ public getColumnFilterExpression(colIndex: number): RowFilteringPlugin.Expression|null;
81
+
80
82
  public removeFilter(funcRef: ((...params: any[]) => any)|string|null): boolean;
81
83
 
82
84
  public removeColumnFilters(colIndex: number): boolean;
@@ -680,7 +680,7 @@ RowFilteringPlugin.prototype.addColumnFilter = function (colIndex, exp, ctx) {
680
680
  * );
681
681
  */
682
682
  RowFilteringPlugin.prototype.setColumnFilter = function (colIndex, exp, ctx) {
683
- var curExp = this._getColumnExpression(colIndex);
683
+ var curExp = this.getColumnFilterExpression(colIndex);
684
684
  if (curExp === exp) {
685
685
  return false;
686
686
  }
@@ -691,11 +691,11 @@ RowFilteringPlugin.prototype.setColumnFilter = function (colIndex, exp, ctx) {
691
691
  }
692
692
  return removed || added;
693
693
  };
694
- /** @private
694
+ /** @public
695
695
  * @param {number} colIndex
696
696
  * @return {RowFilteringPlugin~Expression}
697
697
  */
698
- RowFilteringPlugin.prototype._getColumnExpression = function (colIndex) {
698
+ RowFilteringPlugin.prototype.getColumnFilterExpression = function (colIndex) {
699
699
  var colSettings = this._getUserColumnSettings(colIndex);
700
700
  return colSettings.expression || null;
701
701
  };
@@ -6,7 +6,7 @@ declare namespace Dom {
6
6
 
7
7
  function div(className?: string|null): Element;
8
8
 
9
- function text(textContent?: string|null, className?: string|null): Element;
9
+ function text(textContent?: (string|number)|null, className?: string|null): Element;
10
10
 
11
11
  function appendChild(parentElem: Element|null, children: Node|any[]|null): Element|null;
12
12
 
@@ -27,7 +27,7 @@ Dom.div = function(className) {
27
27
  /** Shorthand for creating a span element with textContent
28
28
  * @public
29
29
  * @function
30
- * @param {string=} textContent
30
+ * @param {(string|number)=} textContent
31
31
  * @param {string=} className
32
32
  * @return {!Element}
33
33
  */
@@ -42,7 +42,7 @@ var OperatorFunctions = {
42
42
  "!": function(lhs, rhs){ return !lhs; },
43
43
  "!!": function(lhs, rhs){ return !!lhs; }
44
44
  };
45
- /** @type {Object.<string, Function>}
45
+ /** @type {Object.<string, number>}
46
46
  * @private
47
47
  * @const
48
48
  */
@@ -32,7 +32,7 @@ declare class FilterBuilder {
32
32
 
33
33
  public setDataAccessors(rawDataAccessor?: ((...params: any[]) => any)|null, formattedDataAccessor?: ((...params: any[]) => any)|null): void;
34
34
 
35
- public addCondition(oper: string, value: string|number|Date|null, connector?: string|null, useUTCTime?: boolean|null): boolean;
35
+ public addCondition(oper: string, value: string|number|boolean|Date|null, connector?: string|null, useUTCTime?: boolean|null): boolean;
36
36
 
37
37
  public addConditions(conditions: FilterBuilder.Conditions|null): number;
38
38
 
@@ -375,7 +375,7 @@ FilterBuilder.prototype.setDataAccessors = function(rawDataAccessor, formattedDa
375
375
  };
376
376
  /** @public
377
377
  * @param {string} oper Operator id (e.g., "GT", "CONT", "EQ")
378
- * @param {string|number|Date} value If date type operator is specified, this should be accompanied with useUTCTime flag to indicate whether local or UTC time to be used.
378
+ * @param {string|number|boolean|Date} value If date type operator is specified, this should be accompanied with useUTCTime flag to indicate whether local or UTC time to be used.
379
379
  * @param {string=} connector Possible values are "OR" and "AND"
380
380
  * @param {boolean=} useUTCTime If the value is not specified, the default setting will be used
381
381
  * @return {boolean} Return true, if the new condition is added
@@ -37,7 +37,7 @@ declare class PercentBar {
37
37
 
38
38
  public hideZeroValue(hidden?: boolean|null): boolean;
39
39
 
40
- public setText(txt: string): void;
40
+ public setText(txt: string|number|null): void;
41
41
 
42
42
  public hideText(hidden?: boolean|null): boolean;
43
43
 
@@ -318,7 +318,7 @@ PercentBar.prototype.hideZeroValue = function (hidden) {
318
318
  };
319
319
 
320
320
  /** @public
321
- * @param {string} txt
321
+ * @param {string|number} txt
322
322
  */
323
323
  PercentBar.prototype.setText = function (txt) {
324
324
  if(!this._invalid) {
@@ -23,7 +23,7 @@ declare class RangeBar {
23
23
 
24
24
  public setPercent(percent?: number|null): void;
25
25
 
26
- public isPercentNaN(): boolean;
26
+ public isValid(): boolean;
27
27
 
28
28
  public isInvalid(): boolean;
29
29
 
@@ -137,7 +137,7 @@ RangeBar.prototype.setStyles = function(obj) {
137
137
  }
138
138
  }
139
139
 
140
- if(!this.isPercentNaN()) {
140
+ if(!this.isValid()) {
141
141
  this._elem.style.backgroundColor = this._styles["trackColor"];
142
142
  }
143
143
  if(this._styles["fontColor"] != null) {
@@ -185,7 +185,7 @@ RangeBar.prototype.getPercent = function() {
185
185
  RangeBar.prototype.setPercent = function(percent) {
186
186
  percent = RangeBar._limitPercent(percent);
187
187
  if(this._percent !== percent) {
188
- if(this._percent === this._percent || percent === percent) { // Prevent unnecessary update by checking NaN
188
+ if(this.isValid() || percent === percent) { // Prevent unnecessary update by checking NaN
189
189
  this._percent = percent;
190
190
  this._updateUI();
191
191
  }
@@ -226,20 +226,21 @@ RangeBar._limitPercent = function(percent) {
226
226
  /** @public
227
227
  * @return {boolean}
228
228
  */
229
- RangeBar.prototype.isPercentNaN = function() {
229
+ RangeBar.prototype.isValid = function() {
230
230
  return this._percent === this._percent;
231
231
  };
232
232
 
233
- /** Alias to {@link RangeBar#isPercentNaN}
234
- * @public
233
+ /** @public
235
234
  * @function
236
235
  * @return {boolean}
237
236
  */
238
- RangeBar.prototype.isInvalid = RangeBar.prototype.isPercentNaN;
237
+ RangeBar.prototype.isInvalid = function() {
238
+ return !this.isValid();
239
+ };
239
240
 
240
241
  /** @private */
241
242
  RangeBar.prototype._updateUI = function() {
242
- if(this.isPercentNaN()) {
243
+ if(this.isValid()) {
243
244
  var percent = ((this._percent * 10000) | 0) / 10000; // rounding number
244
245
  this._slider.style.left = "calc(" +
245
246
  (percent * 100) +
@@ -6,8 +6,6 @@ declare namespace TextHighlighter {
6
6
 
7
7
  const spaces: RegExp|null;
8
8
 
9
- const spaceTrimer: RegExp|null;
10
-
11
9
  const defaultTag: string;
12
10
 
13
11
  }
@@ -12,11 +12,6 @@ TextHighlighter.invalidChars = /[^\w-_ .]+/g;
12
12
  * @public
13
13
  */
14
14
  TextHighlighter.spaces = /\s+/;
15
- /** /^\s+|\s+$/g
16
- * @type {RegExp}
17
- * @public
18
- */
19
- TextHighlighter.spaceTrimer = /^\s+|\s+$/g;
20
15
  /** Default is &lt;mark> tag
21
16
  * @type {string}
22
17
  * @public
@@ -256,7 +251,7 @@ TextHighlighter.buildRule = function(txt, caseSensitive) {
256
251
 
257
252
  if(txt) {
258
253
  txt = txt.replace(TextHighlighter.invalidChars, " ");
259
- txt = txt.replace(TextHighlighter.spaceTrimer, "");
254
+ txt = txt.trim();
260
255
  }
261
256
  if(!txt) {
262
257
  return null;
@@ -613,7 +613,7 @@ Formula.prototype._parse = function(exp) {
613
613
  if(exp.charAt(0) === "=") { // Remove the first equal sign
614
614
  exp = exp.substr(1);
615
615
  }
616
- exp = exp.replace(/^\s+|\s+$/gm, ""); // Trim white spaces -- equivalent to String.trim(), which is not support in IE8
616
+ exp = exp.trim();
617
617
  exp = exp.replace(/<>/g, "!=");
618
618
  exp = exp.replace(/‛|‘|’/g, "'"); // Left and right single quote will be converted to simple single quote
619
619
  exp = exp.replace(/‟|“|”/g, '"'); // Left and right double quote will be converted to simple double quote
@@ -4,7 +4,7 @@
4
4
  * @param {number=} index
5
5
  */
6
6
  var VariableToken = function(str, index) {
7
- str = str.replace(/^\s+|\s+$/gm, ""); // Trim white spaces -- equivalent to String.trim(), which is not support in IE8
7
+ str = str.trim();
8
8
 
9
9
  if(this._inputConverter[str]) {
10
10
  str = this._inputConverter[str];
@@ -5,4 +5,4 @@ declare namespace Excel {
5
5
  }
6
6
 
7
7
  export default Excel;
8
- export { Excel }; ("Excel", Excel);
8
+ export { Excel };
@@ -18,4 +18,4 @@ Excel["REFERENCEDATA"] = function(/* ... args*/) {};
18
18
  Excel["SETCOLUMNCOLOR"] = function(/* ... args*/) {};
19
19
 
20
20
  export default Excel;
21
- export { Excel }; ("Excel", Excel);
21
+ export { Excel };
@@ -50,7 +50,7 @@ tr.Conflator = Conflator;
50
50
  tr.Perf = Perf;
51
51
  tr.NumberFormatter = NumberFormatter;
52
52
  tr.FieldFormatter = FieldFormatter;
53
- tr.DateTime = tr.DateTime;
53
+ tr.DateTime = DateTime;
54
54
  tr.FilterBuilder = FilterBuilder;
55
55
  tr.FilterOperators = FilterOperators;
56
56
  tr.PercentBar = PercentBar;
@@ -102,7 +102,7 @@ declare function randDate(min?: (number|any)|null, max?: (number|any)|null, seed
102
102
 
103
103
  declare function randString(min?: number|null, max?: number|null, seed?: number|null): string;
104
104
 
105
- declare function toRecords(data2D: (any[])[]|null, fields?: (string)[]|null): (any)[]|null;
105
+ declare function toRecords(data2D: (any[])[]|null, fields?: (string|number)[]|null): (any)[]|null;
106
106
 
107
107
  declare function getSeed(): number;
108
108
 
@@ -277,7 +277,7 @@ var randString = function(min, max, seed) {
277
277
  /** Convert 2D Array to Array of records
278
278
  * @public
279
279
  * @param {Array.<Array>} data2D Array of values
280
- * @param {Array.<string>=} fields Keys to be mapped on the output records.
280
+ * @param {Array.<string|number>=} fields Keys to be mapped on the output records.
281
281
  * @return {Array.<Object>} records
282
282
  */
283
283
  var toRecords = function(data2D, fields) {
@@ -76,5 +76,7 @@ declare class CheckboxPlugin extends GridPlugin {
76
76
 
77
77
  declare function val(gridOptions?: any): any;
78
78
 
79
+ declare function newState(sectionRef: any, rowIndex: number, context?: any): void;
80
+
79
81
  export default CheckboxPlugin;
80
82
  export { CheckboxPlugin, CheckboxPlugin as Checkbox, CheckboxPlugin as CheckboxExtension };
@@ -218,10 +218,14 @@ declare class DataView extends EventDispatcher {
218
218
 
219
219
  public getExpansionParents(from?: number|null, to?: number|null): (string)[]|null;
220
220
 
221
+ public getExpansionParentByRowId(rid: string): string;
222
+
221
223
  public isRowExpansion(rid: string): boolean;
222
224
 
223
225
  public hasRowExpansion(rid: string): boolean;
224
226
 
227
+ public getRowExpansionCount(rowId: string): number;
228
+
225
229
  public getRowExpansionId(rid: string, idx?: number|null): string;
226
230
 
227
231
  public getRowExpansionIndex(rid: string): number;
@@ -245,6 +245,8 @@ declare class Core extends ElementWrapper {
245
245
 
246
246
  public freezeSection(opt_frozenSection?: (string|number|null)|null): void;
247
247
 
248
+ public resetSectionFreezing(): void;
249
+
248
250
  public freezeFooter(frozenCount: number): void;
249
251
 
250
252
  public getFooterCount(): number;
@@ -77,6 +77,8 @@ declare class RowFilteringPlugin extends GridPlugin {
77
77
 
78
78
  public setColumnFilter(colIndex: number, exp: RowFilteringPlugin.Expression|null, ctx?: (any|string)|null): boolean;
79
79
 
80
+ public getColumnFilterExpression(colIndex: number): RowFilteringPlugin.Expression|null;
81
+
80
82
  public removeFilter(funcRef: ((...params: any[]) => any)|string|null): boolean;
81
83
 
82
84
  public removeColumnFilters(colIndex: number): boolean;
package/lib/versions.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "tr-grid-util": "1.3.137",
2
+ "tr-grid-util": "1.3.139",
3
3
  "tr-grid-printer": "1.0.17",
4
4
  "@grid/column-dragging": "1.0.16",
5
5
  "@grid/row-segmenting": "1.0.30",
@@ -7,31 +7,31 @@
7
7
  "@grid/zoom": "1.0.11",
8
8
  "tr-grid-auto-tooltip": "1.1.6",
9
9
  "tr-grid-cell-selection": "1.0.35",
10
- "tr-grid-checkbox": "1.0.64",
10
+ "tr-grid-checkbox": "1.0.65",
11
11
  "tr-grid-column-fitter": "1.0.40",
12
12
  "tr-grid-column-formatting": "0.9.35",
13
- "tr-grid-column-grouping": "1.0.57",
13
+ "tr-grid-column-grouping": "1.0.58",
14
14
  "tr-grid-column-resizing": "1.0.28",
15
15
  "tr-grid-column-selection": "1.0.33",
16
16
  "tr-grid-column-stack": "1.0.74",
17
17
  "tr-grid-conditional-coloring": "1.0.69",
18
18
  "tr-grid-content-wrap": "1.0.20",
19
19
  "tr-grid-contextmenu": "1.0.41",
20
- "tr-grid-filter-input": "0.9.38",
20
+ "tr-grid-filter-input": "0.9.39",
21
21
  "tr-grid-heat-map": "1.0.29",
22
22
  "tr-grid-in-cell-editing": "1.0.81",
23
23
  "tr-grid-pagination": "1.0.24",
24
24
  "tr-grid-percent-bar": "1.0.22",
25
- "tr-grid-range-bar": "2.0.6",
25
+ "tr-grid-range-bar": "2.0.7",
26
26
  "tr-grid-row-dragging": "1.0.31",
27
- "tr-grid-row-filtering": "1.0.68",
27
+ "tr-grid-row-filtering": "1.0.69",
28
28
  "tr-grid-row-grouping": "1.0.86",
29
29
  "tr-grid-row-selection": "1.0.27",
30
30
  "tr-grid-rowcoloring": "1.0.25",
31
31
  "tr-grid-textformatting": "1.0.48",
32
32
  "tr-grid-titlewrap": "1.0.21",
33
33
  "@grid/formatters": "1.0.51",
34
- "@grid/column-selection-dialog": "4.0.56",
34
+ "@grid/column-selection-dialog": "4.0.57",
35
35
  "@grid/filter-dialog": "4.0.63",
36
- "@grid/column-format-dialog": "4.0.44"
36
+ "@grid/column-format-dialog": "4.0.45"
37
37
  }
package/package.json CHANGED
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "version": "6.0.85"
69
+ "version": "6.0.87"
70
70
  }