@valtimo/shared 13.12.0 → 13.14.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 +181 -6
- package/assets/core/nl.json +182 -7
- package/fesm2022/valtimo-shared.mjs +100 -57
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/lib/constants/building-block-management-tab-token.d.ts +5 -0
- package/lib/constants/building-block-management-tab-token.d.ts.map +1 -0
- package/lib/constants/index.d.ts +1 -0
- package/lib/constants/index.d.ts.map +1 -1
- package/lib/generated/generated-backend-types.d.ts +1000 -0
- package/lib/generated/generated-backend-types.d.ts.map +1 -0
- package/lib/generated/index.d.ts +2 -0
- package/lib/generated/index.d.ts.map +1 -0
- package/lib/models/building-block-management.model.d.ts +14 -0
- package/lib/models/building-block-management.model.d.ts.map +1 -0
- package/lib/models/case-management.model.d.ts +2 -0
- package/lib/models/case-management.model.d.ts.map +1 -1
- package/lib/models/index.d.ts +2 -2
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/management.model.d.ts +1 -1
- package/lib/models/management.model.d.ts.map +1 -1
- package/lib/models/search.model.d.ts +1 -1
- package/lib/models/search.model.d.ts.map +1 -1
- package/lib/models/tag-color.model.d.ts +1 -2
- package/lib/models/tag-color.model.d.ts.map +1 -1
- package/lib/services/edit-permissions.service.d.ts +2 -1
- package/lib/services/edit-permissions.service.d.ts.map +1 -1
- package/lib/utils/route-params.utils.d.ts +3 -2
- package/lib/utils/route-params.utils.d.ts.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
- package/public-api.d.ts.map +1 -1
- package/assets/core/de.json +0 -2284
- package/lib/models/condition.model.d.ts +0 -15
- package/lib/models/condition.model.d.ts.map +0 -1
|
@@ -114,6 +114,19 @@ const getCaseManagementRouteParams = (route, doFilter = false) => {
|
|
|
114
114
|
return null;
|
|
115
115
|
}), filter((params) => (doFilter ? params !== null : true)), distinctUntilChanged((previous, current) => isEqual(previous, current)));
|
|
116
116
|
};
|
|
117
|
+
const getBuildingBlockManagementRouteParams = (route, doFilter = false) => {
|
|
118
|
+
const rootParams$ = route.params ? route.params : of({});
|
|
119
|
+
const parentParams$ = route.parent?.params ? route.parent.params : of({});
|
|
120
|
+
return combineLatest([rootParams$, parentParams$]).pipe(map(([rootParams, parentParams]) => {
|
|
121
|
+
const buildingBlockDefinitionKey = rootParams['buildingBlockDefinitionKey'] || parentParams['buildingBlockDefinitionKey'];
|
|
122
|
+
const buildingBlockDefinitionVersionTag = rootParams['buildingBlockDefinitionVersionTag'] ||
|
|
123
|
+
parentParams['buildingBlockDefinitionVersionTag'];
|
|
124
|
+
if (buildingBlockDefinitionKey && buildingBlockDefinitionVersionTag) {
|
|
125
|
+
return { buildingBlockDefinitionKey, buildingBlockDefinitionVersionTag };
|
|
126
|
+
}
|
|
127
|
+
return null;
|
|
128
|
+
}), filter((params) => doFilter ? params !== null : true), distinctUntilChanged((previous, current) => isEqual(previous, current)));
|
|
129
|
+
};
|
|
117
130
|
function getContextObservable(route) {
|
|
118
131
|
return route.data.pipe(map(data => (data && data['context']) || null), distinctUntilChanged());
|
|
119
132
|
}
|
|
@@ -686,7 +699,6 @@ var TagColor;
|
|
|
686
699
|
TagColor["CoolGray"] = "COOLGRAY";
|
|
687
700
|
TagColor["HighContrast"] = "HIGHCONTRAST";
|
|
688
701
|
TagColor["Outline"] = "OUTLINE";
|
|
689
|
-
TagColor["Orange"] = "ORANGE";
|
|
690
702
|
})(TagColor || (TagColor = {}));
|
|
691
703
|
|
|
692
704
|
/*
|
|
@@ -737,15 +749,21 @@ var TagColor;
|
|
|
737
749
|
* limitations under the License.
|
|
738
750
|
*/
|
|
739
751
|
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
752
|
+
/*
|
|
753
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
754
|
+
*
|
|
755
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
756
|
+
* you may not use this file except in compliance with the License.
|
|
757
|
+
* You may obtain a copy of the License at
|
|
758
|
+
*
|
|
759
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
760
|
+
*
|
|
761
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
762
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
763
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
764
|
+
* See the License for the specific language governing permissions and
|
|
765
|
+
* limitations under the License.
|
|
766
|
+
*/
|
|
749
767
|
|
|
750
768
|
/*
|
|
751
769
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
@@ -844,10 +862,10 @@ class ConfigService {
|
|
|
844
862
|
getFeatureToggle(featureToggle) {
|
|
845
863
|
return !!(this.featureToggles && this.featureToggles[featureToggle]);
|
|
846
864
|
}
|
|
847
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
848
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
865
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ConfigService, deps: [{ token: VALTIMO_CONFIG }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
866
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
|
|
849
867
|
}
|
|
850
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
868
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ConfigService, decorators: [{
|
|
851
869
|
type: Injectable,
|
|
852
870
|
args: [{
|
|
853
871
|
providedIn: 'root',
|
|
@@ -944,10 +962,10 @@ class GlobalNotificationService {
|
|
|
944
962
|
return;
|
|
945
963
|
this._notificationQueue.splice(index, 1);
|
|
946
964
|
}
|
|
947
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
948
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
965
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GlobalNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
966
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GlobalNotificationService, providedIn: 'root' }); }
|
|
949
967
|
}
|
|
950
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
968
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GlobalNotificationService, decorators: [{
|
|
951
969
|
type: Injectable,
|
|
952
970
|
args: [{
|
|
953
971
|
providedIn: 'root',
|
|
@@ -994,10 +1012,10 @@ class LocalizationService {
|
|
|
994
1012
|
updateLocalizations(updatedLocalizations) {
|
|
995
1013
|
return this.http.put(`${this.valtimoApiUri}management/v1/localization`, updatedLocalizations);
|
|
996
1014
|
}
|
|
997
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
998
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1015
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: LocalizationService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1016
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: LocalizationService, providedIn: 'root' }); }
|
|
999
1017
|
}
|
|
1000
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1018
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: LocalizationService, decorators: [{
|
|
1001
1019
|
type: Injectable,
|
|
1002
1020
|
args: [{
|
|
1003
1021
|
providedIn: 'root',
|
|
@@ -1032,10 +1050,10 @@ class MenuIncludeService {
|
|
|
1032
1050
|
return of(true);
|
|
1033
1051
|
}
|
|
1034
1052
|
}
|
|
1035
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1036
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1053
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MenuIncludeService, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1054
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MenuIncludeService, providedIn: 'root' }); }
|
|
1037
1055
|
}
|
|
1038
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MenuIncludeService, decorators: [{
|
|
1039
1057
|
type: Injectable,
|
|
1040
1058
|
args: [{
|
|
1041
1059
|
providedIn: 'root',
|
|
@@ -1069,10 +1087,10 @@ class UserSettingsService {
|
|
|
1069
1087
|
saveUserSettings(settings) {
|
|
1070
1088
|
return this.http.put(`${this.valtimoApiUri}v1/user/settings`, settings);
|
|
1071
1089
|
}
|
|
1072
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1073
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1090
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: UserSettingsService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1091
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: UserSettingsService, providedIn: 'root' }); }
|
|
1074
1092
|
}
|
|
1075
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: UserSettingsService, decorators: [{
|
|
1076
1094
|
type: Injectable,
|
|
1077
1095
|
args: [{
|
|
1078
1096
|
providedIn: 'root',
|
|
@@ -1095,7 +1113,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImpo
|
|
|
1095
1113
|
* limitations under the License.
|
|
1096
1114
|
*/
|
|
1097
1115
|
const VERSIONS = {
|
|
1098
|
-
frontendLibraries: '13.
|
|
1116
|
+
frontendLibraries: '13.14.0',
|
|
1099
1117
|
};
|
|
1100
1118
|
|
|
1101
1119
|
/*
|
|
@@ -1184,6 +1202,23 @@ const CASE_CONFIGURATION_EXTENSIONS_TOKEN = new InjectionToken('Specify componen
|
|
|
1184
1202
|
*/
|
|
1185
1203
|
const IKO_TOKEN = new InjectionToken('IKO is enabled when this token is provided');
|
|
1186
1204
|
|
|
1205
|
+
/*
|
|
1206
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
1207
|
+
*
|
|
1208
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
1209
|
+
* you may not use this file except in compliance with the License.
|
|
1210
|
+
* You may obtain a copy of the License at
|
|
1211
|
+
*
|
|
1212
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
1213
|
+
*
|
|
1214
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
1215
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
1216
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1217
|
+
* See the License for the specific language governing permissions and
|
|
1218
|
+
* limitations under the License.
|
|
1219
|
+
*/
|
|
1220
|
+
const BUILDING_BLOCK_MANAGEMENT_TAB_TOKEN = new InjectionToken('Specify components to display as tabs on the building block management detail page.');
|
|
1221
|
+
|
|
1187
1222
|
/*
|
|
1188
1223
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
1189
1224
|
*
|
|
@@ -1228,10 +1263,10 @@ class EnvironmentService extends BaseApiService {
|
|
|
1228
1263
|
})
|
|
1229
1264
|
.pipe(map(response => response.canUpdateGlobalConfiguration), catchError(() => of(true)));
|
|
1230
1265
|
}
|
|
1231
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1232
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1266
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: EnvironmentService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1267
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
|
|
1233
1268
|
}
|
|
1234
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1269
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: EnvironmentService, decorators: [{
|
|
1235
1270
|
type: Injectable,
|
|
1236
1271
|
args: [{
|
|
1237
1272
|
providedIn: 'root',
|
|
@@ -1269,10 +1304,10 @@ class DraftVersionService extends BaseApiService {
|
|
|
1269
1304
|
})
|
|
1270
1305
|
.pipe(map(caseDefinition => !caseDefinition.final));
|
|
1271
1306
|
}
|
|
1272
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1273
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1307
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: DraftVersionService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1308
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: DraftVersionService, providedIn: 'root' }); }
|
|
1274
1309
|
}
|
|
1275
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: DraftVersionService, decorators: [{
|
|
1276
1311
|
type: Injectable,
|
|
1277
1312
|
args: [{
|
|
1278
1313
|
providedIn: 'root',
|
|
@@ -1308,19 +1343,23 @@ class EditPermissionsService extends BaseApiService {
|
|
|
1308
1343
|
this.draftVersionService.isDraftVersion(caseDefinitionKey, caseDefinitionVersionTag),
|
|
1309
1344
|
]).pipe(map(([canUpdate, isDraftVersion]) => canUpdate && isDraftVersion));
|
|
1310
1345
|
}
|
|
1311
|
-
hasPermissionsToEditBasedOnContext(
|
|
1346
|
+
hasPermissionsToEditBasedOnContext(params, context) {
|
|
1312
1347
|
if (context === 'case') {
|
|
1313
|
-
|
|
1348
|
+
const caseManagementParams = params;
|
|
1349
|
+
return this.hasEditPermissions(caseManagementParams.caseDefinitionKey, caseManagementParams.caseDefinitionVersionTag);
|
|
1314
1350
|
}
|
|
1315
1351
|
else if (context === 'independent') {
|
|
1316
1352
|
return this.environmentService.canUpdateGlobalConfiguration();
|
|
1317
1353
|
}
|
|
1354
|
+
else if (context === 'buildingBlock') {
|
|
1355
|
+
return of(true);
|
|
1356
|
+
}
|
|
1318
1357
|
return of(false);
|
|
1319
1358
|
}
|
|
1320
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1321
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1359
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: EditPermissionsService, deps: [{ token: i1.HttpClient }, { token: ConfigService }, { token: EnvironmentService }, { token: DraftVersionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1360
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: EditPermissionsService, providedIn: 'root' }); }
|
|
1322
1361
|
}
|
|
1323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: EditPermissionsService, decorators: [{
|
|
1324
1363
|
type: Injectable,
|
|
1325
1364
|
args: [{
|
|
1326
1365
|
providedIn: 'root',
|
|
@@ -1366,10 +1405,10 @@ class GlobalNotificationComponent {
|
|
|
1366
1405
|
ngOnInit() {
|
|
1367
1406
|
this.globalNotificationService.setNotificationService(this.notificationService);
|
|
1368
1407
|
}
|
|
1369
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1370
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1408
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GlobalNotificationComponent, deps: [{ token: GlobalNotificationService }, { token: i2.NotificationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1409
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", 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 }] }); }
|
|
1371
1410
|
}
|
|
1372
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1411
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: GlobalNotificationComponent, decorators: [{
|
|
1373
1412
|
type: Component,
|
|
1374
1413
|
args: [{ selector: 'valtimo-global-notification', template: ``, providers: [NotificationService], standalone: true, imports: [CommonModule], styles: ["::ng-deep .cds--toast-notification{width:100%}\n"] }]
|
|
1375
1414
|
}], ctorParameters: () => [{ type: GlobalNotificationService }, { type: i2.NotificationService }] });
|
|
@@ -1401,10 +1440,10 @@ class ExtensionComponent {
|
|
|
1401
1440
|
this.configService.loadExtensionPoint(this.viewContainerRef, extension.extensionPoint);
|
|
1402
1441
|
});
|
|
1403
1442
|
}
|
|
1404
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1405
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1443
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ExtensionComponent, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1444
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.18", 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: [""] }); }
|
|
1406
1445
|
}
|
|
1407
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1446
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ExtensionComponent, decorators: [{
|
|
1408
1447
|
type: Component,
|
|
1409
1448
|
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" }]
|
|
1410
1449
|
}], ctorParameters: () => [{ type: ConfigService }], propDecorators: { module: [{
|
|
@@ -1446,11 +1485,11 @@ class ConfigModule {
|
|
|
1446
1485
|
],
|
|
1447
1486
|
};
|
|
1448
1487
|
}
|
|
1449
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1450
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
1451
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
1488
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1489
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: ConfigModule, declarations: [ExtensionComponent], exports: [ExtensionComponent] }); }
|
|
1490
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ConfigModule }); }
|
|
1452
1491
|
}
|
|
1453
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1492
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ConfigModule, decorators: [{
|
|
1454
1493
|
type: NgModule,
|
|
1455
1494
|
args: [{
|
|
1456
1495
|
declarations: [ExtensionComponent],
|
|
@@ -1481,10 +1520,10 @@ class MockTranslateService {
|
|
|
1481
1520
|
instant(key) {
|
|
1482
1521
|
return '';
|
|
1483
1522
|
}
|
|
1484
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1485
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1523
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MockTranslateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1524
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MockTranslateService, providedIn: 'root' }); }
|
|
1486
1525
|
}
|
|
1487
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MockTranslateService, decorators: [{
|
|
1488
1527
|
type: Injectable,
|
|
1489
1528
|
args: [{
|
|
1490
1529
|
providedIn: 'root',
|
|
@@ -1529,10 +1568,10 @@ class MockKeycloakService {
|
|
|
1529
1568
|
async loadUserProfile() {
|
|
1530
1569
|
return this.MOCK_USER_PROFILE;
|
|
1531
1570
|
}
|
|
1532
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1533
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1571
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MockKeycloakService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1572
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MockKeycloakService, providedIn: 'root' }); }
|
|
1534
1573
|
}
|
|
1535
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MockKeycloakService, decorators: [{
|
|
1536
1575
|
type: Injectable,
|
|
1537
1576
|
args: [{
|
|
1538
1577
|
providedIn: 'root',
|
|
@@ -1558,10 +1597,10 @@ class MockIconService {
|
|
|
1558
1597
|
registerAll(value) {
|
|
1559
1598
|
return;
|
|
1560
1599
|
}
|
|
1561
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1562
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1600
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MockIconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1601
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MockIconService, providedIn: 'root' }); }
|
|
1563
1602
|
}
|
|
1564
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1603
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: MockIconService, decorators: [{
|
|
1565
1604
|
type: Injectable,
|
|
1566
1605
|
args: [{
|
|
1567
1606
|
providedIn: 'root',
|
|
@@ -1779,6 +1818,10 @@ const ZGW_DOCUMENTEN_API_DOCUMENTS_COMPONENT_TOKEN = new InjectionToken('Specify
|
|
|
1779
1818
|
* limitations under the License.
|
|
1780
1819
|
*/
|
|
1781
1820
|
|
|
1821
|
+
/* tslint:disable */
|
|
1822
|
+
/* eslint-disable */
|
|
1823
|
+
// Generated using typescript-generator version 3.2.1263 on 2026-01-09 14:46:00.
|
|
1824
|
+
|
|
1782
1825
|
/*
|
|
1783
1826
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
1784
1827
|
*
|
|
@@ -1802,5 +1845,5 @@ const ZGW_DOCUMENTEN_API_DOCUMENTS_COMPONENT_TOKEN = new InjectionToken('Specify
|
|
|
1802
1845
|
* Generated bundle index. Do not edit.
|
|
1803
1846
|
*/
|
|
1804
1847
|
|
|
1805
|
-
export { BaseApiService, BasicExtensionPoint, CASE_CONFIGURATION_EXTENSIONS_TOKEN, CASE_MANAGEMENT_TAB_TOKEN, CaseListTab, ConfigModule, ConfigService, CustomMultiTranslateHttpLoader, CustomMultiTranslateHttpLoaderFactory, DEFAULT_NOTIFICATION_PARAMS, DraftVersionService, EditPermissionsService, EnvironmentService, Extension, ExtensionComponent, ExtensionLoader, FORM_VIEW_MODEL_TOKEN, GlobalNotificationComponent, GlobalNotificationService, HttpLoaderFactory, IKO_TOKEN, INITIALIZERS, IncludeFunction, InterceptorSkip, InterceptorSkipHeader, Language, LocalizationService, MenuIncludeService, MockIconService, MockKeycloakService, MockTranslateService, MultiTranslateHttpLoaderFactory,
|
|
1848
|
+
export { BUILDING_BLOCK_MANAGEMENT_TAB_TOKEN, BaseApiService, BasicExtensionPoint, CASE_CONFIGURATION_EXTENSIONS_TOKEN, CASE_MANAGEMENT_TAB_TOKEN, CaseListTab, ConfigModule, ConfigService, CustomMultiTranslateHttpLoader, CustomMultiTranslateHttpLoaderFactory, DEFAULT_NOTIFICATION_PARAMS, DraftVersionService, EditPermissionsService, EnvironmentService, Extension, ExtensionComponent, ExtensionLoader, FORM_VIEW_MODEL_TOKEN, GlobalNotificationComponent, GlobalNotificationService, HttpLoaderFactory, IKO_TOKEN, INITIALIZERS, IncludeFunction, InterceptorSkip, InterceptorSkipHeader, Language, LocalizationService, MenuIncludeService, MockIconService, MockKeycloakService, MockTranslateService, MultiTranslateHttpLoaderFactory, ROLE_ADMIN, ROLE_DEVELOPER, ROLE_USER, RouterUtils, TagColor, TaskListTab, UploadProvider, UrlUtils, UserSettingsService, VALTIMO_CONFIG, VERSIONS, ValtimoUserIdentity, ZGW_DOCUMENTEN_API_DOCUMENTS_COMPONENT_TOKEN, ZGW_OBJECT_TYPE_COMPONENT_TOKEN, getBuildingBlockManagementRouteParams, getCaseManagementRouteParams, getCaseManagementRouteParamsAndContext, getContextObservable, getDisplayTypeParametersView, getNotificationObject, validateBsn };
|
|
1806
1849
|
//# sourceMappingURL=valtimo-shared.mjs.map
|