@valtimo/shared 13.1.3 → 13.2.1
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 +82 -16
- package/assets/core/en.json +82 -10
- package/assets/core/nl.json +83 -11
- package/fesm2022/valtimo-shared.mjs +143 -45
- package/fesm2022/valtimo-shared.mjs.map +1 -1
- package/lib/constants/iko.token.d.ts +4 -0
- package/lib/constants/iko.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/models/display-type.model.d.ts +13 -0
- package/lib/models/display-type.model.d.ts.map +1 -0
- package/lib/models/index.d.ts +2 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/modal.model.d.ts +4 -0
- package/lib/models/modal.model.d.ts.map +1 -0
- package/lib/services/edit-permissions.service.d.ts.map +1 -1
- package/lib/utils/display-type.utils.d.ts +4 -0
- package/lib/utils/display-type.utils.d.ts.map +1 -0
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -132,6 +132,40 @@ function getCaseManagementRouteParamsAndContext(route) {
|
|
|
132
132
|
}));
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
+
/*
|
|
136
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
137
|
+
*
|
|
138
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
139
|
+
* you may not use this file except in compliance with the License.
|
|
140
|
+
* You may obtain a copy of the License at
|
|
141
|
+
*
|
|
142
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
143
|
+
*
|
|
144
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
145
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
146
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
147
|
+
* See the License for the specific language governing permissions and
|
|
148
|
+
* limitations under the License.
|
|
149
|
+
*/
|
|
150
|
+
const getDisplayTypeParametersView = (displayTypeParameters) => {
|
|
151
|
+
if (displayTypeParameters?.dateFormat) {
|
|
152
|
+
return displayTypeParameters.dateFormat;
|
|
153
|
+
}
|
|
154
|
+
else if (displayTypeParameters?.tagAmount) {
|
|
155
|
+
return displayTypeParameters.tagAmount.toString();
|
|
156
|
+
}
|
|
157
|
+
else if (displayTypeParameters?.enum) {
|
|
158
|
+
return Object.keys(displayTypeParameters.enum).reduce((acc, curr) => {
|
|
159
|
+
const keyValuePairString = `${curr}: ${displayTypeParameters.enum?.[curr]}`;
|
|
160
|
+
if (!acc) {
|
|
161
|
+
return `${keyValuePairString}`;
|
|
162
|
+
}
|
|
163
|
+
return `${acc}, ${keyValuePairString}`;
|
|
164
|
+
}, '');
|
|
165
|
+
}
|
|
166
|
+
return '-';
|
|
167
|
+
};
|
|
168
|
+
|
|
135
169
|
/*
|
|
136
170
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
137
171
|
*
|
|
@@ -642,6 +676,38 @@ var TagColor;
|
|
|
642
676
|
* limitations under the License.
|
|
643
677
|
*/
|
|
644
678
|
|
|
679
|
+
/*
|
|
680
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
681
|
+
*
|
|
682
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
683
|
+
* you may not use this file except in compliance with the License.
|
|
684
|
+
* You may obtain a copy of the License at
|
|
685
|
+
*
|
|
686
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
687
|
+
*
|
|
688
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
689
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
690
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
691
|
+
* See the License for the specific language governing permissions and
|
|
692
|
+
* limitations under the License.
|
|
693
|
+
*/
|
|
694
|
+
|
|
695
|
+
/*
|
|
696
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
697
|
+
*
|
|
698
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
699
|
+
* you may not use this file except in compliance with the License.
|
|
700
|
+
* You may obtain a copy of the License at
|
|
701
|
+
*
|
|
702
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
703
|
+
*
|
|
704
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
705
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
706
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
707
|
+
* See the License for the specific language governing permissions and
|
|
708
|
+
* limitations under the License.
|
|
709
|
+
*/
|
|
710
|
+
|
|
645
711
|
/*
|
|
646
712
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
647
713
|
*
|
|
@@ -723,10 +789,10 @@ class ConfigService {
|
|
|
723
789
|
getFeatureToggle(featureToggle) {
|
|
724
790
|
return !!(this.featureToggles && this.featureToggles[featureToggle]);
|
|
725
791
|
}
|
|
726
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
727
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
792
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigService, deps: [{ token: VALTIMO_CONFIG }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
793
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
|
|
728
794
|
}
|
|
729
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigService, decorators: [{
|
|
730
796
|
type: Injectable,
|
|
731
797
|
args: [{
|
|
732
798
|
providedIn: 'root',
|
|
@@ -823,10 +889,10 @@ class GlobalNotificationService {
|
|
|
823
889
|
return;
|
|
824
890
|
this._notificationQueue.splice(index, 1);
|
|
825
891
|
}
|
|
826
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
827
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
892
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GlobalNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
893
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GlobalNotificationService, providedIn: 'root' }); }
|
|
828
894
|
}
|
|
829
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GlobalNotificationService, decorators: [{
|
|
830
896
|
type: Injectable,
|
|
831
897
|
args: [{
|
|
832
898
|
providedIn: 'root',
|
|
@@ -873,10 +939,10 @@ class LocalizationService {
|
|
|
873
939
|
updateLocalizations(updatedLocalizations) {
|
|
874
940
|
return this.http.put(`${this.valtimoApiUri}management/v1/localization`, updatedLocalizations);
|
|
875
941
|
}
|
|
876
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
877
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
942
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocalizationService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
943
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocalizationService, providedIn: 'root' }); }
|
|
878
944
|
}
|
|
879
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocalizationService, decorators: [{
|
|
880
946
|
type: Injectable,
|
|
881
947
|
args: [{
|
|
882
948
|
providedIn: 'root',
|
|
@@ -911,10 +977,10 @@ class MenuIncludeService {
|
|
|
911
977
|
return of(true);
|
|
912
978
|
}
|
|
913
979
|
}
|
|
914
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
915
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
980
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MenuIncludeService, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
981
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MenuIncludeService, providedIn: 'root' }); }
|
|
916
982
|
}
|
|
917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
983
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MenuIncludeService, decorators: [{
|
|
918
984
|
type: Injectable,
|
|
919
985
|
args: [{
|
|
920
986
|
providedIn: 'root',
|
|
@@ -948,10 +1014,10 @@ class UserSettingsService {
|
|
|
948
1014
|
saveUserSettings(settings) {
|
|
949
1015
|
return this.http.put(`${this.valtimoApiUri}v1/user/settings`, settings);
|
|
950
1016
|
}
|
|
951
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
952
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1017
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserSettingsService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1018
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserSettingsService, providedIn: 'root' }); }
|
|
953
1019
|
}
|
|
954
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1020
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserSettingsService, decorators: [{
|
|
955
1021
|
type: Injectable,
|
|
956
1022
|
args: [{
|
|
957
1023
|
providedIn: 'root',
|
|
@@ -974,7 +1040,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
974
1040
|
* limitations under the License.
|
|
975
1041
|
*/
|
|
976
1042
|
const VERSIONS = {
|
|
977
|
-
frontendLibraries: '13.1
|
|
1043
|
+
frontendLibraries: '13.2.1',
|
|
978
1044
|
};
|
|
979
1045
|
|
|
980
1046
|
/*
|
|
@@ -1046,6 +1112,23 @@ const InterceptorSkipHeader = new HttpHeaders().set(InterceptorSkip, 'all');
|
|
|
1046
1112
|
*/
|
|
1047
1113
|
const CASE_CONFIGURATION_EXTENSIONS_TOKEN = new InjectionToken('Specify components to display on on the case management general page.');
|
|
1048
1114
|
|
|
1115
|
+
/*
|
|
1116
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
1117
|
+
*
|
|
1118
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
1119
|
+
* you may not use this file except in compliance with the License.
|
|
1120
|
+
* You may obtain a copy of the License at
|
|
1121
|
+
*
|
|
1122
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
1123
|
+
*
|
|
1124
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
1125
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
1126
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1127
|
+
* See the License for the specific language governing permissions and
|
|
1128
|
+
* limitations under the License.
|
|
1129
|
+
*/
|
|
1130
|
+
const IKO_TOKEN = new InjectionToken('IKO is enabled when this token is provided');
|
|
1131
|
+
|
|
1049
1132
|
/*
|
|
1050
1133
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
1051
1134
|
*
|
|
@@ -1090,10 +1173,10 @@ class EnvironmentService extends BaseApiService {
|
|
|
1090
1173
|
})
|
|
1091
1174
|
.pipe(map(response => response.canUpdateGlobalConfiguration), catchError(() => of(true)));
|
|
1092
1175
|
}
|
|
1093
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1094
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1176
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EnvironmentService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1177
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
|
|
1095
1178
|
}
|
|
1096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EnvironmentService, decorators: [{
|
|
1097
1180
|
type: Injectable,
|
|
1098
1181
|
args: [{
|
|
1099
1182
|
providedIn: 'root',
|
|
@@ -1131,16 +1214,31 @@ class DraftVersionService extends BaseApiService {
|
|
|
1131
1214
|
})
|
|
1132
1215
|
.pipe(map(caseDefinition => !caseDefinition.final));
|
|
1133
1216
|
}
|
|
1134
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1135
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1217
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DraftVersionService, deps: [{ token: i1.HttpClient }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1218
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DraftVersionService, providedIn: 'root' }); }
|
|
1136
1219
|
}
|
|
1137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1220
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DraftVersionService, decorators: [{
|
|
1138
1221
|
type: Injectable,
|
|
1139
1222
|
args: [{
|
|
1140
1223
|
providedIn: 'root',
|
|
1141
1224
|
}]
|
|
1142
1225
|
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: ConfigService }] });
|
|
1143
1226
|
|
|
1227
|
+
/*
|
|
1228
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
1229
|
+
*
|
|
1230
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
1231
|
+
* you may not use this file except in compliance with the License.
|
|
1232
|
+
* You may obtain a copy of the License at
|
|
1233
|
+
*
|
|
1234
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
1235
|
+
*
|
|
1236
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
1237
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
1238
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1239
|
+
* See the License for the specific language governing permissions and
|
|
1240
|
+
* limitations under the License.
|
|
1241
|
+
*/
|
|
1144
1242
|
class EditPermissionsService extends BaseApiService {
|
|
1145
1243
|
constructor(httpClient, configService, environmentService, draftVersionService) {
|
|
1146
1244
|
super(httpClient, configService);
|
|
@@ -1164,10 +1262,10 @@ class EditPermissionsService extends BaseApiService {
|
|
|
1164
1262
|
}
|
|
1165
1263
|
return of(false);
|
|
1166
1264
|
}
|
|
1167
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1168
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1265
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EditPermissionsService, deps: [{ token: i1.HttpClient }, { token: ConfigService }, { token: EnvironmentService }, { token: DraftVersionService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1266
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EditPermissionsService, providedIn: 'root' }); }
|
|
1169
1267
|
}
|
|
1170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1268
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EditPermissionsService, decorators: [{
|
|
1171
1269
|
type: Injectable,
|
|
1172
1270
|
args: [{
|
|
1173
1271
|
providedIn: 'root',
|
|
@@ -1213,10 +1311,10 @@ class GlobalNotificationComponent {
|
|
|
1213
1311
|
ngOnInit() {
|
|
1214
1312
|
this.globalNotificationService.setNotificationService(this.notificationService);
|
|
1215
1313
|
}
|
|
1216
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1217
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1314
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GlobalNotificationComponent, deps: [{ token: GlobalNotificationService }, { token: i2.NotificationService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1315
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", 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 }] }); }
|
|
1218
1316
|
}
|
|
1219
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GlobalNotificationComponent, decorators: [{
|
|
1220
1318
|
type: Component,
|
|
1221
1319
|
args: [{ selector: 'valtimo-global-notification', template: ``, providers: [NotificationService], standalone: true, imports: [CommonModule], styles: ["::ng-deep .cds--toast-notification{width:100%}\n"] }]
|
|
1222
1320
|
}], ctorParameters: () => [{ type: GlobalNotificationService }, { type: i2.NotificationService }] });
|
|
@@ -1248,10 +1346,10 @@ class ExtensionComponent {
|
|
|
1248
1346
|
this.configService.loadExtensionPoint(this.viewContainerRef, extension.extensionPoint);
|
|
1249
1347
|
});
|
|
1250
1348
|
}
|
|
1251
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1252
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.
|
|
1349
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ExtensionComponent, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1350
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", 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: [""] }); }
|
|
1253
1351
|
}
|
|
1254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1352
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ExtensionComponent, decorators: [{
|
|
1255
1353
|
type: Component,
|
|
1256
1354
|
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" }]
|
|
1257
1355
|
}], ctorParameters: () => [{ type: ConfigService }], propDecorators: { module: [{
|
|
@@ -1293,11 +1391,11 @@ class ConfigModule {
|
|
|
1293
1391
|
],
|
|
1294
1392
|
};
|
|
1295
1393
|
}
|
|
1296
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1297
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.
|
|
1298
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.
|
|
1394
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1395
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: ConfigModule, declarations: [ExtensionComponent], exports: [ExtensionComponent] }); }
|
|
1396
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigModule }); }
|
|
1299
1397
|
}
|
|
1300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigModule, decorators: [{
|
|
1301
1399
|
type: NgModule,
|
|
1302
1400
|
args: [{
|
|
1303
1401
|
declarations: [ExtensionComponent],
|
|
@@ -1328,10 +1426,10 @@ class MockTranslateService {
|
|
|
1328
1426
|
instant(key) {
|
|
1329
1427
|
return '';
|
|
1330
1428
|
}
|
|
1331
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1332
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1429
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockTranslateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1430
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockTranslateService, providedIn: 'root' }); }
|
|
1333
1431
|
}
|
|
1334
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1432
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockTranslateService, decorators: [{
|
|
1335
1433
|
type: Injectable,
|
|
1336
1434
|
args: [{
|
|
1337
1435
|
providedIn: 'root',
|
|
@@ -1376,10 +1474,10 @@ class MockKeycloakService {
|
|
|
1376
1474
|
async loadUserProfile() {
|
|
1377
1475
|
return this.MOCK_USER_PROFILE;
|
|
1378
1476
|
}
|
|
1379
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1380
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1477
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockKeycloakService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1478
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockKeycloakService, providedIn: 'root' }); }
|
|
1381
1479
|
}
|
|
1382
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1480
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockKeycloakService, decorators: [{
|
|
1383
1481
|
type: Injectable,
|
|
1384
1482
|
args: [{
|
|
1385
1483
|
providedIn: 'root',
|
|
@@ -1405,10 +1503,10 @@ class MockIconService {
|
|
|
1405
1503
|
registerAll(value) {
|
|
1406
1504
|
return;
|
|
1407
1505
|
}
|
|
1408
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.
|
|
1409
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.
|
|
1506
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockIconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1507
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockIconService, providedIn: 'root' }); }
|
|
1410
1508
|
}
|
|
1411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1509
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockIconService, decorators: [{
|
|
1412
1510
|
type: Injectable,
|
|
1413
1511
|
args: [{
|
|
1414
1512
|
providedIn: 'root',
|
|
@@ -1649,5 +1747,5 @@ const ZGW_DOCUMENTEN_API_DOCUMENTS_COMPONENT_TOKEN = new InjectionToken('Specify
|
|
|
1649
1747
|
* Generated bundle index. Do not edit.
|
|
1650
1748
|
*/
|
|
1651
1749
|
|
|
1652
|
-
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, 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, getCaseManagementRouteParams, getCaseManagementRouteParamsAndContext, getContextObservable, getNotificationObject };
|
|
1750
|
+
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, 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 };
|
|
1653
1751
|
//# sourceMappingURL=valtimo-shared.mjs.map
|