@stemy/ngx-utils 12.1.3 → 13.0.2
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/ngx-utils/common-types.mjs +116 -0
- package/esm2020/ngx-utils/components/dynamic-table/dynamic-table.component.mjs +407 -0
- package/esm2020/ngx-utils/components/pagination-menu/pagination-menu.component.mjs +191 -0
- package/esm2020/ngx-utils/components/unordered-list/unordered-list.component.mjs +261 -0
- package/esm2020/ngx-utils/directives/async-method.base.mjs +68 -0
- package/esm2020/ngx-utils/directives/async-method.directive.mjs +28 -0
- package/esm2020/ngx-utils/directives/background.directive.mjs +51 -0
- package/esm2020/ngx-utils/directives/dynamic-table-template.directive.mjs +20 -0
- package/esm2020/ngx-utils/directives/global-template.directive.mjs +30 -0
- package/esm2020/ngx-utils/directives/icon.directive.mjs +71 -0
- package/esm2020/ngx-utils/directives/ngx-template-outlet.directive.mjs +90 -0
- package/esm2020/ngx-utils/directives/pagination-item.directive.mjs +33 -0
- package/esm2020/ngx-utils/directives/pagination.directive.mjs +83 -0
- package/esm2020/ngx-utils/directives/resource-if.directive.mjs +50 -0
- package/esm2020/ngx-utils/directives/sticky-class.directive.mjs +34 -0
- package/esm2020/ngx-utils/directives/sticky.directive.mjs +59 -0
- package/esm2020/ngx-utils/directives/unordered-list-item.directive.mjs +77 -0
- package/esm2020/ngx-utils/directives/unordered-list-template.directive.mjs +26 -0
- package/esm2020/ngx-utils/ngx-utils.module.mjs +322 -0
- package/esm2020/ngx-utils/pipes/chunk.pipe.mjs +25 -0
- package/esm2020/ngx-utils/pipes/entries.pipe.mjs +28 -0
- package/esm2020/ngx-utils/pipes/extra-item-properties.pipe.mjs +31 -0
- package/esm2020/ngx-utils/pipes/filter.pipe.mjs +42 -0
- package/esm2020/ngx-utils/pipes/find.pipe.mjs +29 -0
- package/esm2020/ngx-utils/pipes/format-number.pipe.mjs +21 -0
- package/esm2020/ngx-utils/pipes/get-offset.pipe.mjs +17 -0
- package/esm2020/ngx-utils/pipes/get-type.pipe.mjs +16 -0
- package/esm2020/ngx-utils/pipes/global-template.pipe.mjs +41 -0
- package/esm2020/ngx-utils/pipes/group-by.pipe.mjs +27 -0
- package/esm2020/ngx-utils/pipes/is-type.pipe.mjs +16 -0
- package/esm2020/ngx-utils/pipes/join.pipe.mjs +19 -0
- package/esm2020/ngx-utils/pipes/keys.pipe.mjs +22 -0
- package/esm2020/ngx-utils/pipes/map.pipe.mjs +29 -0
- package/esm2020/ngx-utils/pipes/max.pipe.mjs +26 -0
- package/esm2020/ngx-utils/pipes/min.pipe.mjs +26 -0
- package/esm2020/ngx-utils/pipes/reduce.pipe.mjs +30 -0
- package/esm2020/ngx-utils/pipes/remap.pipe.mjs +32 -0
- package/esm2020/ngx-utils/pipes/replace.pipe.mjs +16 -0
- package/esm2020/ngx-utils/pipes/reverse.pipe.mjs +24 -0
- package/esm2020/ngx-utils/pipes/round.pipe.mjs +21 -0
- package/esm2020/ngx-utils/pipes/safe-html.pipe.mjs +34 -0
- package/esm2020/ngx-utils/pipes/translate.pipe.mjs +86 -0
- package/esm2020/ngx-utils/pipes/values.pipe.mjs +22 -0
- package/esm2020/ngx-utils/plugins/resize-event.plugin.mjs +59 -0
- package/esm2020/ngx-utils/plugins/scroll-event.plugin.mjs +39 -0
- package/esm2020/ngx-utils/services/acl.service.mjs +81 -0
- package/esm2020/ngx-utils/services/api.service.mjs +38 -0
- package/esm2020/ngx-utils/services/auth.service.mjs +14 -0
- package/esm2020/ngx-utils/services/base-http.client.mjs +47 -0
- package/esm2020/ngx-utils/services/base-http.service.mjs +298 -0
- package/esm2020/ngx-utils/services/config.service.mjs +129 -0
- package/esm2020/ngx-utils/services/error-handler.service.mjs +49 -0
- package/esm2020/ngx-utils/services/events.service.mjs +26 -0
- package/esm2020/ngx-utils/services/formatter.service.mjs +47 -0
- package/esm2020/ngx-utils/services/global-template.service.mjs +37 -0
- package/esm2020/ngx-utils/services/icon.service.mjs +26 -0
- package/esm2020/ngx-utils/services/language.service.mjs +113 -0
- package/esm2020/ngx-utils/services/open-api.service.mjs +40 -0
- package/esm2020/ngx-utils/services/promise.service.mjs +55 -0
- package/esm2020/ngx-utils/services/state.service.mjs +173 -0
- package/esm2020/ngx-utils/services/static-language.service.mjs +166 -0
- package/esm2020/ngx-utils/services/storage.service.mjs +49 -0
- package/esm2020/ngx-utils/services/toaster.service.mjs +32 -0
- package/esm2020/ngx-utils/services/translated-url.serializer.mjs +73 -0
- package/esm2020/ngx-utils/services/universal.service.mjs +78 -0
- package/esm2020/ngx-utils/utils/ajax-request-handler.mjs +40 -0
- package/esm2020/ngx-utils/utils/array.utils.mjs +100 -0
- package/esm2020/ngx-utils/utils/auth.guard.mjs +181 -0
- package/esm2020/ngx-utils/utils/canvas.utils.mjs +388 -0
- package/esm2020/ngx-utils/utils/date.utils.mjs +28 -0
- package/esm2020/ngx-utils/utils/file.utils.mjs +90 -0
- package/esm2020/ngx-utils/utils/generic-value.mjs +20 -0
- package/esm2020/ngx-utils/utils/geometry.mjs +132 -0
- package/esm2020/ngx-utils/utils/initializer.mjs +20 -0
- package/esm2020/ngx-utils/utils/loader.utils.mjs +55 -0
- package/esm2020/ngx-utils/utils/math.utils.mjs +15 -0
- package/esm2020/ngx-utils/utils/object.utils.mjs +261 -0
- package/esm2020/ngx-utils/utils/observable.utils.mjs +63 -0
- package/esm2020/ngx-utils/utils/reflect.utils.mjs +33 -0
- package/esm2020/ngx-utils/utils/set.utils.mjs +20 -0
- package/esm2020/ngx-utils/utils/string.utils.mjs +28 -0
- package/esm2020/ngx-utils/utils/timer.utils.mjs +52 -0
- package/esm2020/ngx-utils/utils/unique.utils.mjs +24 -0
- package/esm2020/ngx-utils/utils/vector.mjs +77 -0
- package/esm2020/public_api.mjs +85 -0
- package/esm2020/stemy-ngx-utils.mjs +5 -0
- package/fesm2015/stemy-ngx-utils.mjs +5990 -0
- package/fesm2015/stemy-ngx-utils.mjs.map +1 -0
- package/fesm2020/stemy-ngx-utils.mjs +5650 -0
- package/fesm2020/stemy-ngx-utils.mjs.map +1 -0
- package/ngx-utils/components/dynamic-table/dynamic-table.component.d.ts +3 -0
- package/ngx-utils/components/pagination-menu/pagination-menu.component.d.ts +3 -0
- package/ngx-utils/components/unordered-list/unordered-list.component.d.ts +3 -0
- package/ngx-utils/directives/async-method.base.d.ts +3 -0
- package/ngx-utils/directives/async-method.directive.d.ts +3 -0
- package/ngx-utils/directives/background.directive.d.ts +3 -0
- package/ngx-utils/directives/dynamic-table-template.directive.d.ts +3 -0
- package/ngx-utils/directives/global-template.directive.d.ts +3 -0
- package/ngx-utils/directives/icon.directive.d.ts +3 -0
- package/ngx-utils/directives/ngx-template-outlet.directive.d.ts +3 -0
- package/ngx-utils/directives/pagination-item.directive.d.ts +3 -0
- package/ngx-utils/directives/pagination.directive.d.ts +3 -0
- package/ngx-utils/directives/resource-if.directive.d.ts +3 -0
- package/ngx-utils/directives/sticky-class.directive.d.ts +3 -0
- package/ngx-utils/directives/sticky.directive.d.ts +3 -0
- package/ngx-utils/directives/unordered-list-item.directive.d.ts +3 -0
- package/ngx-utils/directives/unordered-list-template.directive.d.ts +3 -0
- package/ngx-utils/pipes/chunk.pipe.d.ts +3 -0
- package/ngx-utils/pipes/entries.pipe.d.ts +3 -0
- package/ngx-utils/pipes/extra-item-properties.pipe.d.ts +3 -0
- package/ngx-utils/pipes/filter.pipe.d.ts +3 -0
- package/ngx-utils/pipes/find.pipe.d.ts +3 -0
- package/ngx-utils/pipes/format-number.pipe.d.ts +3 -0
- package/ngx-utils/pipes/get-offset.pipe.d.ts +3 -0
- package/ngx-utils/pipes/get-type.pipe.d.ts +3 -0
- package/ngx-utils/pipes/global-template.pipe.d.ts +3 -0
- package/ngx-utils/pipes/group-by.pipe.d.ts +3 -0
- package/ngx-utils/pipes/is-type.pipe.d.ts +3 -0
- package/ngx-utils/pipes/join.pipe.d.ts +3 -0
- package/ngx-utils/pipes/keys.pipe.d.ts +3 -0
- package/ngx-utils/pipes/map.pipe.d.ts +3 -0
- package/ngx-utils/pipes/max.pipe.d.ts +3 -0
- package/ngx-utils/pipes/min.pipe.d.ts +3 -0
- package/ngx-utils/pipes/reduce.pipe.d.ts +3 -0
- package/ngx-utils/pipes/remap.pipe.d.ts +3 -0
- package/ngx-utils/pipes/replace.pipe.d.ts +3 -0
- package/ngx-utils/pipes/reverse.pipe.d.ts +3 -0
- package/ngx-utils/pipes/round.pipe.d.ts +3 -0
- package/ngx-utils/pipes/safe-html.pipe.d.ts +3 -0
- package/ngx-utils/pipes/translate.pipe.d.ts +4 -0
- package/ngx-utils/pipes/values.pipe.d.ts +3 -0
- package/ngx-utils/plugins/resize-event.plugin.d.ts +4 -1
- package/ngx-utils/plugins/scroll-event.plugin.d.ts +4 -1
- package/ngx-utils/services/acl.service.d.ts +3 -0
- package/ngx-utils/services/api.service.d.ts +3 -0
- package/ngx-utils/services/base-http.client.d.ts +3 -0
- package/ngx-utils/services/base-http.service.d.ts +3 -0
- package/ngx-utils/services/config.service.d.ts +3 -0
- package/ngx-utils/services/error-handler.service.d.ts +3 -0
- package/ngx-utils/services/events.service.d.ts +3 -0
- package/ngx-utils/services/formatter.service.d.ts +3 -0
- package/ngx-utils/services/global-template.service.d.ts +3 -0
- package/ngx-utils/services/icon.service.d.ts +3 -0
- package/ngx-utils/services/language.service.d.ts +3 -0
- package/ngx-utils/services/open-api.service.d.ts +3 -0
- package/ngx-utils/services/promise.service.d.ts +3 -0
- package/ngx-utils/services/state.service.d.ts +3 -0
- package/ngx-utils/services/static-language.service.d.ts +3 -0
- package/ngx-utils/services/storage.service.d.ts +3 -0
- package/ngx-utils/services/toaster.service.d.ts +3 -0
- package/ngx-utils/services/translated-url.serializer.d.ts +3 -0
- package/ngx-utils/services/universal.service.d.ts +3 -0
- package/ngx-utils/utils/auth.guard.d.ts +3 -0
- package/package.json +37 -19
- package/public_api.d.ts +1 -0
- package/stemy-ngx-utils.d.ts +1 -2
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterContentInit, AfterViewInit, OnChanges, SimpleChanges, TemplateRef } from "@angular/core";
|
|
2
2
|
import { IPaginationData, ITableColumns, ITableTemplates, TableDataLoader } from "../../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DynamicTableComponent implements AfterContentInit, AfterViewInit, OnChanges {
|
|
4
5
|
label: string;
|
|
5
6
|
placeholder: string;
|
|
@@ -40,4 +41,6 @@ export declare class DynamicTableComponent implements AfterContentInit, AfterVie
|
|
|
40
41
|
setOrder(column: string): void;
|
|
41
42
|
loadData: (page: number, itemsPerPage: number) => Promise<IPaginationData>;
|
|
42
43
|
private loadLocalData;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableComponent, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "dynamic-table", never, { "label": "label"; "placeholder": "placeholder"; "dataLoader": "dataLoader"; "data": "data"; "parallelData": "parallelData"; "columns": "columns"; "showFilter": "showFilter"; "itemsPerPage": "itemsPerPage"; "updateTime": "updateTime"; "maxPages": "maxPages"; "directionLinks": "directionLinks"; "boundaryLinks": "boundaryLinks"; "orderBy": "orderBy"; "orderDescending": "orderDescending"; }, {}, ["rowTemplate", "wrapperTemplate", "filterTemplate", "templateDirectives"], never>;
|
|
43
46
|
}
|
|
@@ -2,6 +2,7 @@ import { OnChanges, OnDestroy, OnInit, SimpleChanges } from "@angular/core";
|
|
|
2
2
|
import { StateService } from "../../services/state.service";
|
|
3
3
|
import { PaginationDirective } from "../../directives/pagination.directive";
|
|
4
4
|
import { IIconService } from "../../common-types";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class PaginationMenuComponent implements OnInit, OnDestroy, OnChanges {
|
|
6
7
|
state: StateService;
|
|
7
8
|
pagination: PaginationDirective;
|
|
@@ -25,4 +26,6 @@ export declare class PaginationMenuComponent implements OnInit, OnDestroy, OnCha
|
|
|
25
26
|
paginate(page: number): void;
|
|
26
27
|
protected setIcon(labelName: string, icon: string): void;
|
|
27
28
|
protected setPages(): number;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationMenuComponent, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaginationMenuComponent, "pagination-menu", never, { "maxSize": "maxSize"; "urlParam": "urlParam"; "directionLinks": "directionLinks"; "boundaryLinks": "boundaryLinks"; }, {}, never, never>;
|
|
28
31
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterContentInit, AfterViewInit, ChangeDetectorRef, OnChanges, SimpleChanges } from "@angular/core";
|
|
2
2
|
import { UnorderedListStyle, UnorderedListTemplates, UnorederedListTemplate } from "../../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class UnorderedListComponent implements OnChanges, AfterContentInit, AfterViewInit {
|
|
4
5
|
private cdr;
|
|
5
6
|
data: any;
|
|
@@ -19,4 +20,6 @@ export declare class UnorderedListComponent implements OnChanges, AfterContentIn
|
|
|
19
20
|
ngOnChanges(changes: SimpleChanges): void;
|
|
20
21
|
ngAfterContentInit(): void;
|
|
21
22
|
ngAfterViewInit(): void;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UnorderedListComponent, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UnorderedListComponent, "unordered-list", never, { "data": "data"; "keyPrefix": "keyPrefix"; "listStyle": "listStyle"; "path": "path"; "level": "level"; "templates": "templates"; }, {}, ["templateDirectives"], never>;
|
|
22
25
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from "@angular/core";
|
|
2
2
|
import { AsyncMethod, IAsyncMessage, IToasterService } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare abstract class AsyncMethodBase {
|
|
4
5
|
protected toaster: IToasterService;
|
|
5
6
|
disabled: boolean;
|
|
@@ -13,4 +14,6 @@ export declare abstract class AsyncMethodBase {
|
|
|
13
14
|
protected abstract getMethod(): AsyncMethod;
|
|
14
15
|
click(): void;
|
|
15
16
|
callMethod(): boolean;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AsyncMethodBase, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AsyncMethodBase>;
|
|
16
19
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { AsyncMethod, IToasterService } from "../common-types";
|
|
2
2
|
import { AsyncMethodBase } from "./async-method.base";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class AsyncMethodDirective extends AsyncMethodBase {
|
|
4
5
|
method: AsyncMethod;
|
|
5
6
|
constructor(toaster: IToasterService);
|
|
6
7
|
protected getMethod(): AsyncMethod;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AsyncMethodDirective, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AsyncMethodDirective, "[async-method]", ["async-method"], { "method": "async-method"; }, {}, never>;
|
|
7
10
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, OnChanges, Renderer2, SimpleChanges } from "@angular/core";
|
|
2
2
|
import { HttpClient } from "@angular/common/http";
|
|
3
3
|
import { UniversalService } from "../services/universal.service";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class BackgroundDirective implements OnChanges {
|
|
5
6
|
private http;
|
|
6
7
|
private element;
|
|
@@ -11,4 +12,6 @@ export declare class BackgroundDirective implements OnChanges {
|
|
|
11
12
|
constructor(http: HttpClient, element: ElementRef, renderer: Renderer2, universal: UniversalService);
|
|
12
13
|
ngOnChanges(changes: SimpleChanges): void;
|
|
13
14
|
private setBackground;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BackgroundDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<BackgroundDirective, "[background]", never, { "background": "background"; "backgroundSize": "backgroundSize"; }, {}, never>;
|
|
14
17
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { TemplateRef } from "@angular/core";
|
|
2
2
|
import { ITableTemplate } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DynamicTableTemplateDirective implements ITableTemplate {
|
|
4
5
|
ref: TemplateRef<any>;
|
|
5
6
|
column: string | string[];
|
|
6
7
|
pure: boolean;
|
|
7
8
|
constructor(ref: TemplateRef<any>);
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableTemplateDirective, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicTableTemplateDirective, "ng-template[column]", never, { "column": "column"; "pure": "pure"; }, {}, never>;
|
|
8
11
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnDestroy, OnInit, TemplateRef } from "@angular/core";
|
|
2
2
|
import { IGlobalTemplates } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class GlobalTemplateDirective implements OnInit, OnDestroy {
|
|
4
5
|
readonly globalTemplates: IGlobalTemplates;
|
|
5
6
|
readonly template: TemplateRef<any>;
|
|
@@ -7,4 +8,6 @@ export declare class GlobalTemplateDirective implements OnInit, OnDestroy {
|
|
|
7
8
|
constructor(globalTemplates: IGlobalTemplates, template: TemplateRef<any>);
|
|
8
9
|
ngOnInit(): void;
|
|
9
10
|
ngOnDestroy(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalTemplateDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GlobalTemplateDirective, "[globalTemplate]", never, { "id": "globalTemplate"; }, {}, never>;
|
|
10
13
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, Renderer2, SimpleChanges } from "@angular/core";
|
|
2
2
|
import { Subscription } from "rxjs";
|
|
3
3
|
import { IIconService } from "../common-types";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class IconDirective implements OnChanges, OnInit, OnDestroy {
|
|
5
6
|
private element;
|
|
6
7
|
private renderer;
|
|
@@ -17,4 +18,6 @@ export declare class IconDirective implements OnChanges, OnInit, OnDestroy {
|
|
|
17
18
|
ngOnChanges(changes: SimpleChanges): void;
|
|
18
19
|
click(): void;
|
|
19
20
|
private changeIcon;
|
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconDirective, never>;
|
|
22
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<IconDirective, "[icon]", never, { "icon": "icon"; "activeIcon": "activeIcon"; "active": "active"; }, { "activeChange": "activeChange"; }, never>;
|
|
20
23
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DoCheck, OnChanges, SimpleChanges, TemplateRef, ViewContainerRef } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class NgxTemplateOutletDirective implements OnChanges, DoCheck {
|
|
3
4
|
private _viewContainerRef;
|
|
4
5
|
private viewRef;
|
|
@@ -11,4 +12,6 @@ export declare class NgxTemplateOutletDirective implements OnChanges, DoCheck {
|
|
|
11
12
|
ngDoCheck(): void;
|
|
12
13
|
private shouldRecreateView;
|
|
13
14
|
private updateExistingContext;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxTemplateOutletDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NgxTemplateOutletDirective, "[ngxTemplateOutlet]", never, { "context": "context"; "additionalContext": "additionalContext"; "ngxTemplateOutlet": "ngxTemplateOutlet"; }, {}, never>;
|
|
14
17
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { OnDestroy, OnInit, TemplateRef, ViewContainerRef } from "@angular/core";
|
|
2
2
|
import { PaginationDirective } from "./pagination.directive";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class PaginationItemDirective implements OnInit, OnDestroy {
|
|
4
5
|
private pagination;
|
|
5
6
|
private viewContainer;
|
|
@@ -9,4 +10,6 @@ export declare class PaginationItemDirective implements OnInit, OnDestroy {
|
|
|
9
10
|
ngOnInit(): void;
|
|
10
11
|
ngOnDestroy(): void;
|
|
11
12
|
private renderView;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationItemDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PaginationItemDirective, "[paginationItem]", never, {}, {}, never>;
|
|
12
15
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, NgZone, OnChanges, SimpleChanges } from "@angular/core";
|
|
2
2
|
import { PaginationDataLoader } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class PaginationDirective implements OnChanges {
|
|
4
5
|
private zone;
|
|
5
6
|
get total(): number;
|
|
@@ -19,4 +20,6 @@ export declare class PaginationDirective implements OnChanges {
|
|
|
19
20
|
refresh(): void;
|
|
20
21
|
paginate(page: number): void;
|
|
21
22
|
private loadData;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaginationDirective, never>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PaginationDirective, "[pagination]", ["pagination"], { "loader": "pagination"; "page": "page"; "itemsPerPage": "itemsPerPage"; "updateTime": "updateTime"; "waitFor": "waitFor"; }, { "pageChange": "pageChange"; "onRefresh": "onRefresh"; }, never>;
|
|
22
25
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ViewContainerRef, TemplateRef } from "@angular/core";
|
|
2
2
|
import { HttpClient } from "@angular/common/http";
|
|
3
3
|
import { UniversalService } from "../services/universal.service";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ResourceIfDirective {
|
|
5
6
|
private http;
|
|
6
7
|
private viewContainer;
|
|
@@ -13,4 +14,6 @@ export declare class ResourceIfDirective {
|
|
|
13
14
|
get url(): string;
|
|
14
15
|
constructor(http: HttpClient, viewContainer: ViewContainerRef, templateRef: TemplateRef<any>, universal: UniversalService);
|
|
15
16
|
private renderView;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResourceIfDirective, never>;
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<ResourceIfDirective, "[resourceIf]", ["resourceIf"], { "resourceIf": "resourceIf"; }, {}, never>;
|
|
16
19
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, OnDestroy, OnInit, Renderer2 } from "@angular/core";
|
|
2
2
|
import { EventsService } from "../services/events.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class StickyClassDirective implements OnInit, OnDestroy {
|
|
4
5
|
private events;
|
|
5
6
|
private element;
|
|
@@ -9,4 +10,6 @@ export declare class StickyClassDirective implements OnInit, OnDestroy {
|
|
|
9
10
|
constructor(events: EventsService, element: ElementRef, renderer: Renderer2);
|
|
10
11
|
ngOnInit(): void;
|
|
11
12
|
ngOnDestroy(): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StickyClassDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StickyClassDirective, "[stickyClass]", never, { "stickyClass": "stickyClass"; }, {}, never>;
|
|
12
15
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from "@angular/core";
|
|
2
2
|
import { EventsService } from "../services/events.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class StickyDirective implements OnInit, OnDestroy {
|
|
4
5
|
private cdr;
|
|
5
6
|
private events;
|
|
@@ -13,4 +14,6 @@ export declare class StickyDirective implements OnInit, OnDestroy {
|
|
|
13
14
|
ngOnInit(): void;
|
|
14
15
|
ngOnDestroy(): void;
|
|
15
16
|
updateSticky(): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StickyDirective, never>;
|
|
18
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<StickyDirective, "[sticky]", never, {}, {}, never>;
|
|
16
19
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, OnChanges, Renderer2, SimpleChanges, ViewContainerRef } from "@angular/core";
|
|
2
2
|
import { UnorderedListStyle, UnorderedListTemplates, UnorederedListTemplate } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class UnorderedListItemDirective implements OnChanges {
|
|
4
5
|
private elementRef;
|
|
5
6
|
private renderer;
|
|
@@ -22,4 +23,6 @@ export declare class UnorderedListItemDirective implements OnChanges {
|
|
|
22
23
|
constructor(elementRef: ElementRef, renderer: Renderer2, viewContainer: ViewContainerRef);
|
|
23
24
|
ngOnChanges(changes: SimpleChanges): void;
|
|
24
25
|
private isClass;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UnorderedListItemDirective, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<UnorderedListItemDirective, "[unorderedListItem]", never, { "item": "unorderedListItem"; "type": "type"; "data": "data"; "keyPrefix": "keyPrefix"; "listStyle": "listStyle"; "path": "path"; "level": "level"; "templates": "templates"; "defaultTemplates": "defaultTemplates"; }, {}, never>;
|
|
25
28
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, EmbeddedViewRef, TemplateRef } from "@angular/core";
|
|
2
2
|
import { UnorederedListTemplate } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class UnorderedListTemplateDirective extends UnorederedListTemplate {
|
|
4
5
|
elementRef: ElementRef;
|
|
5
6
|
templateRef: TemplateRef<any>;
|
|
@@ -7,4 +8,6 @@ export declare class UnorderedListTemplateDirective extends UnorederedListTempla
|
|
|
7
8
|
selector: string;
|
|
8
9
|
constructor(elementRef: ElementRef, templateRef: TemplateRef<any>);
|
|
9
10
|
createEmbeddedView(context: any): EmbeddedViewRef<any>;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UnorderedListTemplateDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<UnorderedListTemplateDirective, "ng-template[type][selector]", never, { "type": "type"; "selector": "selector"; }, {}, never>;
|
|
10
13
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ChunkPipe implements PipeTransform {
|
|
3
4
|
transform(items: any[], count: number): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChunkPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ChunkPipe, "chunk">;
|
|
4
7
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export interface IEntry {
|
|
3
4
|
key: string;
|
|
4
5
|
value: any;
|
|
@@ -6,4 +7,6 @@ export interface IEntry {
|
|
|
6
7
|
}
|
|
7
8
|
export declare class EntriesPipe implements PipeTransform {
|
|
8
9
|
transform(value: any): IEntry[];
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EntriesPipe, never>;
|
|
11
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<EntriesPipe, "entries">;
|
|
9
12
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { IExtraProperties } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ExtraItemPropertiesPipe implements PipeTransform {
|
|
4
5
|
transform(items: any[], properties: IExtraProperties, params?: any): any[];
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExtraItemPropertiesPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ExtraItemPropertiesPipe, "extraItemProperties">;
|
|
5
8
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare function defaultFilter(): boolean;
|
|
3
4
|
export declare class FilterPipe implements PipeTransform {
|
|
4
5
|
transform(values: any, filter?: any, params?: any): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FilterPipe, "filter">;
|
|
5
8
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare function defaultFilter(): boolean;
|
|
3
4
|
export declare class FindPipe implements PipeTransform {
|
|
4
5
|
transform(values: any[], filter?: any, params?: any): any[];
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FindPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FindPipe, "find">;
|
|
5
8
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { FormatterService } from "../services/formatter.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class FormatNumberPipe implements PipeTransform {
|
|
4
5
|
private formatter;
|
|
5
6
|
constructor(formatter: FormatterService);
|
|
6
7
|
transform(value: number, format?: string, precision?: number, divider?: number): string;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormatNumberPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<FormatNumberPipe, "formatNumber">;
|
|
7
10
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class GetOffsetPipe implements PipeTransform {
|
|
3
4
|
transform(value: any, offset: any): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetOffsetPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GetOffsetPipe, "getOffset">;
|
|
4
7
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class GetTypePipe implements PipeTransform {
|
|
3
4
|
transform(value: any): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetTypePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GetTypePipe, "getType">;
|
|
4
7
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OnDestroy, OnInit, PipeTransform, TemplateRef } from "@angular/core";
|
|
2
2
|
import { Subscription } from "rxjs";
|
|
3
3
|
import { IGlobalTemplates } from "../common-types";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class GlobalTemplatePipe implements PipeTransform, OnInit, OnDestroy {
|
|
5
6
|
protected globalTemplates: IGlobalTemplates;
|
|
6
7
|
protected templatesUpdated: Subscription;
|
|
@@ -10,4 +11,6 @@ export declare class GlobalTemplatePipe implements PipeTransform, OnInit, OnDest
|
|
|
10
11
|
ngOnInit(): void;
|
|
11
12
|
ngOnDestroy(): void;
|
|
12
13
|
transform(templateId: string, component?: any): TemplateRef<string>;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GlobalTemplatePipe, never>;
|
|
15
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GlobalTemplatePipe, "globalTemplate">;
|
|
13
16
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { IGroupMap } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class GroupByPipe implements PipeTransform {
|
|
4
5
|
transform(records: any[], column: string, map?: IGroupMap): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GroupByPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GroupByPipe, "groupBy">;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class IsTypePipe implements PipeTransform {
|
|
3
4
|
transform(value: any, type: string): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IsTypePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<IsTypePipe, "isType">;
|
|
4
7
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class JoinPipe implements PipeTransform {
|
|
3
4
|
transform(value: any, separator?: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<JoinPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<JoinPipe, "join">;
|
|
4
7
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class KeysPipe implements PipeTransform {
|
|
3
4
|
transform(value: any): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeysPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<KeysPipe, "keys">;
|
|
4
7
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare function defaultMapper(item: any): any;
|
|
3
4
|
export declare class MapPipe implements PipeTransform {
|
|
4
5
|
transform(values: any[], mapper?: any, params?: any): any[];
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MapPipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MapPipe, "map">;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class MaxPipe implements PipeTransform {
|
|
3
4
|
transform(value: any[], selector?: any, params?: any): number;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaxPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MaxPipe, "max">;
|
|
4
7
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class MinPipe implements PipeTransform {
|
|
3
4
|
transform(value: any, selector?: any, params?: any): number;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MinPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<MinPipe, "min">;
|
|
4
7
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare function defaultReducer(result: any): any;
|
|
3
4
|
export declare class ReducePipe implements PipeTransform {
|
|
4
5
|
transform(values: any[], source: any, reducer?: any, params?: any): any;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReducePipe, never>;
|
|
7
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ReducePipe, "reduce">;
|
|
5
8
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class RemapPipe implements PipeTransform {
|
|
3
4
|
transform(map: any, source: any, defaultValue?: string): any;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RemapPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<RemapPipe, "remap">;
|
|
4
7
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ReplacePipe implements PipeTransform {
|
|
3
4
|
transform(value: string, from: string | RegExp, to: string): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReplacePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ReplacePipe, "replace">;
|
|
4
7
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ReversePipe implements PipeTransform {
|
|
3
4
|
transform(value: any[]): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReversePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ReversePipe, "reverse">;
|
|
4
7
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { FormatterService } from "../services/formatter.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class RoundPipe implements PipeTransform {
|
|
4
5
|
private formatter;
|
|
5
6
|
constructor(formatter: FormatterService);
|
|
6
7
|
transform(value: number, precision?: number, divider?: number): number;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<RoundPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<RoundPipe, "round">;
|
|
7
10
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
2
|
import { DomSanitizer, SafeHtml } from "@angular/platform-browser";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class SafeHtmlPipe implements PipeTransform {
|
|
4
5
|
private sanitizer;
|
|
5
6
|
constructor(sanitizer: DomSanitizer);
|
|
6
7
|
transform(value: string, type?: string): SafeHtml;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
|
|
9
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safe">;
|
|
7
10
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectorRef, PipeTransform } from "@angular/core";
|
|
2
2
|
import { ILanguageService, TranslationQuery } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class TranslatePipe implements PipeTransform {
|
|
4
5
|
readonly cdr: ChangeDetectorRef;
|
|
5
6
|
readonly language: ILanguageService;
|
|
@@ -12,4 +13,7 @@ export declare class TranslatePipe implements PipeTransform {
|
|
|
12
13
|
get currentLang(): string;
|
|
13
14
|
constructor(cdr: ChangeDetectorRef, language: ILanguageService);
|
|
14
15
|
transform(query: TranslationQuery, ...args: any[]): string;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TranslatePipe, never>;
|
|
17
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<TranslatePipe, "translate">;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<TranslatePipe>;
|
|
15
19
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { PipeTransform } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ValuesPipe implements PipeTransform {
|
|
3
4
|
transform(value: any): any[];
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ValuesPipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<ValuesPipe, "values">;
|
|
4
7
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ɵDomEventsPlugin as EventManagerPlugin } from "@angular/platform-browser";
|
|
2
2
|
import { UniversalService } from "../services/universal.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ResizeEventPlugin extends EventManagerPlugin {
|
|
4
5
|
universal: UniversalService;
|
|
5
6
|
private static EVENT_NAME;
|
|
6
7
|
constructor(doc: any, universal: UniversalService);
|
|
7
8
|
supports(eventName: any): boolean;
|
|
8
9
|
addEventListener(element: HTMLElement, eventName: string, handler: Function): Function;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ResizeEventPlugin, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ResizeEventPlugin>;
|
|
9
12
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ɵDomEventsPlugin as EventManagerPlugin } from "@angular/platform-browser";
|
|
2
2
|
import { UniversalService } from "../services/universal.service";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare function emptyRemove(): void;
|
|
4
5
|
export declare class ScrollEventPlugin extends EventManagerPlugin {
|
|
5
6
|
private universal;
|
|
@@ -7,4 +8,6 @@ export declare class ScrollEventPlugin extends EventManagerPlugin {
|
|
|
7
8
|
constructor(doc: any, universal: UniversalService);
|
|
8
9
|
supports(eventName: any): boolean;
|
|
9
10
|
addEventListener(element: HTMLElement, eventName: string, handler: Function): Function;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ScrollEventPlugin, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ScrollEventPlugin>;
|
|
10
13
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Injector } from "@angular/core";
|
|
2
2
|
import { StateService } from "./state.service";
|
|
3
3
|
import { IAuthService, IRouteStateInfo } from "../common-types";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class AclService {
|
|
5
6
|
readonly injector: Injector;
|
|
6
7
|
readonly state: StateService;
|
|
@@ -8,4 +9,6 @@ export declare class AclService {
|
|
|
8
9
|
protected components: IRouteStateInfo[];
|
|
9
10
|
constructor(injector: Injector, state: StateService, auth: IAuthService);
|
|
10
11
|
protected getStateInfo(): IRouteStateInfo;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AclService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AclService>;
|
|
11
14
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { IApiService, IHttpParams, IRequestOptions, ProgressListener } from "../common-types";
|
|
2
2
|
import { BaseHttpService } from "./base-http.service";
|
|
3
3
|
import { IPaginationData } from "../common-types";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ApiService extends BaseHttpService implements IApiService {
|
|
5
6
|
get name(): string;
|
|
6
7
|
url(url: string): string;
|
|
@@ -11,4 +12,6 @@ export declare class ApiService extends BaseHttpService implements IApiService {
|
|
|
11
12
|
patch(url: string, body?: any, options?: IRequestOptions): Promise<any>;
|
|
12
13
|
upload(url: string, body: any, listener?: ProgressListener, options?: IRequestOptions): Promise<any>;
|
|
13
14
|
list(url: string, params: IHttpParams): Promise<IPaginationData>;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ApiService, never>;
|
|
16
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ApiService>;
|
|
14
17
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HttpClient, HttpHandler, HttpHeaders, HttpParams } from "@angular/common/http";
|
|
2
2
|
import { IHttpHeaders, IHttpParams } from "../common-types";
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class BaseHttpClient extends HttpClient {
|
|
4
5
|
requestHeaders: IHttpHeaders;
|
|
5
6
|
requestParams: IHttpParams;
|
|
@@ -9,4 +10,6 @@ export declare class BaseHttpClient extends HttpClient {
|
|
|
9
10
|
makeHeaders(headers?: IHttpHeaders, withCredentials?: boolean): HttpHeaders;
|
|
10
11
|
makeParams(params?: IHttpParams): HttpParams;
|
|
11
12
|
setExtraRequestParam(name: string, value?: any): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseHttpClient, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseHttpClient>;
|
|
12
15
|
}
|
|
@@ -4,6 +4,7 @@ import { HttpPromise, IConfigService, IHttpHeaders, IHttpParams, IHttpService, I
|
|
|
4
4
|
import { BaseHttpClient } from "./base-http.client";
|
|
5
5
|
import { UniversalService } from "./universal.service";
|
|
6
6
|
import { StorageService } from "./storage.service";
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class BaseHttpService implements IHttpService {
|
|
8
9
|
readonly client: BaseHttpClient;
|
|
9
10
|
readonly storage: StorageService;
|
|
@@ -43,4 +44,6 @@ export declare class BaseHttpService implements IHttpService {
|
|
|
43
44
|
protected parseUrl(url: string): string;
|
|
44
45
|
protected absoluteUrl(url: string, options: IRequestOptions): Promise<string>;
|
|
45
46
|
protected expressRequestUrl(url: string): string;
|
|
47
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseHttpService, [null, null, null, null, null, { optional: true; }]>;
|
|
48
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BaseHttpService>;
|
|
46
49
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from "@angular/common/http";
|
|
2
2
|
import { UniversalService } from "./universal.service";
|
|
3
3
|
import { IConfigService, IConfiguration } from "../common-types";
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ConfigService implements IConfigService {
|
|
5
6
|
readonly http: HttpClient;
|
|
6
7
|
readonly universal: UniversalService;
|
|
@@ -21,4 +22,6 @@ export declare class ConfigService implements IConfigService {
|
|
|
21
22
|
prepareUrl(url: string, ending: string): string;
|
|
22
23
|
getConfigValue(key: string): any;
|
|
23
24
|
getQueryParameter(name: string, url?: string): string;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfigService, [null, null, null, { optional: true; }, { optional: true; }]>;
|
|
26
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigService>;
|
|
24
27
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { ErrorHandler, Injector } from "@angular/core";
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class ErrorHandlerService extends ErrorHandler {
|
|
3
4
|
readonly injector: Injector;
|
|
4
5
|
private toaster;
|
|
@@ -7,4 +8,6 @@ export declare class ErrorHandlerService extends ErrorHandler {
|
|
|
7
8
|
private readonly errorMap;
|
|
8
9
|
constructor(injector: Injector);
|
|
9
10
|
handleError(error: Error): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ErrorHandlerService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ErrorHandlerService>;
|
|
10
13
|
}
|