@valtimo/shared 13.2.0 → 13.3.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/de.json +99 -12
- package/assets/core/en.json +98 -3
- package/assets/core/nl.json +98 -3
- package/fesm2022/valtimo-shared.mjs +153 -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/condition.model.d.ts +15 -0
- package/lib/models/condition.model.d.ts.map +1 -0
- package/lib/models/config.d.ts +1 -0
- package/lib/models/config.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 +3 -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
|
*
|
|
@@ -626,6 +660,48 @@ var TagColor;
|
|
|
626
660
|
* limitations under the License.
|
|
627
661
|
*/
|
|
628
662
|
|
|
663
|
+
/*
|
|
664
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
665
|
+
*
|
|
666
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
667
|
+
* you may not use this file except in compliance with the License.
|
|
668
|
+
* You may obtain a copy of the License at
|
|
669
|
+
*
|
|
670
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
671
|
+
*
|
|
672
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
673
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
674
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
675
|
+
* See the License for the specific language governing permissions and
|
|
676
|
+
* limitations under the License.
|
|
677
|
+
*/
|
|
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
|
+
var Operator;
|
|
696
|
+
(function (Operator) {
|
|
697
|
+
Operator["NOT_EQUAL_TO"] = "!=";
|
|
698
|
+
Operator["EQUAL_TO"] = "==";
|
|
699
|
+
Operator["GREATER_THAN"] = ">";
|
|
700
|
+
Operator["GREATER_THAN_OR_EQUAL_TO"] = ">=";
|
|
701
|
+
Operator["LESS_THAN"] = "<";
|
|
702
|
+
Operator["LESS_THAN_OR_EQUAL_TO"] = "<=";
|
|
703
|
+
})(Operator || (Operator = {}));
|
|
704
|
+
|
|
629
705
|
/*
|
|
630
706
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
631
707
|
*
|
|
@@ -723,10 +799,10 @@ class ConfigService {
|
|
|
723
799
|
getFeatureToggle(featureToggle) {
|
|
724
800
|
return !!(this.featureToggles && this.featureToggles[featureToggle]);
|
|
725
801
|
}
|
|
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.
|
|
802
|
+
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 }); }
|
|
803
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
|
|
728
804
|
}
|
|
729
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
805
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigService, decorators: [{
|
|
730
806
|
type: Injectable,
|
|
731
807
|
args: [{
|
|
732
808
|
providedIn: 'root',
|
|
@@ -823,10 +899,10 @@ class GlobalNotificationService {
|
|
|
823
899
|
return;
|
|
824
900
|
this._notificationQueue.splice(index, 1);
|
|
825
901
|
}
|
|
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.
|
|
902
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GlobalNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
903
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GlobalNotificationService, providedIn: 'root' }); }
|
|
828
904
|
}
|
|
829
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
905
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GlobalNotificationService, decorators: [{
|
|
830
906
|
type: Injectable,
|
|
831
907
|
args: [{
|
|
832
908
|
providedIn: 'root',
|
|
@@ -873,10 +949,10 @@ class LocalizationService {
|
|
|
873
949
|
updateLocalizations(updatedLocalizations) {
|
|
874
950
|
return this.http.put(`${this.valtimoApiUri}management/v1/localization`, updatedLocalizations);
|
|
875
951
|
}
|
|
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.
|
|
952
|
+
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 }); }
|
|
953
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocalizationService, providedIn: 'root' }); }
|
|
878
954
|
}
|
|
879
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
955
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocalizationService, decorators: [{
|
|
880
956
|
type: Injectable,
|
|
881
957
|
args: [{
|
|
882
958
|
providedIn: 'root',
|
|
@@ -911,10 +987,10 @@ class MenuIncludeService {
|
|
|
911
987
|
return of(true);
|
|
912
988
|
}
|
|
913
989
|
}
|
|
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.
|
|
990
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MenuIncludeService, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
991
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MenuIncludeService, providedIn: 'root' }); }
|
|
916
992
|
}
|
|
917
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
993
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MenuIncludeService, decorators: [{
|
|
918
994
|
type: Injectable,
|
|
919
995
|
args: [{
|
|
920
996
|
providedIn: 'root',
|
|
@@ -948,10 +1024,10 @@ class UserSettingsService {
|
|
|
948
1024
|
saveUserSettings(settings) {
|
|
949
1025
|
return this.http.put(`${this.valtimoApiUri}v1/user/settings`, settings);
|
|
950
1026
|
}
|
|
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.
|
|
1027
|
+
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 }); }
|
|
1028
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserSettingsService, providedIn: 'root' }); }
|
|
953
1029
|
}
|
|
954
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1030
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserSettingsService, decorators: [{
|
|
955
1031
|
type: Injectable,
|
|
956
1032
|
args: [{
|
|
957
1033
|
providedIn: 'root',
|
|
@@ -974,7 +1050,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.14", ngImpo
|
|
|
974
1050
|
* limitations under the License.
|
|
975
1051
|
*/
|
|
976
1052
|
const VERSIONS = {
|
|
977
|
-
frontendLibraries: '13.
|
|
1053
|
+
frontendLibraries: '13.3.0',
|
|
978
1054
|
};
|
|
979
1055
|
|
|
980
1056
|
/*
|
|
@@ -1046,6 +1122,23 @@ const InterceptorSkipHeader = new HttpHeaders().set(InterceptorSkip, 'all');
|
|
|
1046
1122
|
*/
|
|
1047
1123
|
const CASE_CONFIGURATION_EXTENSIONS_TOKEN = new InjectionToken('Specify components to display on on the case management general page.');
|
|
1048
1124
|
|
|
1125
|
+
/*
|
|
1126
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
1127
|
+
*
|
|
1128
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
1129
|
+
* you may not use this file except in compliance with the License.
|
|
1130
|
+
* You may obtain a copy of the License at
|
|
1131
|
+
*
|
|
1132
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
1133
|
+
*
|
|
1134
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
1135
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
1136
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1137
|
+
* See the License for the specific language governing permissions and
|
|
1138
|
+
* limitations under the License.
|
|
1139
|
+
*/
|
|
1140
|
+
const IKO_TOKEN = new InjectionToken('IKO is enabled when this token is provided');
|
|
1141
|
+
|
|
1049
1142
|
/*
|
|
1050
1143
|
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
1051
1144
|
*
|
|
@@ -1090,10 +1183,10 @@ class EnvironmentService extends BaseApiService {
|
|
|
1090
1183
|
})
|
|
1091
1184
|
.pipe(map(response => response.canUpdateGlobalConfiguration), catchError(() => of(true)));
|
|
1092
1185
|
}
|
|
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.
|
|
1186
|
+
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 }); }
|
|
1187
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EnvironmentService, providedIn: 'root' }); }
|
|
1095
1188
|
}
|
|
1096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1189
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EnvironmentService, decorators: [{
|
|
1097
1190
|
type: Injectable,
|
|
1098
1191
|
args: [{
|
|
1099
1192
|
providedIn: 'root',
|
|
@@ -1131,16 +1224,31 @@ class DraftVersionService extends BaseApiService {
|
|
|
1131
1224
|
})
|
|
1132
1225
|
.pipe(map(caseDefinition => !caseDefinition.final));
|
|
1133
1226
|
}
|
|
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.
|
|
1227
|
+
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 }); }
|
|
1228
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DraftVersionService, providedIn: 'root' }); }
|
|
1136
1229
|
}
|
|
1137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DraftVersionService, decorators: [{
|
|
1138
1231
|
type: Injectable,
|
|
1139
1232
|
args: [{
|
|
1140
1233
|
providedIn: 'root',
|
|
1141
1234
|
}]
|
|
1142
1235
|
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: ConfigService }] });
|
|
1143
1236
|
|
|
1237
|
+
/*
|
|
1238
|
+
* Copyright 2015-2025 Ritense BV, the Netherlands.
|
|
1239
|
+
*
|
|
1240
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
1241
|
+
* you may not use this file except in compliance with the License.
|
|
1242
|
+
* You may obtain a copy of the License at
|
|
1243
|
+
*
|
|
1244
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
1245
|
+
*
|
|
1246
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
1247
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
1248
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
1249
|
+
* See the License for the specific language governing permissions and
|
|
1250
|
+
* limitations under the License.
|
|
1251
|
+
*/
|
|
1144
1252
|
class EditPermissionsService extends BaseApiService {
|
|
1145
1253
|
constructor(httpClient, configService, environmentService, draftVersionService) {
|
|
1146
1254
|
super(httpClient, configService);
|
|
@@ -1164,10 +1272,10 @@ class EditPermissionsService extends BaseApiService {
|
|
|
1164
1272
|
}
|
|
1165
1273
|
return of(false);
|
|
1166
1274
|
}
|
|
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.
|
|
1275
|
+
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 }); }
|
|
1276
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EditPermissionsService, providedIn: 'root' }); }
|
|
1169
1277
|
}
|
|
1170
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EditPermissionsService, decorators: [{
|
|
1171
1279
|
type: Injectable,
|
|
1172
1280
|
args: [{
|
|
1173
1281
|
providedIn: 'root',
|
|
@@ -1213,10 +1321,10 @@ class GlobalNotificationComponent {
|
|
|
1213
1321
|
ngOnInit() {
|
|
1214
1322
|
this.globalNotificationService.setNotificationService(this.notificationService);
|
|
1215
1323
|
}
|
|
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.
|
|
1324
|
+
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 }); }
|
|
1325
|
+
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
1326
|
}
|
|
1219
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1327
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: GlobalNotificationComponent, decorators: [{
|
|
1220
1328
|
type: Component,
|
|
1221
1329
|
args: [{ selector: 'valtimo-global-notification', template: ``, providers: [NotificationService], standalone: true, imports: [CommonModule], styles: ["::ng-deep .cds--toast-notification{width:100%}\n"] }]
|
|
1222
1330
|
}], ctorParameters: () => [{ type: GlobalNotificationService }, { type: i2.NotificationService }] });
|
|
@@ -1248,10 +1356,10 @@ class ExtensionComponent {
|
|
|
1248
1356
|
this.configService.loadExtensionPoint(this.viewContainerRef, extension.extensionPoint);
|
|
1249
1357
|
});
|
|
1250
1358
|
}
|
|
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.
|
|
1359
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ExtensionComponent, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1360
|
+
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
1361
|
}
|
|
1254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ExtensionComponent, decorators: [{
|
|
1255
1363
|
type: Component,
|
|
1256
1364
|
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
1365
|
}], ctorParameters: () => [{ type: ConfigService }], propDecorators: { module: [{
|
|
@@ -1293,11 +1401,11 @@ class ConfigModule {
|
|
|
1293
1401
|
],
|
|
1294
1402
|
};
|
|
1295
1403
|
}
|
|
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.
|
|
1404
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1405
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: ConfigModule, declarations: [ExtensionComponent], exports: [ExtensionComponent] }); }
|
|
1406
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigModule }); }
|
|
1299
1407
|
}
|
|
1300
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1408
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigModule, decorators: [{
|
|
1301
1409
|
type: NgModule,
|
|
1302
1410
|
args: [{
|
|
1303
1411
|
declarations: [ExtensionComponent],
|
|
@@ -1328,10 +1436,10 @@ class MockTranslateService {
|
|
|
1328
1436
|
instant(key) {
|
|
1329
1437
|
return '';
|
|
1330
1438
|
}
|
|
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.
|
|
1439
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockTranslateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1440
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockTranslateService, providedIn: 'root' }); }
|
|
1333
1441
|
}
|
|
1334
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1442
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockTranslateService, decorators: [{
|
|
1335
1443
|
type: Injectable,
|
|
1336
1444
|
args: [{
|
|
1337
1445
|
providedIn: 'root',
|
|
@@ -1376,10 +1484,10 @@ class MockKeycloakService {
|
|
|
1376
1484
|
async loadUserProfile() {
|
|
1377
1485
|
return this.MOCK_USER_PROFILE;
|
|
1378
1486
|
}
|
|
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.
|
|
1487
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockKeycloakService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1488
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockKeycloakService, providedIn: 'root' }); }
|
|
1381
1489
|
}
|
|
1382
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockKeycloakService, decorators: [{
|
|
1383
1491
|
type: Injectable,
|
|
1384
1492
|
args: [{
|
|
1385
1493
|
providedIn: 'root',
|
|
@@ -1405,10 +1513,10 @@ class MockIconService {
|
|
|
1405
1513
|
registerAll(value) {
|
|
1406
1514
|
return;
|
|
1407
1515
|
}
|
|
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.
|
|
1516
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockIconService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1517
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockIconService, providedIn: 'root' }); }
|
|
1410
1518
|
}
|
|
1411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.
|
|
1519
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: MockIconService, decorators: [{
|
|
1412
1520
|
type: Injectable,
|
|
1413
1521
|
args: [{
|
|
1414
1522
|
providedIn: 'root',
|
|
@@ -1649,5 +1757,5 @@ const ZGW_DOCUMENTEN_API_DOCUMENTS_COMPONENT_TOKEN = new InjectionToken('Specify
|
|
|
1649
1757
|
* Generated bundle index. Do not edit.
|
|
1650
1758
|
*/
|
|
1651
1759
|
|
|
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 };
|
|
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 };
|
|
1653
1761
|
//# sourceMappingURL=valtimo-shared.mjs.map
|