@dsivd/prestations-ng 16.4.9-beta.1 → 16.4.9-beta.2
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 +4 -0
- package/dsivd-prestations-ng-v16.4.9-beta.2.tgz +0 -0
- package/esm2020/sdk-epayment/sdk-epayment.component.mjs +4 -2
- package/esm2020/sdk-recaptcha/grecaptcha/grecaptcha.component.mjs +8 -6
- package/esm2020/sdk-recaptcha/recaptcha.service.mjs +16 -5
- package/esm2020/sdk-recaptcha/sdk-recaptcha.component.mjs +3 -3
- package/fesm2015/dsivd-prestations-ng.mjs +28 -12
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +26 -12
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/package.json +1 -1
- package/sdk-epayment/sdk-epayment.component.d.ts +1 -0
- package/sdk-recaptcha/grecaptcha/grecaptcha.component.d.ts +3 -1
- package/sdk-recaptcha/recaptcha.service.d.ts +5 -1
- package/dsivd-prestations-ng-v16.4.9-beta.1.tgz +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Injectable, Optional, Inject, EventEmitter, Directive, Input, ViewChildren, ViewChild, forwardRef, Output, HostBinding, Pipe, Component, ContentChildren, HostListener, NgModule, TemplateRef, ContentChild } from '@angular/core';
|
|
2
|
+
import { Injectable, Optional, Inject, EventEmitter, Directive, Input, ViewChildren, ViewChild, forwardRef, Output, HostBinding, Pipe, Component, ContentChildren, HostListener, NgModule, TemplateRef, ContentChild, InjectionToken } from '@angular/core';
|
|
3
3
|
import * as i1$1 from '@angular/router';
|
|
4
4
|
import { ActivatedRoute, NavigationStart, RouterModule, NavigationEnd, RouterLink } from '@angular/router';
|
|
5
5
|
import { of, BehaviorSubject, combineLatest, Subject, throwError, tap as tap$1, concat, toArray, EMPTY, merge, debounceTime as debounceTime$1, map as map$1 } from 'rxjs';
|
|
@@ -12333,8 +12333,12 @@ const HTTP_LOADER_FILTERED_URL = [
|
|
|
12333
12333
|
|
|
12334
12334
|
const RECAPTCHA_API_URL = 'api/recaptcha';
|
|
12335
12335
|
const CAPTCHA_ERROR_NAME = 'recaptcha';
|
|
12336
|
+
const CAPTCHA_URL_TOKEN = new InjectionToken('captchaScriptUrl', {
|
|
12337
|
+
providedIn: 'root',
|
|
12338
|
+
factory: () => 'https://www.recaptcha.net/recaptcha/api.js?onload=reCaptchaLoad&render=explicit'
|
|
12339
|
+
});
|
|
12336
12340
|
class RecaptchaService {
|
|
12337
|
-
constructor(http, sessionInfo, route, validationHandlerService, gesdemService, gesdemEventService, applicationInfoService, iamExpiredInterceptorService) {
|
|
12341
|
+
constructor(http, sessionInfo, route, validationHandlerService, gesdemService, gesdemEventService, applicationInfoService, iamExpiredInterceptorService, captchaScriptUrl) {
|
|
12338
12342
|
this.http = http;
|
|
12339
12343
|
this.sessionInfo = sessionInfo;
|
|
12340
12344
|
this.route = route;
|
|
@@ -12343,6 +12347,7 @@ class RecaptchaService {
|
|
|
12343
12347
|
this.gesdemEventService = gesdemEventService;
|
|
12344
12348
|
this.applicationInfoService = applicationInfoService;
|
|
12345
12349
|
this.iamExpiredInterceptorService = iamExpiredInterceptorService;
|
|
12350
|
+
this.captchaScriptUrl = captchaScriptUrl;
|
|
12346
12351
|
this.errorsSubject = new BehaviorSubject([]);
|
|
12347
12352
|
this.errors = this.initErrorObservable(); // has to be first since it is used in initShouldDisplayObservable !
|
|
12348
12353
|
this.shouldDisplay = this.initShouldDisplayObservable();
|
|
@@ -12406,6 +12411,9 @@ class RecaptchaService {
|
|
|
12406
12411
|
getToken() {
|
|
12407
12412
|
return this.token;
|
|
12408
12413
|
}
|
|
12414
|
+
getCaptchaScriptUrl() {
|
|
12415
|
+
return this.captchaScriptUrl;
|
|
12416
|
+
}
|
|
12409
12417
|
initErrorObservable() {
|
|
12410
12418
|
const matchingGesdemErrors = merge(
|
|
12411
12419
|
// Ensures that there's an initial value
|
|
@@ -12490,16 +12498,18 @@ class RecaptchaService {
|
|
|
12490
12498
|
return captcha.publickey || null;
|
|
12491
12499
|
}
|
|
12492
12500
|
}
|
|
12493
|
-
RecaptchaService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RecaptchaService, deps: [{ token: i1.HttpClient }, { token: SessionInfo }, { token: i1$1.ActivatedRoute }, { token: ValidationHandlerService }, { token: GesdemHandlerService }, { token: GesdemEventService }, { token: ApplicationInfoService }, { token: IamExpiredInterceptorService }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
12501
|
+
RecaptchaService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RecaptchaService, deps: [{ token: i1.HttpClient }, { token: SessionInfo }, { token: i1$1.ActivatedRoute }, { token: ValidationHandlerService }, { token: GesdemHandlerService }, { token: GesdemEventService }, { token: ApplicationInfoService }, { token: IamExpiredInterceptorService }, { token: CAPTCHA_URL_TOKEN }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
12494
12502
|
RecaptchaService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RecaptchaService, providedIn: 'root' });
|
|
12495
12503
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RecaptchaService, decorators: [{
|
|
12496
12504
|
type: Injectable,
|
|
12497
12505
|
args: [{
|
|
12498
12506
|
providedIn: 'root'
|
|
12499
12507
|
}]
|
|
12500
|
-
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: SessionInfo }, { type: i1$1.ActivatedRoute }, { type: ValidationHandlerService }, { type: GesdemHandlerService }, { type: GesdemEventService }, { type: ApplicationInfoService }, { type: IamExpiredInterceptorService }
|
|
12508
|
+
}], ctorParameters: function () { return [{ type: i1.HttpClient }, { type: SessionInfo }, { type: i1$1.ActivatedRoute }, { type: ValidationHandlerService }, { type: GesdemHandlerService }, { type: GesdemEventService }, { type: ApplicationInfoService }, { type: IamExpiredInterceptorService }, { type: undefined, decorators: [{
|
|
12509
|
+
type: Inject,
|
|
12510
|
+
args: [CAPTCHA_URL_TOKEN]
|
|
12511
|
+
}] }]; } });
|
|
12501
12512
|
|
|
12502
|
-
const RECAPTCHA_URL = 'https://www.recaptcha.net/recaptcha/api.js?onload=reCaptchaLoad&render=explicit';
|
|
12503
12513
|
const SCRIPT_ID = 'prestations-ng-captcha-script';
|
|
12504
12514
|
/**
|
|
12505
12515
|
* Integration with Google Recaptcha.
|
|
@@ -12509,7 +12519,8 @@ const SCRIPT_ID = 'prestations-ng-captcha-script';
|
|
|
12509
12519
|
*
|
|
12510
12520
|
*/
|
|
12511
12521
|
class GrecaptchaComponent {
|
|
12512
|
-
constructor() {
|
|
12522
|
+
constructor(recaptchaService) {
|
|
12523
|
+
this.recaptchaService = recaptchaService;
|
|
12513
12524
|
this.loaded = new EventEmitter();
|
|
12514
12525
|
this.scriptError = new EventEmitter();
|
|
12515
12526
|
this.tokenOnSuccess = new EventEmitter();
|
|
@@ -12536,6 +12547,7 @@ class GrecaptchaComponent {
|
|
|
12536
12547
|
}
|
|
12537
12548
|
const config = {
|
|
12538
12549
|
sitekey: this.siteKey,
|
|
12550
|
+
theme: 'light',
|
|
12539
12551
|
callback: (token) => this.tokenOnSuccess.emit(token),
|
|
12540
12552
|
'expired-callback': () => this.reset()
|
|
12541
12553
|
};
|
|
@@ -12545,7 +12557,7 @@ class GrecaptchaComponent {
|
|
|
12545
12557
|
appendScriptTag() {
|
|
12546
12558
|
const script = document.createElement('script');
|
|
12547
12559
|
script.id = SCRIPT_ID;
|
|
12548
|
-
script.src =
|
|
12560
|
+
script.src = this.recaptchaService.getCaptchaScriptUrl();
|
|
12549
12561
|
script.async = true;
|
|
12550
12562
|
script.defer = true;
|
|
12551
12563
|
script.onerror = () => this.scriptError.emit(true);
|
|
@@ -12582,12 +12594,12 @@ class GrecaptchaComponent {
|
|
|
12582
12594
|
}
|
|
12583
12595
|
}
|
|
12584
12596
|
}
|
|
12585
|
-
GrecaptchaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GrecaptchaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12597
|
+
GrecaptchaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GrecaptchaComponent, deps: [{ token: RecaptchaService }], target: i0.ɵɵFactoryTarget.Component });
|
|
12586
12598
|
GrecaptchaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: GrecaptchaComponent, selector: "app-grecaptcha", inputs: { siteKey: "siteKey" }, outputs: { loaded: "loaded", scriptError: "scriptError", tokenOnSuccess: "tokenOnSuccess", destroyed: "destroyed" }, viewQueries: [{ propertyName: "recaptchaContainer", first: true, predicate: ["recaptchaContainer"], descendants: true, static: true }, { propertyName: "recaptchaScriptContainer", first: true, predicate: ["recaptchaScriptContainer"], descendants: true, static: true }], ngImport: i0, template: "<div #recaptchaScriptContainer></div>\n<div #recaptchaContainer></div>\n" });
|
|
12587
12599
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GrecaptchaComponent, decorators: [{
|
|
12588
12600
|
type: Component,
|
|
12589
12601
|
args: [{ selector: 'app-grecaptcha', template: "<div #recaptchaScriptContainer></div>\n<div #recaptchaContainer></div>\n" }]
|
|
12590
|
-
}], propDecorators: { siteKey: [{
|
|
12602
|
+
}], ctorParameters: function () { return [{ type: RecaptchaService }]; }, propDecorators: { siteKey: [{
|
|
12591
12603
|
type: Input
|
|
12592
12604
|
}], loaded: [{
|
|
12593
12605
|
type: Output
|
|
@@ -12610,7 +12622,7 @@ class SdkRecaptchaComponent {
|
|
|
12610
12622
|
this.recaptchaService = recaptchaService;
|
|
12611
12623
|
this.cdr = cdr;
|
|
12612
12624
|
this.hasLoadingError = false;
|
|
12613
|
-
const url = new URL(
|
|
12625
|
+
const url = new URL(this.recaptchaService.getCaptchaScriptUrl());
|
|
12614
12626
|
this.recaptchaUrlForUserError = `${url.protocol}//${url.hostname}`;
|
|
12615
12627
|
}
|
|
12616
12628
|
ngOnInit() {
|
|
@@ -13982,6 +13994,8 @@ class SdkEpaymentComponent {
|
|
|
13982
13994
|
this.platformFailureMessageDicoKey = 'epayment-form.errors.default';
|
|
13983
13995
|
this.failureModalDisplayed = false;
|
|
13984
13996
|
this.redirectModalDisplayed = false;
|
|
13997
|
+
// Make it easier for testing purpose
|
|
13998
|
+
this.window = window;
|
|
13985
13999
|
this.failureMessageDicoKeyByCode = new Map([
|
|
13986
14000
|
['back', 'epayment-form.errors.back'],
|
|
13987
14001
|
['cancel', 'epayment-form.errors.cancel'],
|
|
@@ -14005,7 +14019,7 @@ class SdkEpaymentComponent {
|
|
|
14005
14019
|
// eslint-disable-next-line rxjs-angular/prefer-async-pipe
|
|
14006
14020
|
.subscribe(redirectUrl => {
|
|
14007
14021
|
this.redirectModalDisplayed = true;
|
|
14008
|
-
window.location.href = redirectUrl;
|
|
14022
|
+
this.window.location.href = redirectUrl;
|
|
14009
14023
|
});
|
|
14010
14024
|
}
|
|
14011
14025
|
handleFailure(failureCode) {
|
|
@@ -15262,5 +15276,5 @@ class DropdownMenuItem {
|
|
|
15262
15276
|
* Generated bundle index. Do not edit.
|
|
15263
15277
|
*/
|
|
15264
15278
|
|
|
15265
|
-
export { APP_INFO_API_URL, AbstractFoehnUploaderComponent, AbstractListDetailPageComponent, AbstractMenuPageComponent, AbstractPageComponent, AbstractPageFromMenuComponent, ActionStatut, Address, AddressTypeLight, ApplicationInfo, ApplicationInfoService, BAD_PARAMS_HELP_TEXT, BoDocumentError, BoDocumentsWithErrors, BoMultiUploadService, Breadcrumb, BreadcrumbEventService, BreadcrumbItem, CAPTCHA_ERROR_NAME, CURRENCY_REGEXP, Calendar, Canton, Captcha, ComponentError, Configuration, Country, CurrencyHelper, CurrentWeek, DECIMALS_SEPARATOR, DEFAULT_INTERNATIONAL_AND_NO_SWISS, DEFAULT_INTERNATIONAL_AND_NO_SWISS_MOBILE, DEFAULT_INTERNATIONAL_AND_NO_SWISS_PHONE, DEFAULT_INTERNATIONAL_HELP_TEXT, DEFAULT_PREFIX, DEFAULT_SWISS_HELP_TEXT, DEFAULT_SWISS_MOBILE_PHONE_HELP_TEXT, DEFAULT_SWISS_PHONE_HELP_TEXT, DICTIONARY_BASE_URL, DateHelper, DatePickerHelper, DatePickerNavigationHelper, DayMonth, DaySlots, DemandeExpirationService, DisplayCurrencyPipe, DisplayDatePipe, District, Document, DocumentError, DocumentReference, DocumentReferenceWithFile, DocumentsWithErrors, DropdownMenuGroup, DropdownMenuItem, EPaymentService, EtapeInfo, FORM_SUPPORT_CYBER_TITLE_FALLBACK, FocusedDay, FoehnAbbrComponent, FoehnAddressModule, FoehnAgendaComponent, FoehnAgendaModule, FoehnAgendaNavigationComponent, FoehnAgendaTimeslotPanelComponent, FoehnAutocompleteComponent, FoehnAutocompleteModule, FoehnBoMultiUploadComponent, FoehnBoMultiUploadModule, FoehnBooleanCheckboxComponent, FoehnBooleanModule, FoehnBooleanRadioComponent, FoehnBreadcrumbComponent, FoehnBreadcrumbModule, FoehnCheckableGroupComponent, FoehnCheckablesModule, FoehnCheckboxComponent, FoehnConfirmModalComponent, FoehnConfirmModalContent, FoehnConfirmModalModule, FoehnConfirmModalService, FoehnDateComponent, FoehnDatePickerButtonComponent, FoehnDatePickerButtonModule, FoehnDatePickerComponent, FoehnDatePickerModule, FoehnDateTimeComponent, FoehnDecisionElectroniqueComponent, FoehnDecisionElectroniqueModule, FoehnDisplayAddressComponent, FoehnDropdownMenuComponent, FoehnDropdownMenuModule, FoehnErrorPillComponent, FoehnFormComponent, FoehnFormModule, FoehnHeaderComponent, FoehnHeaderModule, FoehnHelpModalComponent, FoehnHelpModalModule, FoehnIconCalendarComponent, FoehnIconCheckComponent, FoehnIconCheckSquareOComponent, FoehnIconChevronDownComponent, FoehnIconChevronLeftComponent, FoehnIconChevronRightComponent, FoehnIconChevronUpComponent, FoehnIconClockComponent, FoehnIconCommentDotsComponent, FoehnIconEditComponent, FoehnIconExternalLinkAltComponent, FoehnIconFilePdfComponent, FoehnIconInfoCircleComponent, FoehnIconLockComponent, FoehnIconMapMarkerComponent, FoehnIconMinusCircleComponent, FoehnIconPencilComponent, FoehnIconPlusCircleComponent, FoehnIconPlusSquareComponent, FoehnIconSearchComponent, FoehnIconTimesComponent, FoehnIconTrashAltComponent, FoehnIconUnlockAltComponent, FoehnIconUserComponent, FoehnIconsModule, FoehnInputAddressComponent, FoehnInputComponent, FoehnInputEmailComponent, FoehnInputForeignLocalityComponent, FoehnInputForeignStreetComponent, FoehnInputHiddenComponent, FoehnInputModule, FoehnInputNav13Component, FoehnInputNav13Module, FoehnInputNumberComponent, FoehnInputPasswordComponent, FoehnInputPhoneComponent, FoehnInputPrefixedTextComponent, FoehnInputStringComponent, FoehnInputTextComponent, FoehnInputTextareaComponent, FoehnListComponent, FoehnListItem, FoehnListModule, FoehnListSummaryComponent, FoehnMenuItemComponent, FoehnMenuItemTransmitComponent, FoehnMenuPrestationModule, FoehnMiscModule, FoehnModalComponent, FoehnModalModule, FoehnMultiUploadComponent, FoehnMultiUploadModule, FoehnMultiselectAutocompleteComponent, FoehnMultiselectAutocompleteModule, FoehnNavigationComponent, FoehnNavigationModule, FoehnNavigationService, FoehnNotFoundModule, FoehnNotfoundComponent, FoehnPageComponent, FoehnPageCounterComponent, FoehnPageExpirationTimerComponent, FoehnPageModalComponent, FoehnPageModule, FoehnPageService, FoehnPictureUploadComponent, FoehnPictureUploadModule, FoehnRadioComponent, FoehnRecapSectionComponent, FoehnRecapSectionModule, FoehnRemainingAlertsSummaryComponent, FoehnRemainingAlertsSummaryModule, FoehnSelectComponent, FoehnSimpleNavigationComponent, FoehnSkipLinkComponent, FoehnStatusProgressBarComponent, FoehnStatusProgressBarModule, FoehnTableColumnConfiguration, FoehnTableComponent, FoehnTableModule, FoehnTablePageChangeEvent, FoehnTimeComponent, FoehnTransmitWaitingModalComponent, FoehnTransmitWaitingModalService, FoehnUploadProgressBarComponent, FoehnUploadProgressBarModule, FoehnUserConnectedAsComponent, FoehnUserConnectedAsModule, FoehnValidationAlertSummaryComponent, FoehnValidationAlertSummaryModule, FoehnValidationAlertsComponent, FoehnValidationAlertsModule, FooterLink, FormMetadata, FormPostResponse, FormSelectOption, FormatIdePipe, FormatterModule, GESDEM_MAX_DATA_LENGTH, GesdemActionRecoveryLoginComponent, GesdemActionRecoveryModule, GesdemActionRecoveryRegistrationComponent, GesdemConfirmationComponent, GesdemConfirmationModule, GesdemErrorComponent, GesdemErrorModule, GesdemEventService, GesdemHandlerService, GesdemStatutUtils, GrowlBrokerService, GrowlMessage, GrowlType, HTTP_LOADER_FILTERED_URL, I18nForm, IbanFormatterDirective, IdeFormatterDirective, Locality, MonthYear, MultiUploadService, Municipality, NDCFormatterDirective, NavigationDirection, NumberCurrencyFormatterDirective, ObjectHelper, PORTAIL_BASE_URL_INT, PageChangeEvent, PageUploadLimitService, PaginationWeek, PendingFiles, PendingUploadService, PipeModule, PlaceOfOrigin, Portail, PostalLocality, Preferences, PrestationsNgCoreModule, RECAPTCHA_API_URL, RecaptchaService, RedirectComponent, RegisterNgModelService, SESSION_INFO_API_URL, SWISS_ISO_ID, SdkDictionaryModule, SdkDictionaryPipe, SdkDictionaryService, SdkEpaymentComponent, SdkEpaymentModule, SdkRecaptchaComponent, SdkRecaptchaModule, SdkRedirectModule, SdkStatisticsService, SelectedSlot, ServiceLocator, Session, SessionInfo, SessionInfoData, SessionInfoWithApplicationService, Street, StreetNumber, THOUSANDS_SEPARATOR, TRANSMIT_WAITING_MODAL_DELAY_IN_MILLISECONDS, TableSort, UploadProgress, UploadProgressService, UploaderHelper, ValidationHandlerService, formatDecimalCurrency, formatNonDecimalCurrency, formatNumberAsGiven, gesdemLoaderGuard, getSafeReference, replaceAll };
|
|
15279
|
+
export { APP_INFO_API_URL, AbstractFoehnUploaderComponent, AbstractListDetailPageComponent, AbstractMenuPageComponent, AbstractPageComponent, AbstractPageFromMenuComponent, ActionStatut, Address, AddressTypeLight, ApplicationInfo, ApplicationInfoService, BAD_PARAMS_HELP_TEXT, BoDocumentError, BoDocumentsWithErrors, BoMultiUploadService, Breadcrumb, BreadcrumbEventService, BreadcrumbItem, CAPTCHA_ERROR_NAME, CAPTCHA_URL_TOKEN, CURRENCY_REGEXP, Calendar, Canton, Captcha, ComponentError, Configuration, Country, CurrencyHelper, CurrentWeek, DECIMALS_SEPARATOR, DEFAULT_INTERNATIONAL_AND_NO_SWISS, DEFAULT_INTERNATIONAL_AND_NO_SWISS_MOBILE, DEFAULT_INTERNATIONAL_AND_NO_SWISS_PHONE, DEFAULT_INTERNATIONAL_HELP_TEXT, DEFAULT_PREFIX, DEFAULT_SWISS_HELP_TEXT, DEFAULT_SWISS_MOBILE_PHONE_HELP_TEXT, DEFAULT_SWISS_PHONE_HELP_TEXT, DICTIONARY_BASE_URL, DateHelper, DatePickerHelper, DatePickerNavigationHelper, DayMonth, DaySlots, DemandeExpirationService, DisplayCurrencyPipe, DisplayDatePipe, District, Document, DocumentError, DocumentReference, DocumentReferenceWithFile, DocumentsWithErrors, DropdownMenuGroup, DropdownMenuItem, EPaymentService, EtapeInfo, FORM_SUPPORT_CYBER_TITLE_FALLBACK, FocusedDay, FoehnAbbrComponent, FoehnAddressModule, FoehnAgendaComponent, FoehnAgendaModule, FoehnAgendaNavigationComponent, FoehnAgendaTimeslotPanelComponent, FoehnAutocompleteComponent, FoehnAutocompleteModule, FoehnBoMultiUploadComponent, FoehnBoMultiUploadModule, FoehnBooleanCheckboxComponent, FoehnBooleanModule, FoehnBooleanRadioComponent, FoehnBreadcrumbComponent, FoehnBreadcrumbModule, FoehnCheckableGroupComponent, FoehnCheckablesModule, FoehnCheckboxComponent, FoehnConfirmModalComponent, FoehnConfirmModalContent, FoehnConfirmModalModule, FoehnConfirmModalService, FoehnDateComponent, FoehnDatePickerButtonComponent, FoehnDatePickerButtonModule, FoehnDatePickerComponent, FoehnDatePickerModule, FoehnDateTimeComponent, FoehnDecisionElectroniqueComponent, FoehnDecisionElectroniqueModule, FoehnDisplayAddressComponent, FoehnDropdownMenuComponent, FoehnDropdownMenuModule, FoehnErrorPillComponent, FoehnFormComponent, FoehnFormModule, FoehnHeaderComponent, FoehnHeaderModule, FoehnHelpModalComponent, FoehnHelpModalModule, FoehnIconCalendarComponent, FoehnIconCheckComponent, FoehnIconCheckSquareOComponent, FoehnIconChevronDownComponent, FoehnIconChevronLeftComponent, FoehnIconChevronRightComponent, FoehnIconChevronUpComponent, FoehnIconClockComponent, FoehnIconCommentDotsComponent, FoehnIconEditComponent, FoehnIconExternalLinkAltComponent, FoehnIconFilePdfComponent, FoehnIconInfoCircleComponent, FoehnIconLockComponent, FoehnIconMapMarkerComponent, FoehnIconMinusCircleComponent, FoehnIconPencilComponent, FoehnIconPlusCircleComponent, FoehnIconPlusSquareComponent, FoehnIconSearchComponent, FoehnIconTimesComponent, FoehnIconTrashAltComponent, FoehnIconUnlockAltComponent, FoehnIconUserComponent, FoehnIconsModule, FoehnInputAddressComponent, FoehnInputComponent, FoehnInputEmailComponent, FoehnInputForeignLocalityComponent, FoehnInputForeignStreetComponent, FoehnInputHiddenComponent, FoehnInputModule, FoehnInputNav13Component, FoehnInputNav13Module, FoehnInputNumberComponent, FoehnInputPasswordComponent, FoehnInputPhoneComponent, FoehnInputPrefixedTextComponent, FoehnInputStringComponent, FoehnInputTextComponent, FoehnInputTextareaComponent, FoehnListComponent, FoehnListItem, FoehnListModule, FoehnListSummaryComponent, FoehnMenuItemComponent, FoehnMenuItemTransmitComponent, FoehnMenuPrestationModule, FoehnMiscModule, FoehnModalComponent, FoehnModalModule, FoehnMultiUploadComponent, FoehnMultiUploadModule, FoehnMultiselectAutocompleteComponent, FoehnMultiselectAutocompleteModule, FoehnNavigationComponent, FoehnNavigationModule, FoehnNavigationService, FoehnNotFoundModule, FoehnNotfoundComponent, FoehnPageComponent, FoehnPageCounterComponent, FoehnPageExpirationTimerComponent, FoehnPageModalComponent, FoehnPageModule, FoehnPageService, FoehnPictureUploadComponent, FoehnPictureUploadModule, FoehnRadioComponent, FoehnRecapSectionComponent, FoehnRecapSectionModule, FoehnRemainingAlertsSummaryComponent, FoehnRemainingAlertsSummaryModule, FoehnSelectComponent, FoehnSimpleNavigationComponent, FoehnSkipLinkComponent, FoehnStatusProgressBarComponent, FoehnStatusProgressBarModule, FoehnTableColumnConfiguration, FoehnTableComponent, FoehnTableModule, FoehnTablePageChangeEvent, FoehnTimeComponent, FoehnTransmitWaitingModalComponent, FoehnTransmitWaitingModalService, FoehnUploadProgressBarComponent, FoehnUploadProgressBarModule, FoehnUserConnectedAsComponent, FoehnUserConnectedAsModule, FoehnValidationAlertSummaryComponent, FoehnValidationAlertSummaryModule, FoehnValidationAlertsComponent, FoehnValidationAlertsModule, FooterLink, FormMetadata, FormPostResponse, FormSelectOption, FormatIdePipe, FormatterModule, GESDEM_MAX_DATA_LENGTH, GesdemActionRecoveryLoginComponent, GesdemActionRecoveryModule, GesdemActionRecoveryRegistrationComponent, GesdemConfirmationComponent, GesdemConfirmationModule, GesdemErrorComponent, GesdemErrorModule, GesdemEventService, GesdemHandlerService, GesdemStatutUtils, GrowlBrokerService, GrowlMessage, GrowlType, HTTP_LOADER_FILTERED_URL, I18nForm, IbanFormatterDirective, IdeFormatterDirective, Locality, MonthYear, MultiUploadService, Municipality, NDCFormatterDirective, NavigationDirection, NumberCurrencyFormatterDirective, ObjectHelper, PORTAIL_BASE_URL_INT, PageChangeEvent, PageUploadLimitService, PaginationWeek, PendingFiles, PendingUploadService, PipeModule, PlaceOfOrigin, Portail, PostalLocality, Preferences, PrestationsNgCoreModule, RECAPTCHA_API_URL, RecaptchaService, RedirectComponent, RegisterNgModelService, SESSION_INFO_API_URL, SWISS_ISO_ID, SdkDictionaryModule, SdkDictionaryPipe, SdkDictionaryService, SdkEpaymentComponent, SdkEpaymentModule, SdkRecaptchaComponent, SdkRecaptchaModule, SdkRedirectModule, SdkStatisticsService, SelectedSlot, ServiceLocator, Session, SessionInfo, SessionInfoData, SessionInfoWithApplicationService, Street, StreetNumber, THOUSANDS_SEPARATOR, TRANSMIT_WAITING_MODAL_DELAY_IN_MILLISECONDS, TableSort, UploadProgress, UploadProgressService, UploaderHelper, ValidationHandlerService, formatDecimalCurrency, formatNonDecimalCurrency, formatNumberAsGiven, gesdemLoaderGuard, getSafeReference, replaceAll };
|
|
15266
15280
|
//# sourceMappingURL=dsivd-prestations-ng.mjs.map
|