ng-ipa-library 2.0.2 → 3.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/{esm2020 → esm2022}/lib/core/components/loading/loading.component.mjs +37 -37
- package/{esm2020 → esm2022}/lib/core/interceptors/error.interceptor.mjs +46 -46
- package/{esm2020 → esm2022}/lib/core/interceptors/loading.interceptor.mjs +58 -58
- package/{esm2020 → esm2022}/lib/core/interceptors/myIPAToken.interceptor.mjs +25 -25
- package/{esm2020 → esm2022}/lib/core/interceptors/token.interceptor.mjs +81 -81
- package/{esm2020 → esm2022}/lib/core/services/auth.service.mjs +62 -62
- package/{esm2020 → esm2022}/lib/core/services/error.service.mjs +55 -55
- package/{esm2020 → esm2022}/lib/core/services/loader.service.mjs +24 -24
- package/{esm2020 → esm2022}/lib/core/services/token.service.mjs +22 -22
- package/{esm2020 → esm2022}/lib/generate-form/generate-form.component.mjs +153 -153
- package/esm2022/lib/ipa-form/datepicker/datepicker.component.mjs +133 -0
- package/esm2022/lib/ipa-form/datepicker/gregorian-datepicker/gregorian-datepicker.component.mjs +27 -0
- package/{esm2020 → esm2022}/lib/ipa-form/datepicker/gregorian-datepicker/gregorian18n.mjs +38 -38
- package/{esm2020 → esm2022}/lib/ipa-form/datepicker/hijri-datepicker/IslamicI18n.mjs +38 -38
- package/esm2022/lib/ipa-form/datepicker/hijri-datepicker/hijri-datepicker.component.mjs +27 -0
- package/{esm2020 → esm2022}/lib/ipa-form/dropdown-input/dropdown-input.component.mjs +84 -84
- package/{esm2020 → esm2022}/lib/ipa-form/file-upload/file-upload.component.mjs +142 -142
- package/{esm2020 → esm2022}/lib/ipa-form/ipa-form.service.mjs +290 -290
- package/{esm2020 → esm2022}/lib/ipa-form/recaptcha/recaptcha.component.mjs +55 -55
- package/{esm2020 → esm2022}/lib/ipa-form/text-input/text-input.component.mjs +93 -93
- package/{esm2020 → esm2022}/lib/ipa-form/textarea-input/textarea-input.component.mjs +76 -76
- package/{esm2020 → esm2022}/lib/models/apiException.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/apiResponse.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/breadcrumbs.model.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/decodedToken.model.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/exceptionUrl.model.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/generateForm.model.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/pagedResult.mjs +1 -1
- package/{esm2020 → esm2022}/lib/models/user.model.mjs +1 -1
- package/{esm2020 → esm2022}/lib/ng-ipa-library.module.mjs +107 -107
- package/{esm2020 → esm2022}/lib/pipes/hijri-date.pipe.mjs +18 -18
- package/{esm2020 → esm2022}/lib/pipes/pipes.module.mjs +16 -16
- package/{esm2020 → esm2022}/lib/services/breadcrumbs.service.mjs +149 -149
- package/{esm2020 → esm2022}/lib/services/common.service.mjs +51 -51
- package/{esm2020 → esm2022}/lib/share-button/share-button.component.mjs +35 -35
- package/{esm2020 → esm2022}/lib/share-button/share-button.module.mjs +50 -50
- package/{esm2020 → esm2022}/ng-ipa-library.mjs +4 -4
- package/{esm2020 → esm2022}/public-api.mjs +41 -41
- package/{fesm2020 → fesm2022}/ng-ipa-library.mjs +1784 -1739
- package/fesm2022/ng-ipa-library.mjs.map +1 -0
- package/index.d.ts +5 -5
- package/lib/core/components/loading/loading.component.d.ts +13 -13
- package/lib/core/interceptors/error.interceptor.d.ts +12 -12
- package/lib/core/interceptors/loading.interceptor.d.ts +14 -14
- package/lib/core/interceptors/myIPAToken.interceptor.d.ts +11 -11
- package/lib/core/interceptors/token.interceptor.d.ts +19 -19
- package/lib/core/services/auth.service.d.ts +18 -18
- package/lib/core/services/error.service.d.ts +19 -19
- package/lib/core/services/loader.service.d.ts +12 -12
- package/lib/core/services/token.service.d.ts +10 -10
- package/lib/generate-form/generate-form.component.d.ts +34 -34
- package/lib/ipa-form/datepicker/datepicker.component.d.ts +38 -37
- package/lib/ipa-form/datepicker/gregorian-datepicker/gregorian-datepicker.component.d.ts +7 -7
- package/lib/ipa-form/datepicker/gregorian-datepicker/gregorian18n.d.ts +11 -11
- package/lib/ipa-form/datepicker/hijri-datepicker/IslamicI18n.d.ts +11 -11
- package/lib/ipa-form/datepicker/hijri-datepicker/hijri-datepicker.component.d.ts +7 -7
- package/lib/ipa-form/dropdown-input/dropdown-input.component.d.ts +34 -34
- package/lib/ipa-form/file-upload/file-upload.component.d.ts +40 -40
- package/lib/ipa-form/ipa-form.service.d.ts +51 -51
- package/lib/ipa-form/recaptcha/recaptcha.component.d.ts +22 -22
- package/lib/ipa-form/text-input/text-input.component.d.ts +35 -35
- package/lib/ipa-form/textarea-input/textarea-input.component.d.ts +32 -32
- package/lib/models/apiException.d.ts +5 -5
- package/lib/models/apiResponse.d.ts +5 -5
- package/lib/models/breadcrumbs.model.d.ts +4 -4
- package/lib/models/decodedToken.model.d.ts +6 -6
- package/lib/models/exceptionUrl.model.d.ts +4 -4
- package/lib/models/generateForm.model.d.ts +31 -31
- package/lib/models/pagedResult.d.ts +4 -4
- package/lib/models/user.model.d.ts +7 -7
- package/lib/ng-ipa-library.module.d.ts +25 -25
- package/lib/pipes/hijri-date.pipe.d.ts +7 -7
- package/lib/pipes/pipes.module.d.ts +7 -7
- package/lib/services/breadcrumbs.service.d.ts +18 -18
- package/lib/services/common.service.d.ts +11 -11
- package/lib/share-button/share-button.component.d.ts +11 -11
- package/lib/share-button/share-button.module.d.ts +13 -13
- package/package.json +12 -18
- package/public-api.d.ts +31 -31
- package/src/lib/assets/ngIPAStyle.scss +4 -1
- package/esm2020/lib/ipa-form/datepicker/datepicker.component.mjs +0 -88
- package/esm2020/lib/ipa-form/datepicker/gregorian-datepicker/gregorian-datepicker.component.mjs +0 -27
- package/esm2020/lib/ipa-form/datepicker/hijri-datepicker/hijri-datepicker.component.mjs +0 -27
- package/fesm2015/ng-ipa-library.mjs +0 -1867
- package/fesm2015/ng-ipa-library.mjs.map +0 -1
- package/fesm2020/ng-ipa-library.mjs.map +0 -1
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
import { AfterContentChecked, ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormControl, NgControl } from '@angular/forms';
|
|
3
|
-
import { IPAFormService } from '../ipa-form.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TextInputComponent implements OnInit, AfterContentChecked {
|
|
6
|
-
private validationService;
|
|
7
|
-
controlDir: NgControl;
|
|
8
|
-
private cd;
|
|
9
|
-
input: ElementRef;
|
|
10
|
-
id: string;
|
|
11
|
-
type: string;
|
|
12
|
-
placeholder: string;
|
|
13
|
-
label: string;
|
|
14
|
-
required: boolean;
|
|
15
|
-
patternErrorMsg: string;
|
|
16
|
-
onlyNumber: boolean;
|
|
17
|
-
pattern: string;
|
|
18
|
-
classes: string;
|
|
19
|
-
containerClasses: string;
|
|
20
|
-
isArabicForm: boolean;
|
|
21
|
-
formControl: UntypedFormControl;
|
|
22
|
-
errorMsg: string | null;
|
|
23
|
-
constructor(validationService: IPAFormService, controlDir: NgControl, cd: ChangeDetectorRef);
|
|
24
|
-
ngAfterContentChecked(): void;
|
|
25
|
-
ngOnInit(): void;
|
|
26
|
-
onChange(event: any): void;
|
|
27
|
-
onTouched(): void;
|
|
28
|
-
writeValue(obj: any): void;
|
|
29
|
-
registerOnChange(fn: any): void;
|
|
30
|
-
registerOnTouched(fn: any): void;
|
|
31
|
-
checkIsNumber(event: Event): void;
|
|
32
|
-
get errorMessage(): string | null;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, [null, { self: true; }, null]>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "ipa-text-input", never, { "id": "id"; "type": "type"; "placeholder": "placeholder"; "label": "label"; "required": "required"; "patternErrorMsg": "patternErrorMsg"; "onlyNumber": "onlyNumber"; "pattern": "pattern"; "classes": "classes"; "containerClasses": "containerClasses"; "isArabicForm": "isArabicForm"; }, {}, never, never, false, never>;
|
|
35
|
-
}
|
|
1
|
+
import { AfterContentChecked, ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { UntypedFormControl, NgControl } from '@angular/forms';
|
|
3
|
+
import { IPAFormService } from '../ipa-form.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TextInputComponent implements OnInit, AfterContentChecked {
|
|
6
|
+
private validationService;
|
|
7
|
+
controlDir: NgControl;
|
|
8
|
+
private cd;
|
|
9
|
+
input: ElementRef;
|
|
10
|
+
id: string;
|
|
11
|
+
type: string;
|
|
12
|
+
placeholder: string;
|
|
13
|
+
label: string;
|
|
14
|
+
required: boolean;
|
|
15
|
+
patternErrorMsg: string;
|
|
16
|
+
onlyNumber: boolean;
|
|
17
|
+
pattern: string;
|
|
18
|
+
classes: string;
|
|
19
|
+
containerClasses: string;
|
|
20
|
+
isArabicForm: boolean;
|
|
21
|
+
formControl: UntypedFormControl;
|
|
22
|
+
errorMsg: string | null;
|
|
23
|
+
constructor(validationService: IPAFormService, controlDir: NgControl, cd: ChangeDetectorRef);
|
|
24
|
+
ngAfterContentChecked(): void;
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
onChange(event: any): void;
|
|
27
|
+
onTouched(): void;
|
|
28
|
+
writeValue(obj: any): void;
|
|
29
|
+
registerOnChange(fn: any): void;
|
|
30
|
+
registerOnTouched(fn: any): void;
|
|
31
|
+
checkIsNumber(event: Event): void;
|
|
32
|
+
get errorMessage(): string | null;
|
|
33
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, [null, { self: true; }, null]>;
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "ipa-text-input", never, { "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "patternErrorMsg": { "alias": "patternErrorMsg"; "required": false; }; "onlyNumber": { "alias": "onlyNumber"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "classes": { "alias": "classes"; "required": false; }; "containerClasses": { "alias": "containerClasses"; "required": false; }; "isArabicForm": { "alias": "isArabicForm"; "required": false; }; }, {}, never, never, false, never>;
|
|
35
|
+
}
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
import { AfterContentChecked, ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
|
|
2
|
-
import { UntypedFormControl, NgControl } from '@angular/forms';
|
|
3
|
-
import { IPAFormService } from '../ipa-form.service';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class TextareaInputComponent implements OnInit, AfterContentChecked {
|
|
6
|
-
private validationService;
|
|
7
|
-
controlDir: NgControl;
|
|
8
|
-
private cd;
|
|
9
|
-
input: ElementRef<any>;
|
|
10
|
-
id: string;
|
|
11
|
-
placeholder: string;
|
|
12
|
-
label: string;
|
|
13
|
-
required: boolean;
|
|
14
|
-
patternErrorMsg: string;
|
|
15
|
-
pattern: string;
|
|
16
|
-
classes: string;
|
|
17
|
-
containerClasses: string;
|
|
18
|
-
isArabicForm: boolean;
|
|
19
|
-
formControl: UntypedFormControl;
|
|
20
|
-
errorMsg: string | null;
|
|
21
|
-
constructor(validationService: IPAFormService, controlDir: NgControl, cd: ChangeDetectorRef);
|
|
22
|
-
ngAfterContentChecked(): void;
|
|
23
|
-
ngOnInit(): void;
|
|
24
|
-
onChange(event: any): void;
|
|
25
|
-
onTouched(): void;
|
|
26
|
-
writeValue(obj: any): void;
|
|
27
|
-
registerOnChange(fn: any): void;
|
|
28
|
-
registerOnTouched(fn: any): void;
|
|
29
|
-
get errorMessage(): string | null;
|
|
30
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaInputComponent, [null, { self: true; }, null]>;
|
|
31
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaInputComponent, "ipa-textarea-input", never, { "id": "id"; "placeholder": "placeholder"; "label": "label"; "required": "required"; "patternErrorMsg": "patternErrorMsg"; "pattern": "pattern"; "classes": "classes"; "containerClasses": "containerClasses"; "isArabicForm": "isArabicForm"; }, {}, never, never, false, never>;
|
|
32
|
-
}
|
|
1
|
+
import { AfterContentChecked, ChangeDetectorRef, ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { UntypedFormControl, NgControl } from '@angular/forms';
|
|
3
|
+
import { IPAFormService } from '../ipa-form.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class TextareaInputComponent implements OnInit, AfterContentChecked {
|
|
6
|
+
private validationService;
|
|
7
|
+
controlDir: NgControl;
|
|
8
|
+
private cd;
|
|
9
|
+
input: ElementRef<any>;
|
|
10
|
+
id: string;
|
|
11
|
+
placeholder: string;
|
|
12
|
+
label: string;
|
|
13
|
+
required: boolean;
|
|
14
|
+
patternErrorMsg: string;
|
|
15
|
+
pattern: string;
|
|
16
|
+
classes: string;
|
|
17
|
+
containerClasses: string;
|
|
18
|
+
isArabicForm: boolean;
|
|
19
|
+
formControl: UntypedFormControl;
|
|
20
|
+
errorMsg: string | null;
|
|
21
|
+
constructor(validationService: IPAFormService, controlDir: NgControl, cd: ChangeDetectorRef);
|
|
22
|
+
ngAfterContentChecked(): void;
|
|
23
|
+
ngOnInit(): void;
|
|
24
|
+
onChange(event: any): void;
|
|
25
|
+
onTouched(): void;
|
|
26
|
+
writeValue(obj: any): void;
|
|
27
|
+
registerOnChange(fn: any): void;
|
|
28
|
+
registerOnTouched(fn: any): void;
|
|
29
|
+
get errorMessage(): string | null;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TextareaInputComponent, [null, { self: true; }, null]>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextareaInputComponent, "ipa-textarea-input", never, { "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "required": { "alias": "required"; "required": false; }; "patternErrorMsg": { "alias": "patternErrorMsg"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "classes": { "alias": "classes"; "required": false; }; "containerClasses": { "alias": "containerClasses"; "required": false; }; "isArabicForm": { "alias": "isArabicForm"; "required": false; }; }, {}, never, never, false, never>;
|
|
32
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { ApiResponse } from "./apiResponse";
|
|
2
|
-
export interface ApiException extends ApiResponse {
|
|
3
|
-
innerException: string;
|
|
4
|
-
stackTrace: string;
|
|
5
|
-
}
|
|
1
|
+
import { ApiResponse } from "./apiResponse";
|
|
2
|
+
export interface ApiException extends ApiResponse {
|
|
3
|
+
innerException: string;
|
|
4
|
+
stackTrace: string;
|
|
5
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export interface ApiResponse {
|
|
2
|
-
statusCode: number;
|
|
3
|
-
message: string;
|
|
4
|
-
errors?: string[];
|
|
5
|
-
}
|
|
1
|
+
export interface ApiResponse {
|
|
2
|
+
statusCode: number;
|
|
3
|
+
message: string;
|
|
4
|
+
errors?: string[];
|
|
5
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface Breadcrumbs {
|
|
2
|
-
nodeName: string;
|
|
3
|
-
nodeUrl: string | null;
|
|
4
|
-
}
|
|
1
|
+
export interface Breadcrumbs {
|
|
2
|
+
nodeName: string;
|
|
3
|
+
nodeUrl: string | null;
|
|
4
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export interface DecodedToken {
|
|
2
|
-
nameid?: string;
|
|
3
|
-
given_name?: string;
|
|
4
|
-
email?: string;
|
|
5
|
-
exp?: number;
|
|
6
|
-
}
|
|
1
|
+
export interface DecodedToken {
|
|
2
|
+
nameid?: string;
|
|
3
|
+
given_name?: string;
|
|
4
|
+
email?: string;
|
|
5
|
+
exp?: number;
|
|
6
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface ExceptionUrl {
|
|
2
|
-
path: string;
|
|
3
|
-
method: string;
|
|
4
|
-
}
|
|
1
|
+
export interface ExceptionUrl {
|
|
2
|
+
path: string;
|
|
3
|
+
method: string;
|
|
4
|
+
}
|
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
export interface GenerateForm {
|
|
2
|
-
columns: Column[];
|
|
3
|
-
}
|
|
4
|
-
export interface Column {
|
|
5
|
-
arabicLabel: string;
|
|
6
|
-
englishLabel: string;
|
|
7
|
-
formControlName: string;
|
|
8
|
-
validationPattern?: string;
|
|
9
|
-
inputClasses?: string;
|
|
10
|
-
containerClasses?: string;
|
|
11
|
-
valueField?: string;
|
|
12
|
-
textField?: string;
|
|
13
|
-
patternArErrorMsg?: string;
|
|
14
|
-
patternEnErrorMsg?: string;
|
|
15
|
-
type: string;
|
|
16
|
-
size?: number;
|
|
17
|
-
required: boolean;
|
|
18
|
-
data?: Data[] | any[];
|
|
19
|
-
searchable?: boolean;
|
|
20
|
-
notFoundText?: string;
|
|
21
|
-
acceptedFiles?: string;
|
|
22
|
-
multipleFile?: number;
|
|
23
|
-
apiUrl?: string;
|
|
24
|
-
autoUploadFile?: boolean;
|
|
25
|
-
apiURlMethod?: string;
|
|
26
|
-
authorization?: string;
|
|
27
|
-
}
|
|
28
|
-
export interface Data {
|
|
29
|
-
id: number;
|
|
30
|
-
description: string;
|
|
31
|
-
}
|
|
1
|
+
export interface GenerateForm {
|
|
2
|
+
columns: Column[];
|
|
3
|
+
}
|
|
4
|
+
export interface Column {
|
|
5
|
+
arabicLabel: string;
|
|
6
|
+
englishLabel: string;
|
|
7
|
+
formControlName: string;
|
|
8
|
+
validationPattern?: string;
|
|
9
|
+
inputClasses?: string;
|
|
10
|
+
containerClasses?: string;
|
|
11
|
+
valueField?: string;
|
|
12
|
+
textField?: string;
|
|
13
|
+
patternArErrorMsg?: string;
|
|
14
|
+
patternEnErrorMsg?: string;
|
|
15
|
+
type: string;
|
|
16
|
+
size?: number;
|
|
17
|
+
required: boolean;
|
|
18
|
+
data?: Data[] | any[];
|
|
19
|
+
searchable?: boolean;
|
|
20
|
+
notFoundText?: string;
|
|
21
|
+
acceptedFiles?: string;
|
|
22
|
+
multipleFile?: number;
|
|
23
|
+
apiUrl?: string;
|
|
24
|
+
autoUploadFile?: boolean;
|
|
25
|
+
apiURlMethod?: string;
|
|
26
|
+
authorization?: string;
|
|
27
|
+
}
|
|
28
|
+
export interface Data {
|
|
29
|
+
id: number;
|
|
30
|
+
description: string;
|
|
31
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface PagedResult<T> {
|
|
2
|
-
data: T[];
|
|
3
|
-
count: number;
|
|
4
|
-
}
|
|
1
|
+
export interface PagedResult<T> {
|
|
2
|
+
data: T[];
|
|
3
|
+
count: number;
|
|
4
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export interface User {
|
|
2
|
-
id: string;
|
|
3
|
-
email: string;
|
|
4
|
-
displayName: string;
|
|
5
|
-
token: string;
|
|
6
|
-
imageUrl: string;
|
|
7
|
-
}
|
|
1
|
+
export interface User {
|
|
2
|
+
id: string;
|
|
3
|
+
email: string;
|
|
4
|
+
displayName: string;
|
|
5
|
+
token: string;
|
|
6
|
+
imageUrl: string;
|
|
7
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./ipa-form/text-input/text-input.component";
|
|
3
|
-
import * as i2 from "./ipa-form/textarea-input/textarea-input.component";
|
|
4
|
-
import * as i3 from "./ipa-form/dropdown-input/dropdown-input.component";
|
|
5
|
-
import * as i4 from "./core/components/loading/loading.component";
|
|
6
|
-
import * as i5 from "./generate-form/generate-form.component";
|
|
7
|
-
import * as i6 from "./ipa-form/file-upload/file-upload.component";
|
|
8
|
-
import * as i7 from "./ipa-form/datepicker/datepicker.component";
|
|
9
|
-
import * as i8 from "./ipa-form/datepicker/hijri-datepicker/hijri-datepicker.component";
|
|
10
|
-
import * as i9 from "./ipa-form/datepicker/gregorian-datepicker/gregorian-datepicker.component";
|
|
11
|
-
import * as i10 from "./ipa-form/recaptcha/recaptcha.component";
|
|
12
|
-
import * as i11 from "@angular/common";
|
|
13
|
-
import * as i12 from "@angular/forms";
|
|
14
|
-
import * as i13 from "ngx-toastr";
|
|
15
|
-
import * as i14 from "ngx-dropzone-wrapper";
|
|
16
|
-
import * as i15 from "ngx-captcha";
|
|
17
|
-
import * as i16 from "./pipes/pipes.module";
|
|
18
|
-
import * as i17 from "@ng-bootstrap/ng-bootstrap";
|
|
19
|
-
import * as i18 from "./share-button/share-button.module";
|
|
20
|
-
import * as i19 from "@ng-select/ng-select";
|
|
21
|
-
export declare class NgIPALibraryModule {
|
|
22
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgIPALibraryModule, never>;
|
|
23
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgIPALibraryModule, [typeof i1.TextInputComponent, typeof i2.TextareaInputComponent, typeof i3.DropdownInputComponent, typeof i4.LoaderComponent, typeof i5.GenerateFormComponent, typeof i6.FileUploadComponent, typeof i7.DatepickerComponent, typeof i8.HijriDatepickerComponent, typeof i9.GregorianDatepickerComponent, typeof i10.RecaptchaComponent], [typeof i11.CommonModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.ToastrModule, typeof i14.DropzoneModule, typeof i15.NgxCaptchaModule, typeof i16.PipesModule, typeof i17.NgbDatepickerModule, typeof i18.ShareButtonModule, typeof i19.NgSelectModule], [typeof i1.TextInputComponent, typeof i2.TextareaInputComponent, typeof i3.DropdownInputComponent, typeof i4.LoaderComponent, typeof i5.GenerateFormComponent, typeof i6.FileUploadComponent, typeof i16.PipesModule, typeof i8.HijriDatepickerComponent, typeof i9.GregorianDatepickerComponent, typeof i18.ShareButtonModule, typeof i10.RecaptchaComponent]>;
|
|
24
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NgIPALibraryModule>;
|
|
25
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./ipa-form/text-input/text-input.component";
|
|
3
|
+
import * as i2 from "./ipa-form/textarea-input/textarea-input.component";
|
|
4
|
+
import * as i3 from "./ipa-form/dropdown-input/dropdown-input.component";
|
|
5
|
+
import * as i4 from "./core/components/loading/loading.component";
|
|
6
|
+
import * as i5 from "./generate-form/generate-form.component";
|
|
7
|
+
import * as i6 from "./ipa-form/file-upload/file-upload.component";
|
|
8
|
+
import * as i7 from "./ipa-form/datepicker/datepicker.component";
|
|
9
|
+
import * as i8 from "./ipa-form/datepicker/hijri-datepicker/hijri-datepicker.component";
|
|
10
|
+
import * as i9 from "./ipa-form/datepicker/gregorian-datepicker/gregorian-datepicker.component";
|
|
11
|
+
import * as i10 from "./ipa-form/recaptcha/recaptcha.component";
|
|
12
|
+
import * as i11 from "@angular/common";
|
|
13
|
+
import * as i12 from "@angular/forms";
|
|
14
|
+
import * as i13 from "ngx-toastr";
|
|
15
|
+
import * as i14 from "ngx-dropzone-wrapper";
|
|
16
|
+
import * as i15 from "ngx-captcha";
|
|
17
|
+
import * as i16 from "./pipes/pipes.module";
|
|
18
|
+
import * as i17 from "@ng-bootstrap/ng-bootstrap";
|
|
19
|
+
import * as i18 from "./share-button/share-button.module";
|
|
20
|
+
import * as i19 from "@ng-select/ng-select";
|
|
21
|
+
export declare class NgIPALibraryModule {
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgIPALibraryModule, never>;
|
|
23
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NgIPALibraryModule, [typeof i1.TextInputComponent, typeof i2.TextareaInputComponent, typeof i3.DropdownInputComponent, typeof i4.LoaderComponent, typeof i5.GenerateFormComponent, typeof i6.FileUploadComponent, typeof i7.DatepickerComponent, typeof i8.HijriDatepickerComponent, typeof i9.GregorianDatepickerComponent, typeof i10.RecaptchaComponent], [typeof i11.CommonModule, typeof i12.FormsModule, typeof i12.ReactiveFormsModule, typeof i13.ToastrModule, typeof i14.DropzoneModule, typeof i15.NgxCaptchaModule, typeof i16.PipesModule, typeof i17.NgbDatepickerModule, typeof i18.ShareButtonModule, typeof i19.NgSelectModule], [typeof i1.TextInputComponent, typeof i2.TextareaInputComponent, typeof i3.DropdownInputComponent, typeof i4.LoaderComponent, typeof i5.GenerateFormComponent, typeof i6.FileUploadComponent, typeof i16.PipesModule, typeof i8.HijriDatepickerComponent, typeof i9.GregorianDatepickerComponent, typeof i18.ShareButtonModule, typeof i10.RecaptchaComponent]>;
|
|
24
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<NgIPALibraryModule>;
|
|
25
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class HijriDatePipe implements PipeTransform {
|
|
4
|
-
transform(date: string, format?: string, lang?: 'ar' | 'en'): string;
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HijriDatePipe, never>;
|
|
6
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<HijriDatePipe, "hijriDate", false>;
|
|
7
|
-
}
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class HijriDatePipe implements PipeTransform {
|
|
4
|
+
transform(date: string, format?: string, lang?: 'ar' | 'en'): string;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<HijriDatePipe, never>;
|
|
6
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<HijriDatePipe, "hijriDate", false>;
|
|
7
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./hijri-date.pipe";
|
|
3
|
-
export declare class PipesModule {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.HijriDatePipe], never, [typeof i1.HijriDatePipe]>;
|
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
|
|
7
|
-
}
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./hijri-date.pipe";
|
|
3
|
+
export declare class PipesModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PipesModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<PipesModule, [typeof i1.HijriDatePipe], never, [typeof i1.HijriDatePipe]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<PipesModule>;
|
|
7
|
+
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { Breadcrumbs } from '../models/breadcrumbs.model';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class BreadcrumbsService {
|
|
4
|
-
constructor();
|
|
5
|
-
setPageTitle(text: string): void;
|
|
6
|
-
setMainPageTitle(text: string, url: string): void;
|
|
7
|
-
addBreadcrumb(nodeName: string, spanClasses?: string, linkClasses?: string): void;
|
|
8
|
-
addBreadcrumbList(nodeList: Breadcrumbs[], spanClasses?: string, linkClasses?: string): void;
|
|
9
|
-
createBreadcrumbs(nodeList: Breadcrumbs[], spanClasses?: string, linkClasses?: string): void;
|
|
10
|
-
removeLastBreadcrumb(): void;
|
|
11
|
-
removeBreadcrumbByNodeName(nodeName: string): void;
|
|
12
|
-
removeLastBreadcrumbsByLength(length: number): void;
|
|
13
|
-
private createLink;
|
|
14
|
-
private createSpan;
|
|
15
|
-
private setCurrentNode;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsService, never>;
|
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbsService>;
|
|
18
|
-
}
|
|
1
|
+
import { Breadcrumbs } from '../models/breadcrumbs.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BreadcrumbsService {
|
|
4
|
+
constructor();
|
|
5
|
+
setPageTitle(text: string): void;
|
|
6
|
+
setMainPageTitle(text: string, url: string): void;
|
|
7
|
+
addBreadcrumb(nodeName: string, spanClasses?: string, linkClasses?: string): void;
|
|
8
|
+
addBreadcrumbList(nodeList: Breadcrumbs[], spanClasses?: string, linkClasses?: string): void;
|
|
9
|
+
createBreadcrumbs(nodeList: Breadcrumbs[], spanClasses?: string, linkClasses?: string): void;
|
|
10
|
+
removeLastBreadcrumb(): void;
|
|
11
|
+
removeBreadcrumbByNodeName(nodeName: string): void;
|
|
12
|
+
removeLastBreadcrumbsByLength(length: number): void;
|
|
13
|
+
private createLink;
|
|
14
|
+
private createSpan;
|
|
15
|
+
private setCurrentNode;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BreadcrumbsService, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<BreadcrumbsService>;
|
|
18
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ToastrService } from 'ngx-toastr';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class CommonService {
|
|
4
|
-
private toastrService;
|
|
5
|
-
constructor(toastrService: ToastrService);
|
|
6
|
-
copyToClipboard(copyText: any, message: string): void;
|
|
7
|
-
print(element: string, title: string, classes?: string): void;
|
|
8
|
-
private getElementTag;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CommonService, never>;
|
|
10
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<CommonService>;
|
|
11
|
-
}
|
|
1
|
+
import { ToastrService } from 'ngx-toastr';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class CommonService {
|
|
4
|
+
private toastrService;
|
|
5
|
+
constructor(toastrService: ToastrService);
|
|
6
|
+
copyToClipboard(copyText: any, message: string): void;
|
|
7
|
+
print(element: string, title: string, classes?: string): void;
|
|
8
|
+
private getElementTag;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CommonService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CommonService>;
|
|
11
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { AfterViewInit } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ShareButtonComponent implements AfterViewInit {
|
|
4
|
-
title: string;
|
|
5
|
-
description: string;
|
|
6
|
-
btnLabel: string;
|
|
7
|
-
constructor();
|
|
8
|
-
ngAfterViewInit(): void;
|
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ShareButtonComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ShareButtonComponent, "ipa-share-button", never, { "title": "title"; "description": "description"; "btnLabel": "btnLabel"; }, {}, never, never, false, never>;
|
|
11
|
-
}
|
|
1
|
+
import { AfterViewInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class ShareButtonComponent implements AfterViewInit {
|
|
4
|
+
title: string;
|
|
5
|
+
description: string;
|
|
6
|
+
btnLabel: string;
|
|
7
|
+
constructor();
|
|
8
|
+
ngAfterViewInit(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShareButtonComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShareButtonComponent, "ipa-share-button", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "btnLabel": { "alias": "btnLabel"; "required": false; }; }, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import { FaIconLibrary } from '@fortawesome/angular-fontawesome';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "./share-button.component";
|
|
4
|
-
import * as i2 from "ngx-sharebuttons/icons";
|
|
5
|
-
import * as i3 from "ngx-sharebuttons/popup";
|
|
6
|
-
import * as i4 from "@angular/cdk/overlay";
|
|
7
|
-
import * as i5 from "@fortawesome/angular-fontawesome";
|
|
8
|
-
export declare class ShareButtonModule {
|
|
9
|
-
constructor(library: FaIconLibrary);
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ShareButtonModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ShareButtonModule, [typeof i1.ShareButtonComponent], [typeof i2.ShareIconsModule, typeof i3.ShareButtonsPopupModule, typeof i4.OverlayModule, typeof i5.FontAwesomeModule], [typeof i1.ShareButtonComponent, typeof i2.ShareIconsModule, typeof i3.ShareButtonsPopupModule, typeof i4.OverlayModule, typeof i5.FontAwesomeModule]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<ShareButtonModule>;
|
|
13
|
-
}
|
|
1
|
+
import { FaIconLibrary } from '@fortawesome/angular-fontawesome';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "./share-button.component";
|
|
4
|
+
import * as i2 from "ngx-sharebuttons/icons";
|
|
5
|
+
import * as i3 from "ngx-sharebuttons/popup";
|
|
6
|
+
import * as i4 from "@angular/cdk/overlay";
|
|
7
|
+
import * as i5 from "@fortawesome/angular-fontawesome";
|
|
8
|
+
export declare class ShareButtonModule {
|
|
9
|
+
constructor(library: FaIconLibrary);
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShareButtonModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ShareButtonModule, [typeof i1.ShareButtonComponent], [typeof i2.ShareIconsModule, typeof i3.ShareButtonsPopupModule, typeof i4.OverlayModule, typeof i5.FontAwesomeModule], [typeof i1.ShareButtonComponent, typeof i2.ShareIconsModule, typeof i3.ShareButtonsPopupModule, typeof i4.OverlayModule, typeof i5.FontAwesomeModule]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ShareButtonModule>;
|
|
13
|
+
}
|
package/package.json
CHANGED
|
@@ -1,31 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ng-ipa-library",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "<
|
|
6
|
-
"@angular/core": "<
|
|
7
|
-
"@angular/cdk": "<
|
|
5
|
+
"@angular/common": "<17.0.0",
|
|
6
|
+
"@angular/core": "<17.0.0",
|
|
7
|
+
"@angular/cdk": "<17.0.0"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"tslib": "^2.3.1",
|
|
11
11
|
"ngx-toastr": "^16.0.1",
|
|
12
12
|
"ngx-captcha": "^13.0.0",
|
|
13
|
-
"ngx-dropzone-wrapper": "^
|
|
13
|
+
"ngx-dropzone-wrapper": "^14.0.0",
|
|
14
14
|
"moment-hijri": "^2.1.2",
|
|
15
15
|
"@types/moment-hijri": "^2.1.0",
|
|
16
|
-
"@ng-bootstrap/ng-bootstrap": "^
|
|
16
|
+
"@ng-bootstrap/ng-bootstrap": "^15.1.0",
|
|
17
17
|
"@fortawesome/fontawesome-svg-core": "^6.1.0",
|
|
18
|
-
"@fortawesome/angular-fontawesome": "^0.
|
|
18
|
+
"@fortawesome/angular-fontawesome": "^0.13.0",
|
|
19
19
|
"@fortawesome/free-brands-svg-icons": "^6.1.0",
|
|
20
20
|
"@fortawesome/free-solid-svg-icons": "^6.1.0",
|
|
21
21
|
"ngx-sharebuttons": "^11.0.0",
|
|
22
|
-
"@ng-select/ng-select": "^
|
|
22
|
+
"@ng-select/ng-select": "^11.0.0"
|
|
23
23
|
},
|
|
24
|
-
"module": "
|
|
25
|
-
"es2020": "fesm2020/ng-ipa-library.mjs",
|
|
26
|
-
"esm2020": "esm2020/ng-ipa-library.mjs",
|
|
27
|
-
"fesm2020": "fesm2020/ng-ipa-library.mjs",
|
|
28
|
-
"fesm2015": "fesm2015/ng-ipa-library.mjs",
|
|
24
|
+
"module": "fesm2022/ng-ipa-library.mjs",
|
|
29
25
|
"typings": "index.d.ts",
|
|
30
26
|
"exports": {
|
|
31
27
|
"./package.json": {
|
|
@@ -33,11 +29,9 @@
|
|
|
33
29
|
},
|
|
34
30
|
".": {
|
|
35
31
|
"types": "./index.d.ts",
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"node": "./fesm2015/ng-ipa-library.mjs",
|
|
40
|
-
"default": "./fesm2020/ng-ipa-library.mjs"
|
|
32
|
+
"esm2022": "./esm2022/ng-ipa-library.mjs",
|
|
33
|
+
"esm": "./esm2022/ng-ipa-library.mjs",
|
|
34
|
+
"default": "./fesm2022/ng-ipa-library.mjs"
|
|
41
35
|
}
|
|
42
36
|
},
|
|
43
37
|
"sideEffects": false
|
package/public-api.d.ts
CHANGED
|
@@ -1,31 +1,31 @@
|
|
|
1
|
-
export * from './lib/ng-ipa-library.module';
|
|
2
|
-
export * from 'ngx-toastr';
|
|
3
|
-
export * from '@ng-select/ng-select';
|
|
4
|
-
export * from './lib/pipes/pipes.module';
|
|
5
|
-
export * from './lib/share-button/share-button.module';
|
|
6
|
-
export * from './lib/core/components/loading/loading.component';
|
|
7
|
-
export * from './lib/ipa-form/text-input/text-input.component';
|
|
8
|
-
export * from './lib/ipa-form/textarea-input/textarea-input.component';
|
|
9
|
-
export * from './lib/ipa-form/dropdown-input/dropdown-input.component';
|
|
10
|
-
export * from './lib/ipa-form/file-upload/file-upload.component';
|
|
11
|
-
export * from './lib/ipa-form/datepicker/hijri-datepicker/hijri-datepicker.component';
|
|
12
|
-
export * from './lib/ipa-form/datepicker/gregorian-datepicker/gregorian-datepicker.component';
|
|
13
|
-
export * from './lib/ipa-form/recaptcha/recaptcha.component';
|
|
14
|
-
export * from './lib/generate-form/generate-form.component';
|
|
15
|
-
export * from './lib/share-button/share-button.component';
|
|
16
|
-
export * from './lib/core/interceptors/loading.interceptor';
|
|
17
|
-
export * from './lib/core/interceptors/error.interceptor';
|
|
18
|
-
export * from './lib/core/interceptors/token.interceptor';
|
|
19
|
-
export * from './lib/core/interceptors/myIPAToken.interceptor';
|
|
20
|
-
export * from './lib/core/services/loader.service';
|
|
21
|
-
export * from './lib/core/services/error.service';
|
|
22
|
-
export * from './lib/core/services/token.service';
|
|
23
|
-
export * from './lib/core/services/auth.service';
|
|
24
|
-
export * from './lib/ipa-form/ipa-form.service';
|
|
25
|
-
export * from './lib/services/breadcrumbs.service';
|
|
26
|
-
export * from './lib/services/common.service';
|
|
27
|
-
export * from './lib/pipes/hijri-date.pipe';
|
|
28
|
-
export * from './lib/models/pagedResult';
|
|
29
|
-
export * from './lib/models/apiException';
|
|
30
|
-
export * from './lib/models/apiResponse';
|
|
31
|
-
export * from './lib/models/generateForm.model';
|
|
1
|
+
export * from './lib/ng-ipa-library.module';
|
|
2
|
+
export * from 'ngx-toastr';
|
|
3
|
+
export * from '@ng-select/ng-select';
|
|
4
|
+
export * from './lib/pipes/pipes.module';
|
|
5
|
+
export * from './lib/share-button/share-button.module';
|
|
6
|
+
export * from './lib/core/components/loading/loading.component';
|
|
7
|
+
export * from './lib/ipa-form/text-input/text-input.component';
|
|
8
|
+
export * from './lib/ipa-form/textarea-input/textarea-input.component';
|
|
9
|
+
export * from './lib/ipa-form/dropdown-input/dropdown-input.component';
|
|
10
|
+
export * from './lib/ipa-form/file-upload/file-upload.component';
|
|
11
|
+
export * from './lib/ipa-form/datepicker/hijri-datepicker/hijri-datepicker.component';
|
|
12
|
+
export * from './lib/ipa-form/datepicker/gregorian-datepicker/gregorian-datepicker.component';
|
|
13
|
+
export * from './lib/ipa-form/recaptcha/recaptcha.component';
|
|
14
|
+
export * from './lib/generate-form/generate-form.component';
|
|
15
|
+
export * from './lib/share-button/share-button.component';
|
|
16
|
+
export * from './lib/core/interceptors/loading.interceptor';
|
|
17
|
+
export * from './lib/core/interceptors/error.interceptor';
|
|
18
|
+
export * from './lib/core/interceptors/token.interceptor';
|
|
19
|
+
export * from './lib/core/interceptors/myIPAToken.interceptor';
|
|
20
|
+
export * from './lib/core/services/loader.service';
|
|
21
|
+
export * from './lib/core/services/error.service';
|
|
22
|
+
export * from './lib/core/services/token.service';
|
|
23
|
+
export * from './lib/core/services/auth.service';
|
|
24
|
+
export * from './lib/ipa-form/ipa-form.service';
|
|
25
|
+
export * from './lib/services/breadcrumbs.service';
|
|
26
|
+
export * from './lib/services/common.service';
|
|
27
|
+
export * from './lib/pipes/hijri-date.pipe';
|
|
28
|
+
export * from './lib/models/pagedResult';
|
|
29
|
+
export * from './lib/models/apiException';
|
|
30
|
+
export * from './lib/models/apiResponse';
|
|
31
|
+
export * from './lib/models/generateForm.model';
|