@fundamental-ngx/platform 0.65.0-rc.3 → 0.65.0-rc.4

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.
@@ -17,8 +17,8 @@ import * as i1 from '@fundamental-ngx/platform/table-helpers';
17
17
  import { SortDirection, TableService, Table, ColumnAlign, FILTER_STRING_STRATEGY, FilterableColumnDataType, TableColumn, FdpCellDef, FdpEditableCellDef, FdpHeaderCellDef, TableCellHeaderPopoverDirective, getFilterStrategiesBasedOnDataType, FILTER_STRATEGY, FILTER_STRATEGY_LABEL, getUniqueListValuesByKey, FdpViewSettingsFilterCustomDef, FilterType, TableDataSourceDirective, SelectionMode, TableColumnResizeService, TableRowService, PlatformTableCellResizableDirective, SelectionCellStylesPipe, TableCellStylesPipe, ColumnResizableSidePipe, TableColumnSortingDirectionPipe, isTreeRow, isTreeRowFirstCell, EditableTableCell, TableDraggableDirective, DEFAULT_HIGHLIGHTING_KEY, SEMANTIC_HIGHLIGHTING_COLUMN_WIDTH, ROW_HEIGHT, TABLE_COLUMN_MIN_WIDTH, FDP_TABLE_STATE_DIRECTIVE, FDP_TABLE_VIRTUAL_SCROLL_DIRECTIVE, FDP_TABLE_DRAGGABLE_DIRECTIVE, TableHeaderResizerDirective, isRowNavigatable, TableRowType, buildNewRowSkeleton, EDITABLE_ROW_SEMANTIC_STATE, SaveRowsEvent, getSelectableRows, TableCellActivateEvent, TableRowActivateEvent, TableRowToggleOpenStateEvent, findRowChildren, getRowParents, TableSortChangeEvent, TablePageChangeEvent, TableGroupChangeEvent, TableColumnFreezeEvent, TableFilterChangeEvent, TableColumnsChangeEvent, convertObjectsToTableRows, isTableRow, convertTreeTableRowToFlatList, convertTreeObjectsToTableRows, getFreezableColumns, getFreezableEndColumns, applySelectionToChildren, SELECTION_COLUMN_WIDTH, TableScrollableDirective, RowClassesPipe, TableScrollDispatcherService, TableResponsiveService, TableHelpersModule } from '@fundamental-ngx/platform/table-helpers';
18
18
  export * from '@fundamental-ngx/platform/table-helpers';
19
19
  import { shallowEqual } from 'fast-equals';
20
- import { fromEvent, BehaviorSubject, Subscription, combineLatest, distinctUntilChanged, Subject, merge, of } from 'rxjs';
21
- import { startWith, take, debounceTime, skip, filter, switchMap, takeUntil, map, distinctUntilChanged as distinctUntilChanged$1, tap } from 'rxjs/operators';
20
+ import { fromEvent, BehaviorSubject, Subscription, combineLatest, distinctUntilChanged, EMPTY, Subject, merge, of } from 'rxjs';
21
+ import { startWith, take, debounceTime, skip, filter, catchError, switchMap, takeUntil, map, distinctUntilChanged as distinctUntilChanged$1, tap } from 'rxjs/operators';
22
22
  import { ButtonComponent } from '@fundamental-ngx/core/button';
23
23
  import { takeUntilDestroyed, outputFromObservable, toObservable } from '@angular/core/rxjs-interop';
24
24
  import { FormItemComponent, FormLabelComponent, FormControlComponent, FormGroupComponent } from '@fundamental-ngx/core/form';
@@ -4295,7 +4295,7 @@ class TableViewSettingsDialogComponent {
4295
4295
  }
4296
4296
  }, this.table.injector);
4297
4297
  this._dialogRef.afterClosed
4298
- .pipe(filter((result) => !!result), takeUntilDestroyed(this.destroyRef))
4298
+ .pipe(catchError(() => EMPTY), filter((result) => !!result), takeUntilDestroyed(this.destroyRef))
4299
4299
  .subscribe(({ sortingData, filteringData, includeExcludeFiltersData: resultFiltersData, groupingData, columnsData }) => {
4300
4300
  if (sortingData) {
4301
4301
  this._applySorting(sortingData);