@acorex/core 16.19.58 → 16.20.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.
Files changed (48) hide show
  1. package/fesm2022/acorex-core.mjs +92 -92
  2. package/fesm2022/acorex-core.mjs.map +1 -1
  3. package/index.d.ts +539 -43
  4. package/package.json +1 -1
  5. package/lib/classes/base-page.class.d.ts +0 -13
  6. package/lib/classes/color.class.d.ts +0 -17
  7. package/lib/classes/datetime.class.d.ts +0 -63
  8. package/lib/classes/menu.class.d.ts +0 -34
  9. package/lib/classes/navigator.class.d.ts +0 -5
  10. package/lib/classes/popup.class.d.ts +0 -12
  11. package/lib/classes/promise.class.d.ts +0 -7
  12. package/lib/classes/sectionlist.class.d.ts +0 -8
  13. package/lib/classes/select.class.d.ts +0 -7
  14. package/lib/core.module.d.ts +0 -9
  15. package/lib/error/error.class.d.ts +0 -4
  16. package/lib/error/error.module.d.ts +0 -7
  17. package/lib/error/error.service.d.ts +0 -13
  18. package/lib/events/keyboard.d.ts +0 -2
  19. package/lib/http/http-error.class.d.ts +0 -7
  20. package/lib/http/http-events.interceptor.d.ts +0 -10
  21. package/lib/http/http-request.class.d.ts +0 -14
  22. package/lib/http/http-result.class.d.ts +0 -11
  23. package/lib/http/http.module.d.ts +0 -10
  24. package/lib/http/http.service.d.ts +0 -23
  25. package/lib/pipe/datetime.pipe.d.ts +0 -8
  26. package/lib/pipe/htmlToText.pipe.d.ts +0 -7
  27. package/lib/platform/index.d.ts +0 -1
  28. package/lib/platform/platform.service.d.ts +0 -26
  29. package/lib/services/config.d.ts +0 -9
  30. package/lib/services/event.service.d.ts +0 -9
  31. package/lib/services/navigator.service.d.ts +0 -8
  32. package/lib/services/storage.service.d.ts +0 -7
  33. package/lib/translator/translator.d.ts +0 -9
  34. package/lib/translator/translator.module.d.ts +0 -8
  35. package/lib/translator/translator.pipe.d.ts +0 -8
  36. package/lib/translator/translator.service.d.ts +0 -8
  37. package/lib/utils/array/array-util.d.ts +0 -6
  38. package/lib/utils/html/html-util.d.ts +0 -62
  39. package/lib/utils/html/html.module.d.ts +0 -8
  40. package/lib/utils/math/math-util.d.ts +0 -3
  41. package/lib/utils/object/object-util.d.ts +0 -7
  42. package/lib/utils/render/on-demand-preload-strategy.service.d.ts +0 -10
  43. package/lib/utils/render/render.service.d.ts +0 -18
  44. package/lib/utils/render/rendering.module.d.ts +0 -8
  45. package/lib/utils/scroll/scroll.directive.d.ts +0 -18
  46. package/lib/utils/scroll/scroll.module.d.ts +0 -8
  47. package/lib/utils/separator/separator.module.d.ts +0 -8
  48. package/lib/utils/separator/separator.pipe.d.ts +0 -8
