ngx-scandoc 0.0.1 → 1.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.
Files changed (71) hide show
  1. package/core/app.worker.d.ts +1 -0
  2. package/core/components/components.module.d.ts +8 -0
  3. package/core/components/webcam/domain/webcam-image.d.ts +35 -0
  4. package/core/components/webcam/domain/webcam-init-error.d.ts +4 -0
  5. package/core/components/webcam/domain/webcam-mirror-properties.d.ts +3 -0
  6. package/core/components/webcam/util/webcam.util.d.ts +8 -0
  7. package/core/components/webcam/webcam/webcam.component.d.ts +202 -0
  8. package/core/components/webcam/webcam.module.d.ts +9 -0
  9. package/core/pipes/pipes.module.d.ts +7 -0
  10. package/core/pipes/safeResourceUrl.pipe.d.ts +10 -0
  11. package/core/shared/material.module.d.ts +28 -0
  12. package/dialogs/components/blank/blank.component.d.ts +17 -0
  13. package/dialogs/components/confirm/confirm.component.d.ts +30 -0
  14. package/dialogs/components/loading/loading.component.d.ts +5 -0
  15. package/dialogs/components/scan-mobile/scan-mobile.component.d.ts +16 -0
  16. package/dialogs/components/scan-profile/scan-profile.component.d.ts +124 -0
  17. package/dialogs/components/scan-selfie/scan-selfie.component.d.ts +83 -0
  18. package/dialogs/dialogs.core.provider.d.ts +18 -0
  19. package/dialogs/dialogs.module.d.ts +21 -0
  20. package/esm2020/core/app.worker.mjs +236 -0
  21. package/esm2020/core/components/components.module.mjs +18 -0
  22. package/esm2020/core/components/webcam/domain/webcam-image.mjs +58 -0
  23. package/esm2020/core/components/webcam/domain/webcam-init-error.mjs +3 -0
  24. package/esm2020/core/components/webcam/domain/webcam-mirror-properties.mjs +3 -0
  25. package/esm2020/core/components/webcam/util/webcam.util.mjs +48 -0
  26. package/esm2020/core/components/webcam/webcam/webcam.component.mjs +861 -0
  27. package/esm2020/core/components/webcam/webcam.module.mjs +22 -0
  28. package/esm2020/core/pipes/pipes.module.mjs +19 -0
  29. package/esm2020/core/pipes/safeResourceUrl.pipe.mjs +20 -0
  30. package/esm2020/core/shared/material.module.mjs +162 -0
  31. package/esm2020/dialogs/components/blank/blank.component.mjs +47 -0
  32. package/esm2020/dialogs/components/confirm/confirm.component.mjs +53 -0
  33. package/esm2020/dialogs/components/loading/loading.component.mjs +12 -0
  34. package/esm2020/dialogs/components/scan-mobile/scan-mobile.component.mjs +43 -0
  35. package/esm2020/dialogs/components/scan-profile/scan-profile.component.mjs +756 -0
  36. package/esm2020/dialogs/components/scan-selfie/scan-selfie.component.mjs +392 -0
  37. package/esm2020/dialogs/dialogs.core.provider.mjs +100 -0
  38. package/esm2020/dialogs/dialogs.module.mjs +89 -0
  39. package/esm2020/forms/form.module.mjs +87 -0
  40. package/esm2020/forms/types/avatar.type.mjs +53 -0
  41. package/esm2020/forms/types/profile.image.type.mjs +54 -0
  42. package/esm2020/forms/types/title.type.mjs +60 -0
  43. package/esm2020/lib/ngx-scandoc.module.mjs +28 -11
  44. package/esm2020/providers/auth.provider.mjs +57 -0
  45. package/esm2020/providers/interceptor.provider.mjs +61 -0
  46. package/esm2020/providers/scan.form.mjs +386 -0
  47. package/esm2020/providers/scan.provider.mjs +490 -0
  48. package/esm2020/providers/translation.provider.mjs +50 -0
  49. package/esm2020/providers/webrtc.provider.mjs +58 -0
  50. package/esm2020/public-api.mjs +22 -4
  51. package/fesm2015/ngx-scandoc.mjs +4178 -32
  52. package/fesm2015/ngx-scandoc.mjs.map +1 -1
  53. package/fesm2020/ngx-scandoc.mjs +4154 -32
  54. package/fesm2020/ngx-scandoc.mjs.map +1 -1
  55. package/forms/form.module.d.ts +18 -0
  56. package/forms/types/avatar.type.d.ts +14 -0
  57. package/forms/types/profile.image.type.d.ts +14 -0
  58. package/forms/types/title.type.d.ts +12 -0
  59. package/lib/ngx-scandoc.module.d.ts +20 -2
  60. package/package.json +6 -2
  61. package/providers/auth.provider.d.ts +21 -0
  62. package/providers/interceptor.provider.d.ts +13 -0
  63. package/providers/scan.form.d.ts +13 -0
  64. package/providers/scan.provider.d.ts +239 -0
  65. package/providers/translation.provider.d.ts +9 -0
  66. package/providers/webrtc.provider.d.ts +11 -0
  67. package/public-api.d.ts +21 -3
  68. package/esm2020/lib/ngx-scandoc.component.mjs +0 -22
  69. package/esm2020/lib/ngx-scandoc.service.mjs +0 -14
  70. package/lib/ngx-scandoc.component.d.ts +0 -8
  71. package/lib/ngx-scandoc.service.d.ts +0 -6
