@valtimo/shared 13.37.0 → 13.39.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 +95 -27
- package/assets/core/nl.json +103 -35
- package/fesm2022/valtimo-shared.mjs +22 -15
- 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 +1 -1
|
@@ -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
|
/*
|
|
@@ -1141,7 +1146,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", 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:
|
|
@@ -1248,7 +1255,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.25", ngImpo
|
|
|
1248
1255
|
* limitations under the License.
|
|
1249
1256
|
*/
|
|
1250
1257
|
const VERSIONS = {
|
|
1251
|
-
frontendLibraries: '13.
|
|
1258
|
+
frontendLibraries: '13.39.0',
|
|
1252
1259
|
};
|
|
1253
1260
|
|
|
1254
1261
|
/*
|