minor updates for build
This commit is contained in:
parent
83e4fe23f9
commit
63d6daa50a
@ -1,9 +1,12 @@
|
|||||||
import { ChangeDetectionStrategy, Component, Input, OnInit, TemplateRef } from '@angular/core';
|
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 { MAT_CHECKBOX_DEFAULT_OPTIONS } from '@angular/material/checkbox';
|
||||||
import { BehaviorSubject, combineLatest, Observable, pipe } from 'rxjs';
|
import { BehaviorSubject, combineLatest, Observable, pipe } from 'rxjs';
|
||||||
import { delay, distinctUntilChanged, map, shareReplay } from 'rxjs/operators';
|
import { delay, distinctUntilChanged, map, shareReplay } from 'rxjs/operators';
|
||||||
import { any } from '../../utils/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 areExpandable = (nestedFilter: NestedFilter) => !!nestedFilter?.children?.length;
|
||||||
const atLeastOneIsExpandable = pipe(
|
const atLeastOneIsExpandable = pipe(
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
<ng-container [ngTemplateOutlet]="bulkActions"></ng-container>
|
<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-->
|
<!-- Custom content-->
|
||||||
<ng-content></ng-content>
|
<ng-content></ng-content>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user