@valtimo/shared 13.36.1 → 13.37.0

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.
@@ -146,6 +146,7 @@
146
146
  "regularUser": "The document upload is not available for this case. Please contact an administrator",
147
147
  "adminRole": "The process for uploading documents has not been configured. Please configure this process on the case management page"
148
148
  },
149
+ "maxFilesReached": "The maximum number of files ({{maxFiles}}) has been reached. No more files can be uploaded.",
149
150
  "navigateToCaseAdmin": "Configure Zaak",
150
151
  "noZaakFoundTitle": "No Zaak found",
151
152
  "noZaakFound": "No files could be retrieved because no Zaak was for found for this case.",
@@ -149,6 +149,7 @@
149
149
  "regularUser": "Het uploaden van documenten is voor dit dossiertype niet beschikbaar. Neem contact op met een beheerder",
150
150
  "adminRole": "Het proces voor het uploaden van documenten is niet geconfigureerd. Configureer dit proces op de dossierbeheerpagina"
151
151
  },
152
+ "maxFilesReached": "Het maximale aantal bestanden ({{maxFiles}}) is bereikt. Er kunnen geen bestanden meer worden geüpload.",
152
153
  "navigateToCaseAdmin": "Configureer Zaak",
153
154
  "noZaakFoundTitle": "Geen Zaak gevonden",
154
155
  "noZaakFound": "Er konden geen bestanden worden opgehaald omdat er voor dit dossier geen Zaak is gevonden.",
@@ -88,10 +88,10 @@ class CarouselComponent {
88
88
  this.activeIndex$.next(activeIndex);
89
89
  }
90
90
  }
