@valtimo/shared 13.4.1 → 13.5.0-release-0.0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/core/de.json +284 -1
- package/assets/core/en.json +330 -7
- package/assets/core/nl.json +334 -8
- package/fesm2022/valtimo-shared.mjs +91 -46
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/lib/models/config.d.ts +1 -2
- package/lib/models/config.d.ts.map +1 -1
- package/lib/models/menu-item.model.d.ts +2 -2
- package/lib/models/menu-item.model.d.ts.map +1 -1
- package/lib/models/page.d.ts +1 -0
- package/lib/models/page.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/utils/index.d.ts +1 -0
- package/lib/utils/index.d.ts.map +1 -1
- package/lib/utils/validate-bsn.utils.d.ts +6 -0
- package/lib/utils/validate-bsn.utils.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -166,6 +166,52 @@ const getDisplayTypeParametersView = (displayTypeParameters) => {
|
|
|
166
166
|
return '-';
|
|
167
167
|
};
|
|
168
168
|
|
|
169
|
+
/*
|
|
170
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
171
|
+
*
|
|
172
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
173
|
+
* you may not use this file except in compliance with the License.
|
|
174
|
+
* You may obtain a copy of the License at
|
|
175
|
+
*
|
|
176
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
177
|
+
*
|
|
178
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
179
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
180
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
181
|
+
* See the License for the specific language governing permissions and
|
|
182
|
+
* limitations under the License.
|
|
183
|
+
*/
|
|
184
|
+
const validateBsn = (value) => {
|
|
185
|
+
const baseKey = 'interface.dataValidation.bsnValidator';
|
|
186
|
+
if (!value) {
|
|
187
|
+
return { isValid: false, errorKey: `${baseKey}.valueEmpty` };
|
|
188
|
+
}
|
|
189
|
+
const trimmed = value.toString().trim();
|
|
190
|
+
if (!/^\d+$/.test(trimmed)) {
|
|
191
|
+
return { isValid: false, errorKey: `${baseKey}.valueOnlyDigits` };
|
|
192
|
+
}
|
|
193
|
+
if (trimmed.length < 8 || trimmed.length > 9) {
|
|
194
|
+
return { isValid: false, errorKey: `${baseKey}.valueMinLength` };
|
|
195
|
+
}
|
|
196
|
+
if (trimmed.length > 9) {
|
|
197
|
+
return { isValid: false, errorKey: `${baseKey}.valueMaxLength` };
|
|
198
|
+
}
|
|
199
|
+
if (/^0+$/.test(trimmed) || /^9+$/.test(trimmed)) {
|
|
200
|
+
return { isValid: false, errorKey: `${baseKey}.valueAllZerosOrNines` };
|
|
201
|
+
}
|
|
202
|
+
const digits = trimmed.split('').map(d => parseInt(d, 10));
|
|
203
|
+
let sum = 0;
|
|
204
|
+
const length = digits.length;
|
|
205
|
+
for (let i = 0; i < length; i++) {
|
|
206
|
+
const weight = i === length - 1 ? -1 : length - i;
|
|
207
|
+
sum += digits[i] * weight;
|
|
208
|
+
}
|
|
209
|
+
if (sum % 11 !== 0) {
|
|
210
|
+
return { isValid: false, errorKey: `${baseKey}.valueElfCheck` };
|
|
211
|
+
}
|
|
212
|
+
return { isValid: true, errorKey: null };
|
|
213
|
+
};
|
|
214
|
+
|
|
169
215
|
/*
|
|
170
216
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
171
217
|
*
|
|
@@ -251,7 +297,6 @@ var Language;
|
|
|
251
297
|
(function (Language) {
|
|
252
298
|
Language["NL"] = "nl";
|
|
253
299
|
Language["EN"] = "en";
|
|
254
|
-
Language["DE"] = "de";
|
|
255
300
|
})(Language || (Language = {}));
|
|
256
301
|
|
|
257
302
|
/*
|
|
@@ -799,10 +844,10 @@ class ConfigService {
|
|
|
799
844
|
getFeatureToggle(featureToggle) {
|
|
800
845
|
return !!(this.featureToggles && this.featureToggles[featureToggle]);
|
|
801
846
|
}
|
|
802
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
803
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
847
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ConfigService, deps: [{ token: VALTIMO_CONFIG }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
848
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
|
|
804
849
|
}
|
|
805
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
850
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ConfigService, decorators: [{
|
|
806
851
|
type: Injectable,
|
|
807
852
|
args: [{
|
|
808
853
|
providedIn: 'root',
|
|
@@ -899,10 +944,10 @@ class GlobalNotificationService {
|
|
|
899
944
|
return;
|
|
900
945
|
this._notificationQueue.splice(index, 1);
|
|
901
946
|
}
|
|
902
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
903
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
947
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: GlobalNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
948
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: GlobalNotificationService, providedIn: 'root' }); }
|
|
904
949
|
}
|
|
905
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
950
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: GlobalNotificationService, decorators: [{
|
|
906
951
|
type: Injectable,
|
|
907
952
|
args: [{
|
|
908
953
|
providedIn: 'root',
|
|
@@ -949,10 +994,10 @@ class LocalizationService {
|
|
|
949
994
|
updateLocalizations(updatedLocalizations) {
|
|
950
995
|
return this.http.put(`${this.valtimoApiUri}management/v1/localization`, updatedLocalizations);
|
|
951
996
|
}
|
|
952
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
953
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
997
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: LocalizationService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
998
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: LocalizationService, providedIn: 'root' }); }
|
|
954
999
|
}
|
|
955
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1000
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: LocalizationService, decorators: [{
|
|
956
1001
|
type: Injectable,
|
|
957
1002
|
args: [{
|
|
958
1003
|
providedIn: 'root',
|
|
@@ -987,10 +1032,10 @@ class MenuIncludeService {
|
|
|
987
1032
|
return of(true);
|
|
988
1033
|
}
|
|
989
1034
|
}
|
|
990
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
991
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1035
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MenuIncludeService, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1036
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MenuIncludeService, providedIn: 'root' }); }
|
|
992
1037
|
}
|
|
993
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1038
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MenuIncludeService, decorators: [{
|
|
994
1039
|
type: Injectable,
|
|
995
1040
|
args: [{
|
|
996
1041
|
providedIn: 'root',
|
|
@@ -1024,10 +1069,10 @@ class UserSettingsService {
|
|
|
1024
1069
|
saveUserSettings(settings) {
|
|
1025
1070
|
return this.http.put(`${this.valtimoApiUri}v1/user/settings`, settings);
|
|
1026
1071
|
}
|
|
1027
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1028
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1072
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: UserSettingsService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1073
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: UserSettingsService, providedIn: 'root' }); }
|
|
1029
1074
|
}
|
|
1030
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1075
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: UserSettingsService, decorators: [{
|
|
1031
1076
|
type: Injectable,
|
|
1032
1077
|
args: [{
|
|
1033
1078
|
providedIn: 'root',
|
|
@@ -1050,7 +1095,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
1050
1095
|
* limitations under the License.
|
|
1051
1096
|
*/
|
|
1052
1097
|
const VERSIONS = {
|
|
1053
|
-
frontendLibraries: '13.
|
|
1098
|
+
frontendLibraries: '13.5.0-release-0.0.0.3',
|
|
1054
1099
|
};
|
|
1055
1100
|
|
|
1056
1101
|
/*
|
|
@@ -1183,10 +1228,10 @@ class EnvironmentService extends BaseApiService {
|
|
|
1183
1228
|
})
|
|
1184
1229
|
.pipe(map(response => response.canUpdateGlobalConfiguration), catchError(() => of(true)));
|
|
1185
1230
|
}
|
|
1186
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1187
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1231
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: EnvironmentService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1232
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
|
|
1188
1233
|
}
|
|
1189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1234
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: EnvironmentService, decorators: [{
|
|
1190
1235
|
type: Injectable,
|
|
1191
1236
|
args: [{
|
|
1192
1237
|
providedIn: 'root',
|
|
@@ -1224,10 +1269,10 @@ class DraftVersionService extends BaseApiService {
|
|
|
1224
1269
|
})
|
|
1225
1270
|
.pipe(map(caseDefinition => !caseDefinition.final));
|
|
1226
1271
|
}
|
|
1227
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1228
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1272
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: DraftVersionService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1273
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: DraftVersionService, providedIn: 'root' }); }
|
|
1229
1274
|
}
|
|
1230
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: DraftVersionService, decorators: [{
|
|
1231
1276
|
type: Injectable,
|
|
1232
1277
|
args: [{
|
|
1233
1278
|
providedIn: 'root',
|
|
@@ -1272,10 +1317,10 @@ class EditPermissionsService extends BaseApiService {
|
|
|
1272
1317
|
}
|
|
1273
1318
|
return of(false);
|
|
1274
1319
|
}
|
|
1275
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1276
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1320
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: EditPermissionsService, deps: [{ token: i1.HttpClient }, { token: ConfigService }, { token: EnvironmentService }, { token: DraftVersionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1321
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: EditPermissionsService, providedIn: 'root' }); }
|
|
1277
1322
|
}
|
|
1278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: EditPermissionsService, decorators: [{
|
|
1279
1324
|
type: Injectable,
|
|
1280
1325
|
args: [{
|
|
1281
1326
|
providedIn: 'root',
|
|
@@ -1321,10 +1366,10 @@ class GlobalNotificationComponent {
|
|
|
1321
1366
|
ngOnInit() {
|
|
1322
1367
|
this.globalNotificationService.setNotificationService(this.notificationService);
|
|
1323
1368
|
}
|
|
1324
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1325
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1369
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: GlobalNotificationComponent, deps: [{ token: GlobalNotificationService }, { token: i2.NotificationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1370
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.17", 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 }] }); }
|
|
1326
1371
|
}
|
|
1327
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: GlobalNotificationComponent, decorators: [{
|
|
1328
1373
|
type: Component,
|
|
1329
1374
|
args: [{ selector: 'valtimo-global-notification', template: ``, providers: [NotificationService], standalone: true, imports: [CommonModule], styles: ["::ng-deep .cds--toast-notification{width:100%}\n"] }]
|
|
1330
1375
|
}], ctorParameters: () => [{ type: GlobalNotificationService }, { type: i2.NotificationService }] });
|
|
@@ -1356,10 +1401,10 @@ class ExtensionComponent {
|
|
|
1356
1401
|
this.configService.loadExtensionPoint(this.viewContainerRef, extension.extensionPoint);
|
|
1357
1402
|
});
|
|
1358
1403
|
}
|
|
1359
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1360
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1404
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ExtensionComponent, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1405
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.17", 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: [""] }); }
|
|
1361
1406
|
}
|
|
1362
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1407
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ExtensionComponent, decorators: [{
|
|
1363
1408
|
type: Component,
|
|
1364
1409
|
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" }]
|
|
1365
1410
|
}], ctorParameters: () => [{ type: ConfigService }], propDecorators: { module: [{
|
|
@@ -1401,11 +1446,11 @@ class ConfigModule {
|
|
|
1401
1446
|
],
|
|
1402
1447
|
};
|
|
1403
1448
|
}
|
|
1404
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1405
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
1406
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
1449
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1450
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.17", ngImport: i0, type: ConfigModule, declarations: [ExtensionComponent], exports: [ExtensionComponent] }); }
|
|
1451
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ConfigModule }); }
|
|
1407
1452
|
}
|
|
1408
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: ConfigModule, decorators: [{
|
|
1409
1454
|
type: NgModule,
|
|
1410
1455
|
args: [{
|
|
1411
1456
|
declarations: [ExtensionComponent],
|
|
@@ -1436,10 +1481,10 @@ class MockTranslateService {
|
|
|
1436
1481
|
instant(key) {
|
|
1437
1482
|
return '';
|
|
1438
1483
|
}
|
|
1439
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1440
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1484
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MockTranslateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1485
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MockTranslateService, providedIn: 'root' }); }
|
|
1441
1486
|
}
|
|
1442
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MockTranslateService, decorators: [{
|
|
1443
1488
|
type: Injectable,
|
|
1444
1489
|
args: [{
|
|
1445
1490
|
providedIn: 'root',
|
|
@@ -1484,10 +1529,10 @@ class MockKeycloakService {
|
|
|
1484
1529
|
async loadUserProfile() {
|
|
1485
1530
|
return this.MOCK_USER_PROFILE;
|
|
1486
1531
|
}
|
|
1487
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1488
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1532
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MockKeycloakService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1533
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MockKeycloakService, providedIn: 'root' }); }
|
|
1489
1534
|
}
|
|
1490
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1535
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MockKeycloakService, decorators: [{
|
|
1491
1536
|
type: Injectable,
|
|
1492
1537
|
args: [{
|
|
1493
1538
|
providedIn: 'root',
|
|
@@ -1513,10 +1558,10 @@ class MockIconService {
|
|
|
1513
1558
|
registerAll(value) {
|
|
1514
1559
|
return;
|
|
1515
1560
|
}
|
|
1516
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1517
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1561
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MockIconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1562
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MockIconService, providedIn: 'root' }); }
|
|
1518
1563
|
}
|
|
1519
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1564
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.17", ngImport: i0, type: MockIconService, decorators: [{
|
|
1520
1565
|
type: Injectable,
|
|
1521
1566
|
args: [{
|
|
1522
1567
|
providedIn: 'root',
|
|
@@ -1757,5 +1802,5 @@ const ZGW_DOCUMENTEN_API_DOCUMENTS_COMPONENT_TOKEN = new InjectionToken('Specify
|
|
|
1757
1802
|
* Generated bundle index. Do not edit.
|
|
1758
1803
|
*/
|
|
1759
1804
|
|
|
1760
|
-
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, Operator, 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, getCaseManagementRouteParams, getCaseManagementRouteParamsAndContext, getContextObservable, getDisplayTypeParametersView, getNotificationObject };
|
|
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, Operator, 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, getCaseManagementRouteParams, getCaseManagementRouteParamsAndContext, getContextObservable, getDisplayTypeParametersView, getNotificationObject, validateBsn };
|
|
1761
1806
|
//# sourceMappingURL=valtimo-shared.mjs.map
|