@@ -1,63 +0,0 @@
1
- export type TimeUnit = 'second' | 'minute' | 'minutes' | 'hour' | 'hours' | 'day' | 'days' | 'month' | 'year' | 'week';
2
- export type TimeDuration = 'seconds' | 'minutes' | 'hours' | 'days' | 'weeks' | 'month' | 'years';
3
- export type TimeStep = 'Y' | 'M' | 'D' | 'YM' | 'YMD' | 'YMDh' | 'YMDhm' | 'YMDhms' | 'h' | 'm' | 's';
4
- export type AXCalendarType = 'jalali' | 'gregorian';
5
- export declare class AXDateTime {
6
- type: AXCalendarType;
7
- static convert(value: any, type?: AXCalendarType): AXDateTime;
8
- private _date;
9
- get date(): Date;
10
- private resolveUnit;
11
- private _moment;
12
- constructor(value?: Date | string, type?: AXCalendarType);
13
- clone(): AXDateTime;
14
- get dayInMonth(): number;
15
- get dayOfYear(): number;
16
- get dayInWeek(): number;
17
- get hour(): number;
18
- get minute(): number;
19
- get second(): number;
20
- get year(): number;
21
- get monthOfYear(): number;
22
- get month(): AXCalendarMonth;
23
- get firstDayOfWeek(): AXDateTime;
24
- get endDayOfWeek(): AXDateTime;
25
- convertStringToJalali(date: string, format: string): string;
26
- convertStringToGregorian(date: string, format: string): Date;
27
- add(unit: TimeUnit, amount: number): AXDateTime;
28
- addDay(amount: number): AXDateTime;
29
- addMonth(amount: number): AXDateTime;
30
- addHour(amount: number): AXDateTime;
31
- set(unit: TimeUnit, value: number): AXDateTime;
32
- duration(end: AXDateTime, unit?: TimeDuration): number;
33
- startOf(unit?: TimeUnit): AXDateTime;
34
- endOf(unit?: TimeUnit): AXDateTime;
35
- format(format?: string): string;
36
- toString(): string;
37
- equal(value: AXDateTime, unit?: TimeUnit): boolean;
38
- convertToJalaliDate(value: any): any;
39
- toJalaliString(value: any): string;
40
- convertToGregorianDate(value: any): any;
41
- toGregorianString(value: any): string;
42
- compaireNew(value: AXDateTime, unit?: TimeStep, type?: string): 1 | -1 | 0;
43
- compaire(value: AXDateTime, unit?: TimeUnit): 1 | -1 | 0;
44
- toISOString(): string;
45
- }
46
- export declare class AXCalendarMonth {
47
- private _moment;
48
- private _range;
49
- get range(): AXDateTimeRange;
50
- set range(v: AXDateTimeRange);
51
- constructor(date: AXDateTime);
52
- private readonly index;
53
- private readonly name;
54
- }
55
- export declare class AXDateTimeRange {
56
- startTime: AXDateTime;
57
- endTime: AXDateTime;
58
- constructor(startTime: AXDateTime, endTime: AXDateTime);
59
- duration(unit?: TimeDuration): number;
60
- enumurate(unit?: TimeUnit, type?: AXCalendarType): AXDateTime[];
61
- includes(value: AXDateTime, unit?: TimeUnit, type?: string): boolean;
62
- getViewCompaire(view: any): "Y" | "YM" | "YMD";
63
- }
@@ -1,34 +0,0 @@
1
- export declare class AXBaseMenuItem {
2
- uid?: string;
3
- id?: string;
4
- name?: string;
5
- text?: string;
6
- tooltip?: string;
7
- tooltipPlacement?: 'top' | 'right' | 'bottom' | 'left';
8
- icon?: string;
9
- visible?: boolean;
10
- disable?: boolean;
11
- selected?: boolean;
12
- groupName?: string;
13
- data?: any;
14
- style?: string;
15
- orderIndex?: number;
16
- endIcon?: string;
17
- startIcon?: string;
18
- onClick?: (e?: any) => void;
19
- }
20
- export declare class AXMenuItem extends AXBaseMenuItem {
21
- items?: AXMenuItem[];
22
- parentId?: string;
23
- divider?: boolean;
24
- }
25
- export declare class AXButtonItem extends AXBaseMenuItem {
26
- dropdown?: boolean;
27
- submitBehavior?: boolean;
28
- cancelBehavior?: boolean;
29
- }
30
- export declare class AXCheckItem {
31
- text?: string;
32
- value?: any;
33
- selected?: boolean;
34
- }
@@ -1,5 +0,0 @@
1
- export interface AXNavigatorParam {
2
- path: string;
3
- title?: string;
4
- data?: any;
5
- }
@@ -1,12 +0,0 @@
1
- export interface ClosingEventArgs {
2
- cancel?: boolean;
3
- data?: any;
4
- }
5
- export interface ClosingAction {
6
- cancel?: boolean;
7
- data?: any;
8
- resolve: () => void;
9
- }
10
- export interface ClosedEventArgs {
11
- data?: any;
12
- }
@@ -1,7 +0,0 @@
1
- export declare class AXPromise<T> {
2
- private _executor;
3
- private thenAction?;
4
- static resolve<T>(value: T): AXPromise<T>;
5
- constructor(executor: (then?: (e?: T) => void) => void);
6
- then(action?: (e?: T) => void): AXPromise<T>;
7
- }
@@ -1,8 +0,0 @@
1
- export interface AXSelectionList {
2
- id?: string;
3
- name?: string;
4
- text: string;
5
- value: boolean;
6
- disable?: boolean;
7
- readonly?: boolean;
8
- }
@@ -1,7 +0,0 @@
1
- export declare class AXSelectItem {
2
- id: string;
3
- name?: string;
4
- text: string;
5
- visible?: boolean;
6
- disable?: boolean;
7
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./pipe/datetime.pipe";
3
- import * as i2 from "./utils/scroll/scroll.module";
4
- import * as i3 from "./translator/translator.module";
5
- export declare class AXCoreModule {
6
- static ɵfac: i0.ɵɵFactoryDeclaration<AXCoreModule, never>;
7
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXCoreModule, [typeof i1.AXDateTimePipe], [typeof i2.AXScrollModule, typeof i3.AXTranslatorModule], [typeof i1.AXDateTimePipe]>;
8
- static ɵinj: i0.ɵɵInjectorDeclaration<AXCoreModule>;
9
- }
@@ -1,4 +0,0 @@
1
- export interface AXError {
2
- message: string;
3
- code: string;
4
- }
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "@angular/common";
3
- export declare class AXErrorModule {
4
- static ɵfac: i0.ɵɵFactoryDeclaration<AXErrorModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXErrorModule, never, [typeof i1.CommonModule], never>;
6
- static ɵinj: i0.ɵɵInjectorDeclaration<AXErrorModule>;
7
- }
@@ -1,13 +0,0 @@
1
- import { InjectionToken, Injector } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare const AX_ERROR_DISPLAY_INTERCEPTOR: InjectionToken<AXErrorDisplayInterceptor>;
4
- export interface AXErrorDisplayInterceptor {
5
- show(message: string): any;
6
- }
7
- export declare class AXErrorService {
8
- private injector;
9
- constructor(injector: Injector);
10
- handle(message: string): void;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<AXErrorService, never>;
12
- static ɵprov: i0.ɵɵInjectableDeclaration<AXErrorService>;
13
- }
@@ -1,2 +0,0 @@
1
- export interface AXKeyboardEvent extends KeyboardEvent {
2
- }
@@ -1,7 +0,0 @@
1
- export interface IHttpError {
2
- message?: string;
3
- status?: number;
4
- code?: string;
5
- handled: boolean;
6
- error: any | null;
7
- }
@@ -1,10 +0,0 @@
1
- import { IHttpError } from './http-error.class';
2
- import { InjectionToken } from '@angular/core';
3
- import { AXHttpRequestOptions } from './http-request.class';
4
- export declare const AX_HTTP_EVENT_INTERCEPTOR: InjectionToken<AXHttpEventInterceptor>;
5
- export interface AXHttpEventInterceptor {
6
- begin(request: AXHttpRequestOptions): Promise<AXHttpRequestOptions>;
7
- success(request: AXHttpRequestOptions, result: any): Promise<any>;
8
- complete(request: AXHttpRequestOptions): any;
9
- error(request: AXHttpRequestOptions, error: IHttpError): any;
10
- }
@@ -1,14 +0,0 @@
1
- export interface AXHttpRequestOptions {
2
- url?: any;
3
- params?: {
4
- [param: string]: any;
5
- };
6
- body?: {
7
- [param: string]: any;
8
- };
9
- headers?: {
10
- [header: string]: any;
11
- };
12
- method?: 'get' | 'post' | 'put' | 'delete';
13
- responseType?: any;
14
- }
@@ -1,11 +0,0 @@
1
- import { IHttpError } from './http-error.class';
2
- export declare class HttpResult<T> {
3
- private _executor;
4
- constructor(executor: (result: (e?: T) => void, error: (e?: IHttpError) => void, complete: () => void) => void);
5
- private resultAction;
6
- private errorAction;
7
- private completeAction;
8
- result(action: (e?: T) => void): HttpResult<T>;
9
- error(action: (e?: IHttpError) => void): HttpResult<T>;
10
- complete(action: () => void): HttpResult<T>;
11
- }
@@ -1,10 +0,0 @@
1
- import { ModuleWithProviders } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "@angular/common/http";
5
- export declare class AXHttpModule {
6
- static forRoot(): ModuleWithProviders<AXHttpModule>;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<AXHttpModule, never>;
8
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXHttpModule, never, [typeof i1.CommonModule, typeof i2.HttpClientModule], [typeof i2.HttpClientModule]>;
9
- static ɵinj: i0.ɵɵInjectorDeclaration<AXHttpModule>;
10
- }
@@ -1,23 +0,0 @@
1
- import { Injector } from '@angular/core';
2
- import { HttpClient } from '@angular/common/http';
3
- import { HttpResult } from './http-result.class';
4
- import { AXHttpRequestOptions } from './http-request.class';
5
- import * as i0 from "@angular/core";
6
- export declare class AXHttpService {
7
- private http;
8
- private injector;
9
- private interceptor;
10
- constructor(http: HttpClient, injector: Injector);
11
- get<T>(url: string, config?: AXHttpRequestOptions): HttpResult<T>;
12
- post<T>(url: string, config?: AXHttpRequestOptions): HttpResult<T>;
13
- delete<T>(url: string, config?: AXHttpRequestOptions): HttpResult<T>;
14
- put<T>(url: string, config?: AXHttpRequestOptions): HttpResult<T>;
15
- request<T>(config: AXHttpRequestOptions): HttpResult<T>;
16
- private handleResult;
17
- private handleBegin;
18
- private handleComplete;
19
- private handleError;
20
- private mapOptions;
21
- static ɵfac: i0.ɵɵFactoryDeclaration<AXHttpService, never>;
22
- static ɵprov: i0.ɵɵInjectableDeclaration<AXHttpService>;
23
- }
@@ -1,8 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class AXDateTimePipe implements PipeTransform {
4
- constructor();
5
- transform(value: any, format?: string): string;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<AXDateTimePipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<AXDateTimePipe, "dt", false>;
8
- }
@@ -1,7 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class AXHtmlToTextPipe implements PipeTransform {
4
- transform(value: string): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<AXHtmlToTextPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<AXHtmlToTextPipe, "html2text", false>;
7
- }
@@ -1 +0,0 @@
1
- export * from './platform.service';
@@ -1,26 +0,0 @@
1
- import { Subject } from "rxjs";
2
- import * as i0 from "@angular/core";
3
- export type AXPlatforms = 'Android' | 'Desktop' | 'iOS' | 'Mobile' | '';
4
- export type AXBrowsers = 'Chrome' | 'Safari' | 'Edge' | 'Firefox' | 'Opera' | 'MSIE';
5
- export type AXTechnologies = 'PWA' | 'Hybrid' | 'Electron';
6
- export type AXScreenSizes = 'SM' | 'MD' | 'LG' | 'XL' | '2XL';
7
- export declare const testUserAgent: (win: Window, expr: RegExp) => boolean;
8
- export declare class AXPlatformEvent {
9
- nativeEvent: UIEvent | Event;
10
- source: AXPlatform;
11
- }
12
- export declare class AXPlatform {
13
- resize: Subject<AXPlatformEvent>;
14
- click: Subject<AXPlatformEvent>;
15
- scroll: Subject<AXPlatformEvent>;
16
- isRtl(): boolean;
17
- isLandscape(): boolean;
18
- isPortrate(): boolean;
19
- is(name: AXPlatforms | AXBrowsers | AXTechnologies | AXScreenSizes): boolean;
20
- switchDarkMode(): void;
21
- switchLightMode(): void;
22
- private _setFullHeightRatio;
23
- constructor();
24
- static ɵfac: i0.ɵɵFactoryDeclaration<AXPlatform, never>;
25
- static ɵprov: i0.ɵɵInjectableDeclaration<AXPlatform>;
26
- }
@@ -1,9 +0,0 @@
1
- import { Observable } from 'rxjs';
2
- export declare class AXConfig {
3
- private static dataModel;
4
- private static dataChangeSubject;
5
- static get onChange(): Observable<any>;
6
- static set(config: any): any;
7
- static set(path: string, value?: any): void;
8
- static get(path: string): any;
9
- }
@@ -1,9 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class AXEventService {
3
- private list;
4
- broadcast(key: string, options?: any): void;
5
- on(key: string, callback: (options?: any) => void): void;
6
- destroy(key: string, callback: (options?: any) => void): void;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<AXEventService, never>;
8
- static ɵprov: i0.ɵɵInjectableDeclaration<AXEventService>;
9
- }
@@ -1,8 +0,0 @@
1
- import { AXNavigatorParam } from '../classes/navigator.class';
2
- import * as i0 from "@angular/core";
3
- export declare abstract class AXNavigator {
4
- abstract navigate(params: AXNavigatorParam): any;
5
- abstract popup(params: AXNavigatorParam): any;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<AXNavigator, never>;
7
- static ɵprov: i0.ɵɵInjectableDeclaration<AXNavigator>;
8
- }
@@ -1,7 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class AXStorageService {
3
- get(key: string): any;
4
- set(key: string, value: any): void;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<AXStorageService, never>;
6
- static ɵprov: i0.ɵɵInjectableDeclaration<AXStorageService>;
7
- }
@@ -1,9 +0,0 @@
1
- import { Observable } from 'rxjs';
2
- export declare class AXTranslator {
3
- private static lang;
4
- private static dataChangeSubject;
5
- static get onChange(): Observable<any>;
6
- static load(lang: string, value: any): void;
7
- static use(lang: string): void;
8
- static get(key: string, lang?: string): string;
9
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./translator.pipe";
3
- export declare class AXTranslatorModule {
4
- constructor();
5
- static ɵfac: i0.ɵɵFactoryDeclaration<AXTranslatorModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXTranslatorModule, [typeof i1.AXTranslatorPipe], never, [typeof i1.AXTranslatorPipe]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<AXTranslatorModule>;
8
- }
@@ -1,8 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class AXTranslatorPipe implements PipeTransform {
4
- constructor();
5
- transform(value: string, lang?: string): string;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<AXTranslatorPipe, never>;
7
- static ɵpipe: i0.ɵɵPipeDeclaration<AXTranslatorPipe, "trans", false>;
8
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class AXTranslatorService {
3
- load(lang: string, value: any): void;
4
- use(lang: string): void;
5
- get(key: string, lang?: string): string;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<AXTranslatorService, never>;
7
- static ɵprov: i0.ɵɵInjectableDeclaration<AXTranslatorService>;
8
- }
@@ -1,6 +0,0 @@
1
- export declare class AXArrayUtil {
2
- static pickRandom(array: any[]): any;
3
- static insert(array: any[], index: any, ...rest: any[]): any[];
4
- static range(min: number, max: number): number[];
5
- static filter(array: any[], filters: any[]): any[];
6
- }
@@ -1,62 +0,0 @@
1
- export type AXPlacement = 'top-start' | 'top-middle' | 'top-end' | 'center-start' | 'center-end' | 'bottom-start' | 'bottom-middle' | 'bottom-end';
2
- export interface AXIPoint {
3
- x: number;
4
- y: number;
5
- }
6
- export interface AXConnectedPosition {
7
- originX: 'start' | 'center' | 'end';
8
- originY: 'top' | 'center' | 'bottom';
9
- overlayX: 'start' | 'center' | 'end';
10
- overlayY: 'top' | 'center' | 'bottom';
11
- weight?: number;
12
- offsetX?: number;
13
- offsetY?: number;
14
- }
15
- export declare class AXPoint implements AXIPoint {
16
- x: number;
17
- y: number;
18
- constructor(x: number, y: number);
19
- }
20
- export interface AXClientRecCtor {
21
- left?: number;
22
- top?: number;
23
- width?: number;
24
- height?: number;
25
- bottom?: number;
26
- right?: number;
27
- }
28
- export declare class AXClientRec implements AXClientRecCtor {
29
- private _left;
30
- get left(): number;
31
- set left(v: number);
32
- private _top;
33
- get top(): number;
34
- set top(v: number);
35
- private _right;
36
- get right(): number;
37
- set right(v: number);
38
- private _bottom;
39
- get bottom(): number;
40
- set bottom(v: number);
41
- private _width;
42
- get width(): number;
43
- set width(v: number);
44
- private _height;
45
- get height(): number;
46
- set height(v: number);
47
- constructor(rec: AXClientRecCtor);
48
- intersect(rec: AXClientRecCtor): boolean;
49
- }
50
- export declare class AXHtmlUtil {
51
- static getBoundingRectPoint(el: HTMLElement, placement: AXPlacement): AXPoint;
52
- static isInRecPoint(pos: AXIPoint, rec: AXClientRecCtor): boolean;
53
- static isInElementBound(pos: AXIPoint, element: HTMLElement): boolean;
54
- static getDimensions(): {
55
- width: number;
56
- height: number;
57
- };
58
- static getOffsetRight(elem: HTMLElement): number;
59
- static getUID(): string;
60
- static getRelatedPosition(source: HTMLElement, placement: AXPlacement, target: HTMLElement, alignment: AXPlacement): AXIPoint;
61
- static collision(a: HTMLElement, b: HTMLElement): boolean;
62
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "../../pipe/htmlToText.pipe";
3
- import * as i2 from "@angular/common";
4
- export declare class AXHtmlModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<AXHtmlModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXHtmlModule, [typeof i1.AXHtmlToTextPipe], [typeof i2.CommonModule], [typeof i1.AXHtmlToTextPipe]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<AXHtmlModule>;
8
- }
@@ -1,3 +0,0 @@
1
- export declare class AXMathUtil {
2
- static randomRange(min: number, max: number): number;
3
- }
@@ -1,7 +0,0 @@
1
- export declare class AXObjectUtil {
2
- static deepJSONClone(obj: any): any;
3
- static deepCopy(obj: any): any;
4
- }
5
- export declare function AXFetchProp(obj: any, prop: string): any;
6
- export declare function getPropByPath(obj: any, path: any, defaultVal?: any): any;
7
- export declare function setPropByPath(obj: any, path: any, value: any): any;
@@ -1,10 +0,0 @@
1
- import { Subject } from 'rxjs';
2
- import * as i0 from "@angular/core";
3
- export declare class AXOnDemandPreloadService {
4
- subject: Subject<string>;
5
- tmp: string;
6
- constructor();
7
- startPreload(routePath: string): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<AXOnDemandPreloadService, never>;
9
- static ɵprov: i0.ɵɵInjectableDeclaration<AXOnDemandPreloadService>;
10
- }
@@ -1,18 +0,0 @@
1
- import { ApplicationRef, ComponentFactoryResolver, ComponentRef, Injector, Type, Compiler } from '@angular/core';
2
- import { Router, Route } from '@angular/router';
3
- import { AXOnDemandPreloadService } from './on-demand-preload-strategy.service';
4
- import * as i0 from "@angular/core";
5
- export declare class AXRenderService {
6
- private appRef;
7
- private router;
8
- private componentFactoryResolver;
9
- private compiler;
10
- private modulePreloadService;
11
- private injector;
12
- constructor(appRef: ApplicationRef, router: Router, componentFactoryResolver: ComponentFactoryResolver, compiler: Compiler, modulePreloadService: AXOnDemandPreloadService, injector: Injector);
13
- appendComponent<T>(componentClass: Type<T>, options?: any, location?: Element): ComponentRef<any>;
14
- findLoadedComponentByRoute(path: string, timeoutTime?: number): Promise<Route>;
15
- private _findLoadedComponentByRoute;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<AXRenderService, never>;
17
- static ɵprov: i0.ɵɵInjectableDeclaration<AXRenderService>;
18
- }
@@ -1,8 +0,0 @@
1
- import { AXOnDemandPreloadService } from './on-demand-preload-strategy.service';
2
- import * as i0 from "@angular/core";
3
- export declare function getOnDemandPreloadServiceFactory(): AXOnDemandPreloadService;
4
- export declare class AXRenderingModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<AXRenderingModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXRenderingModule, never, never, never>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<AXRenderingModule>;
8
- }
@@ -1,18 +0,0 @@
1
- import { ElementRef } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class AXHorizontalScrollDirective {
4
- private el;
5
- constructor(el: ElementRef<HTMLElement>);
6
- scrollValue: number;
7
- onMouseWheel(e: any): void;
8
- static ɵfac: i0.ɵɵFactoryDeclaration<AXHorizontalScrollDirective, never>;
9
- static ɵdir: i0.ɵɵDirectiveDeclaration<AXHorizontalScrollDirective, "[horizontalScroll]", never, { "scrollValue": { "alias": "horizontalScroll"; "required": false; }; }, {}, never, never, false, never>;
10
- }
11
- export declare class AXVerticalScrollDirective {
12
- private el;
13
- constructor(el: ElementRef<HTMLElement>);
14
- scrollValue: number;
15
- onMouseWheel(e: any): void;
16
- static ɵfac: i0.ɵɵFactoryDeclaration<AXVerticalScrollDirective, never>;
17
- static ɵdir: i0.ɵɵDirectiveDeclaration<AXVerticalScrollDirective, "[verticalScroll]", never, { "scrollValue": { "alias": "verticalScroll"; "required": false; }; }, {}, never, never, false, never>;
18
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./scroll.directive";
3
- import * as i2 from "@angular/common";
4
- export declare class AXScrollModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<AXScrollModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXScrollModule, [typeof i1.AXHorizontalScrollDirective, typeof i1.AXVerticalScrollDirective], [typeof i2.CommonModule], [typeof i1.AXHorizontalScrollDirective, typeof i1.AXVerticalScrollDirective]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<AXScrollModule>;
8
- }
@@ -1,8 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./separator.pipe";
3
- import * as i2 from "@angular/common";
4
- export declare class AXSeparatorModule {
5
- static ɵfac: i0.ɵɵFactoryDeclaration<AXSeparatorModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXSeparatorModule, [typeof i1.AXSeparatorPipe], [typeof i2.CommonModule], [typeof i1.AXSeparatorPipe]>;
7
- static ɵinj: i0.ɵɵInjectorDeclaration<AXSeparatorModule>;
8
- }
@@ -1,8 +0,0 @@
1
- import { PipeTransform } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class AXSeparatorPipe implements PipeTransform {
4
- transform(value: number | string, currency?: string, decimal?: number, locale?: string): string;
5
- static ɵfac: i0.ɵɵFactoryDeclaration<AXSeparatorPipe, never>;
6
- static ɵpipe: i0.ɵɵPipeDeclaration<AXSeparatorPipe, "separator", false>;
7
- static ɵprov: i0.ɵɵInjectableDeclaration<AXSeparatorPipe>;
8
- }