@smartsoft001-mobilems/angular 2.29.0 → 2.30.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
|
@@ -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,13 +338,14 @@ 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;
|
|
343
345
|
protected handleError(err: unknown & {
|
|
344
346
|
status: number;
|
|
345
347
|
}): Observable<any>;
|
|
346
|
-
protected getQueryType(type: '=' | '!=' | '>=' | '<=' | '<' | '>', isArray: boolean): "" | "[
|
|
348
|
+
protected getQueryType(type: '=' | '!=' | '>=' | '<=' | '<' | '>', isArray: boolean): "[from]" | "[to]" | "[]" | "";
|
|
347
349
|
}
|
|
348
350
|
|
|
349
351
|
declare class QueryFilterService {
|
|
@@ -354,7 +356,7 @@ declare class QueryFilterService {
|
|
|
354
356
|
}): ICrudFilter;
|
|
355
357
|
}
|
|
356
358
|
|
|
357
|
-
declare const SERVICES: (typeof
|
|
359
|
+
declare const SERVICES: (typeof DictionaryService | typeof ConfigsService | typeof ConfigsFacade | typeof AuthStorageService | typeof TranslationService | typeof GlobalService | typeof FileUrlService | typeof SettingsService | typeof WcagService | typeof ContrastService | typeof MetaService | typeof SeoService | typeof StyleService | typeof ModalService | typeof SearchService)[];
|
|
358
360
|
|
|
359
361
|
declare class PageComponent extends PageBaseComponent {
|
|
360
362
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|