@valtimo/shared 13.36.1 → 13.38.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.
- package/assets/core/en.json +96 -27
- package/assets/core/nl.json +97 -28
- package/fesm2022/valtimo-shared.mjs +71 -64
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/lib/models/config.d.ts +1 -0
- package/lib/models/config.d.ts.map +1 -1
- package/lib/models/menu-item.model.d.ts +2 -1
- package/lib/models/menu-item.model.d.ts.map +1 -1
- package/lib/services/menu-include.service.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -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.
|
|
92
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
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.
|
|
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: [{
|
|
@@ -373,19 +373,21 @@ class BaseApiService {
|
|
|
373
373
|
}
|
|
374
374
|
|
|
375
375
|
/*
|
|
376
|
-
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
377
376
|
*
|
|
378
|
-
*
|
|
379
|
-
*
|
|
380
|
-
*
|
|
377
|
+
* * Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
378
|
+
* *
|
|
379
|
+
* * Licensed under EUPL, Version 1.2 (the "License");
|
|
380
|
+
* * you may not use this file except in compliance with the License.
|
|
381
|
+
* * You may obtain a copy of the License at
|
|
382
|
+
* *
|
|
383
|
+
* * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
384
|
+
* *
|
|
385
|
+
* * Unless required by applicable law or agreed to in writing, software
|
|
386
|
+
* * distributed under the License is distributed on an "AS IS" basis,
|
|
387
|
+
* * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
388
|
+
* * See the License for the specific language governing permissions and
|
|
389
|
+
* * limitations under the License.
|
|
381
390
|
*
|
|
382
|
-
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
383
|
-
*
|
|
384
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
385
|
-
* distributed under the License is distributed on an "AS IS" basis,
|
|
386
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
387
|
-
* See the License for the specific language governing permissions and
|
|
388
|
-
* limitations under the License.
|
|
389
391
|
*/
|
|
390
392
|
const VALTIMO_CONFIG = new InjectionToken('valtimoConfig');
|
|
391
393
|
// eslint-disable-next-line
|
|
@@ -434,7 +436,8 @@ var Language;
|
|
|
434
436
|
*/
|
|
435
437
|
|
|
436
438
|
/*
|
|
437
|
-
*
|
|
439
|
+
*
|
|
440
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
438
441
|
*
|
|
439
442
|
* Licensed under EUPL, Version 1.2 (the "License");
|
|
440
443
|
* you may not use this file except in compliance with the License.
|
|
@@ -447,11 +450,13 @@ var Language;
|
|
|
447
450
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
448
451
|
* See the License for the specific language governing permissions and
|
|
449
452
|
* limitations under the License.
|
|
453
|
+
*
|
|
450
454
|
*/
|
|
451
455
|
var IncludeFunction;
|
|
452
456
|
(function (IncludeFunction) {
|
|
453
457
|
IncludeFunction[IncludeFunction["ObjectManagementEnabled"] = 0] = "ObjectManagementEnabled";
|
|
454
|
-
IncludeFunction[IncludeFunction["
|
|
458
|
+
IncludeFunction[IncludeFunction["OpenSearchEnabled"] = 1] = "OpenSearchEnabled";
|
|
459
|
+
IncludeFunction[IncludeFunction["ZgwFeaturesEnabled"] = 2] = "ZgwFeaturesEnabled";
|
|
455
460
|
})(IncludeFunction || (IncludeFunction = {}));
|
|
456
461
|
|
|
457
462
|
/*
|
|
@@ -980,10 +985,10 @@ class ConfigService {
|
|
|
980
985
|
};
|
|
981
986
|
this._featureToggles$.next(merged);
|
|
982
987
|
}
|
|
983
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
984
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
988
|
+
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 }); }
|
|
989
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
|
|
985
990
|
}
|
|
986
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigService, decorators: [{
|
|
987
992
|
type: Injectable,
|
|
988
993
|
args: [{
|
|
989
994
|
providedIn: 'root',
|
|
@@ -1080,10 +1085,10 @@ class GlobalNotificationService {
|
|
|
1080
1085
|
return;
|
|
1081
1086
|
this._notificationQueue.splice(index, 1);
|
|
1082
1087
|
}
|
|
1083
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1084
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1088
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: GlobalNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1089
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: GlobalNotificationService, providedIn: 'root' }); }
|
|
1085
1090
|
}
|
|
1086
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1091
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: GlobalNotificationService, decorators: [{
|
|
1087
1092
|
type: Injectable,
|
|
1088
1093
|
args: [{
|
|
1089
1094
|
providedIn: 'root',
|
|
@@ -1130,10 +1135,10 @@ class LocalizationService {
|
|
|
1130
1135
|
updateLocalizations(updatedLocalizations) {
|
|
1131
1136
|
return this.http.put(`${this.valtimoApiUri}management/v1/localization`, updatedLocalizations);
|
|
1132
1137
|
}
|
|
1133
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1134
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1138
|
+
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 }); }
|
|
1139
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: LocalizationService, providedIn: 'root' }); }
|
|
1135
1140
|
}
|
|
1136
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: LocalizationService, decorators: [{
|
|
1137
1142
|
type: Injectable,
|
|
1138
1143
|
args: [{
|
|
1139
1144
|
providedIn: 'root',
|
|
@@ -1141,7 +1146,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
1141
1146
|
}], ctorParameters: () => [{ type: i1$1.HttpClient }, { type: ConfigService }] });
|
|
1142
1147
|
|
|
1143
1148
|
/*
|
|
1144
|
-
* Copyright 2015-
|
|
1149
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
1145
1150
|
*
|
|
1146
1151
|
* Licensed under EUPL, Version 1.2 (the "License");
|
|
1147
1152
|
* you may not use this file except in compliance with the License.
|
|
@@ -1173,6 +1178,8 @@ class MenuIncludeService {
|
|
|
1173
1178
|
switch (includeFunction) {
|
|
1174
1179
|
case IncludeFunction.ObjectManagementEnabled:
|
|
1175
1180
|
return this.configService.getFeatureToggleObservable('enableObjectManagement', true);
|
|
1181
|
+
case IncludeFunction.OpenSearchEnabled:
|
|
1182
|
+
return this.configService.getFeatureToggleObservable('enableOpenSearch', false);
|
|
1176
1183
|
case IncludeFunction.ZgwFeaturesEnabled:
|
|
1177
1184
|
return this.configService.getFeatureToggleObservable('enableZgwFeatures', false);
|
|
1178
1185
|
default:
|
|
@@ -1185,10 +1192,10 @@ class MenuIncludeService {
|
|
|
1185
1192
|
getIncludeFunction(includeFunction) {
|
|
1186
1193
|
return this.getSingleIncludeFunction(includeFunction);
|
|
1187
1194
|
}
|
|
1188
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1189
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1195
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MenuIncludeService, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1196
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MenuIncludeService, providedIn: 'root' }); }
|
|
1190
1197
|
}
|
|
1191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1198
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MenuIncludeService, decorators: [{
|
|
1192
1199
|
type: Injectable,
|
|
1193
1200
|
args: [{
|
|
1194
1201
|
providedIn: 'root',
|
|
@@ -1222,10 +1229,10 @@ class UserSettingsService {
|
|
|
1222
1229
|
saveUserSettings(settings) {
|
|
1223
1230
|
return this.http.put(`${this.valtimoApiUri}v1/user/settings`, settings);
|
|
1224
1231
|
}
|
|
1225
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1226
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1232
|
+
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 }); }
|
|
1233
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UserSettingsService, providedIn: 'root' }); }
|
|
1227
1234
|
}
|
|
1228
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1235
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: UserSettingsService, decorators: [{
|
|
1229
1236
|
type: Injectable,
|
|
1230
1237
|
args: [{
|
|
1231
1238
|
providedIn: 'root',
|
|
@@ -1248,7 +1255,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
1248
1255
|
* limitations under the License.
|
|
1249
1256
|
*/
|
|
1250
1257
|
const VERSIONS = {
|
|
1251
|
-
frontendLibraries: '13.
|
|
1258
|
+
frontendLibraries: '13.38.0',
|
|
1252
1259
|
};
|
|
1253
1260
|
|
|
1254
1261
|
/*
|
|
@@ -1398,10 +1405,10 @@ class EnvironmentService extends BaseApiService {
|
|
|
1398
1405
|
})
|
|
1399
1406
|
.pipe(map(response => response.canUpdateGlobalConfiguration), catchError(() => of(true)));
|
|
1400
1407
|
}
|
|
1401
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1402
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1408
|
+
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 }); }
|
|
1409
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
|
|
1403
1410
|
}
|
|
1404
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1411
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EnvironmentService, decorators: [{
|
|
1405
1412
|
type: Injectable,
|
|
1406
1413
|
args: [{
|
|
1407
1414
|
providedIn: 'root',
|
|
@@ -1449,10 +1456,10 @@ class DraftVersionService extends BaseApiService {
|
|
|
1449
1456
|
})
|
|
1450
1457
|
.pipe(map(buildingBlockDefinition => !buildingBlockDefinition.final));
|
|
1451
1458
|
}
|
|
1452
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1453
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1459
|
+
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 }); }
|
|
1460
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: DraftVersionService, providedIn: 'root' }); }
|
|
1454
1461
|
}
|
|
1455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1462
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: DraftVersionService, decorators: [{
|
|
1456
1463
|
type: Injectable,
|
|
1457
1464
|
args: [{
|
|
1458
1465
|
providedIn: 'root',
|
|
@@ -1501,10 +1508,10 @@ class EditPermissionsService extends BaseApiService {
|
|
|
1501
1508
|
}
|
|
1502
1509
|
return of(false);
|
|
1503
1510
|
}
|
|
1504
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1505
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1511
|
+
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 }); }
|
|
1512
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EditPermissionsService, providedIn: 'root' }); }
|
|
1506
1513
|
}
|
|
1507
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1514
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: EditPermissionsService, decorators: [{
|
|
1508
1515
|
type: Injectable,
|
|
1509
1516
|
args: [{
|
|
1510
1517
|
providedIn: 'root',
|
|
@@ -1540,10 +1547,10 @@ class ConfigurationIssueService {
|
|
|
1540
1547
|
hasAnyOfIssues$(issueTypes) {
|
|
1541
1548
|
return this._unresolvedIssueTypes$.pipe(map(types => issueTypes.some(t => types.has(t))));
|
|
1542
1549
|
}
|
|
1543
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1544
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1550
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigurationIssueService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1551
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigurationIssueService, providedIn: 'root' }); }
|
|
1545
1552
|
}
|
|
1546
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1553
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigurationIssueService, decorators: [{
|
|
1547
1554
|
type: Injectable,
|
|
1548
1555
|
args: [{
|
|
1549
1556
|
providedIn: 'root',
|
|
@@ -1589,10 +1596,10 @@ class GlobalNotificationComponent {
|
|
|
1589
1596
|
ngOnInit() {
|
|
1590
1597
|
this.globalNotificationService.setNotificationService(this.notificationService);
|
|
1591
1598
|
}
|
|
1592
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1593
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1599
|
+
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 }); }
|
|
1600
|
+
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
1601
|
}
|
|
1595
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1602
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: GlobalNotificationComponent, decorators: [{
|
|
1596
1603
|
type: Component,
|
|
1597
1604
|
args: [{ selector: 'valtimo-global-notification', template: ``, providers: [NotificationService], standalone: true, imports: [CommonModule], styles: ["::ng-deep .cds--toast-notification{width:100%}\n"] }]
|
|
1598
1605
|
}], ctorParameters: () => [{ type: GlobalNotificationService }, { type: i1.NotificationService }] });
|
|
@@ -1624,10 +1631,10 @@ class ExtensionComponent {
|
|
|
1624
1631
|
this.configService.loadExtensionPoint(this.viewContainerRef, extension.extensionPoint);
|
|
1625
1632
|
});
|
|
1626
1633
|
}
|
|
1627
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1628
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1634
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ExtensionComponent, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1635
|
+
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
1636
|
}
|
|
1630
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ExtensionComponent, decorators: [{
|
|
1631
1638
|
type: Component,
|
|
1632
1639
|
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
1640
|
}], ctorParameters: () => [{ type: ConfigService }], propDecorators: { module: [{
|
|
@@ -1669,11 +1676,11 @@ class ConfigModule {
|
|
|
1669
1676
|
],
|
|
1670
1677
|
};
|
|
1671
1678
|
}
|
|
1672
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1673
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
1674
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
1679
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1680
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.25", ngImport: i0, type: ConfigModule, declarations: [ExtensionComponent], exports: [ExtensionComponent] }); }
|
|
1681
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigModule }); }
|
|
1675
1682
|
}
|
|
1676
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1683
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: ConfigModule, decorators: [{
|
|
1677
1684
|
type: NgModule,
|
|
1678
1685
|
args: [{
|
|
1679
1686
|
declarations: [ExtensionComponent],
|
|
@@ -1704,10 +1711,10 @@ class MockTranslateService {
|
|
|
1704
1711
|
instant(key) {
|
|
1705
1712
|
return '';
|
|
1706
1713
|
}
|
|
1707
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1708
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1714
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockTranslateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1715
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockTranslateService, providedIn: 'root' }); }
|
|
1709
1716
|
}
|
|
1710
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1717
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockTranslateService, decorators: [{
|
|
1711
1718
|
type: Injectable,
|
|
1712
1719
|
args: [{
|
|
1713
1720
|
providedIn: 'root',
|
|
@@ -1752,10 +1759,10 @@ class MockKeycloakService {
|
|
|
1752
1759
|
async loadUserProfile() {
|
|
1753
1760
|
return this.MOCK_USER_PROFILE;
|
|
1754
1761
|
}
|
|
1755
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1756
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1762
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockKeycloakService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1763
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockKeycloakService, providedIn: 'root' }); }
|
|
1757
1764
|
}
|
|
1758
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1765
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockKeycloakService, decorators: [{
|
|
1759
1766
|
type: Injectable,
|
|
1760
1767
|
args: [{
|
|
1761
1768
|
providedIn: 'root',
|
|
@@ -1781,10 +1788,10 @@ class MockIconService {
|
|
|
1781
1788
|
registerAll(value) {
|
|
1782
1789
|
return;
|
|
1783
1790
|
}
|
|
1784
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1785
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1791
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockIconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1792
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockIconService, providedIn: 'root' }); }
|
|
1786
1793
|
}
|
|
1787
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1794
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImport: i0, type: MockIconService, decorators: [{
|
|
1788
1795
|
type: Injectable,
|
|
1789
1796
|
args: [{
|
|
1790
1797
|
providedIn: 'root',
|