ngx-edu-sharing-ui 9.1.2 → 9.1.3
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.
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { MdsWidget } from 'ngx-edu-sharing-api';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export type Values = {
|
|
4
|
+
[p: string]: string[];
|
|
5
|
+
};
|
|
6
|
+
export declare class SearchHelperService {
|
|
7
|
+
static readonly MAX_QUERY_CONCAT_PARAMS = 400;
|
|
8
|
+
constructor();
|
|
9
|
+
/**
|
|
10
|
+
* converts given filter criteria and converts them for a body to be used for a search request
|
|
11
|
+
* @param properties
|
|
12
|
+
* @param mdsWidgets
|
|
13
|
+
* @param unfoldTrees
|
|
14
|
+
*/
|
|
15
|
+
convertCritieria(properties: Values, mdsWidgets: MdsWidget[], unfoldTrees?: boolean): {
|
|
16
|
+
property: string;
|
|
17
|
+
values: string[];
|
|
18
|
+
}[];
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SearchHelperService, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SearchHelperService>;
|
|
21
|
+
}
|
package/module.d.ts
CHANGED