tuain-ng-forms-lib 14.0.5 → 14.0.6

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.
@@ -380,6 +380,7 @@ class LibTableComponent {
380
380
  changePage(requestedPage) { this.table.changePage(requestedPage); }
381
381
  tableColumnSort(columnName, direction = null) { this.table.sort(columnName, direction ?? 'ascend'); }
382
382
  globalFilterChanged() { this.table.setGlobalFilterString(this.globalFilterString?.trim() ?? ''); }
383
+ cleanGlobalFilter() { this.globalFilterString = ''; this.globalFilterChanged(); }
383
384
  syncAttribute(name, value) {
384
385
  try {
385
386
  if (name === 'visibleRecords') {