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.
- package/bundles/tuain-ng-forms-lib.umd.js +5 -0
- package/bundles/tuain-ng-forms-lib.umd.js.map +1 -1
- package/esm2015/lib/classes/forms/table/table.js +6 -1
- package/fesm2015/tuain-ng-forms-lib.js +5 -0
- package/fesm2015/tuain-ng-forms-lib.js.map +1 -1
- package/lib/classes/forms/table/table.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|