@dsivd/prestations-ng 14.5.13 → 14.5.14-beta1
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 +10 -0
- package/bundles/dsivd-prestations-ng.umd.js +198 -0
- package/bundles/dsivd-prestations-ng.umd.js.map +1 -1
- package/dsivd-prestations-ng-v14.5.14-beta1.tgz +0 -0
- package/esm2015/foehn-table/foehn-table-column-configuration.js +3 -0
- package/esm2015/foehn-table/foehn-table-page-change-event.js +3 -0
- package/esm2015/foehn-table/foehn-table.component.js +148 -0
- package/esm2015/foehn-table/foehn-table.module.js +34 -0
- package/esm2015/foehn-table/tableSort.js +3 -0
- package/esm2015/index.js +7 -1
- package/fesm2015/dsivd-prestations-ng.js +176 -1
- package/fesm2015/dsivd-prestations-ng.js.map +1 -1
- package/foehn-table/foehn-table-column-configuration.d.ts +8 -0
- package/foehn-table/foehn-table-page-change-event.d.ts +5 -0
- package/foehn-table/foehn-table.component.d.ts +33 -0
- package/foehn-table/foehn-table.module.d.ts +11 -0
- package/foehn-table/tableSort.d.ts +4 -0
- package/index.d.ts +5 -0
- package/package.json +1 -1
- package/dsivd-prestations-ng-v14.5.13.tgz +0 -0
|
@@ -8597,6 +8597,181 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
|
|
|
8597
8597
|
class PageChangeEvent {
|
|
8598
8598
|
}
|
|
8599
8599
|
|
|
8600
|
+
const hasInputChanged = (change) => !(!change ||
|
|
8601
|
+
!change.currentValue ||
|
|
8602
|
+
change.previousValue === change.currentValue);
|
|
8603
|
+
class FoehnTableComponent {
|
|
8604
|
+
constructor() {
|
|
8605
|
+
this.itemsPerPage = 10;
|
|
8606
|
+
this.id = 'foehn-table';
|
|
8607
|
+
this.previousLabel = 'Précédent';
|
|
8608
|
+
this.nextLabel = 'Suivant';
|
|
8609
|
+
this.pageChange = new EventEmitter();
|
|
8610
|
+
this.sortChange = new EventEmitter();
|
|
8611
|
+
this.currentPage = 1;
|
|
8612
|
+
this.filteredList = [];
|
|
8613
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
8614
|
+
this.trackByFn = (index, item) => index;
|
|
8615
|
+
}
|
|
8616
|
+
set list(list) {
|
|
8617
|
+
this._list = list;
|
|
8618
|
+
}
|
|
8619
|
+
ngOnChanges(changes) {
|
|
8620
|
+
const itemsPerPageChange = changes.itemsPerPage;
|
|
8621
|
+
const listChange = changes.list;
|
|
8622
|
+
const fixedPageCountChange = changes.fixedPageCount;
|
|
8623
|
+
if (!hasInputChanged(itemsPerPageChange) &&
|
|
8624
|
+
!hasInputChanged(listChange) &&
|
|
8625
|
+
!hasInputChanged(fixedPageCountChange)) {
|
|
8626
|
+
return;
|
|
8627
|
+
}
|
|
8628
|
+
this.buildFilteredList();
|
|
8629
|
+
}
|
|
8630
|
+
previousPage() {
|
|
8631
|
+
this.currentPage = this.currentPage - 1;
|
|
8632
|
+
this.buildFilteredList();
|
|
8633
|
+
this.pageChange.next({
|
|
8634
|
+
previousPage: this.currentPage + 1,
|
|
8635
|
+
currentPage: this.currentPage,
|
|
8636
|
+
pageCount: this.pagesCount()
|
|
8637
|
+
});
|
|
8638
|
+
}
|
|
8639
|
+
hasPreviousPage() {
|
|
8640
|
+
return this.currentPage > 1;
|
|
8641
|
+
}
|
|
8642
|
+
nextPage() {
|
|
8643
|
+
this.currentPage = this.currentPage + 1;
|
|
8644
|
+
this.buildFilteredList();
|
|
8645
|
+
this.pageChange.next({
|
|
8646
|
+
previousPage: this.currentPage - 1,
|
|
8647
|
+
currentPage: this.currentPage,
|
|
8648
|
+
pageCount: this.pagesCount()
|
|
8649
|
+
});
|
|
8650
|
+
}
|
|
8651
|
+
hasNextPage() {
|
|
8652
|
+
return this.currentPage < this.pagesCount();
|
|
8653
|
+
}
|
|
8654
|
+
showPage(page, emitPageChangeEvent = false) {
|
|
8655
|
+
if (this.currentPage === page) {
|
|
8656
|
+
return;
|
|
8657
|
+
}
|
|
8658
|
+
const previousPage = this.currentPage;
|
|
8659
|
+
this.currentPage = page;
|
|
8660
|
+
this.buildFilteredList();
|
|
8661
|
+
if (emitPageChangeEvent) {
|
|
8662
|
+
this.pageChange.next({
|
|
8663
|
+
previousPage,
|
|
8664
|
+
currentPage: this.currentPage,
|
|
8665
|
+
pageCount: this.pagesCount()
|
|
8666
|
+
});
|
|
8667
|
+
}
|
|
8668
|
+
}
|
|
8669
|
+
pagesCount() {
|
|
8670
|
+
if (!!this.fixedPageCount) {
|
|
8671
|
+
return this.fixedPageCount;
|
|
8672
|
+
}
|
|
8673
|
+
return this._list
|
|
8674
|
+
? Math.ceil(this._list.length / this.itemsPerPage)
|
|
8675
|
+
: 0;
|
|
8676
|
+
}
|
|
8677
|
+
triggerSort(sortAttribute) {
|
|
8678
|
+
let sortDirection = 'DESC';
|
|
8679
|
+
if (this.sort.sortAttribute === sortAttribute) {
|
|
8680
|
+
sortDirection = this.sort.sortDirection === 'DESC' ? 'ASC' : 'DESC';
|
|
8681
|
+
}
|
|
8682
|
+
this.sortChange.next({
|
|
8683
|
+
sortDirection,
|
|
8684
|
+
sortAttribute
|
|
8685
|
+
});
|
|
8686
|
+
}
|
|
8687
|
+
buildFilteredList() {
|
|
8688
|
+
if (!!this.fixedPageCount) {
|
|
8689
|
+
this.filteredList = this._list;
|
|
8690
|
+
return;
|
|
8691
|
+
}
|
|
8692
|
+
const currentPageExists = (this.currentPage - 1) * this.itemsPerPage <= this._list.length;
|
|
8693
|
+
if (!currentPageExists) {
|
|
8694
|
+
this.currentPage = 1;
|
|
8695
|
+
}
|
|
8696
|
+
const start = (this.currentPage - 1) * this.itemsPerPage;
|
|
8697
|
+
this.filteredList = this._list
|
|
8698
|
+
? this._list.slice(start, start + this.itemsPerPage)
|
|
8699
|
+
: [];
|
|
8700
|
+
}
|
|
8701
|
+
}
|
|
8702
|
+
FoehnTableComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: FoehnTableComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
8703
|
+
FoehnTableComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.4", type: FoehnTableComponent, selector: "foehn-table", inputs: { itemsPerPage: "itemsPerPage", id: "id", previousLabel: "previousLabel", nextLabel: "nextLabel", totalElements: "totalElements", fixedPageCount: "fixedPageCount", columnsConfiguration: "columnsConfiguration", sort: "sort", trackByFn: "trackByFn", list: "list" }, outputs: { pageChange: "pageChange", sortChange: "sortChange" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"row\" [id]=\"id\">\n <div class=\"col-12\">\n <h2 *ngIf=\"!!totalElements && totalElements === 1\">\n {{ 'list.search-criteria.totalElements.1' | fromDictionary }}\n </h2>\n <h2 *ngIf=\"!!totalElements && totalElements !== 1\">\n {{\n 'list.search-criteria.totalElements'\n | fromDictionary: { total: totalElements.toString() }\n }}\n </h2>\n </div>\n\n <div class=\"col-12 table-responsive\">\n <table class=\"table table-hover\">\n <thead class=\"vd-bg-pattern-bars-gray\">\n <tr>\n <th\n scope=\"col\"\n *ngFor=\"let col of columnsConfiguration\"\n [id]=\"col.id\"\n >\n <ng-container *ngIf=\"!col.sortAttribute\">\n <span\n [innerHTML]=\"\n col.columnLabelKey | fromDictionary\n \"\n ></span>\n </ng-container>\n\n <ng-container *ngIf=\"!!col.sortAttribute\">\n <a\n href=\"#\"\n class=\"vd-text-thin\"\n (click)=\"\n $event.preventDefault();\n triggerSort(col.sortAttribute)\n \"\n [title]=\"\n 'Trier par ' +\n (col.columnLabelKey | fromDictionary)\n \"\n >\n <span\n [innerHTML]=\"\n col.columnLabelKey | fromDictionary\n \"\n ></span>\n <ng-container\n *ngIf=\"\n sort.sortAttribute === col.sortAttribute\n \"\n >\n <span\n class=\"ml-3\"\n *ngIf=\"sort.sortDirection === 'ASC'\"\n >\n <foehn-icon-chevron-up></foehn-icon-chevron-up>\n </span>\n <span\n class=\"ml-3\"\n *ngIf=\"sort.sortDirection === 'DESC'\"\n >\n <foehn-icon-chevron-down></foehn-icon-chevron-down>\n </span>\n </ng-container>\n </a>\n </ng-container>\n </th>\n </tr>\n </thead>\n <tbody>\n <tr\n *ngFor=\"\n let item of filteredList;\n let index = index;\n trackBy: trackByFn\n \"\n >\n <td\n *ngFor=\"let col of columnsConfiguration\"\n [id]=\"col.id + '-' + index\"\n >\n <ng-container *ngIf=\"!!col.isImportant\">\n <span\n *ngIf=\"col.isImportant(item)\"\n class=\"cell-vertical-align-middle\"\n >\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n width=\"30\"\n height=\"30\"\n style=\"color: var(--red)\"\n fill=\"currentColor\"\n class=\"bi bi-exclamation\"\n viewBox=\"0 0 16 16\"\n >\n <path\n d=\"M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.553.553 0 0 1-1.1 0L7.1 4.995z\"\n />\n </svg>\n </span>\n </ng-container>\n\n <ng-container *ngIf=\"!col.routerLinkGetter\">\n <span\n [innerHTML]=\"col.valueGetter(item)\"\n class=\"cell-vertical-align-middle\"\n ></span>\n </ng-container>\n\n <ng-container *ngIf=\"!!col.routerLinkGetter\">\n <a\n [routerLink]=\"col.routerLinkGetter(item)\"\n queryParamsHandling=\"merge\"\n class=\"cell-vertical-align-middle\"\n >\n <span\n [innerHTML]=\"col.valueGetter(item)\"\n ></span>\n </a>\n </ng-container>\n </td>\n </tr>\n <tr *ngIf=\"!filteredList.length\">\n <td [colSpan]=\"columnsConfiguration.length\">\n <div class=\"w-100 text-center\">Aucun r\u00E9sultat</div>\n </td>\n </tr>\n </tbody>\n </table>\n\n <div class=\"row d-flex justify-content-between p-1\">\n <div class=\"col-lg-3 col-md-3 col-sm-6 col-xs-6\">\n <nav\n class=\"vd-pagination\"\n aria-label=\"Pagination\"\n *ngIf=\"hasPreviousPage()\"\n >\n <ul class=\"vd-pagination__list\">\n <li\n class=\"vd-pagination__item vd-pagination__item--previous\"\n >\n <button\n class=\"btn-link vd-pagination__link btn-no-extra vd-pagination__link-reset\"\n (click)=\"previousPage()\"\n >\n <span class=\"vd-pagination__title\">\n <foehn-icon-chevron-left></foehn-icon-chevron-left>\n {{ previousLabel }}\n </span>\n <span class=\"sr-only\">:</span>\n <span class=\"vd-pagination__label\">\n {{ currentPage - 1 }} sur {{ pagesCount() }}\n </span>\n </button>\n </li>\n </ul>\n </nav>\n </div>\n\n <div class=\"col-lg-3 col-md-3 col-sm-6 col-xs-6\">\n <nav\n class=\"vd-pagination\"\n aria-label=\"Pagination\"\n *ngIf=\"hasNextPage()\"\n >\n <ul class=\"vd-pagination__list\">\n <li\n class=\"vd-pagination__item vd-pagination__item--next\"\n >\n <button\n class=\"btn-link vd-pagination__link btn-no-extra vd-pagination__link-reset\"\n (click)=\"nextPage()\"\n >\n <span class=\"vd-pagination__title\">\n {{ nextLabel }}\n <foehn-icon-chevron-right></foehn-icon-chevron-right>\n </span>\n <span class=\"sr-only\">:</span>\n <span class=\"vd-pagination__label\">\n {{ currentPage + 1 }} sur {{ pagesCount() }}\n </span>\n </button>\n </li>\n </ul>\n </nav>\n </div>\n </div>\n </div>\n</div>\n", styles: [".btn-no-extra{padding:0;border:none;font-weight:400;-webkit-text-decoration-line:none;text-decoration-line:none}.vd-pagination__link-reset{background:none;border:none;font-weight:inherit;-webkit-text-decoration-line:none;text-decoration-line:none;text-align:inherit;cursor:pointer}.vd-pagination__link-reset:focus{background-color:#ffbf47}.cell-vertical-align-middle{vertical-align:middle}\n"], components: [{ type: FoehnIconChevronUpComponent, selector: "foehn-icon-chevron-up" }, { type: FoehnIconChevronDownComponent, selector: "foehn-icon-chevron-down" }, { type: FoehnIconChevronLeftComponent, selector: "foehn-icon-chevron-left" }, { type: FoehnIconChevronRightComponent, selector: "foehn-icon-chevron-right" }], directives: [{ type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i1$1.RouterLinkWithHref, selector: "a[routerLink],area[routerLink]", inputs: ["routerLink", "target", "queryParams", "fragment", "queryParamsHandling", "preserveFragment", "skipLocationChange", "replaceUrl", "state", "relativeTo"] }], pipes: { "fromDictionary": SdkDictionaryPipe } });
|
|
8704
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: FoehnTableComponent, decorators: [{
|
|
8705
|
+
type: Component,
|
|
8706
|
+
args: [{
|
|
8707
|
+
selector: 'foehn-table',
|
|
8708
|
+
templateUrl: './foehn-table.component.html',
|
|
8709
|
+
styleUrls: ['./foehn-table.component.css']
|
|
8710
|
+
}]
|
|
8711
|
+
}], propDecorators: { itemsPerPage: [{
|
|
8712
|
+
type: Input
|
|
8713
|
+
}], id: [{
|
|
8714
|
+
type: Input
|
|
8715
|
+
}], previousLabel: [{
|
|
8716
|
+
type: Input
|
|
8717
|
+
}], nextLabel: [{
|
|
8718
|
+
type: Input
|
|
8719
|
+
}], totalElements: [{
|
|
8720
|
+
type: Input
|
|
8721
|
+
}], fixedPageCount: [{
|
|
8722
|
+
type: Input
|
|
8723
|
+
}], columnsConfiguration: [{
|
|
8724
|
+
type: Input
|
|
8725
|
+
}], pageChange: [{
|
|
8726
|
+
type: Output
|
|
8727
|
+
}], sort: [{
|
|
8728
|
+
type: Input
|
|
8729
|
+
}], sortChange: [{
|
|
8730
|
+
type: Output
|
|
8731
|
+
}],
|
|
8732
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
8733
|
+
trackByFn: [{
|
|
8734
|
+
type: Input
|
|
8735
|
+
}], list: [{
|
|
8736
|
+
type: Input
|
|
8737
|
+
}] } });
|
|
8738
|
+
|
|
8739
|
+
class FoehnTableModule {
|
|
8740
|
+
}
|
|
8741
|
+
FoehnTableModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: FoehnTableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
8742
|
+
FoehnTableModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: FoehnTableModule, declarations: [FoehnTableComponent], imports: [CommonModule,
|
|
8743
|
+
FoehnIconsModule,
|
|
8744
|
+
SdkDictionaryModule,
|
|
8745
|
+
RouterModule], exports: [FoehnTableComponent] });
|
|
8746
|
+
FoehnTableModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: FoehnTableModule, imports: [[
|
|
8747
|
+
CommonModule,
|
|
8748
|
+
FoehnIconsModule,
|
|
8749
|
+
SdkDictionaryModule,
|
|
8750
|
+
RouterModule
|
|
8751
|
+
]] });
|
|
8752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImport: i0, type: FoehnTableModule, decorators: [{
|
|
8753
|
+
type: NgModule,
|
|
8754
|
+
args: [{
|
|
8755
|
+
imports: [
|
|
8756
|
+
CommonModule,
|
|
8757
|
+
FoehnIconsModule,
|
|
8758
|
+
SdkDictionaryModule,
|
|
8759
|
+
RouterModule
|
|
8760
|
+
],
|
|
8761
|
+
declarations: [FoehnTableComponent],
|
|
8762
|
+
exports: [FoehnTableComponent]
|
|
8763
|
+
}]
|
|
8764
|
+
}] });
|
|
8765
|
+
|
|
8766
|
+
class FoehnTableColumnConfiguration {
|
|
8767
|
+
}
|
|
8768
|
+
|
|
8769
|
+
class FoehnTablePageChangeEvent {
|
|
8770
|
+
}
|
|
8771
|
+
|
|
8772
|
+
class TableSort {
|
|
8773
|
+
}
|
|
8774
|
+
|
|
8600
8775
|
class RedirectComponent {
|
|
8601
8776
|
constructor(iamInterceptor) {
|
|
8602
8777
|
this.iamInterceptor = iamInterceptor;
|
|
@@ -11614,5 +11789,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.4", ngImpor
|
|
|
11614
11789
|
* Generated bundle index. Do not edit.
|
|
11615
11790
|
*/
|
|
11616
11791
|
|
|
11617
|
-
export { APP_INFO_API_URL, AbstractFoehnUploaderComponent, AbstractListDetailPageComponent, AbstractMenuPageComponent, AbstractPageComponent, AbstractPageFromMenuComponent, ActionStatut, Address, ApplicationInfo, ApplicationInfoService, BAD_PARAMS_HELP_TEXT, BackendResponse, BoDocumentError, BoDocumentsWithErrors, BoMultiUploadService, Breadcrumb, BreadcrumbEventService, BreadcrumbItem, CAPTCHA_ERROR_NAME, CURRENCY_REGEXP, Captcha, ComponentError, Configuration, Country, CurrencyHelper, DECIMALS_SEPARATOR, DEFAULT_INTERNATIONAL_AND_NO_SWISS, DEFAULT_INTERNATIONAL_AND_NO_SWISS_MOBILE, DEFAULT_INTERNATIONAL_AND_NO_SWISS_PHONE, DEFAULT_INTERNATIONAL_HELP_TEXT, DEFAULT_SWISS_HELP_TEXT, DEFAULT_SWISS_MOBILE_PHONE_HELP_TEXT, DEFAULT_SWISS_PHONE_HELP_TEXT, DICTIONARY_BASE_URL, DateHelper, DatePickerHelper, DatePickerNavigationHelper, DayMonth, DisplayCurrencyPipe, DisplayDatePipe, DisplayLoginMessagesData, Document, DocumentError, DocumentReference, DocumentReferenceWithFile, DocumentsWithErrors, EPaymentService, EtapeInfo, FORM_SUPPORT_CYBER_TITLE_FALLBACK, FocusedDay, FoehnAbbrComponent, FoehnAddressModule, FoehnAutocompleteComponent, FoehnAutocompleteModule, FoehnBoMultiUploadComponent, FoehnBoMultiUploadModule, FoehnBooleanCheckboxComponent, FoehnBooleanModule, FoehnBooleanRadioComponent, FoehnBreadcrumbComponent, FoehnBreadcrumbModule, FoehnCheckableGroupComponent, FoehnCheckablesModule, FoehnCheckboxComponent, FoehnConfirmModalComponent, FoehnConfirmModalContent, FoehnConfirmModalModule, FoehnConfirmModalService, FoehnDateComponent, FoehnDatePickerButtonComponent, FoehnDatePickerButtonModule, FoehnDatePickerComponent, FoehnDatePickerModule, FoehnDecisionElectroniqueComponent, FoehnDecisionElectroniqueModule, FoehnDisplayAddressComponent, FoehnErrorPillComponent, FoehnFormComponent, FoehnFormModule, FoehnHeaderComponent, FoehnHeaderModule, FoehnHelpModalComponent, FoehnHelpModalModule, FoehnIconCalendarComponent, FoehnIconCheckComponent, FoehnIconCheckSquareOComponent, FoehnIconChevronDownComponent, FoehnIconChevronLeftComponent, FoehnIconChevronRightComponent, FoehnIconChevronUpComponent, FoehnIconClockComponent, FoehnIconCommentDotsComponent, FoehnIconEditComponent, FoehnIconExternalLinkAltComponent, FoehnIconFilePdfComponent, FoehnIconInfoCircleComponent, FoehnIconLockComponent, FoehnIconMapMarkerComponent, FoehnIconMinusCircleComponent, FoehnIconPlusCircleComponent, FoehnIconPlusSquareComponent, FoehnIconSearchComponent, FoehnIconTimesComponent, FoehnIconTrashAltComponent, FoehnIconUnlockAltComponent, FoehnIconsModule, FoehnInputAddressComponent, FoehnInputComponent, FoehnInputEmailComponent, FoehnInputForeignLocalityComponent, FoehnInputForeignStreetComponent, FoehnInputHiddenComponent, FoehnInputModule, FoehnInputNav13Component, FoehnInputNav13Module, FoehnInputNumberComponent, FoehnInputPasswordComponent, FoehnInputPhoneComponent, FoehnInputStringComponent, FoehnInputTextComponent, FoehnInputTextareaComponent, FoehnListComponent, FoehnListItem, FoehnListModule, FoehnListSummaryComponent, FoehnMenuItemComponent, FoehnMenuItemTransmitComponent, FoehnMenuPrestationModule, FoehnMiscModule, FoehnModalComponent, FoehnModalModule, FoehnMultiUploadComponent, FoehnMultiUploadModule, FoehnNavigationComponent, FoehnNavigationModule, FoehnNavigationService, FoehnNotFoundModule, FoehnNotfoundComponent, FoehnPageComponent, FoehnPageCounterComponent, FoehnPageModalComponent, FoehnPageModule, FoehnPageService, FoehnPictureUploadComponent, FoehnPictureUploadModule, FoehnRadioComponent, FoehnRecapSectionComponent, FoehnRecapSectionModule, FoehnRemainingAlertsSummaryComponent, FoehnRemainingAlertsSummaryModule, FoehnSelectComponent, FoehnSkipLinkComponent, FoehnTimeComponent, FoehnUserConnectedAsComponent, FoehnUserConnectedAsModule, FoehnValidationAlertSummaryComponent, FoehnValidationAlertSummaryModule, FoehnValidationAlertsComponent, FoehnValidationAlertsModule, FooterLink, FormSelectOption, FormatIdePipe, FormatterModule, GESDEM_MAX_DATA_LENGTH, GesdemActionRecoveryLoginComponent, GesdemActionRecoveryModule, GesdemActionRecoveryRegistrationComponent, GesdemConfirmationComponent, GesdemConfirmationModule, GesdemErrorComponent, GesdemErrorModule, GesdemEventService, GesdemHandlerService, GesdemLoaderGuard, GesdemMeta, GesdemStatutUtils, GrowlBrokerService, GrowlMessage, GrowlType, I18nForm, IbanFormatterDirective, IdeFormatterDirective, Locality, MonthYear, MultiUploadService, NDCFormatterDirective, NavigationDirection, NumberCurrencyFormatterDirective, ObjectHelper, PORTAIL_BASE_URL_INT, PageChangeEvent, PendingFiles, PendingUploadService, PipeModule, Portail, Preferences, PrestationsNgCoreModule, RECAPTCHA_API_URL, RecaptchaService, RedirectComponent, SESSION_INFO_API_URL, SWISS_ISO_ID, SdkDictionaryModule, SdkDictionaryPipe, SdkDictionaryService, SdkEpaymentComponent, SdkEpaymentModule, SdkRecaptchaComponent, SdkRecaptchaModule, SdkRedirectModule, ServiceLocator, SessionInfo, SessionInfoData, SessionInfoWithApplicationService, Street, StreetNumber, THOUSANDS_SEPARATOR, UploaderHelper, ValidationHandlerService };
|
|
11792
|
+
export { APP_INFO_API_URL, AbstractFoehnUploaderComponent, AbstractListDetailPageComponent, AbstractMenuPageComponent, AbstractPageComponent, AbstractPageFromMenuComponent, ActionStatut, Address, ApplicationInfo, ApplicationInfoService, BAD_PARAMS_HELP_TEXT, BackendResponse, BoDocumentError, BoDocumentsWithErrors, BoMultiUploadService, Breadcrumb, BreadcrumbEventService, BreadcrumbItem, CAPTCHA_ERROR_NAME, CURRENCY_REGEXP, Captcha, ComponentError, Configuration, Country, CurrencyHelper, DECIMALS_SEPARATOR, DEFAULT_INTERNATIONAL_AND_NO_SWISS, DEFAULT_INTERNATIONAL_AND_NO_SWISS_MOBILE, DEFAULT_INTERNATIONAL_AND_NO_SWISS_PHONE, DEFAULT_INTERNATIONAL_HELP_TEXT, DEFAULT_SWISS_HELP_TEXT, DEFAULT_SWISS_MOBILE_PHONE_HELP_TEXT, DEFAULT_SWISS_PHONE_HELP_TEXT, DICTIONARY_BASE_URL, DateHelper, DatePickerHelper, DatePickerNavigationHelper, DayMonth, DisplayCurrencyPipe, DisplayDatePipe, DisplayLoginMessagesData, Document, DocumentError, DocumentReference, DocumentReferenceWithFile, DocumentsWithErrors, EPaymentService, EtapeInfo, FORM_SUPPORT_CYBER_TITLE_FALLBACK, FocusedDay, FoehnAbbrComponent, FoehnAddressModule, FoehnAutocompleteComponent, FoehnAutocompleteModule, FoehnBoMultiUploadComponent, FoehnBoMultiUploadModule, FoehnBooleanCheckboxComponent, FoehnBooleanModule, FoehnBooleanRadioComponent, FoehnBreadcrumbComponent, FoehnBreadcrumbModule, FoehnCheckableGroupComponent, FoehnCheckablesModule, FoehnCheckboxComponent, FoehnConfirmModalComponent, FoehnConfirmModalContent, FoehnConfirmModalModule, FoehnConfirmModalService, FoehnDateComponent, FoehnDatePickerButtonComponent, FoehnDatePickerButtonModule, FoehnDatePickerComponent, FoehnDatePickerModule, FoehnDecisionElectroniqueComponent, FoehnDecisionElectroniqueModule, FoehnDisplayAddressComponent, FoehnErrorPillComponent, FoehnFormComponent, FoehnFormModule, FoehnHeaderComponent, FoehnHeaderModule, FoehnHelpModalComponent, FoehnHelpModalModule, FoehnIconCalendarComponent, FoehnIconCheckComponent, FoehnIconCheckSquareOComponent, FoehnIconChevronDownComponent, FoehnIconChevronLeftComponent, FoehnIconChevronRightComponent, FoehnIconChevronUpComponent, FoehnIconClockComponent, FoehnIconCommentDotsComponent, FoehnIconEditComponent, FoehnIconExternalLinkAltComponent, FoehnIconFilePdfComponent, FoehnIconInfoCircleComponent, FoehnIconLockComponent, FoehnIconMapMarkerComponent, FoehnIconMinusCircleComponent, FoehnIconPlusCircleComponent, FoehnIconPlusSquareComponent, FoehnIconSearchComponent, FoehnIconTimesComponent, FoehnIconTrashAltComponent, FoehnIconUnlockAltComponent, FoehnIconsModule, FoehnInputAddressComponent, FoehnInputComponent, FoehnInputEmailComponent, FoehnInputForeignLocalityComponent, FoehnInputForeignStreetComponent, FoehnInputHiddenComponent, FoehnInputModule, FoehnInputNav13Component, FoehnInputNav13Module, FoehnInputNumberComponent, FoehnInputPasswordComponent, FoehnInputPhoneComponent, FoehnInputStringComponent, FoehnInputTextComponent, FoehnInputTextareaComponent, FoehnListComponent, FoehnListItem, FoehnListModule, FoehnListSummaryComponent, FoehnMenuItemComponent, FoehnMenuItemTransmitComponent, FoehnMenuPrestationModule, FoehnMiscModule, FoehnModalComponent, FoehnModalModule, FoehnMultiUploadComponent, FoehnMultiUploadModule, FoehnNavigationComponent, FoehnNavigationModule, FoehnNavigationService, FoehnNotFoundModule, FoehnNotfoundComponent, FoehnPageComponent, FoehnPageCounterComponent, FoehnPageModalComponent, FoehnPageModule, FoehnPageService, FoehnPictureUploadComponent, FoehnPictureUploadModule, FoehnRadioComponent, FoehnRecapSectionComponent, FoehnRecapSectionModule, FoehnRemainingAlertsSummaryComponent, FoehnRemainingAlertsSummaryModule, FoehnSelectComponent, FoehnSkipLinkComponent, FoehnTableColumnConfiguration, FoehnTableComponent, FoehnTableModule, FoehnTablePageChangeEvent, FoehnTimeComponent, FoehnUserConnectedAsComponent, FoehnUserConnectedAsModule, FoehnValidationAlertSummaryComponent, FoehnValidationAlertSummaryModule, FoehnValidationAlertsComponent, FoehnValidationAlertsModule, FooterLink, FormSelectOption, FormatIdePipe, FormatterModule, GESDEM_MAX_DATA_LENGTH, GesdemActionRecoveryLoginComponent, GesdemActionRecoveryModule, GesdemActionRecoveryRegistrationComponent, GesdemConfirmationComponent, GesdemConfirmationModule, GesdemErrorComponent, GesdemErrorModule, GesdemEventService, GesdemHandlerService, GesdemLoaderGuard, GesdemMeta, GesdemStatutUtils, GrowlBrokerService, GrowlMessage, GrowlType, I18nForm, IbanFormatterDirective, IdeFormatterDirective, Locality, MonthYear, MultiUploadService, NDCFormatterDirective, NavigationDirection, NumberCurrencyFormatterDirective, ObjectHelper, PORTAIL_BASE_URL_INT, PageChangeEvent, PendingFiles, PendingUploadService, PipeModule, Portail, Preferences, PrestationsNgCoreModule, RECAPTCHA_API_URL, RecaptchaService, RedirectComponent, SESSION_INFO_API_URL, SWISS_ISO_ID, SdkDictionaryModule, SdkDictionaryPipe, SdkDictionaryService, SdkEpaymentComponent, SdkEpaymentModule, SdkRecaptchaComponent, SdkRecaptchaModule, SdkRedirectModule, ServiceLocator, SessionInfo, SessionInfoData, SessionInfoWithApplicationService, Street, StreetNumber, THOUSANDS_SEPARATOR, TableSort, UploaderHelper, ValidationHandlerService };
|
|
11618
11793
|
//# sourceMappingURL=dsivd-prestations-ng.js.map
|