91
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CarouselComponent, deps: [{ token: i1.IconService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
92
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: CarouselComponent, isStandalone: true, selector: "valtimo-carousel", inputs: { ariaLabel: "ariaLabel" }, host: { properties: { "class": "this.hostClasses" } }, viewQueries: [{ propertyName: "trackRef", first: true, predicate: ["track"], descendants: true }], ngImport: i0, template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<ng-container\n *ngIf=\"{\n prev: canScrollPrev$ | async,\n next: canScrollNext$ | async,\n count: itemCount$ | async,\n active: activeIndex$ | async,\n dots: dots$ | async\n } as vm\"\n>\n <div class=\"valtimo-carousel__viewport\">\n <ul\n #track\n class=\"valtimo-carousel__track\"\n [attr.aria-label]=\"ariaLabel\"\n (scroll)=\"onScroll()\"\n >\n <ng-content></ng-content>\n </ul>\n </div>\n\n <div *ngIf=\"vm.count > 1\" class=\"valtimo-carousel__controls\">\n <cds-icon-button\n class=\"valtimo-carousel__nav\"\n kind=\"ghost\"\n size=\"md\"\n align=\"top-left\"\n [description]=\"'carousel.previous' | translate\"\n [disabled]=\"!vm.prev\"\n (click)=\"scrollPrev()\"\n >\n <svg cdsIcon=\"chevron--left\" size=\"16\"></svg>\n </cds-icon-button>\n\n <div class=\"valtimo-carousel__dots\" role=\"tablist\">\n <button\n *ngFor=\"let index of vm.dots\"\n type=\"button\"\n class=\"valtimo-carousel__dot\"\n [class.valtimo-carousel__dot--active]=\"index === vm.active\"\n [attr.aria-label]=\"('carousel.goToSlide' | translate) + ' ' + (index + 1)\"\n [attr.aria-current]=\"index === vm.active\"\n (click)=\"scrollToIndex(index)\"\n ></button>\n </div>\n\n <cds-icon-button\n class=\"valtimo-carousel__nav\"\n kind=\"ghost\"\n size=\"md\"\n align=\"top-right\"\n [description]=\"'carousel.next' | translate\"\n [disabled]=\"!vm.next\"\n (click)=\"scrollNext()\"\n >\n <svg cdsIcon=\"chevron--right\" size=\"16\"></svg>\n </cds-icon-button>\n </div>\n</ng-container>\n", styles: [".valtimo-carousel{display:flex;flex-direction:column;width:100%}.valtimo-carousel__viewport{position:relative;flex:1 1 auto;min-height:0;width:100%}.valtimo-carousel__track{display:flex;align-items:stretch;gap:var(--cds-spacing-05, 1rem);width:100%;height:100%;margin:0;padding:0;list-style:none;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none}.valtimo-carousel__track::-webkit-scrollbar{display:none}.valtimo-carousel__track>*{flex:0 0 100%;width:100%;scroll-snap-align:start}.valtimo-carousel__controls{display:flex;align-items:center;justify-content:space-between;gap:var(--cds-spacing-03, .5rem);padding-top:var(--cds-spacing-03, .5rem)}.valtimo-carousel__nav .cds--btn{border-radius:0;color:var(--cds-icon-primary)}.valtimo-carousel__nav .cds--btn:disabled{color:var(--cds-icon-disabled);cursor:not-allowed}.valtimo-carousel__dots{display:flex;flex:1 1 auto;align-items:center;justify-content:center;gap:var(--cds-spacing-03, .5rem)}.valtimo-carousel__dot{width:8px;height:8px;padding:0;border:none;border-radius:50%;background-color:var(--cds-icon-disabled);cursor:pointer;transition:background-color .11s ease}.valtimo-carousel__dot:hover{background-color:var(--cds-icon-secondary)}.valtimo-carousel__dot--active{background-color:var(--cds-icon-primary)}.valtimo-carousel__dot:focus-visible{outline:2px solid var(--cds-focus);outline-offset:2px}\n/*!\n * Copyright 2015-2026 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i3.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: ButtonModule }, { kind: "component", type: i1.IconButton, selector: "cds-icon-button, ibm-icon-button", inputs: ["buttonNgClass", "buttonAttributes", "buttonId", "kind", "size", "type", "isExpressive", "disabled", "description", "showTooltipWhenDisabled"], outputs: ["click", "focus", "blur", "tooltipClick"] }, { kind: "ngmodule", type: IconModule }, { kind: "directive", type: i1.IconDirective, selector: "[cdsIcon], [ibmIcon]", inputs: ["ibmIcon", "cdsIcon", "size", "title", "ariaLabel", "ariaLabelledBy", "ariaHidden", "isFocusable"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
91
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: CarouselComponent, deps: [{ token: i1.IconService }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
92
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: CarouselComponent, isStandalone: true, selector: "valtimo-carousel", inputs: { ariaLabel: "ariaLabel" }, host: { properties: { "class": "this.hostClasses" } }, viewQueries: [{ propertyName: "trackRef", first: true, predicate: ["track"], descendants: true }], ngImport: i0, template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<ng-container\n *ngIf=\"{\n prev: canScrollPrev$ | async,\n next: canScrollNext$ | async,\n count: itemCount$ | async,\n active: activeIndex$ | async,\n dots: dots$ | async\n } as vm\"\n>\n <div class=\"valtimo-carousel__viewport\">\n <ul\n #track\n class=\"valtimo-carousel__track\"\n [attr.aria-label]=\"ariaLabel\"\n (scroll)=\"onScroll()\"\n >\n <ng-content></ng-content>\n </ul>\n </div>\n\n <div *ngIf=\"vm.count > 1\" class=\"valtimo-carousel__controls\">\n <cds-icon-button\n class=\"valtimo-carousel__nav\"\n kind=\"ghost\"\n size=\"md\"\n align=\"top-left\"\n [description]=\"'carousel.previous' | translate\"\n [disabled]=\"!vm.prev\"\n (click)=\"scrollPrev()\"\n >\n <svg cdsIcon=\"chevron--left\" size=\"16\"></svg>\n </cds-icon-button>\n\n <div class=\"valtimo-carousel__dots\" role=\"tablist\">\n <button\n *ngFor=\"let index of vm.dots\"\n type=\"button\"\n class=\"valtimo-carousel__dot\"\n [class.valtimo-carousel__dot--active]=\"index === vm.active\"\n [attr.aria-label]=\"('carousel.goToSlide' | translate) + ' ' + (index + 1)\"\n [attr.aria-current]=\"index === vm.active\"\n (click)=\"scrollToIndex(index)\"\n ></button>\n </div>\n\n <cds-icon-button\n class=\"valtimo-carousel__nav\"\n kind=\"ghost\"\n size=\"md\"\n align=\"top-right\"\n [description]=\"'carousel.next' | translate\"\n [disabled]=\"!vm.next\"\n (click)=\"scrollNext()\"\n >\n <svg cdsIcon=\"chevron--right\" size=\"16\"></svg>\n </cds-icon-button>\n </div>\n</ng-container>\n", styles: [".valtimo-carousel{display:flex;flex-direction:column;width:100%}.valtimo-carousel__viewport{position:relative;flex:1 1 auto;min-height:0;width:100%}.valtimo-carousel__track{display:flex;align-items:stretch;gap:var(--cds-spacing-05, 1rem);width:100%;height:100%;margin:0;padding:0;list-style:none;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none}.valtimo-carousel__track::-webkit-scrollbar{display:none}.valtimo-carousel__track>*{flex:0 0 100%;width:100%;scroll-snap-align:start}.valtimo-carousel__controls{display:flex;align-items:center;justify-content:space-between;gap:var(--cds-spacing-03, .5rem);padding-top:var(--cds-spacing-03, .5rem)}.valtimo-carousel__nav .cds--btn{border-radius:0;color:var(--cds-icon-primary)}.valtimo-carousel__nav .cds--btn:disabled{color:var(--cds-icon-disabled);cursor:not-allowed}.valtimo-carousel__dots{display:flex;flex:1 1 auto;align-items:center;justify-content:center;gap:var(--cds-spacing-03, .5rem)}.valtimo-carousel__dot{width:8px;height:8px;padding:0;border:none;border-radius:50%;background-color:var(--cds-icon-disabled);cursor:pointer;transition:background-color .11s ease}.valtimo-carousel__dot:hover{background-color:var(--cds-icon-secondary)}.valtimo-carousel__dot--active{background-color:var(--cds-icon-primary)}.valtimo-carousel__dot:focus-visible{outline:2px solid var(--cds-focus);outline-offset:2px}\n/*!\n * Copyright 2015-2026 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "pipe", type: i2.AsyncPipe, name: "async" }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i3.TranslatePipe, name: "translate" }, { kind: "ngmodule", type: ButtonModule }, { kind: "component", type: i1.IconButton, selector: "cds-icon-button, ibm-icon-button", inputs: ["buttonNgClass", "buttonAttributes", "buttonId", "kind", "size", "type", "isExpressive", "disabled", "description", "showTooltipWhenDisabled"], outputs: ["click", "focus", "blur", "tooltipClick"] }, { kind: "ngmodule", type: IconModule }, { kind: "directive", type: i1.IconDirective, selector: "[cdsIcon], [ibmIcon]", inputs: ["ibmIcon", "cdsIcon", "size", "title", "ariaLabel", "ariaLabelledBy", "ariaHidden", "isFocusable"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
93
93
  }
94
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CarouselComponent, decorators: [{
94
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: CarouselComponent, decorators: [{
95
95
  type: Component,
96
96
  args: [{ selector: 'valtimo-carousel', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, standalone: true, imports: [CommonModule, TranslateModule, ButtonModule, IconModule], template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<ng-container\n *ngIf=\"{\n prev: canScrollPrev$ | async,\n next: canScrollNext$ | async,\n count: itemCount$ | async,\n active: activeIndex$ | async,\n dots: dots$ | async\n } as vm\"\n>\n <div class=\"valtimo-carousel__viewport\">\n <ul\n #track\n class=\"valtimo-carousel__track\"\n [attr.aria-label]=\"ariaLabel\"\n (scroll)=\"onScroll()\"\n >\n <ng-content></ng-content>\n </ul>\n </div>\n\n <div *ngIf=\"vm.count > 1\" class=\"valtimo-carousel__controls\">\n <cds-icon-button\n class=\"valtimo-carousel__nav\"\n kind=\"ghost\"\n size=\"md\"\n align=\"top-left\"\n [description]=\"'carousel.previous' | translate\"\n [disabled]=\"!vm.prev\"\n (click)=\"scrollPrev()\"\n >\n <svg cdsIcon=\"chevron--left\" size=\"16\"></svg>\n </cds-icon-button>\n\n <div class=\"valtimo-carousel__dots\" role=\"tablist\">\n <button\n *ngFor=\"let index of vm.dots\"\n type=\"button\"\n class=\"valtimo-carousel__dot\"\n [class.valtimo-carousel__dot--active]=\"index === vm.active\"\n [attr.aria-label]=\"('carousel.goToSlide' | translate) + ' ' + (index + 1)\"\n [attr.aria-current]=\"index === vm.active\"\n (click)=\"scrollToIndex(index)\"\n ></button>\n </div>\n\n <cds-icon-button\n class=\"valtimo-carousel__nav\"\n kind=\"ghost\"\n size=\"md\"\n align=\"top-right\"\n [description]=\"'carousel.next' | translate\"\n [disabled]=\"!vm.next\"\n (click)=\"scrollNext()\"\n >\n <svg cdsIcon=\"chevron--right\" size=\"16\"></svg>\n </cds-icon-button>\n </div>\n</ng-container>\n", styles: [".valtimo-carousel{display:flex;flex-direction:column;width:100%}.valtimo-carousel__viewport{position:relative;flex:1 1 auto;min-height:0;width:100%}.valtimo-carousel__track{display:flex;align-items:stretch;gap:var(--cds-spacing-05, 1rem);width:100%;height:100%;margin:0;padding:0;list-style:none;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;scrollbar-width:none}.valtimo-carousel__track::-webkit-scrollbar{display:none}.valtimo-carousel__track>*{flex:0 0 100%;width:100%;scroll-snap-align:start}.valtimo-carousel__controls{display:flex;align-items:center;justify-content:space-between;gap:var(--cds-spacing-03, .5rem);padding-top:var(--cds-spacing-03, .5rem)}.valtimo-carousel__nav .cds--btn{border-radius:0;color:var(--cds-icon-primary)}.valtimo-carousel__nav .cds--btn:disabled{color:var(--cds-icon-disabled);cursor:not-allowed}.valtimo-carousel__dots{display:flex;flex:1 1 auto;align-items:center;justify-content:center;gap:var(--cds-spacing-03, .5rem)}.valtimo-carousel__dot{width:8px;height:8px;padding:0;border:none;border-radius:50%;background-color:var(--cds-icon-disabled);cursor:pointer;transition:background-color .11s ease}.valtimo-carousel__dot:hover{background-color:var(--cds-icon-secondary)}.valtimo-carousel__dot--active{background-color:var(--cds-icon-primary)}.valtimo-carousel__dot:focus-visible{outline:2px solid var(--cds-focus);outline-offset:2px}\n/*!\n * Copyright 2015-2026 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"] }]
97
97
  }], ctorParameters: () => [{ type: i1.IconService }, { type: i0.NgZone }], propDecorators: { hostClasses: [{
@@ -980,10 +980,10 @@ class ConfigService {
980
980
  };
981
981
  this._featureToggles$.next(merged);
982
982
  }
983
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigService, deps: [{ token: VALTIMO_CONFIG }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable }); }
984
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
983
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigService, deps: [{ token: VALTIMO_CONFIG }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable }); }
984
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
985
985
  }
986
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigService, decorators: [{
986
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigService, decorators: [{
987
987
  type: Injectable,
988
988
  args: [{
989
989
  providedIn: 'root',
@@ -1080,10 +1080,10 @@ class GlobalNotificationService {
1080
1080
  return;
1081
1081
  this._notificationQueue.splice(index, 1);
1082
1082
  }
1083
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GlobalNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1084
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GlobalNotificationService, providedIn: 'root' }); }
1083
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: GlobalNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1084
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: GlobalNotificationService, providedIn: 'root' }); }
1085
1085
  }
1086
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GlobalNotificationService, decorators: [{
1086
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: GlobalNotificationService, decorators: [{
1087
1087
  type: Injectable,
1088
1088
  args: [{
1089
1089
  providedIn: 'root',
@@ -1130,10 +1130,10 @@ class LocalizationService {
1130
1130
  updateLocalizations(updatedLocalizations) {
1131
1131
  return this.http.put(`${this.valtimoApiUri}management/v1/localization`, updatedLocalizations);
1132
1132
  }
1133
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocalizationService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1134
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocalizationService, providedIn: 'root' }); }
1133
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: LocalizationService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1134
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: LocalizationService, providedIn: 'root' }); }
1135
1135
  }
1136
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocalizationService, decorators: [{
1136
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: LocalizationService, decorators: [{
1137
1137
  type: Injectable,
1138
1138
  args: [{
1139
1139
  providedIn: 'root',
@@ -1185,10 +1185,10 @@ class MenuIncludeService {
1185
1185
  getIncludeFunction(includeFunction) {
1186
1186
  return this.getSingleIncludeFunction(includeFunction);
1187
1187
  }
1188
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MenuIncludeService, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1189
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MenuIncludeService, providedIn: 'root' }); }
1188
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MenuIncludeService, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1189
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MenuIncludeService, providedIn: 'root' }); }
1190
1190
  }
1191
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MenuIncludeService, decorators: [{
1191
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MenuIncludeService, decorators: [{
1192
1192
  type: Injectable,
1193
1193
  args: [{
1194
1194
  providedIn: 'root',
@@ -1222,10 +1222,10 @@ class UserSettingsService {
1222
1222
  saveUserSettings(settings) {
1223
1223
  return this.http.put(`${this.valtimoApiUri}v1/user/settings`, settings);
1224
1224
  }
1225
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UserSettingsService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1226
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UserSettingsService, providedIn: 'root' }); }
1225
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UserSettingsService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1226
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UserSettingsService, providedIn: 'root' }); }
1227
1227
  }
1228
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UserSettingsService, decorators: [{
1228
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UserSettingsService, decorators: [{
1229
1229
  type: Injectable,
1230
1230
  args: [{
1231
1231
  providedIn: 'root',
@@ -1248,7 +1248,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
1248
1248
  * limitations under the License.
1249
1249
  */
1250
1250
  const VERSIONS = {
1251
- frontendLibraries: '13.36.1',
1251
+ frontendLibraries: '13.37.0',
1252
1252
  };
1253
1253
 
1254
1254
  /*
@@ -1398,10 +1398,10 @@ class EnvironmentService extends BaseApiService {
1398
1398
  })
1399
1399
  .pipe(map(response => response.canUpdateGlobalConfiguration), catchError(() => of(true)));
1400
1400
  }
1401
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: EnvironmentService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1402
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
1401
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EnvironmentService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1402
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
1403
1403
  }
1404
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: EnvironmentService, decorators: [{
1404
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EnvironmentService, decorators: [{
1405
1405
  type: Injectable,
1406
1406
  args: [{
1407
1407
  providedIn: 'root',
@@ -1449,10 +1449,10 @@ class DraftVersionService extends BaseApiService {
1449
1449
  })
1450
1450
  .pipe(map(buildingBlockDefinition => !buildingBlockDefinition.final));
1451
1451
  }
1452
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DraftVersionService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1453
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DraftVersionService, providedIn: 'root' }); }
1452
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: DraftVersionService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1453
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: DraftVersionService, providedIn: 'root' }); }
1454
1454
  }
1455
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DraftVersionService, decorators: [{
1455
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: DraftVersionService, decorators: [{
1456
1456
  type: Injectable,
1457
1457
  args: [{
1458
1458
  providedIn: 'root',
@@ -1501,10 +1501,10 @@ class EditPermissionsService extends BaseApiService {
1501
1501
  }
1502
1502
  return of(false);
1503
1503
  }
1504
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: EditPermissionsService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }, { token: EnvironmentService }, { token: DraftVersionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1505
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: EditPermissionsService, providedIn: 'root' }); }
1504
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EditPermissionsService, deps: [{ token: i1$1.HttpClient }, { token: ConfigService }, { token: EnvironmentService }, { token: DraftVersionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1505
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EditPermissionsService, providedIn: 'root' }); }
1506
1506
  }
1507
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: EditPermissionsService, decorators: [{
1507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EditPermissionsService, decorators: [{
1508
1508
  type: Injectable,
1509
1509
  args: [{
1510
1510
  providedIn: 'root',
@@ -1540,10 +1540,10 @@ class ConfigurationIssueService {
1540
1540
  hasAnyOfIssues$(issueTypes) {
1541
1541
  return this._unresolvedIssueTypes$.pipe(map(types => issueTypes.some(t => types.has(t))));
1542
1542
  }
1543
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigurationIssueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1544
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigurationIssueService, providedIn: 'root' }); }
1543
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigurationIssueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1544
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigurationIssueService, providedIn: 'root' }); }
1545
1545
  }
1546
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigurationIssueService, decorators: [{
1546
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigurationIssueService, decorators: [{
1547
1547
  type: Injectable,
1548
1548
  args: [{
1549
1549
  providedIn: 'root',
@@ -1589,10 +1589,10 @@ class GlobalNotificationComponent {
1589
1589
  ngOnInit() {
1590
1590
  this.globalNotificationService.setNotificationService(this.notificationService);
1591
1591
  }
1592
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GlobalNotificationComponent, deps: [{ token: GlobalNotificationService }, { token: i1.NotificationService }], target: i0.ɵɵFactoryTarget.Component }); }
1593
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: GlobalNotificationComponent, isStandalone: true, selector: "valtimo-global-notification", providers: [NotificationService], ngImport: i0, template: ``, isInline: true, styles: ["::ng-deep .cds--toast-notification{width:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
1592
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: GlobalNotificationComponent, deps: [{ token: GlobalNotificationService }, { token: i1.NotificationService }], target: i0.ɵɵFactoryTarget.Component }); }
1593
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: GlobalNotificationComponent, isStandalone: true, selector: "valtimo-global-notification", providers: [NotificationService], ngImport: i0, template: ``, isInline: true, styles: ["::ng-deep .cds--toast-notification{width:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] }); }
1594
1594
  }
1595
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: GlobalNotificationComponent, decorators: [{
1595
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: GlobalNotificationComponent, decorators: [{
1596
1596
  type: Component,
1597
1597
  args: [{ selector: 'valtimo-global-notification', template: ``, providers: [NotificationService], standalone: true, imports: [CommonModule], styles: ["::ng-deep .cds--toast-notification{width:100%}\n"] }]
1598
1598
  }], ctorParameters: () => [{ type: GlobalNotificationService }, { type: i1.NotificationService }] });
@@ -1624,10 +1624,10 @@ class ExtensionComponent {
1624
1624
  this.configService.loadExtensionPoint(this.viewContainerRef, extension.extensionPoint);
1625
1625
  });
1626
1626
  }
1627
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ExtensionComponent, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Component }); }
1628
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: ExtensionComponent, isStandalone: false, selector: "valtimo-extension", inputs: { module: "module", page: "page", section: "section" }, viewQueries: [{ propertyName: "viewContainerRef", first: true, predicate: ["injectExtension"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<ng-template #injectExtension></ng-template>\n", styles: [""] }); }
1627
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ExtensionComponent, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Component }); }
1628
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.25", type: ExtensionComponent, isStandalone: false, selector: "valtimo-extension", inputs: { module: "module", page: "page", section: "section" }, viewQueries: [{ propertyName: "viewContainerRef", first: true, predicate: ["injectExtension"], descendants: true, read: ViewContainerRef, static: true }], ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<ng-template #injectExtension></ng-template>\n", styles: [""] }); }
1629
1629
  }
1630
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ExtensionComponent, decorators: [{
1630
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ExtensionComponent, decorators: [{
1631
1631
  type: Component,
1632
1632
  args: [{ selector: 'valtimo-extension', standalone: false, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<ng-template #injectExtension></ng-template>\n" }]
1633
1633
  }], ctorParameters: () => [{ type: ConfigService }], propDecorators: { module: [{
@@ -1669,11 +1669,11 @@ class ConfigModule {
1669
1669
  ],
1670
1670
  };
1671
1671
  }
1672
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1673
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: ConfigModule, declarations: [ExtensionComponent], exports: [ExtensionComponent] }); }
1674
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigModule }); }
1672
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1673
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: ConfigModule, declarations: [ExtensionComponent], exports: [ExtensionComponent] }); }
1674
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigModule }); }
1675
1675
  }
1676
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigModule, decorators: [{
1676
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigModule, decorators: [{
1677
1677
  type: NgModule,
1678
1678
  args: [{
1679
1679
  declarations: [ExtensionComponent],
@@ -1704,10 +1704,10 @@ class MockTranslateService {
1704
1704
  instant(key) {
1705
1705
  return '';
1706
1706
  }
1707
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MockTranslateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1708
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MockTranslateService, providedIn: 'root' }); }
1707
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockTranslateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1708
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockTranslateService, providedIn: 'root' }); }
1709
1709
  }
1710
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MockTranslateService, decorators: [{
1710
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockTranslateService, decorators: [{
1711
1711
  type: Injectable,
1712
1712
  args: [{
1713
1713
  providedIn: 'root',
@@ -1752,10 +1752,10 @@ class MockKeycloakService {
1752
1752
  async loadUserProfile() {
1753
1753
  return this.MOCK_USER_PROFILE;
1754
1754
  }
1755
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MockKeycloakService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1756
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MockKeycloakService, providedIn: 'root' }); }
1755
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockKeycloakService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1756
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockKeycloakService, providedIn: 'root' }); }
1757
1757
  }
1758
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MockKeycloakService, decorators: [{
1758
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockKeycloakService, decorators: [{
1759
1759
  type: Injectable,
1760
1760
  args: [{
1761
1761
  providedIn: 'root',
@@ -1781,10 +1781,10 @@ class MockIconService {
1781
1781
  registerAll(value) {
1782
1782
  return;
1783
1783
  }
1784
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MockIconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1785
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MockIconService, providedIn: 'root' }); }
1784
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockIconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1785
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockIconService, providedIn: 'root' }); }
1786
1786
  }
1787
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: MockIconService, decorators: [{
1787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockIconService, decorators: [{
1788
1788
  type: Injectable,
1789
1789
  args: [{
1790
1790
  providedIn: 'root',