cat-documents-ng 0.3.62 → 0.3.64
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnDestroy, EventEmitter } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FileUpload } from 'primeng/fileupload';
|
|
3
3
|
import { MessageService } from 'primeng/api';
|
|
4
4
|
import { PrimeNGConfig } from 'primeng/api';
|
|
@@ -17,7 +17,7 @@ import * as i0 from "@angular/core";
|
|
|
17
17
|
* Provides a comprehensive interface for uploading documents with assignment types,
|
|
18
18
|
* categories, document types, and applicant selection.
|
|
19
19
|
*/
|
|
20
|
-
export declare class DocumentUploadComponent implements OnDestroy {
|
|
20
|
+
export declare class DocumentUploadComponent implements OnInit, OnDestroy {
|
|
21
21
|
documentUpload: DocumentUploadService;
|
|
22
22
|
uploadService: DocumentService;
|
|
23
23
|
private config;
|
|
@@ -93,6 +93,11 @@ export declare class DocumentUploadComponent implements OnDestroy {
|
|
|
93
93
|
* @param dataService - Service for data loading operations
|
|
94
94
|
*/
|
|
95
95
|
constructor(documentUpload: DocumentUploadService, uploadService: DocumentService, config: PrimeNGConfig, fileFormatService: FileFormatService, messageService: MessageService, cdr: ChangeDetectorRef, businessService: DocumentUploadBusinessService, formService: DocumentUploadFormService, dataService: DocumentUploadDataService);
|
|
96
|
+
/**
|
|
97
|
+
* Lifecycle hook called after inputs are initialized.
|
|
98
|
+
* Ensures no stale uploads are shown when navigating back.
|
|
99
|
+
*/
|
|
100
|
+
ngOnInit(): void;
|
|
96
101
|
/**
|
|
97
102
|
* Handles changes in assignment type selection.
|
|
98
103
|
* Resets form selections, loads categories, and handles applicant loading.
|
package/package.json
CHANGED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"catQwUrl": "https://qa-qw-api.dynamatix.com/api/",
|
|
3
|
+
"apiUrl": "https://gatehouse-qa.dynamatix.com/api/",
|
|
4
|
+
"swaggerUrl": "https://qa-qw-api.dynamatix.com/api-docs/",
|
|
5
|
+
"adminEmail": "neeraj.kumar@catura.co.uk",
|
|
6
|
+
"interactBaseApi": "https://qa-interact-api.dynamatix.com/api/",
|
|
7
|
+
"actionBaseApi": "https://qa-qw-api.dynamatix.com/api/",
|
|
8
|
+
"documentApiUrl": "https://gatehouse-documents-qa-bgavezbwe9b6e9h6.uksouth-01.azurewebsites.net/api/",
|
|
9
|
+
"adminPhoneNumber": "+447380300545",
|
|
10
|
+
"visibilityOption": {
|
|
11
|
+
"isRationalVisible": false,
|
|
12
|
+
"isChecklistVisible": false,
|
|
13
|
+
"isAudit": false,
|
|
14
|
+
"isConversation": true,
|
|
15
|
+
"isOverview": true,
|
|
16
|
+
"isDocuments": true
|
|
17
|
+
},
|
|
18
|
+
"env": "qa"
|
|
19
|
+
|
|
20
|
+
}
|