@dsivd/prestations-ng 16.5.1-beta.2 → 16.5.1-beta.4
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/CHANGELOG.md +12 -2
- package/dsivd-prestations-ng-v16.5.1-beta.4.tgz +0 -0
- package/esm2020/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.component.mjs +20 -10
- package/esm2020/foehn-upload/foehn-bo-multi-upload/bo-multi-upload.service.mjs +17 -4
- package/fesm2015/dsivd-prestations-ng.mjs +34 -12
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +34 -12
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-multiselect-autocomplete/foehn-multiselect-autocomplete.component.d.ts +1 -0
- package/foehn-upload/foehn-bo-multi-upload/bo-multi-upload.service.d.ts +4 -1
- package/package.json +1 -1
- package/dsivd-prestations-ng-v16.5.1-beta.2.tgz +0 -0
|
@@ -28,6 +28,7 @@ export declare class FoehnMultiselectAutocompleteComponent extends FoehnAutocomp
|
|
|
28
28
|
set defaultElementValues(items: unknown[]);
|
|
29
29
|
set defaultElementValue(item: string);
|
|
30
30
|
ngOnInit(): void;
|
|
31
|
+
onModelChange(value: any): void;
|
|
31
32
|
hasErrorsToDisplay(): boolean;
|
|
32
33
|
updateMultiselectAutocomplete(): void;
|
|
33
34
|
handleUserInput(): void;
|
|
@@ -3,6 +3,7 @@ import { Observable } from 'rxjs';
|
|
|
3
3
|
import { GrowlBrokerService } from '../../foehn-growl/growl-broker.service';
|
|
4
4
|
import { ApplicationInfoService } from '../../sdk-appinfo/application-info.service';
|
|
5
5
|
import { SdkDictionaryService } from '../../sdk-dictionary/sdk-dictionary.service';
|
|
6
|
+
import { IamExpiredInterceptorService } from '../../sdk-redirect/iam-expired-interceptor.service';
|
|
6
7
|
import { DocumentReference } from '../document-reference';
|
|
7
8
|
import { UploadProgressService } from '../foehn-upload-progress-bar/upload-progress.service';
|
|
8
9
|
import { BoDocumentsWithErrors } from './bo-multi-upload.type';
|
|
@@ -13,15 +14,17 @@ export declare class BoMultiUploadService {
|
|
|
13
14
|
private applicationInfoService;
|
|
14
15
|
private dictionaryService;
|
|
15
16
|
private uploadProgressService;
|
|
17
|
+
private iamInterceptor;
|
|
16
18
|
private globalSequence;
|
|
17
19
|
private uploaderHelper;
|
|
18
20
|
private readonly NB_CONCURRENT_FILES_TO_UPLOAD;
|
|
19
|
-
constructor(httpClient: HttpClient, growlService: GrowlBrokerService, applicationInfoService: ApplicationInfoService, dictionaryService: SdkDictionaryService, uploadProgressService: UploadProgressService);
|
|
21
|
+
constructor(httpClient: HttpClient, growlService: GrowlBrokerService, applicationInfoService: ApplicationInfoService, dictionaryService: SdkDictionaryService, uploadProgressService: UploadProgressService, iamInterceptor: IamExpiredInterceptorService);
|
|
20
22
|
uploadDocuments(url: string, formKey: string, label: string, files: File[], key: string, isMultiple: boolean, language: string, shouldDisplayFileSavedConfirmation: boolean): Observable<BoDocumentsWithErrors>;
|
|
21
23
|
deleteDocument(baseUrl: string, document: DocumentReference): Observable<DocumentReference>;
|
|
22
24
|
getDownloadUrl(baseUrl: string, document: DocumentReference): string;
|
|
23
25
|
private getDocumentsWithErrorsObservable;
|
|
24
26
|
private mergeDocumentsWithErrors;
|
|
27
|
+
private manageBeneficiaryRequiredError;
|
|
25
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<BoMultiUploadService, never>;
|
|
26
29
|
static ɵprov: i0.ɵɵInjectableDeclaration<BoMultiUploadService>;
|
|
27
30
|
}
|
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"ng-update": {
|
|
41
41
|
"migrations": "./schematics/migration-collection.json"
|
|
42
42
|
},
|
|
43
|
-
"version": "16.5.1-beta.
|
|
43
|
+
"version": "16.5.1-beta.4",
|
|
44
44
|
"module": "fesm2015/dsivd-prestations-ng.mjs",
|
|
45
45
|
"es2020": "fesm2020/dsivd-prestations-ng.mjs",
|
|
46
46
|
"esm2020": "esm2020/dsivd-prestations-ng.mjs",
|
|
Binary file
|