@smartsoft001-mobilems/angular 2.29.0 → 2.31.0
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
|
@@ -31,7 +31,7 @@ declare class ConfigsFacade {
|
|
|
31
31
|
private sanitizer;
|
|
32
32
|
private static _source;
|
|
33
33
|
get data(): Config | null;
|
|
34
|
-
getPage(id: number): Promise<Page>;
|
|
34
|
+
getPage(id: number | 'home'): Promise<Page>;
|
|
35
35
|
init(): Promise<Config>;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigsFacade, never>;
|
|
37
37
|
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigsFacade>;
|
|
@@ -328,6 +328,7 @@ declare class WcagService {
|
|
|
328
328
|
}
|
|
329
329
|
|
|
330
330
|
declare abstract class CrudBaseService<T extends IEntity<string>> extends CrudService<T> {
|
|
331
|
+
private sortSeed;
|
|
331
332
|
abstract getUrlNameForDetails(): string;
|
|
332
333
|
abstract getUrlNameForList(): string;
|
|
333
334
|
downloadPdf(name: string, id: string): Promise<void>;
|
|
@@ -337,6 +338,7 @@ declare abstract class CrudBaseService<T extends IEntity<string>> extends CrudSe
|
|
|
337
338
|
totalCount: number;
|
|
338
339
|
links: unknown;
|
|
339
340
|
}>;
|
|
341
|
+
private initFilters;
|
|
340
342
|
protected getBaseListUrl(page: number, filter: {
|
|
341
343
|
limit: number;
|
|
342
344
|
}): string;
|