@smartsoft001-mobilems/angular 2.28.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,16 +338,25 @@ 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
|
-
declare
|
|
351
|
+
declare class QueryFilterService {
|
|
352
|
+
static map(filter: ICrudFilter, queryParams: any, data: {
|
|
353
|
+
id: string;
|
|
354
|
+
key: string;
|
|
355
|
+
text: string;
|
|
356
|
+
}): ICrudFilter;
|
|
357
|
+
}
|
|
358
|
+
|
|
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)[];
|
|
350
360
|
|
|
351
361
|
declare class PageComponent extends PageBaseComponent {
|
|
352
362
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageComponent, never>;
|
|
@@ -917,5 +927,5 @@ declare const authenticationGuard: CanActivateFn;
|
|
|
917
927
|
|
|
918
928
|
declare const unauthorizedGuard: CanActivateFn;
|
|
919
929
|
|
|
920
|
-
export { AppComponent, AuthStorageService, COMPONENTS, ConfigsFacade, ConfigsService, ContrastService, CrudBaseService, DIRECTIVES, DictionaryService, FileUrlService, FiltersBaseComponent, FiltersContext, FooterComponent, GameType, GlobalService, HeaderComponent, HoverDirective, ImageBox, ListMode, MenuComponent, MetaService, ModalContainerComponent, ModalRef, ModalService, PageComponent, SERVICES, ScrollTopComponent, ScrollableDirective, SearchService, SeoService, SettingsService, SharedConfig, SharedModule, StyleService, TRANSLATE_DATA_PL, TranslationService, WcagService, authenticationGuard, environment, setTranslationsAndLang, unauthorizedGuard };
|
|
930
|
+
export { AppComponent, AuthStorageService, COMPONENTS, ConfigsFacade, ConfigsService, ContrastService, CrudBaseService, DIRECTIVES, DictionaryService, FileUrlService, FiltersBaseComponent, FiltersContext, FooterComponent, GameType, GlobalService, HeaderComponent, HoverDirective, ImageBox, ListMode, MenuComponent, MetaService, ModalContainerComponent, ModalRef, ModalService, PageComponent, QueryFilterService, SERVICES, ScrollTopComponent, ScrollableDirective, SearchService, SeoService, SettingsService, SharedConfig, SharedModule, StyleService, TRANSLATE_DATA_PL, TranslationService, WcagService, authenticationGuard, environment, setTranslationsAndLang, unauthorizedGuard };
|
|
921
931
|
export type { ChangePasswordErrorMessage, FileUrlMode, FilterType, ForgotPasswordErrorMessage, IAudio, IDictionaryItem, IErrorMessages, IFilterItem, IFilterOne, IFooterConfig, IFooterStaticPage, IGame, IGameAnswer, IGameMemoConfig, IGamePuzzleConfig, IGameQuestion, IGameQuizConfig, IHeaderConfig, IHeaderUser, IImages, ILoginResponse, IMenuConfig, IMenuItem, IObjectGallery, IObjectGalleryItem, IObjectGallerySingleObject, IQuickMenu, ISearchData, ISearchResults, ISingleObjectMultimedia, ITranslateData, ITranslationConfig, IUser, IUserInfo, IUserModify, IUserQuery, IUserQueryList, IUserRegister, IVideo, IWcagConfig, ModifyUserErrorMessage, RegisterErrorMessage, SearchQuery, SearchSource, WcagChangeType, WcagContrast, WcagLetterSpacing, WcagText, WcagWordSpacing };
|