@elderbyte/ngx-starter 16.4.4 → 16.4.5
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/esm2022/lib/components/forms/directives/elder-initial-value.directive.mjs +2 -24
- package/esm2022/lib/components/forms/search/domain/input/search-input.mjs +1 -1
- package/esm2022/lib/components/forms/search/elder-search-context.directive.mjs +11 -3
- package/esm2022/lib/components/forms/search/elder-search-input.directive.mjs +3 -3
- package/fesm2022/elderbyte-ngx-starter.mjs +13 -27
- package/fesm2022/elderbyte-ngx-starter.mjs.map +1 -1
- package/lib/components/forms/directives/elder-initial-value.directive.d.ts +1 -1
- package/lib/components/forms/search/domain/input/search-input.d.ts +1 -1
- package/lib/components/forms/search/elder-search-context.directive.d.ts +1 -0
- package/lib/components/forms/search/elder-search-input.directive.d.ts +1 -1
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ export declare class ElderInitialValueDirective implements OnDestroy {
|
|
|
32
32
|
* *
|
|
33
33
|
**************************************************************************/
|
|
34
34
|
get valueChanges$(): import("rxjs").Observable<any>;
|
|
35
|
-
|
|
35
|
+
setValue(value: any): void;
|
|
36
36
|
ngOnDestroy(): void;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ElderInitialValueDirective, [{ host: true; }]>;
|
|
38
38
|
static ɵdir: i0.ɵɵDirectiveDeclaration<ElderInitialValueDirective, "[elderInitialValue]", ["elderInitialValue"], {}, {}, never, never, false, never>;
|
|
@@ -22,6 +22,7 @@ export declare class ElderSearchContextDirective implements OnInit, OnDestroy, A
|
|
|
22
22
|
**************************************************************************/
|
|
23
23
|
private readonly log;
|
|
24
24
|
private readonly destroy$;
|
|
25
|
+
private readonly filtersToApplyAtRegistration;
|
|
25
26
|
private readonly _searchInputs$;
|
|
26
27
|
private readonly _searchStates$;
|
|
27
28
|
private readonly _filterContext$;
|
|
@@ -71,7 +71,7 @@ export declare class ElderSearchInputDirective implements SearchInput, OnInit, A
|
|
|
71
71
|
* Public API *
|
|
72
72
|
* *
|
|
73
73
|
**************************************************************************/
|
|
74
|
-
|
|
74
|
+
setValue(queryString: string | string[] | null): void;
|
|
75
75
|
reset(): void;
|
|
76
76
|
/***************************************************************************
|
|
77
77
|
* *
|