tuain-ng-forms-lib 12.0.65 → 12.0.66

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.
@@ -1856,6 +1856,11 @@
1856
1856
  }
1857
1857
  return filteredRecords;
1858
1858
  };
1859
+ RecordTable.prototype.getColumnFilter = function (columnName) {
1860
+ var _a;
1861
+ var tableColumn = this.columnDefinition(columnName);
1862
+ return (_a = tableColumn === null || tableColumn === void 0 ? void 0 : tableColumn.filter) !== null && _a !== void 0 ? _a : null;
1863
+ };
1859
1864
  RecordTable.prototype.addColumnFilter = function (columnName, columnValues, operator) {
1860
1865
  if (operator === void 0) { operator = null; }
1861
1866
  var _a;