@dangl/angular-ava 1.2.2 → 1.2.3-beta0003
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.
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const DEFAULT_FILTERS:
|
|
1
|
+
import { FilterFunction } from '../model/config-tree.model';
|
|
2
|
+
export declare const DEFAULT_FILTERS: FilterFunction[];
|
|
@@ -89,4 +89,4 @@ export interface IConfigurationTree {
|
|
|
89
89
|
*/
|
|
90
90
|
functionView?: IFunctionViewLine[];
|
|
91
91
|
}
|
|
92
|
-
export type FilterFunction = (element: IElementDto, filter: string) => boolean;
|
|
92
|
+
export type FilterFunction = (element: IElementDto, filter: string) => boolean | undefined | null;
|
|
@@ -6,7 +6,7 @@ export declare class FlatElementsService {
|
|
|
6
6
|
private flatElementsDtoSource;
|
|
7
7
|
flatElementsDto: Observable<IElementDto[]>;
|
|
8
8
|
private objectElementsDto;
|
|
9
|
-
listFilterFunc: (
|
|
9
|
+
listFilterFunc: import("../model/config-tree.model").FilterFunction[];
|
|
10
10
|
constructor();
|
|
11
11
|
setElementsDto(elementsDto: ServiceSpecificationDto): void;
|
|
12
12
|
static getFlatElements(container: {
|