ngx-universal-zone 1.0.6 → 2.0.1
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/README.md +2 -0
- package/analytics/index.d.ts +237 -0
- package/database/index.d.ts +122 -6
- package/fesm2022/ngx-universal-zone-analytics.mjs +403 -0
- package/fesm2022/ngx-universal-zone-analytics.mjs.map +1 -0
- package/fesm2022/ngx-universal-zone-database.mjs +8 -22
- package/fesm2022/ngx-universal-zone-database.mjs.map +1 -1
- package/fesm2022/ngx-universal-zone-pipes.mjs +6 -6
- package/fesm2022/ngx-universal-zone-pipes.mjs.map +1 -1
- package/fesm2022/ngx-universal-zone-pub-sub.mjs +7 -7
- package/fesm2022/ngx-universal-zone-pub-sub.mjs.map +1 -1
- package/fesm2022/ngx-universal-zone-ui.mjs +20 -20
- package/fesm2022/ngx-universal-zone-ui.mjs.map +1 -1
- package/fesm2022/ngx-universal-zone.mjs +20 -34
- package/fesm2022/ngx-universal-zone.mjs.map +1 -1
- package/index.d.ts +184 -3
- package/package.json +8 -4
- package/pipes/index.d.ts +29 -2
- package/pub-sub/index.d.ts +37 -2
- package/ui/index.d.ts +56 -5
- package/database/db-base.service.d.ts +0 -37
- package/database/db-setting-constant.d.ts +0 -7
- package/database/db-web.service.d.ts +0 -50
- package/database/db.module.d.ts +0 -9
- package/database/schema.service.d.ts +0 -25
- package/pipes/formateDate.pipe.d.ts +0 -8
- package/pipes/safe.pipe.d.ts +0 -18
- package/pub-sub/i-hash.d.ts +0 -10
- package/pub-sub/ngx-pub-sub.module.d.ts +0 -7
- package/pub-sub/ngx-pub-sub.service.d.ts +0 -27
- package/pub-sub/subject-type.enum.d.ts +0 -5
- package/public-api.d.ts +0 -6
- package/shared/app-injector.d.ts +0 -6
- package/shared/app-setting.service.d.ts +0 -18
- package/shared/flag-based-preloading-strategy.d.ts +0 -12
- package/shared/helper.service.d.ts +0 -15
- package/shared/message-bus/index.d.ts +0 -4
- package/shared/message-bus/message-bus.d.ts +0 -15
- package/shared/message-bus/message-bus.testing.d.ts +0 -9
- package/shared/message-bus/messages.d.ts +0 -2
- package/shared/message-bus/models.d.ts +0 -39
- package/shared/universal-zone.module.d.ts +0 -2
- package/ui/directives/directives.module.d.ts +0 -9
- package/ui/directives/long-ress.directive.d.ts +0 -21
- package/ui/directives/only-number.directive.d.ts +0 -7
- package/ui/no-data/no-data.component.d.ts +0 -13
- package/ui/no-data/no-data.module.d.ts +0 -8
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import Dexie from 'dexie';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import { SchemaService } from './schema.service';
|
|
4
|
-
import { DbService, DbServiceConfig } from './db-base.service';
|
|
5
|
-
export declare class DbWebService extends Dexie implements DbService {
|
|
6
|
-
private config;
|
|
7
|
-
private schemaService;
|
|
8
|
-
private _db;
|
|
9
|
-
private dbInitialized;
|
|
10
|
-
constructor(config: DbServiceConfig, schemaService: SchemaService);
|
|
11
|
-
dbInitialized$: Observable<any>;
|
|
12
|
-
get Db(): Dexie;
|
|
13
|
-
putLocal(store: any, data: any): Promise<{
|
|
14
|
-
rowsAffected: any;
|
|
15
|
-
insertId: any;
|
|
16
|
-
}>;
|
|
17
|
-
putLocalRx(store: any, data: any): Observable<unknown>;
|
|
18
|
-
get<T>(store: string, key: any): Promise<T>;
|
|
19
|
-
getRx<T>(store: string, key: any): Observable<T>;
|
|
20
|
-
getByFieldName<T>(storeName: any, fieldName: any, key: any): Promise<Array<T>>;
|
|
21
|
-
getAll<T>(store: string, opt?: DbFilter): Promise<T>;
|
|
22
|
-
getAllRx<T>(store: string, opt?: DbFilter): Observable<T>;
|
|
23
|
-
remove(store: any, key: any): Promise<any>;
|
|
24
|
-
removeRx(store: any, key: any): Observable<any>;
|
|
25
|
-
removeAll(store: any): Promise<void>;
|
|
26
|
-
removeAllRx(store: string): Observable<any[]>;
|
|
27
|
-
count(store: any, opts?: {
|
|
28
|
-
key: any;
|
|
29
|
-
}): Promise<number>;
|
|
30
|
-
countRx(store: any, opts?: {
|
|
31
|
-
key: any;
|
|
32
|
-
}): Observable<number>;
|
|
33
|
-
deleteDb(): Promise<unknown>;
|
|
34
|
-
deleteTable(store: any): Observable<void>;
|
|
35
|
-
}
|
|
36
|
-
export interface DbFilter {
|
|
37
|
-
key?: any;
|
|
38
|
-
value?: any;
|
|
39
|
-
keyRange?: KeyRangeType;
|
|
40
|
-
pageIndex?: number;
|
|
41
|
-
pageSize?: number;
|
|
42
|
-
sortBy?: any;
|
|
43
|
-
sortType?: 'asc' | 'desc';
|
|
44
|
-
}
|
|
45
|
-
export declare enum KeyRangeType {
|
|
46
|
-
equalToIgnoreCase = 1,
|
|
47
|
-
startsWithIgnoreCase = 2,
|
|
48
|
-
equalTo = 3,
|
|
49
|
-
notEqualTo = 4
|
|
50
|
-
}
|
package/database/db.module.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { EnvironmentProviders, Type } from '@angular/core';
|
|
2
|
-
import { SchemaService } from './schema.service';
|
|
3
|
-
import { DbWebService } from './db-web.service';
|
|
4
|
-
import { DbService } from './db-base.service';
|
|
5
|
-
export declare function dbFactory(schemaSvc: SchemaService, customDbService?: Type<DbService>): DbWebService | DbService;
|
|
6
|
-
/**
|
|
7
|
-
* Optionally accepts a custom DbService class (e.g., from ngx-ionic-zone).
|
|
8
|
-
*/
|
|
9
|
-
export declare function provideDb(customDbService?: Type<DbService>): EnvironmentProviders;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { DbServiceConfig } from './db-base.service';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export interface ITableOptions {
|
|
4
|
-
name: string;
|
|
5
|
-
columns: Array<{
|
|
6
|
-
name: any;
|
|
7
|
-
isPrimaryKey?: any;
|
|
8
|
-
type?: any;
|
|
9
|
-
}>;
|
|
10
|
-
}
|
|
11
|
-
export declare class SchemaService {
|
|
12
|
-
schema: {
|
|
13
|
-
stores: ITableOptions[];
|
|
14
|
-
};
|
|
15
|
-
tables: Record<string, string>;
|
|
16
|
-
private _config;
|
|
17
|
-
/**
|
|
18
|
-
* Represents a SchemaService that manages the database schema.
|
|
19
|
-
*/
|
|
20
|
-
constructor();
|
|
21
|
-
get config(): DbServiceConfig;
|
|
22
|
-
init(config: DbServiceConfig): void;
|
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SchemaService, never>;
|
|
24
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<SchemaService>;
|
|
25
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class FormateDatePipe {
|
|
4
|
-
constructor();
|
|
5
|
-
transform(date: any, ft: string): Observable<string>;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormateDatePipe, never>;
|
|
7
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<FormateDatePipe, "formateDate", true>;
|
|
8
|
-
}
|
package/pipes/safe.pipe.d.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { DomSanitizer } from '@angular/platform-browser';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class SafePipe implements PipeTransform {
|
|
5
|
-
private sanitizer;
|
|
6
|
-
constructor(sanitizer: DomSanitizer);
|
|
7
|
-
transform(data: any, type: any): any;
|
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SafePipe, never>;
|
|
9
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<SafePipe, "safe", true>;
|
|
10
|
-
}
|
|
11
|
-
export declare enum SecurityContext {
|
|
12
|
-
NONE = "none",
|
|
13
|
-
HTML = "html",
|
|
14
|
-
STYLE = "style",
|
|
15
|
-
SCRIPT = "script",
|
|
16
|
-
URL = "url",
|
|
17
|
-
RESOURCE_URL = "resource"
|
|
18
|
-
}
|
package/pub-sub/i-hash.d.ts
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { Subject } from 'rxjs/internal/Subject';
|
|
2
|
-
import { ReplaySubject } from 'rxjs/internal/ReplaySubject';
|
|
3
|
-
import { BehaviorSubject } from 'rxjs/internal/BehaviorSubject';
|
|
4
|
-
import { SubjectType } from './subject-type.enum';
|
|
5
|
-
export interface IHash {
|
|
6
|
-
[key: string]: {
|
|
7
|
-
type: SubjectType;
|
|
8
|
-
ref: Subject<any> | BehaviorSubject<any> | ReplaySubject<any>;
|
|
9
|
-
};
|
|
10
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/common";
|
|
3
|
-
export declare class NgxPubSubModule {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxPubSubModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxPubSubModule, never, [typeof i1.CommonModule], never>;
|
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NgxPubSubModule>;
|
|
7
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { OnDestroy } from '@angular/core';
|
|
2
|
-
import { Subscription, Observable, SchedulerLike } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NgxPubSubService implements OnDestroy {
|
|
5
|
-
private eventObservableMapping;
|
|
6
|
-
constructor();
|
|
7
|
-
publishEvent(eventName: string, data?: any): void;
|
|
8
|
-
subscribe(eventName: string, next?: (value: any) => void, error?: (error: any) => any, complete?: () => void): Subscription;
|
|
9
|
-
/**
|
|
10
|
-
* Use this method to get the Observable associated with the event.
|
|
11
|
-
* Useful when you would like to apply additional rxjs operators like debounceTime
|
|
12
|
-
*/
|
|
13
|
-
getEventObservable(eventName: string): Observable<any>;
|
|
14
|
-
registerEventWithLastValue(name: string, defaultValue: any): void;
|
|
15
|
-
registerEventWithHistory(name: string, bufferSize?: number, windowTime?: number, scheduler?: SchedulerLike): void;
|
|
16
|
-
publishWithLast(eventName: string, data?: any): void;
|
|
17
|
-
publishWithHistory(eventName: string, data?: any): void;
|
|
18
|
-
completeEvent(eventName: string): void;
|
|
19
|
-
ngOnDestroy(): void;
|
|
20
|
-
private publishNext;
|
|
21
|
-
private checkEventType;
|
|
22
|
-
private createSubjectIfNotExist;
|
|
23
|
-
private validateEventName;
|
|
24
|
-
private completeObservableAndDestroyMapping;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgxPubSubService, never>;
|
|
26
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<NgxPubSubService>;
|
|
27
|
-
}
|
package/public-api.d.ts
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
export * from './shared/app-injector';
|
|
2
|
-
export * from './shared/app-setting.service';
|
|
3
|
-
export * from './shared/helper.service';
|
|
4
|
-
export * from './shared/universal-zone.module';
|
|
5
|
-
export * from './shared/message-bus';
|
|
6
|
-
export * from './shared/flag-based-preloading-strategy';
|
package/shared/app-injector.d.ts
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { DbService, SchemaService } from '../database';
|
|
2
|
-
import { Observable } from 'rxjs';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AppSettingService {
|
|
5
|
-
private _dbService;
|
|
6
|
-
private _schemaSvc;
|
|
7
|
-
protected static settingCache: Map<any, any>;
|
|
8
|
-
constructor(_dbService: DbService, _schemaSvc: SchemaService);
|
|
9
|
-
protected get<T>(key: string): Promise<T>;
|
|
10
|
-
protected getRx<T>(key: string): Observable<T>;
|
|
11
|
-
protected put(key: string, values: any): Promise<void>;
|
|
12
|
-
protected putRx(key: string, values: any): Observable<void>;
|
|
13
|
-
protected remove(key: string): Promise<void>;
|
|
14
|
-
protected removeRx(key: string): Observable<void>;
|
|
15
|
-
protected removeCache(key: string): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AppSettingService, never>;
|
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AppSettingService>;
|
|
18
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { PreloadingStrategy, Route, Router } from "@angular/router";
|
|
2
|
-
import { Observable } from "rxjs";
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FlagBasedPreloadingStrategy extends PreloadingStrategy {
|
|
5
|
-
private router;
|
|
6
|
-
constructor(router: Router);
|
|
7
|
-
preload(route: Route, load: () => Observable<any>): Observable<any>;
|
|
8
|
-
private getCurrentRouteData;
|
|
9
|
-
private waitForNetworkIdle;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FlagBasedPreloadingStrategy, never>;
|
|
11
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FlagBasedPreloadingStrategy>;
|
|
12
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class HelperService {
|
|
3
|
-
constructor();
|
|
4
|
-
deepCopy(obj: any): any;
|
|
5
|
-
toDataURL(url: any): Promise<unknown>;
|
|
6
|
-
generateGuid(): string;
|
|
7
|
-
getRandomNumber(): number;
|
|
8
|
-
getRandomColor(): string;
|
|
9
|
-
getFormValidationErrors(formName: any): void;
|
|
10
|
-
removeFormValidationErrors(formName: any, controlName: any, errorKey: any): void;
|
|
11
|
-
downloadCanvasAsImage(canvas: HTMLCanvasElement): void;
|
|
12
|
-
getParamsObjectsFromUrl(url: any): any;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HelperService, never>;
|
|
14
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<HelperService>;
|
|
15
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { Message } from './models';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare const EVENT_NAME = "uz-message-bus";
|
|
4
|
-
export declare class MessageBus {
|
|
5
|
-
private readonly eventHandler;
|
|
6
|
-
private messageSubject;
|
|
7
|
-
event$: import("rxjs").Observable<Message>;
|
|
8
|
-
constructor();
|
|
9
|
-
dispatch(message: Message): void;
|
|
10
|
-
startListening(): void;
|
|
11
|
-
stopListening(): void;
|
|
12
|
-
private handleEvent;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MessageBus, never>;
|
|
14
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<MessageBus>;
|
|
15
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Observable } from 'rxjs';
|
|
2
|
-
import { MessageBus } from './message-bus';
|
|
3
|
-
import { Message } from './models';
|
|
4
|
-
export declare function provideTestMessages(getMessages: () => Observable<Message>): {
|
|
5
|
-
provide: typeof MessageBus;
|
|
6
|
-
useFactory: () => {
|
|
7
|
-
event$: Observable<Message>;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { OperatorFunction } from 'rxjs';
|
|
2
|
-
/**
|
|
3
|
-
* Messaging system is taken from NGRX (Actions) and adapted to fit our needs.
|
|
4
|
-
*/
|
|
5
|
-
export interface Message {
|
|
6
|
-
type: string;
|
|
7
|
-
}
|
|
8
|
-
export declare interface TypedMessage<T extends string> extends Message {
|
|
9
|
-
readonly type: T;
|
|
10
|
-
}
|
|
11
|
-
export declare function props<P extends object>(): Props<P>;
|
|
12
|
-
export type FunctionWithParametersType<P extends unknown[], R = void> = (...args: P) => R;
|
|
13
|
-
/**
|
|
14
|
-
* A function that returns an object in the shape of the `Action` interface. Configured using `createAction`.
|
|
15
|
-
*/
|
|
16
|
-
export type Creator<P extends any[] = any[], R extends object = object> = FunctionWithParametersType<P, R>;
|
|
17
|
-
export interface Props<T> {
|
|
18
|
-
_as: 'props';
|
|
19
|
-
_p: T;
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* See `Creator`.
|
|
23
|
-
*/
|
|
24
|
-
export type MessageCreator<T extends string = string, C extends Creator = Creator> = C & TypedMessage<T>;
|
|
25
|
-
export declare const arraysAreNotAllowedMsg = "arrays are not allowed in action creators";
|
|
26
|
-
type ArraysAreNotAllowed = typeof arraysAreNotAllowedMsg;
|
|
27
|
-
export declare const typePropertyIsNotAllowedMsg = "type property is not allowed in action creators";
|
|
28
|
-
type TypePropertyIsNotAllowed = typeof typePropertyIsNotAllowedMsg;
|
|
29
|
-
export type NotAllowedCheck<T extends object> = T extends any[] ? ArraysAreNotAllowed : T extends {
|
|
30
|
-
type: any;
|
|
31
|
-
} ? TypePropertyIsNotAllowed : unknown;
|
|
32
|
-
export declare function createMessage<T extends string>(type: T): MessageCreator<T, () => TypedMessage<T>>;
|
|
33
|
-
export declare function createMessage<T extends string, P extends object>(type: T, config: Props<P> & NotAllowedCheck<P>): MessageCreator<T, (props: P & NotAllowedCheck<P>) => P & TypedMessage<T>>;
|
|
34
|
-
export declare function createMessage<T extends string, P extends any[], R extends object>(type: T, creator: Creator<P, R> & NotAllowedCheck<R>): FunctionWithParametersType<P, R & TypedMessage<T>> & TypedMessage<T>;
|
|
35
|
-
export declare function ofMessageType<AC extends MessageCreator<string, Creator>[], U extends Message = Message, V = ReturnType<AC[number]>>(...allowedTypes: AC): OperatorFunction<U, V>;
|
|
36
|
-
export declare function ofMessageType<E extends Extract<U, {
|
|
37
|
-
type: T1;
|
|
38
|
-
}>, AC extends MessageCreator<string, Creator>, T1 extends string | AC, U extends Message = Message, V = T1 extends string ? E : ReturnType<Extract<T1, AC>>>(t1: T1): OperatorFunction<U, V>;
|
|
39
|
-
export {};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./only-number.directive";
|
|
3
|
-
import * as i2 from "./long-ress.directive";
|
|
4
|
-
import * as i3 from "@angular/common";
|
|
5
|
-
export declare class DirectivesModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DirectivesModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DirectivesModule, [typeof i1.OnlyNumberDirective, typeof i2.LongPressDirective], [typeof i3.CommonModule], [typeof i1.OnlyNumberDirective, typeof i2.LongPressDirective]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<DirectivesModule>;
|
|
9
|
-
}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class LongPressDirective {
|
|
4
|
-
private elRef;
|
|
5
|
-
constructor(elRef: ElementRef);
|
|
6
|
-
set duration(v: number | string);
|
|
7
|
-
disabled: boolean;
|
|
8
|
-
set _continuousInterval(v: number);
|
|
9
|
-
private _duration;
|
|
10
|
-
private isContinuous;
|
|
11
|
-
private continuousInterval;
|
|
12
|
-
longPressStart: EventEmitter<MouseEvent | TouchEvent>;
|
|
13
|
-
longPressFinish: EventEmitter<MouseEvent | TouchEvent>;
|
|
14
|
-
longPressCancel: EventEmitter<MouseEvent | TouchEvent>;
|
|
15
|
-
private pressing;
|
|
16
|
-
private longPressSubscription?;
|
|
17
|
-
onPress(event: MouseEvent | TouchEvent): void;
|
|
18
|
-
onRelease(event: MouseEvent | TouchEvent): void;
|
|
19
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LongPressDirective, never>;
|
|
20
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<LongPressDirective, "[longPress]", never, { "duration": { "alias": "longPress"; "required": false; }; "disabled": { "alias": "longPressDisabled"; "required": false; }; "_continuousInterval": { "alias": "longPressInterval"; "required": false; }; }, { "longPressStart": "longPressStart"; "longPressFinish": "longPressFinish"; "longPressCancel": "longPressCancel"; }, never, never, false, never>;
|
|
21
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class OnlyNumberDirective {
|
|
3
|
-
constructor();
|
|
4
|
-
onKeyDown(event: KeyboardEvent): void;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<OnlyNumberDirective, never>;
|
|
6
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<OnlyNumberDirective, "[onlyNumber]", never, {}, {}, never, never, false, never>;
|
|
7
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class NoDataComponent implements OnInit {
|
|
5
|
-
private domSanitizer;
|
|
6
|
-
icon: import("@angular/core").InputSignal<string>;
|
|
7
|
-
message: import("@angular/core").InputSignal<string>;
|
|
8
|
-
iconHtml: SafeHtml;
|
|
9
|
-
constructor(domSanitizer: DomSanitizer);
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NoDataComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NoDataComponent, "app-no-data", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
13
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./no-data.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class NoDataModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NoDataModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NoDataModule, [typeof i1.NoDataComponent], [typeof i2.CommonModule], [typeof i1.NoDataComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NoDataModule>;
|
|
8
|
-
}
|