@indice/ng-components 0.5.0 → 0.5.1-beta.1
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.
package/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as i0 from '@angular/core';
|
|
|
2
2
|
import { OnInit, OnChanges, OnDestroy, EventEmitter, ElementRef, NgZone, SimpleChanges, QueryList, TemplateRef, AfterContentInit, AfterContentChecked, AfterViewChecked, ChangeDetectorRef, ComponentRef, ViewContainerRef, ComponentFactoryResolver, ApplicationRef, Injector, Type, StaticProvider, AfterViewInit, PipeTransform, InjectionToken, Renderer2, RendererFactory2, ModuleWithProviders } from '@angular/core';
|
|
3
3
|
import { Observable, Subject, Subscription } from 'rxjs';
|
|
4
4
|
import * as i60 from '@angular/router';
|
|
5
|
-
import { ActivatedRouteSnapshot, Route,
|
|
5
|
+
import { Params, ActivatedRouteSnapshot, Route, Router, ActivatedRoute, Event as Event$1 } from '@angular/router';
|
|
6
6
|
import * as i62 from '@angular/forms';
|
|
7
7
|
import { ControlValueAccessor, AbstractControl } from '@angular/forms';
|
|
8
8
|
import * as _indice_ng_components from '@indice/ng-components';
|
|
@@ -1586,8 +1586,12 @@ declare abstract class BaseListComponent<T> implements OnInit, OnDestroy {
|
|
|
1586
1586
|
singularResult: string;
|
|
1587
1587
|
pluralResults: string;
|
|
1588
1588
|
abstract newItemLink: string | null;
|
|
1589
|
+
minimumSearchCharacters: number;
|
|
1590
|
+
searchDebounceTime: number;
|
|
1589
1591
|
private routeSub$;
|
|
1590
1592
|
private loadSub$;
|
|
1593
|
+
private searchSub$;
|
|
1594
|
+
private searchSubject$;
|
|
1591
1595
|
autoLoad: boolean;
|
|
1592
1596
|
constructor(route$: ActivatedRoute, router$: Router);
|
|
1593
1597
|
ngOnDestroy(): void;
|
|
@@ -1613,6 +1617,7 @@ declare abstract class BaseListComponent<T> implements OnInit, OnDestroy {
|
|
|
1613
1617
|
sortdirChanged(sortdir: string): void;
|
|
1614
1618
|
advancedSearchChanged(filters: FilterClause[]): void;
|
|
1615
1619
|
searchChanged(searchText: string | null): void;
|
|
1620
|
+
private executeSearch;
|
|
1616
1621
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseListComponent<any>, never>;
|
|
1617
1622
|
static ɵcmp: i0.ɵɵComponentDeclaration<BaseListComponent<any>, "ng-component", never, { "autoLoad": { "alias": "auto-load"; "required": false; }; }, {}, never, never, false, never>;
|
|
1618
1623
|
}
|