minor updates for build

This commit is contained in:
Timo Bejan 2021-08-25 10:32:57 +03:00
parent 83e4fe23f9
commit 63d6daa50a
2 changed files with 5 additions and 2 deletions

View File

@ -1,9 +1,12 @@
import { ChangeDetectionStrategy, Component, Input, OnInit, TemplateRef } from '@angular/core';
import { FilterGroup, FilterService, handleCheckedValue, NestedFilter } from '@iqser/common-ui';
import { MAT_CHECKBOX_DEFAULT_OPTIONS } from '@angular/material/checkbox';
import { BehaviorSubject, combineLatest, Observable, pipe } from 'rxjs';
import { delay, distinctUntilChanged, map, shareReplay } from 'rxjs/operators';
import { any } from '../../utils/operators';
import { handleCheckedValue } from '../filter-utils';
import { FilterService } from '../filter.service';
import { FilterGroup } from '../models/filter-group.model';
import { NestedFilter } from '../models/nested-filter.model';
const areExpandable = (nestedFilter: NestedFilter) => !!nestedFilter?.children?.length;
const atLeastOneIsExpandable = pipe(

View File

@ -12,7 +12,7 @@
<ng-container [ngTemplateOutlet]="bulkActions"></ng-container>
<iqser-quick-filters></iqser-quick-filters>
<iqser-quick-filters *ngIf="filterService.getFilterModels$('quickFilters') | async"></iqser-quick-filters>
<!-- Custom content-->
<ng-content></ng-content>