@@ -0,0 +1,18 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./types/title.type";
3
+ import * as i2 from "./types/avatar.type";
4
+ import * as i3 from "./types/profile.image.type";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "@angular/forms";
7
+ import * as i6 from "@ngx-formly/material/datepicker";
8
+ import * as i7 from "@ngx-formly/core/select";
9
+ import * as i8 from "../core/shared/material.module";
10
+ import * as i9 from "ngx-avatars";
11
+ import * as i10 from "@ngx-translate/core";
12
+ import * as i11 from "@ngx-formly/material";
13
+ import * as i12 from "@ngx-formly/core";
14
+ export declare class AppFormModule {
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppFormModule, never>;
16
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AppFormModule, [typeof i1.TitleTypeComponent, typeof i2.AvatarTypeComponent, typeof i3.ProfileImageTypeComponent], [typeof i4.CommonModule, typeof i5.FormsModule, typeof i6.FormlyMatDatepickerModule, typeof i7.FormlySelectModule, typeof i8.MaterialModule, typeof i9.AvatarModule, typeof i10.TranslateModule, typeof i11.FormlyMaterialModule, typeof i12.FormlyModule], [typeof i12.FormlyModule]>;
17
+ static ɵinj: i0.ɵɵInjectorDeclaration<AppFormModule>;
18
+ }
@@ -0,0 +1,14 @@
1
+ import { AfterViewInit, ChangeDetectorRef } from '@angular/core';
2
+ import { FieldType } from '@ngx-formly/material';
3
+ import * as i0 from "@angular/core";
4
+ export declare class AvatarTypeComponent extends FieldType<any> implements AfterViewInit {
5
+ private cd;
6
+ width: string;
7
+ padding: string;
8
+ name: any;
9
+ constructor(cd: ChangeDetectorRef);
10
+ ngOnChange(): void;
11
+ ngAfterViewInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<AvatarTypeComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<AvatarTypeComponent, "app-formly-avatar-type", never, {}, {}, never, never, false>;
14
+ }
@@ -0,0 +1,14 @@
1
+ import { AfterViewInit, ChangeDetectorRef } from '@angular/core';
2
+ import { FieldType } from '@ngx-formly/material';
3
+ import * as i0 from "@angular/core";
4
+ export declare class ProfileImageTypeComponent extends FieldType<any> implements AfterViewInit {
5
+ private cd;
6
+ name: any;
7
+ width: any;
8
+ padding: any;
9
+ constructor(cd: ChangeDetectorRef);
10
+ ngOnChange(): void;
11
+ ngAfterViewInit(): void;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProfileImageTypeComponent, never>;
13
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProfileImageTypeComponent, "app-formly-profile-image-type", never, {}, {}, never, never, false>;
14
+ }
@@ -0,0 +1,12 @@
1
+ import { OnInit, AfterViewInit, ChangeDetectorRef } from '@angular/core';
2
+ import { FieldType } from '@ngx-formly/material';
3
+ import * as i0 from "@angular/core";
4
+ export declare class TitleTypeComponent extends FieldType<any> implements OnInit, AfterViewInit {
5
+ private cd;
6
+ opt: any;
7
+ constructor(cd: ChangeDetectorRef);
8
+ ngOnInit(): void;
9
+ ngAfterViewInit(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<TitleTypeComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<TitleTypeComponent, "app-formly-title-type", never, {}, {}, never, never, false>;
12
+ }
@@ -1,7 +1,25 @@
1
+ import { ModuleWithProviders } from '@angular/core';
1
2
  import * as i0 from "@angular/core";
2
- import * as i1 from "./ngx-scandoc.component";
3
+ import * as i1 from "../core/components/components.module";
4
+ import * as i2 from "../dialogs/dialogs.module";
5
+ export interface AuthConfig {
6
+ path: string;
7
+ tokenName: string;
8
+ clientId: string;
9
+ }
10
+ export interface ScanConfig {
11
+ extractionPath: string;
12
+ validationPath: string;
13
+ errorLoggingPath: string;
14
+ stateLessPath: string;
15
+ }
16
+ export interface ScanDataConfig {
17
+ auth: AuthConfig;
18
+ scan: ScanConfig;
19
+ }
3
20
  export declare class NgxScandocModule {
21
+ static forRoot(config: ScanDataConfig): ModuleWithProviders<NgxScandocModule>;
4
22
  static ɵfac: i0.ɵɵFactoryDeclaration<NgxScandocModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<NgxScandocModule, [typeof i1.NgxScandocComponent], never, [typeof i1.NgxScandocComponent]>;
23
+ static ɵmod: i0.ɵɵNgModuleDeclaration<NgxScandocModule, never, [typeof i1.CoreComponentsModule, typeof i2.DialogsModule], [typeof i1.CoreComponentsModule, typeof i2.DialogsModule]>;
6
24
  static ɵinj: i0.ɵɵInjectorDeclaration<NgxScandocModule>;
7
25
  }
package/package.json CHANGED
@@ -1,9 +1,13 @@
1
1
  {
2
2
  "name": "ngx-scandoc",
3
- "version": "0.0.1",
3
+ "version": "1.0.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.2.0",
6
- "@angular/core": "^14.2.0"
6
+ "@angular/core": "^14.2.0",
7
+ "@angular/forms": "^14.3.0",
8
+ "@angular/cdk": "^14.2.7",
9
+ "@angular/material": "^14.2.7",
10
+ "moment": "^2.29.1"
7
11
  },
8
12
  "dependencies": {
9
13
  "tslib": "^2.3.0"
@@ -0,0 +1,21 @@
1
+ import { Observable } from 'rxjs';
2
+ import { HttpClient } from '@angular/common/http';
3
+ import { AuthConfig } from '../lib/ngx-scandoc.module';
4
+ import * as i0 from "@angular/core";
5
+ export declare class AuthProvider {
6
+ private http;
7
+ private config;
8
+ constructor(http: HttpClient, config: AuthConfig);
9
+ setConfig(): void;
10
+ token: string;
11
+ tokenTimestamps: {
12
+ exp: number;
13
+ iat: number;
14
+ };
15
+ private get tokenExpired();
16
+ resetToken(): void;
17
+ get accesToken(): Observable<any>;
18
+ private getToken;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthProvider, never>;
20
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthProvider>;
21
+ }
@@ -0,0 +1,13 @@
1
+ import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/common/http';
2
+ import { Injector } from '@angular/core';
3
+ import { Observable } from 'rxjs';
4
+ import * as i0 from "@angular/core";
5
+ export declare class HttpErrorInterceptor implements HttpInterceptor {
6
+ private injector;
7
+ inflightAuthRequest: Observable<any> | null;
8
+ constructor(injector: Injector);
9
+ intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
10
+ private getHeaders;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<HttpErrorInterceptor, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<HttpErrorInterceptor>;
13
+ }
@@ -0,0 +1,13 @@
1
+ import { FormlyFieldConfig } from '@ngx-formly/core';
2
+ import { ScanProvider } from './scan.provider';
3
+ import { TranslationProvider } from './translation.provider';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ScanFieldsProvider {
6
+ private translate;
7
+ private provider;
8
+ constructor(translate: TranslationProvider, provider: ScanProvider);
9
+ update(): FormlyFieldConfig[];
10
+ document(): FormlyFieldConfig[];
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScanFieldsProvider, never>;
12
+ static ɵprov: i0.ɵɵInjectableDeclaration<ScanFieldsProvider>;
13
+ }
@@ -0,0 +1,239 @@
1
+ import { Observable } from 'rxjs';
2
+ import { HttpClient } from '@angular/common/http';
3
+ import { AuthProvider } from './auth.provider';
4
+ import { ScanConfig } from '../lib/ngx-scandoc.module';
5
+ import * as i0 from "@angular/core";
6
+ export declare class ScanProvider {
7
+ private http;
8
+ private auth;
9
+ private config;
10
+ enableVerification: boolean;
11
+ canStoreImages: boolean;
12
+ constructor(http: HttpClient, auth: AuthProvider, config: ScanConfig);
13
+ genderList(): {
14
+ M: string;
15
+ 'M/M': string;
16
+ F: string;
17
+ 'F/F': string;
18
+ };
19
+ stateless(DocumentFaceImage: any, LiveFaceImage: any): Observable<Object>;
20
+ sendLog(data: any): Observable<Object>;
21
+ burst(Images: string[]): Observable<Object>;
22
+ countries(): Observable<any>;
23
+ countryList(): {
24
+ AFG: string;
25
+ ALB: string;
26
+ DZA: string;
27
+ ASM: string;
28
+ AND: string;
29
+ AGO: string;
30
+ AIA: string;
31
+ ATG: string;
32
+ ARG: string;
33
+ ARM: string;
34
+ ABW: string;
35
+ AUS: string;
36
+ AUT: string;
37
+ AZE: string;
38
+ BHS: string;
39
+ BHR: string;
40
+ BGD: string;
41
+ BRB: string;
42
+ BLR: string;
43
+ BEL: string;
44
+ BLZ: string;
45
+ BEN: string;
46
+ BMU: string;
47
+ BTN: string;
48
+ BOL: string;
49
+ BIH: string;
50
+ BWA: string;
51
+ BRA: string;
52
+ VGB: string;
53
+ BRN: string;
54
+ BGR: string;
55
+ BFA: string;
56
+ BDI: string;
57
+ KHM: string;
58
+ CMR: string;
59
+ CAN: string;
60
+ CPV: string;
61
+ CAF: string;
62
+ TCD: string;
63
+ CHL: string;
64
+ CHN: string;
65
+ HKG: string;
66
+ MAC: string;
67
+ COL: string;
68
+ COM: string;
69
+ COG: string;
70
+ CRI: string;
71
+ CIV: string;
72
+ HRV: string;
73
+ CUB: string;
74
+ CYP: string;
75
+ CZE: string;
76
+ DNK: string;
77
+ DJI: string;
78
+ DMA: string;
79
+ DOM: string;
80
+ ECU: string;
81
+ EGY: string;
82
+ SLV: string;
83
+ GNQ: string;
84
+ ERI: string;
85
+ EST: string;
86
+ ETH: string;
87
+ FRO: string;
88
+ FJI: string;
89
+ FIN: string;
90
+ FRA: string;
91
+ GUF: string;
92
+ PYF: string;
93
+ GAB: string;
94
+ GMB: string;
95
+ GEO: string;
96
+ DEU: string;
97
+ GHA: string;
98
+ GRC: string;
99
+ GRL: string;
100
+ GRD: string;
101
+ GLP: string;
102
+ GUM: string;
103
+ GTM: string;
104
+ GNB: string;
105
+ HTI: string;
106
+ HND: string;
107
+ ISL: string;
108
+ IDN: string;
109
+ IRQ: string;
110
+ ITA: string;
111
+ JPN: string;
112
+ JOR: string;
113
+ KAZ: string;
114
+ KEN: string;
115
+ KIR: string;
116
+ PRK: string;
117
+ KOR: string;
118
+ KWT: string;
119
+ KGZ: string;
120
+ LAO: string;
121
+ LVA: string;
122
+ LBN: string;
123
+ LSO: string;
124
+ LBR: string;
125
+ LBY: string;
126
+ LIE: string;
127
+ LTU: string;
128
+ LUX: string;
129
+ MDG: string;
130
+ MWI: string;
131
+ MYS: string;
132
+ MDV: string;
133
+ MLI: string;
134
+ MLT: string;
135
+ MHL: string;
136
+ MTQ: string;
137
+ MRT: string;
138
+ MUS: string;
139
+ MEX: string;
140
+ FSM: string;
141
+ MDA: string;
142
+ MCO: string;
143
+ MNG: string;
144
+ MNE: string;
145
+ MSR: string;
146
+ MAR: string;
147
+ MOZ: string;
148
+ MMR: string;
149
+ NAM: string;
150
+ NRU: string;
151
+ NPL: string;
152
+ NLD: string;
153
+ ANT: string;
154
+ NCL: string;
155
+ NZL: string;
156
+ NIC: string;
157
+ NER: string;
158
+ NGA: string;
159
+ MNP: string;
160
+ NOR: string;
161
+ OMN: string;
162
+ PAK: string;
163
+ PLW: string;
164
+ PSE: string;
165
+ PAN: string;
166
+ PNG: string;
167
+ PRY: string;
168
+ PER: string;
169
+ PHL: string;
170
+ PCN: string;
171
+ POL: string;
172
+ PRT: string;
173
+ PRI: string;
174
+ QAT: string;
175
+ REU: string;
176
+ ROU: string;
177
+ RUS: string;
178
+ RWA: string;
179
+ KNA: string;
180
+ LCA: string;
181
+ VCT: string;
182
+ WSM: string;
183
+ SMR: string;
184
+ STP: string;
185
+ SAU: string;
186
+ SEN: string;
187
+ SRB: string;
188
+ SYC: string;
189
+ SLE: string;
190
+ SGP: string;
191
+ SVK: string;
192
+ SVN: string;
193
+ SLB: string;
194
+ SOM: string;
195
+ ZAF: string;
196
+ ESP: string;
197
+ LKA: string;
198
+ SDN: string;
199
+ SUR: string;
200
+ SWZ: string;
201
+ SWE: string;
202
+ CHE: string;
203
+ SYR: string;
204
+ TJK: string;
205
+ TZA: string;
206
+ THA: string;
207
+ TLS: string;
208
+ TGO: string;
209
+ TON: string;
210
+ TTO: string;
211
+ TUN: string;
212
+ TUR: string;
213
+ TKM: string;
214
+ TUV: string;
215
+ UGA: string;
216
+ UKR: string;
217
+ ARE: string;
218
+ GBR: string;
219
+ USA: string;
220
+ URY: string;
221
+ UZB: string;
222
+ VUT: string;
223
+ VEN: string;
224
+ VNM: string;
225
+ VIR: string;
226
+ YEM: string;
227
+ ZMB: string;
228
+ ZWE: string;
229
+ };
230
+ get fields(): any;
231
+ parseBlast(results: any): {
232
+ fields: any;
233
+ model: any;
234
+ };
235
+ blastPost(data: any): Observable<any>;
236
+ blobToDataUrl(file: any): Observable<string>;
237
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScanProvider, never>;
238
+ static ɵprov: i0.ɵɵInjectableDeclaration<ScanProvider>;
239
+ }
@@ -0,0 +1,9 @@
1
+ import { TranslateService } from '@ngx-translate/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class TranslationProvider {
4
+ translate: TranslateService;
5
+ constructor(translate: TranslateService);
6
+ forms(item: any, namespace?: null): any;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<TranslationProvider, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<TranslationProvider>;
9
+ }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class webRtcProvider {
3
+ pc: RTCPeerConnection;
4
+ subject: any;
5
+ constructor();
6
+ connect(id?: number): void;
7
+ setup(): void;
8
+ sendMessage(data: any): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<webRtcProvider, never>;
10
+ static ɵprov: i0.ɵɵInjectableDeclaration<webRtcProvider>;
11
+ }
package/public-api.d.ts CHANGED
@@ -1,3 +1,21 @@
1
- export * from './lib/ngx-scandoc.service';
2
- export * from './lib/ngx-scandoc.component';
3
- export * from './lib/ngx-scandoc.module';
1
+ export { CoreComponentsModule } from './core/components/components.module';
2
+ export { CorePipesModule } from './core/pipes/pipes.module';
3
+ export { MaterialModule } from './core/shared/material.module';
4
+ export { DialogsModule } from './dialogs/dialogs.module';
5
+ export { DialogsCoreProvider } from './dialogs/dialogs.core.provider';
6
+ export { AppFormModule } from './forms/form.module';
7
+ export { AuthProvider } from './providers/auth.provider';
8
+ export { HttpErrorInterceptor } from './providers/interceptor.provider';
9
+ export { ScanFieldsProvider } from './providers/scan.form';
10
+ export { ScanProvider } from './providers/scan.provider';
11
+ export { TranslationProvider } from './providers/translation.provider';
12
+ export { webRtcProvider } from './providers/webrtc.provider';
13
+ export { WebcamComponent } from './core/components/webcam/webcam/webcam.component';
14
+ export { SafeResourceUrlPipe } from './core/pipes/safeResourceUrl.pipe';
15
+ export { BlankComponent } from './dialogs/components/blank/blank.component';
16
+ export { LoadingComponent } from './dialogs/components/loading/loading.component';
17
+ export { ScanProfileComponent } from './dialogs/components/scan-profile/scan-profile.component';
18
+ export { ScanSelfieComponent } from './dialogs/components/scan-selfie/scan-selfie.component';
19
+ export { ScanMobileComponent } from './dialogs/components/scan-mobile/scan-mobile.component';
20
+ export { WebcamModule } from './core/components/webcam/webcam.module';
21
+ export { NgxScandocModule } from './lib/ngx-scandoc.module';
@@ -1,22 +0,0 @@
1
- import { Component } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class NgxScandocComponent {
4
- constructor() { }
5
- ngOnInit() {
6
- }
7
- }
8
- NgxScandocComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NgxScandocComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
9
- NgxScandocComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: NgxScandocComponent, selector: "lib-ngx-scandoc", ngImport: i0, template: `
10
- <p>
11
- ngx-scandoc works!
12
- </p>
13
- `, isInline: true });
14
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NgxScandocComponent, decorators: [{
15
- type: Component,
16
- args: [{ selector: 'lib-ngx-scandoc', template: `
17
- <p>
18
- ngx-scandoc works!
19
- </p>
20
- ` }]
21
- }], ctorParameters: function () { return []; } });
22
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmd4LXNjYW5kb2MuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LXNjYW5kb2Mvc3JjL2xpYi9uZ3gtc2NhbmRvYy5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBVSxNQUFNLGVBQWUsQ0FBQzs7QUFZbEQsTUFBTSxPQUFPLG1CQUFtQjtJQUU5QixnQkFBZ0IsQ0FBQztJQUVqQixRQUFRO0lBQ1IsQ0FBQzs7Z0hBTFUsbUJBQW1CO29HQUFuQixtQkFBbUIsdURBUnBCOzs7O0dBSVQ7MkZBSVUsbUJBQW1CO2tCQVYvQixTQUFTOytCQUNFLGlCQUFpQixZQUNqQjs7OztHQUlUIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnbGliLW5neC1zY2FuZG9jJyxcbiAgdGVtcGxhdGU6IGBcbiAgICA8cD5cbiAgICAgIG5neC1zY2FuZG9jIHdvcmtzIVxuICAgIDwvcD5cbiAgYCxcbiAgc3R5bGVzOiBbXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgTmd4U2NhbmRvY0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG5cbiAgY29uc3RydWN0b3IoKSB7IH1cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgfVxuXG59XG4iXX0=
@@ -1,14 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export class NgxScandocService {
4
- constructor() { }
5
- }
6
- NgxScandocService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NgxScandocService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
7
- NgxScandocService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NgxScandocService, providedIn: 'root' });
8
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NgxScandocService, decorators: [{
9
- type: Injectable,
10
- args: [{
11
- providedIn: 'root'
12
- }]
13
- }], ctorParameters: function () { return []; } });
14
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmd4LXNjYW5kb2Muc2VydmljZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1zY2FuZG9jL3NyYy9saWIvbmd4LXNjYW5kb2Muc2VydmljZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQUszQyxNQUFNLE9BQU8saUJBQWlCO0lBRTVCLGdCQUFnQixDQUFDOzs4R0FGTixpQkFBaUI7a0hBQWpCLGlCQUFpQixjQUZoQixNQUFNOzJGQUVQLGlCQUFpQjtrQkFIN0IsVUFBVTttQkFBQztvQkFDVixVQUFVLEVBQUUsTUFBTTtpQkFDbkIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBJbmplY3RhYmxlKHtcbiAgcHJvdmlkZWRJbjogJ3Jvb3QnXG59KVxuZXhwb3J0IGNsYXNzIE5neFNjYW5kb2NTZXJ2aWNlIHtcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxufVxuIl19
@@ -1,8 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- export declare class NgxScandocComponent implements OnInit {
4
- constructor();
5
- ngOnInit(): void;
6
- static ɵfac: i0.ɵɵFactoryDeclaration<NgxScandocComponent, never>;
7
- static ɵcmp: i0.ɵɵComponentDeclaration<NgxScandocComponent, "lib-ngx-scandoc", never, {}, {}, never, never, false>;
8
- }
@@ -1,6 +0,0 @@
1
- import * as i0 from "@angular/core";
2
- export declare class NgxScandocService {
3
- constructor();
4
- static ɵfac: i0.ɵɵFactoryDeclaration<NgxScandocService, never>;
5
- static ɵprov: i0.ɵɵInjectableDeclaration<NgxScandocService>;
6
- }