@elderbyte/ngx-starter 18.0.0 → 18.0.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.
@@ -1 +1,5 @@
1
1
  export * from './elder-forms.module';
2
+ export * from './search/domain/input/input-value';
3
+ export * from './search/domain/input/search-input';
4
+ export * from './search/domain/input/search-input-state';
5
+ export * from './search/domain/input/simple-search-input';
@@ -0,0 +1,39 @@
1
+ import { Observable } from 'rxjs';
2
+ import { SearchInputState } from './search-input-state';
3
+ import { SearchInput } from './search-input';
4
+ import { Filter } from '../../../../../common/data/filters/filter';
5
+ export declare class SimpleSearchInput implements SearchInput {
6
+ queryKey: string;
7
+ private _readonly?;
8
+ /***************************************************************************
9
+ * *
10
+ * Fields *
11
+ * *
12
+ **************************************************************************/
13
+ private readonly _state;
14
+ private readonly _resetRequest;
15
+ private readonly _inputConverter;
16
+ /***************************************************************************
17
+ * *
18
+ * Constructor *
19
+ * *
20
+ **************************************************************************/
21
+ constructor(queryKey: string, _readonly?: boolean);
22
+ /***************************************************************************
23
+ * *
24
+ * Public API *
25
+ * *
26
+ **************************************************************************/
27
+ applyFilters(filters: Filter[]): void;
28
+ /***************************************************************************
29
+ * *
30
+ * Properties *
31
+ * *
32
+ **************************************************************************/
33
+ set value(value: string | string[]);
34
+ get state$(): Observable<SearchInputState>;
35
+ get stateSnapshot(): SearchInputState;
36
+ get resetRequest(): Observable<any>;
37
+ get readonly(): boolean;
38
+ reset(): void;
39
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elderbyte/ngx-starter",
3
- "version": "18.0.0",
3
+ "version": "18.0.1",
4
4
  "peerDependencies": {
5
5
  "@angular/core": "^17.0.0 || ^18.0.0",
6
6
  "@angular/common": "^17.0.0 || ^18.0.0",