@annalib/anna-core 12.1.2 → 12.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.
- package/esm2020/lib/anna-core-shared-lib/services/anna-persisting-filter.service.mjs +7 -1
- package/fesm2015/annalib-anna-core.mjs +6 -0
- package/fesm2015/annalib-anna-core.mjs.map +1 -1
- package/fesm2020/annalib-anna-core.mjs +6 -0
- package/fesm2020/annalib-anna-core.mjs.map +1 -1
- package/lib/anna-core-shared-lib/services/anna-persisting-filter.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6217,6 +6217,12 @@ class AnnaPersistingFilterService {
|
|
|
6217
6217
|
getActualQueryParams(key) {
|
|
6218
6218
|
return localStorage.getItem(key);
|
|
6219
6219
|
}
|
|
6220
|
+
convertObjToQueryString(paramsObject) {
|
|
6221
|
+
return Object
|
|
6222
|
+
.keys(paramsObject)
|
|
6223
|
+
.map(key => `${encodeURIComponent(key)}=${encodeURIComponent(paramsObject[key])}`)
|
|
6224
|
+
.join('&');
|
|
6225
|
+
}
|
|
6220
6226
|
}
|
|
6221
6227
|
AnnaPersistingFilterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AnnaPersistingFilterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
6222
6228
|
AnnaPersistingFilterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: AnnaPersistingFilterService, providedIn: "root" });
|