@dsivd/prestations-ng 16.4.9-beta.1 → 16.4.9-beta.3
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 +7 -0
- package/dsivd-prestations-ng-v16.4.9-beta.3.tgz +0 -0
- package/esm2020/foehn-menu-prestation/foehn-menu-items/foehn-menu-item-transmit/foehn-menu-item-transmit.component.mjs +6 -3
- 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 +33 -14
- package/fesm2015/dsivd-prestations-ng.mjs.map +1 -1
- package/fesm2020/dsivd-prestations-ng.mjs +31 -14
- package/fesm2020/dsivd-prestations-ng.mjs.map +1 -1
- package/foehn-menu-prestation/foehn-menu-items/foehn-menu-item-transmit/foehn-menu-item-transmit.component.d.ts +2 -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';
|
|
@@ -12370,8 +12370,12 @@ const HTTP_LOADER_FILTERED_URL = [
|
|
|
12370
12370
|
|
|
12371
12371
|
const RECAPTCHA_API_URL = 'api/recaptcha';
|
|
12372
12372
|
const CAPTCHA_ERROR_NAME = 'recaptcha';
|
|
12373
|
+
const CAPTCHA_URL_TOKEN = new InjectionToken('captchaScriptUrl', {
|
|
12374
|
+
providedIn: 'root',
|
|
12375
|
+
factory: () => 'https://www.recaptcha.net/recaptcha/api.js?onload=reCaptchaLoad&render=explicit'
|
|
12376
|
+
});
|
|
12373
12377
|
class RecaptchaService {
|
|
12374
|
-
constructor(http, sessionInfo, route, validationHandlerService, gesdemService, gesdemEventService, applicationInfoService, iamExpiredInterceptorService) {
|
|
12378
|
+
constructor(http, sessionInfo, route, validationHandlerService, gesdemService, gesdemEventService, applicationInfoService, iamExpiredInterceptorService, captchaScriptUrl) {
|
|
12375
12379
|
this.http = http;
|
|
12376
12380
|
this.sessionInfo = sessionInfo;
|
|
12377
12381
|
this.route = route;
|
|
@@ -12380,6 +12384,7 @@ class RecaptchaService {
|
|
|
12380
12384
|
this.gesdemEventService = gesdemEventService;
|
|
12381
12385
|
this.applicationInfoService = applicationInfoService;
|
|
12382
12386
|
this.iamExpiredInterceptorService = iamExpiredInterceptorService;
|
|
12387
|
+
this.captchaScriptUrl = captchaScriptUrl;
|
|
12383
12388
|
this.errorsSubject = new BehaviorSubject([]);
|
|
12384
12389
|
this.errors = this.initErrorObservable(); // has to be first since it is used in initShouldDisplayObservable !
|
|
12385
12390
|
this.shouldDisplay = this.initShouldDisplayObservable();
|
|
@@ -12443,6 +12448,9 @@ class RecaptchaService {
|
|
|
12443
12448
|
getToken() {
|
|
12444
12449
|
return this.token;
|
|
12445
12450
|
}
|
|
12451
|
+
getCaptchaScriptUrl() {
|
|
12452
|
+
return this.captchaScriptUrl;
|
|
12453
|
+
}
|
|
12446
12454
|
initErrorObservable() {
|
|
12447
12455
|
const matchingGesdemErrors = merge(
|
|
12448
12456
|
// Ensures that there's an initial value
|
|
@@ -12527,16 +12535,20 @@ class RecaptchaService {
|
|
|
12527
12535
|
return captcha.publickey || null;
|
|
12528
12536
|
}
|
|
12529
12537
|
}
|
|
12530
|
-
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 });
|
|
12538
|
+
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 });
|
|
12531
12539
|
RecaptchaService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RecaptchaService, providedIn: 'root' });
|
|
12532
12540
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: RecaptchaService, decorators: [{
|
|
12533
12541
|
type: Injectable,
|
|
12534
12542
|
args: [{
|
|
12535
12543
|
providedIn: 'root'
|
|
12536
12544
|
}]
|
|
12537
|
-
}], ctorParameters: function () {
|
|
12545
|
+
}], ctorParameters: function () {
|
|
12546
|
+
return [{ type: i1.HttpClient }, { type: SessionInfo }, { type: i1$1.ActivatedRoute }, { type: ValidationHandlerService }, { type: GesdemHandlerService }, { type: GesdemEventService }, { type: ApplicationInfoService }, { type: IamExpiredInterceptorService }, { type: undefined, decorators: [{
|
|
12547
|
+
type: Inject,
|
|
12548
|
+
args: [CAPTCHA_URL_TOKEN]
|
|
12549
|
+
}] }];
|
|
12550
|
+
} });
|
|
12538
12551
|
|
|
12539
|
-
const RECAPTCHA_URL = 'https://www.recaptcha.net/recaptcha/api.js?onload=reCaptchaLoad&render=explicit';
|
|
12540
12552
|
const SCRIPT_ID = 'prestations-ng-captcha-script';
|
|
12541
12553
|
/**
|
|
12542
12554
|
* Integration with Google Recaptcha.
|
|
@@ -12546,7 +12558,8 @@ const SCRIPT_ID = 'prestations-ng-captcha-script';
|
|
|
12546
12558
|
*
|
|
12547
12559
|
*/
|
|
12548
12560
|
class GrecaptchaComponent {
|
|
12549
|
-
constructor() {
|
|
12561
|
+
constructor(recaptchaService) {
|
|
12562
|
+
this.recaptchaService = recaptchaService;
|
|
12550
12563
|
this.loaded = new EventEmitter();
|
|
12551
12564
|
this.scriptError = new EventEmitter();
|
|
12552
12565
|
this.tokenOnSuccess = new EventEmitter();
|
|
@@ -12573,6 +12586,7 @@ class GrecaptchaComponent {
|
|
|
12573
12586
|
}
|
|
12574
12587
|
const config = {
|
|
12575
12588
|
sitekey: this.siteKey,
|
|
12589
|
+
theme: 'light',
|
|
12576
12590
|
callback: (token) => this.tokenOnSuccess.emit(token),
|
|
12577
12591
|
'expired-callback': () => this.reset()
|
|
12578
12592
|
};
|
|
@@ -12582,7 +12596,7 @@ class GrecaptchaComponent {
|
|
|
12582
12596
|
appendScriptTag() {
|
|
12583
12597
|
const script = document.createElement('script');
|
|
12584
12598
|
script.id = SCRIPT_ID;
|
|
12585
|
-
script.src =
|
|
12599
|
+
script.src = this.recaptchaService.getCaptchaScriptUrl();
|
|
12586
12600
|
script.async = true;
|
|
12587
12601
|
script.defer = true;
|
|
12588
12602
|
script.onerror = () => this.scriptError.emit(true);
|
|
@@ -12619,12 +12633,12 @@ class GrecaptchaComponent {
|
|
|
12619
12633
|
}
|
|
12620
12634
|
}
|
|
12621
12635
|
}
|
|
12622
|
-
GrecaptchaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GrecaptchaComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
12636
|
+
GrecaptchaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GrecaptchaComponent, deps: [{ token: RecaptchaService }], target: i0.ɵɵFactoryTarget.Component });
|
|
12623
12637
|
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" });
|
|
12624
12638
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: GrecaptchaComponent, decorators: [{
|
|
12625
12639
|
type: Component,
|
|
12626
12640
|
args: [{ selector: 'app-grecaptcha', template: "<div #recaptchaScriptContainer></div>\n<div #recaptchaContainer></div>\n" }]
|
|
12627
|
-
}], propDecorators: { siteKey: [{
|
|
12641
|
+
}], ctorParameters: function () { return [{ type: RecaptchaService }]; }, propDecorators: { siteKey: [{
|
|
12628
12642
|
type: Input
|
|
12629
12643
|
}], loaded: [{
|
|
12630
12644
|
type: Output
|
|
@@ -12647,7 +12661,7 @@ class SdkRecaptchaComponent {
|
|
|
12647
12661
|
this.recaptchaService = recaptchaService;
|
|
12648
12662
|
this.cdr = cdr;
|
|
12649
12663
|
this.hasLoadingError = false;
|
|
12650
|
-
const url = new URL(
|
|
12664
|
+
const url = new URL(this.recaptchaService.getCaptchaScriptUrl());
|
|
12651
12665
|
this.recaptchaUrlForUserError = `${url.protocol}//${url.hostname}`;
|
|
12652
12666
|
}
|
|
12653
12667
|
ngOnInit() {
|
|
@@ -14021,6 +14035,8 @@ class SdkEpaymentComponent {
|
|
|
14021
14035
|
this.platformFailureMessageDicoKey = 'epayment-form.errors.default';
|
|
14022
14036
|
this.failureModalDisplayed = false;
|
|
14023
14037
|
this.redirectModalDisplayed = false;
|
|
14038
|
+
// Make it easier for testing purpose
|
|
14039
|
+
this.window = window;
|
|
14024
14040
|
this.failureMessageDicoKeyByCode = new Map([
|
|
14025
14041
|
['back', 'epayment-form.errors.back'],
|
|
14026
14042
|
['cancel', 'epayment-form.errors.cancel'],
|
|
@@ -14044,7 +14060,7 @@ class SdkEpaymentComponent {
|
|
|
14044
14060
|
// eslint-disable-next-line rxjs-angular/prefer-async-pipe
|
|
14045
14061
|
.subscribe(redirectUrl => {
|
|
14046
14062
|
this.redirectModalDisplayed = true;
|
|
14047
|
-
window.location.href = redirectUrl;
|
|
14063
|
+
this.window.location.href = redirectUrl;
|
|
14048
14064
|
});
|
|
14049
14065
|
}
|
|
14050
14066
|
handleFailure(failureCode) {
|
|
@@ -14663,11 +14679,12 @@ class FoehnMenuItemTransmitComponent {
|
|
|
14663
14679
|
this.remainingErrorsAlertBody = 'Certains champs obligatoires de votre demande n’ont pas été renseignés.' +
|
|
14664
14680
|
'<br/><br/' +
|
|
14665
14681
|
'>Merci de compléter la saisie dans les formulaires portant la mention ';
|
|
14682
|
+
this.remainingErrorNamesToIgnore = [];
|
|
14666
14683
|
this.clickedWithRemainingErrors = new EventEmitter();
|
|
14667
14684
|
this.showRemainingErrorsAlert = false;
|
|
14668
14685
|
}
|
|
14669
14686
|
transmit() {
|
|
14670
|
-
const remainingErrors = this.gesdemService.lastResponse.errors.length;
|
|
14687
|
+
const remainingErrors = this.gesdemService.lastResponse.errors.filter(e => !this.remainingErrorNamesToIgnore.includes(e.name)).length;
|
|
14671
14688
|
if (!!remainingErrors) {
|
|
14672
14689
|
this.showRemainingErrorsAlert = true;
|
|
14673
14690
|
}
|
|
@@ -14681,7 +14698,7 @@ class FoehnMenuItemTransmitComponent {
|
|
|
14681
14698
|
}
|
|
14682
14699
|
}
|
|
14683
14700
|
FoehnMenuItemTransmitComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FoehnMenuItemTransmitComponent, deps: [{ token: i1$1.Router }, { token: i1$1.ActivatedRoute }, { token: GesdemHandlerService }], target: i0.ɵɵFactoryTarget.Component });
|
|
14684
|
-
FoehnMenuItemTransmitComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FoehnMenuItemTransmitComponent, selector: "foehn-menu-item-transmit", inputs: { linkId: "linkId", rLink: "rLink", labelDicoKey: "labelDicoKey", dicoLabelPlaceHolders: "dicoLabelPlaceHolders", remainingErrorsAlertTitle: "remainingErrorsAlertTitle", remainingErrorsAlertBody: "remainingErrorsAlertBody" }, outputs: { clickedWithRemainingErrors: "clickedWithRemainingErrors" }, ngImport: i0, template: "<li\n class=\"d-flex flex-column flex-md-row justify-content-between border-bottom pb-3\"\n>\n <span class=\"align-self-baseline mt-2\">\n <a\n href=\"#\"\n (click)=\"$event.preventDefault(); transmit()\"\n [id]=\"linkId\"\n #transmitLink\n >\n {{ labelDicoKey | fromDictionary: dicoLabelPlaceHolders }}\n </a>\n <foehn-modal\n [(isModalVisible)]=\"showRemainingErrorsAlert\"\n [modalHeaderText]=\"remainingErrorsAlertTitle\"\n [modalTriggerHtmlElement]=\"transmitLink\"\n >\n <p>\n <span [innerHTML]=\"remainingErrorsAlertBody\"></span>\n <foehn-error-pill [errorPrefix]=\"''\"></foehn-error-pill>\n </p>\n </foehn-modal>\n </span>\n</li>\n", dependencies: [{ kind: "component", type: FoehnModalComponent, selector: "foehn-modal", inputs: ["id", "name", "modalSize", "modalBodyText", "modalHeaderText", "closeable", "modalTriggerHtmlElement", "isModalVisible"], outputs: ["isModalVisibleChange"] }, { kind: "component", type: FoehnErrorPillComponent, selector: "foehn-error-pill", inputs: ["errorPrefix", "incompleteIndicatorOnly"] }, { kind: "pipe", type: SdkDictionaryPipe, name: "fromDictionary" }] });
|
|
14701
|
+
FoehnMenuItemTransmitComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: FoehnMenuItemTransmitComponent, selector: "foehn-menu-item-transmit", inputs: { linkId: "linkId", rLink: "rLink", labelDicoKey: "labelDicoKey", dicoLabelPlaceHolders: "dicoLabelPlaceHolders", remainingErrorsAlertTitle: "remainingErrorsAlertTitle", remainingErrorsAlertBody: "remainingErrorsAlertBody", remainingErrorNamesToIgnore: "remainingErrorNamesToIgnore" }, outputs: { clickedWithRemainingErrors: "clickedWithRemainingErrors" }, ngImport: i0, template: "<li\n class=\"d-flex flex-column flex-md-row justify-content-between border-bottom pb-3\"\n>\n <span class=\"align-self-baseline mt-2\">\n <a\n href=\"#\"\n (click)=\"$event.preventDefault(); transmit()\"\n [id]=\"linkId\"\n #transmitLink\n >\n {{ labelDicoKey | fromDictionary: dicoLabelPlaceHolders }}\n </a>\n <foehn-modal\n [(isModalVisible)]=\"showRemainingErrorsAlert\"\n [modalHeaderText]=\"remainingErrorsAlertTitle\"\n [modalTriggerHtmlElement]=\"transmitLink\"\n >\n <p>\n <span [innerHTML]=\"remainingErrorsAlertBody\"></span>\n <foehn-error-pill [errorPrefix]=\"''\"></foehn-error-pill>\n </p>\n </foehn-modal>\n </span>\n</li>\n", dependencies: [{ kind: "component", type: FoehnModalComponent, selector: "foehn-modal", inputs: ["id", "name", "modalSize", "modalBodyText", "modalHeaderText", "closeable", "modalTriggerHtmlElement", "isModalVisible"], outputs: ["isModalVisibleChange"] }, { kind: "component", type: FoehnErrorPillComponent, selector: "foehn-error-pill", inputs: ["errorPrefix", "incompleteIndicatorOnly"] }, { kind: "pipe", type: SdkDictionaryPipe, name: "fromDictionary" }] });
|
|
14685
14702
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: FoehnMenuItemTransmitComponent, decorators: [{
|
|
14686
14703
|
type: Component,
|
|
14687
14704
|
args: [{ selector: 'foehn-menu-item-transmit', template: "<li\n class=\"d-flex flex-column flex-md-row justify-content-between border-bottom pb-3\"\n>\n <span class=\"align-self-baseline mt-2\">\n <a\n href=\"#\"\n (click)=\"$event.preventDefault(); transmit()\"\n [id]=\"linkId\"\n #transmitLink\n >\n {{ labelDicoKey | fromDictionary: dicoLabelPlaceHolders }}\n </a>\n <foehn-modal\n [(isModalVisible)]=\"showRemainingErrorsAlert\"\n [modalHeaderText]=\"remainingErrorsAlertTitle\"\n [modalTriggerHtmlElement]=\"transmitLink\"\n >\n <p>\n <span [innerHTML]=\"remainingErrorsAlertBody\"></span>\n <foehn-error-pill [errorPrefix]=\"''\"></foehn-error-pill>\n </p>\n </foehn-modal>\n </span>\n</li>\n" }]
|
|
@@ -14697,6 +14714,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
|
|
|
14697
14714
|
type: Input
|
|
14698
14715
|
}], remainingErrorsAlertBody: [{
|
|
14699
14716
|
type: Input
|
|
14717
|
+
}], remainingErrorNamesToIgnore: [{
|
|
14718
|
+
type: Input
|
|
14700
14719
|
}], clickedWithRemainingErrors: [{
|
|
14701
14720
|
type: Output
|
|
14702
14721
|
}] } });
|
|
@@ -15302,5 +15321,5 @@ class DropdownMenuItem {
|
|
|
15302
15321
|
* Generated bundle index. Do not edit.
|
|
15303
15322
|
*/
|
|
15304
15323
|
|
|
15305
|
-
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 };
|
|
15324
|
+
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 };
|
|
15306
15325
|
//# sourceMappingURL=dsivd-prestations-ng.mjs.map
|