@yuuvis/client-core 2.12.3 → 2.13.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.
@@ -889,10 +889,10 @@ class ConfigService {
889
889
  _getCoreConfig(key) {
890
890
  return this.cfg ? this.cfg.core[key] : undefined;
891
891
  }
892
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
893
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
892
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
893
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigService, providedIn: 'root' }); }
894
894
  }
895
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConfigService, decorators: [{
895
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConfigService, decorators: [{
896
896
  type: Injectable,
897
897
  args: [{
898
898
  providedIn: 'root'
@@ -958,10 +958,10 @@ class Logger {
958
958
  }
959
959
  return should;
960
960
  }
961
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: Logger, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
962
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: Logger, providedIn: 'root' }); }
961
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: Logger, deps: [{ token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
962
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: Logger, providedIn: 'root' }); }
963
963
  }
964
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: Logger, decorators: [{
964
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: Logger, decorators: [{
965
965
  type: Injectable,
966
966
  args: [{
967
967
  providedIn: 'root'
@@ -1069,14 +1069,25 @@ class BackendService {
1069
1069
  }
1070
1070
  }
1071
1071
  /**
1072
- * Wrapped HTTP GET method
1073
- * @param uri The REST URI to be queried
1074
- * @param base The Base URI (backend service) to be used
1075
- * @param requestOptions Additional request options
1076
- * @returns The data retrieved from the given endpoint
1072
+ * Performs an HTTP GET request against a yuuvis Momentum backend endpoint.
1073
+ *
1074
+ * Automatically prepends the resolved base URI (via {@link getApiBase}) to the given `uri`,
1075
+ * applies centralized headers (authorization, content-type) and emits an event on
1076
+ * `httpCommunicationOccurred$` after each successful response used by SessionService
1077
+ * to keep the session alive.
1078
+ *
1079
+ * @param uri REST URI relative to the selected backend service base. Must start with `/`,
1080
+ * e.g. `/api/dms/objects/{objectId}`.
1081
+ * @param base Selects which backend service base URL to use.
1082
+ * @param requestOptions Optional Angular `HttpClient` options (headers, params, responseType, etc.)
1083
+ * merged on top of the default headers set by this service.
1084
+ * @returns An `Observable<T>` that emits the deserialized response body and completes.
1085
+ * Unsubscribing before completion cancels the underlying HTTP request.
1077
1086
  */
1078
1087
  get(uri, base, requestOptions) {
1079
- return this.#http.get(this.getApiBase(base) + uri, this.getHttpOptions(requestOptions)).pipe(tap(() => this.#httpCallOccurred$.next()));
1088
+ return this.#http
1089
+ .get(this.getApiBase(base) + uri, this.getHttpOptions(requestOptions))
1090
+ .pipe(tap(() => this.#httpCallOccurred$.next()));
1080
1091
  }
1081
1092
  /**
1082
1093
  * Wrapped HTTP POST method
@@ -1089,7 +1100,9 @@ class BackendService {
1089
1100
  post(uri, data, base, requestOptions) {
1090
1101
  const baseUri = this.getApiBase(base);
1091
1102
  const payload = data && typeof data === 'object' ? JSON.stringify(data) : data || '';
1092
- return this.#http.post(`${baseUri}${uri}`, payload, this.getHttpOptions(requestOptions)).pipe(tap(() => this.#httpCallOccurred$.next()));
1103
+ return this.#http
1104
+ .post(`${baseUri}${uri}`, payload, this.getHttpOptions(requestOptions))
1105
+ .pipe(tap(() => this.#httpCallOccurred$.next()));
1093
1106
  }
1094
1107
  /**
1095
1108
  * Performs a multipart form data POST request.
@@ -1119,7 +1132,9 @@ class BackendService {
1119
1132
  patch(uri, data, base, requestOptions) {
1120
1133
  const baseUri = this.getApiBase(base);
1121
1134
  const payload = data ? JSON.stringify(data) : '';
1122
- return this.#http.patch(`${baseUri}${uri}`, payload, this.getHttpOptions(requestOptions)).pipe(tap(() => this.#httpCallOccurred$.next()));
1135
+ return this.#http
1136
+ .patch(`${baseUri}${uri}`, payload, this.getHttpOptions(requestOptions))
1137
+ .pipe(tap(() => this.#httpCallOccurred$.next()));
1123
1138
  }
1124
1139
  /**
1125
1140
  * Wrapped HTTP PUT method
@@ -1130,7 +1145,9 @@ class BackendService {
1130
1145
  * @returns The return value of the target PUT endpoint
1131
1146
  */
1132
1147
  put(uri, data, base, requestOptions) {
1133
- return this.#http.put(this.getApiBase(base) + uri, data, this.getHttpOptions(requestOptions)).pipe(tap(() => this.#httpCallOccurred$.next()));
1148
+ return this.#http
1149
+ .put(this.getApiBase(base) + uri, data, this.getHttpOptions(requestOptions))
1150
+ .pipe(tap(() => this.#httpCallOccurred$.next()));
1134
1151
  }
1135
1152
  /**
1136
1153
  * Wrapped HTTP DELETE method
@@ -1140,7 +1157,9 @@ class BackendService {
1140
1157
  * @returns The return value of the target DELETE endpoint
1141
1158
  */
1142
1159
  delete(uri, base, requestOptions) {
1143
- return this.#http.delete(this.getApiBase(base) + uri, this.getHttpOptions(requestOptions)).pipe(tap(() => this.#httpCallOccurred$.next()));
1160
+ return this.#http
1161
+ .delete(this.getApiBase(base) + uri, this.getHttpOptions(requestOptions))
1162
+ .pipe(tap(() => this.#httpCallOccurred$.next()));
1144
1163
  }
1145
1164
  /**
1146
1165
  * @ignore
@@ -1223,10 +1242,10 @@ class BackendService {
1223
1242
  .pipe(catchError((err) => of({ _error: err }))));
1224
1243
  return forkJoin(httpRequests);
1225
1244
  }
1226
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BackendService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1227
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BackendService, providedIn: 'root' }); }
1245
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BackendService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1246
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BackendService, providedIn: 'root' }); }
1228
1247
  }
1229
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BackendService, decorators: [{
1248
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BackendService, decorators: [{
1230
1249
  type: Injectable,
1231
1250
  args: [{ providedIn: 'root' }]
1232
1251
  }] });
@@ -1331,10 +1350,10 @@ class AppCacheService {
1331
1350
  setStorage(options) {
1332
1351
  return forkJoin(Object.keys(options || {}).map((k) => this.setItem(k, options[k])));
1333
1352
  }
1334
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: AppCacheService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1335
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: AppCacheService, providedIn: 'root' }); }
1353
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AppCacheService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
1354
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AppCacheService, providedIn: 'root' }); }
1336
1355
  }
1337
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: AppCacheService, decorators: [{
1356
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AppCacheService, decorators: [{
1338
1357
  type: Injectable,
1339
1358
  args: [{
1340
1359
  providedIn: 'root'
@@ -2003,10 +2022,10 @@ class SystemService {
2003
2022
  ])
2004
2023
  .pipe(map(([global, tenant]) => ({ global, tenant })));
2005
2024
  }
2006
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SystemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2007
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SystemService, providedIn: 'root' }); }
2025
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SystemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2026
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SystemService, providedIn: 'root' }); }
2008
2027
  }
2009
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SystemService, decorators: [{
2028
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SystemService, decorators: [{
2010
2029
  type: Injectable,
2011
2030
  args: [{
2012
2031
  providedIn: 'root'
@@ -2292,10 +2311,10 @@ class SearchService {
2292
2311
  return isoDateString;
2293
2312
  }
2294
2313
  }
2295
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SearchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2296
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SearchService, providedIn: 'root' }); }
2314
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SearchService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2315
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SearchService, providedIn: 'root' }); }
2297
2316
  }
2298
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SearchService, decorators: [{
2317
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SearchService, decorators: [{
2299
2318
  type: Injectable,
2300
2319
  args: [{
2301
2320
  providedIn: 'root'
@@ -2348,7 +2367,10 @@ class EventService {
2348
2367
  return isFromTrustedOrigin && hasValidStructure;
2349
2368
  }
2350
2369
  #listenToWindowEvents() {
2351
- window.addEventListener('message', (event) => this.#ngZone.run(() => this.#isValidExternalMessage(event) && this.trigger(event.data.type, event.data.data)));
2370
+ window.addEventListener('message', (event) => {
2371
+ console.log(event);
2372
+ this.#ngZone.run(() => this.#isValidExternalMessage(event) && this.trigger(event.data.type, event.data.data));
2373
+ });
2352
2374
  }
2353
2375
  /**
2354
2376
  * Triggers a postMessage event that will be sent to the yuuvis global event Trigger
@@ -2379,10 +2401,10 @@ class EventService {
2379
2401
  on(...types) {
2380
2402
  return this.event$.pipe(filter((event) => event && !!types.find((t) => t === event.type)));
2381
2403
  }
2382
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EventService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2383
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EventService, providedIn: 'root' }); }
2404
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: EventService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2405
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: EventService, providedIn: 'root' }); }
2384
2406
  }
2385
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EventService, decorators: [{
2407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: EventService, decorators: [{
2386
2408
  type: Injectable,
2387
2409
  args: [{
2388
2410
  providedIn: 'root'
@@ -2576,10 +2598,10 @@ class UserService {
2576
2598
  loadObjectConfig() {
2577
2599
  return this.getSettings(this.#SETTINGS_SECTION_OBJECTCONFIG).pipe(catchError(() => of(undefined)));
2578
2600
  }
2579
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserService, deps: [{ token: BackendService }, { token: i1.TranslateService }, { token: Logger }, { token: SystemService }, { token: EventService }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
2580
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserService, providedIn: 'root' }); }
2601
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UserService, deps: [{ token: BackendService }, { token: i1.TranslateService }, { token: Logger }, { token: SystemService }, { token: EventService }, { token: ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
2602
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UserService, providedIn: 'root' }); }
2581
2603
  }
2582
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserService, decorators: [{
2604
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UserService, decorators: [{
2583
2605
  type: Injectable,
2584
2606
  args: [{
2585
2607
  providedIn: 'root'
@@ -2706,10 +2728,10 @@ class AuditService {
2706
2728
  return -1;
2707
2729
  }
2708
2730
  }
2709
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: AuditService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2710
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: AuditService, providedIn: 'root' }); }
2731
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AuditService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
2732
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AuditService, providedIn: 'root' }); }
2711
2733
  }
2712
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: AuditService, decorators: [{
2734
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AuditService, decorators: [{
2713
2735
  type: Injectable,
2714
2736
  args: [{
2715
2737
  providedIn: 'root'
@@ -3002,10 +3024,10 @@ class ObjectConfigService {
3002
3024
  }
3003
3025
  : undefined;
3004
3026
  }
3005
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ObjectConfigService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3006
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ObjectConfigService, providedIn: 'root' }); }
3027
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ObjectConfigService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3028
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ObjectConfigService, providedIn: 'root' }); }
3007
3029
  }
3008
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ObjectConfigService, decorators: [{
3030
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ObjectConfigService, decorators: [{
3009
3031
  type: Injectable,
3010
3032
  args: [{
3011
3033
  providedIn: 'root'
@@ -3031,7 +3053,8 @@ class AuthService {
3031
3053
  #appCache;
3032
3054
  #systemService;
3033
3055
  #backend;
3034
- #INITAL_REQUEST_STORAGE_KEY;
3056
+ #INITIAL_REQUEST_STORAGE_KEY;
3057
+ #USER_FETCH_URI;
3035
3058
  #authenticated;
3036
3059
  #authSource;
3037
3060
  #authData;
@@ -3045,8 +3068,8 @@ class AuthService {
3045
3068
  this.#appCache = inject(AppCacheService);
3046
3069
  this.#systemService = inject(SystemService);
3047
3070
  this.#backend = inject(BackendService);
3048
- this.#INITAL_REQUEST_STORAGE_KEY = 'yuv.core.auth.initialrequest';
3049
- this.USER_FETCH_URI = '/idm/whoami';
3071
+ this.#INITIAL_REQUEST_STORAGE_KEY = 'yuv.core.auth.initialrequest';
3072
+ this.#USER_FETCH_URI = '/idm/whoami';
3050
3073
  this.#authenticated = false;
3051
3074
  this.#authSource = new BehaviorSubject(false);
3052
3075
  this.authenticated$ = this.#authSource.asObservable();
@@ -3071,7 +3094,7 @@ class AuthService {
3071
3094
  * Fetch information about the user currently logged in
3072
3095
  */
3073
3096
  fetchUser() {
3074
- return (this.#userToken ? of(this.#userToken) : this.#backend.get(this.USER_FETCH_URI)).pipe(tap(() => {
3097
+ return (this.#userToken ? of(this.#userToken) : this.#backend.get(this.#USER_FETCH_URI)).pipe(tap(() => {
3075
3098
  this.#authenticated = true;
3076
3099
  this.#authSource.next(this.#authenticated);
3077
3100
  }), switchMap((userJson) => this.#initApp(userJson)));
@@ -3095,7 +3118,7 @@ class AuthService {
3095
3118
  uri = !uri.startsWith('/') ? `/${uri}` : uri;
3096
3119
  if (!ignore.includes(uri)) {
3097
3120
  this.#appCache
3098
- .setItem(this.#INITAL_REQUEST_STORAGE_KEY, {
3121
+ .setItem(this.#INITIAL_REQUEST_STORAGE_KEY, {
3099
3122
  uri: uri,
3100
3123
  timestamp: Date.now()
3101
3124
  })
@@ -3107,10 +3130,10 @@ class AuthService {
3107
3130
  * picked up again after user has been authenticated.
3108
3131
  */
3109
3132
  getInitialRequestUri() {
3110
- return this.#appCache.getItem(this.#INITAL_REQUEST_STORAGE_KEY);
3133
+ return this.#appCache.getItem(this.#INITIAL_REQUEST_STORAGE_KEY);
3111
3134
  }
3112
3135
  resetInitialRequestUri() {
3113
- return this.#appCache.removeItem(this.#INITAL_REQUEST_STORAGE_KEY);
3136
+ return this.#appCache.removeItem(this.#INITIAL_REQUEST_STORAGE_KEY);
3114
3137
  }
3115
3138
  /**
3116
3139
  * Initialize/setup the application for a given user. This involves fetching
@@ -3128,10 +3151,10 @@ class AuthService {
3128
3151
  return this.#systemService.getSystemDefinition(this.#authData).pipe(switchMap(() => this.#objectConfigService.init()), map(() => currentUser));
3129
3152
  }));
3130
3153
  }
3131
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: AuthService, deps: [{ token: CORE_CONFIG }], target: i0.ɵɵFactoryTarget.Injectable }); }
3132
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: AuthService, providedIn: 'root' }); }
3154
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AuthService, deps: [{ token: CORE_CONFIG }], target: i0.ɵɵFactoryTarget.Injectable }); }
3155
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AuthService, providedIn: 'root' }); }
3133
3156
  }
3134
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: AuthService, decorators: [{
3157
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: AuthService, decorators: [{
3135
3158
  type: Injectable,
3136
3159
  args: [{
3137
3160
  providedIn: 'root'
@@ -3182,10 +3205,10 @@ class BpmService {
3182
3205
  const pl = { ...payload, action: action };
3183
3206
  return this.#backend.put(`/bpm/tasks/${taskId}`, pl, ApiBase.apiWeb);
3184
3207
  }
3185
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BpmService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3186
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BpmService, providedIn: 'root' }); }
3208
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BpmService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3209
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BpmService, providedIn: 'root' }); }
3187
3210
  }
3188
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BpmService, decorators: [{
3211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: BpmService, decorators: [{
3189
3212
  type: Injectable,
3190
3213
  args: [{
3191
3214
  providedIn: 'root'
@@ -3193,10 +3216,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
3193
3216
  }] });
3194
3217
 
3195
3218
  class CatalogService {
3196
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CatalogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3197
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CatalogService, providedIn: 'root' }); }
3219
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CatalogService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3220
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CatalogService, providedIn: 'root' }); }
3198
3221
  }
3199
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: CatalogService, decorators: [{
3222
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CatalogService, decorators: [{
3200
3223
  type: Injectable,
3201
3224
  args: [{
3202
3225
  providedIn: 'root'
@@ -3254,10 +3277,10 @@ class ClientCacheService {
3254
3277
  clear() {
3255
3278
  return this.#appCacheService.clear((k) => k.startsWith(this.#CLIENT_CACHE_PREFIX));
3256
3279
  }
3257
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ClientCacheService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3258
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ClientCacheService, providedIn: 'root' }); }
3280
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ClientCacheService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3281
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ClientCacheService, providedIn: 'root' }); }
3259
3282
  }
3260
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ClientCacheService, decorators: [{
3283
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ClientCacheService, decorators: [{
3261
3284
  type: Injectable,
3262
3285
  args: [{
3263
3286
  providedIn: 'root'
@@ -3349,10 +3372,10 @@ class ClipboardService {
3349
3372
  console.error('Failed to copy text: ', error);
3350
3373
  }
3351
3374
  }
3352
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ClipboardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3353
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ClipboardService, providedIn: 'root' }); }
3375
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ClipboardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3376
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ClipboardService, providedIn: 'root' }); }
3354
3377
  }
3355
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ClipboardService, decorators: [{
3378
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ClipboardService, decorators: [{
3356
3379
  type: Injectable,
3357
3380
  args: [{
3358
3381
  providedIn: 'root'
@@ -3388,10 +3411,10 @@ class ConnectionService {
3388
3411
  this.connectionStateSource.next(this.currentState);
3389
3412
  });
3390
3413
  }
3391
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConnectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3392
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConnectionService, providedIn: 'root' }); }
3414
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConnectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3415
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConnectionService, providedIn: 'root' }); }
3393
3416
  }
3394
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ConnectionService, decorators: [{
3417
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ConnectionService, decorators: [{
3395
3418
  type: Injectable,
3396
3419
  args: [{
3397
3420
  providedIn: 'root'
@@ -3573,10 +3596,10 @@ class DeviceService {
3573
3596
  // keyboard appears, so we dont't need to debounce
3574
3597
  return this.isMobile ? 0 : 500;
3575
3598
  }
3576
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeviceService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3577
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeviceService, providedIn: 'root' }); }
3599
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DeviceService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3600
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DeviceService, providedIn: 'root' }); }
3578
3601
  }
3579
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DeviceService, decorators: [{
3602
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DeviceService, decorators: [{
3580
3603
  type: Injectable,
3581
3604
  args: [{
3582
3605
  providedIn: 'root'
@@ -3796,10 +3819,10 @@ class UploadService {
3796
3819
  this.#statusSource.next(this.#status);
3797
3820
  });
3798
3821
  }
3799
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UploadService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3800
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UploadService, providedIn: 'root' }); }
3822
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UploadService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3823
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UploadService, providedIn: 'root' }); }
3801
3824
  }
3802
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UploadService, decorators: [{
3825
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UploadService, decorators: [{
3803
3826
  type: Injectable,
3804
3827
  args: [{
3805
3828
  providedIn: 'root'
@@ -4260,10 +4283,10 @@ class DmsService {
4260
4283
  };
4261
4284
  return result;
4262
4285
  }
4263
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DmsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4264
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DmsService, providedIn: 'root' }); }
4286
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DmsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4287
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DmsService, providedIn: 'root' }); }
4265
4288
  }
4266
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DmsService, decorators: [{
4289
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DmsService, decorators: [{
4267
4290
  type: Injectable,
4268
4291
  args: [{
4269
4292
  providedIn: 'root'
@@ -4358,10 +4381,10 @@ class IdmService {
4358
4381
  }
4359
4382
  });
4360
4383
  }
4361
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: IdmService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4362
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: IdmService, providedIn: 'root' }); }
4384
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: IdmService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4385
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: IdmService, providedIn: 'root' }); }
4363
4386
  }
4364
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: IdmService, decorators: [{
4387
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: IdmService, decorators: [{
4365
4388
  type: Injectable,
4366
4389
  args: [{
4367
4390
  providedIn: 'root'
@@ -4543,10 +4566,10 @@ class ToastService {
4543
4566
  style.innerHTML = YuvToastStyles;
4544
4567
  this.document.head.appendChild(style);
4545
4568
  }
4546
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ToastService, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable }); }
4547
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ToastService, providedIn: 'root' }); }
4569
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ToastService, deps: [{ token: DOCUMENT }], target: i0.ɵɵFactoryTarget.Injectable }); }
4570
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ToastService, providedIn: 'root' }); }
4548
4571
  }
4549
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ToastService, decorators: [{
4572
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: ToastService, decorators: [{
4550
4573
  type: Injectable,
4551
4574
  args: [{
4552
4575
  providedIn: 'root'
@@ -4671,10 +4694,10 @@ class NotificationService {
4671
4694
  }
4672
4695
  }
4673
4696
  }
4674
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: NotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4675
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: NotificationService, providedIn: 'root' }); }
4697
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4698
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NotificationService, providedIn: 'root' }); }
4676
4699
  }
4677
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: NotificationService, decorators: [{
4700
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NotificationService, decorators: [{
4678
4701
  type: Injectable,
4679
4702
  args: [{
4680
4703
  providedIn: 'root'
@@ -4811,10 +4834,10 @@ class PendingChangesService {
4811
4834
  this.#tasks = [];
4812
4835
  this.#tasksSource.next(this.#tasks);
4813
4836
  }
4814
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PendingChangesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4815
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PendingChangesService, providedIn: 'root' }); }
4837
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: PendingChangesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4838
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: PendingChangesService, providedIn: 'root' }); }
4816
4839
  }
4817
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PendingChangesService, decorators: [{
4840
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: PendingChangesService, decorators: [{
4818
4841
  type: Injectable,
4819
4842
  args: [{
4820
4843
  providedIn: 'root'
@@ -4832,10 +4855,10 @@ class PendingChangesGuard {
4832
4855
  // if there are no pending changes, just allow deactivation; else confirm first
4833
4856
  return !this.pendingChanges.check(component);
4834
4857
  }
4835
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PendingChangesGuard, deps: [{ token: PendingChangesService }], target: i0.ɵɵFactoryTarget.Injectable }); }
4836
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PendingChangesGuard, providedIn: 'root' }); }
4858
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: PendingChangesGuard, deps: [{ token: PendingChangesService }], target: i0.ɵɵFactoryTarget.Injectable }); }
4859
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: PendingChangesGuard, providedIn: 'root' }); }
4837
4860
  }
4838
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PendingChangesGuard, decorators: [{
4861
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: PendingChangesGuard, decorators: [{
4839
4862
  type: Injectable,
4840
4863
  args: [{
4841
4864
  providedIn: 'root'
@@ -4990,10 +5013,10 @@ class DialogCloseGuard {
4990
5013
  dialogRef.disableClose = true;
4991
5014
  return merge(dialogRef.backdropClick(), dialogRef.keydownEvents().pipe(filter$1((event) => event.key === 'Escape'))).pipe(switchMap$1(() => of(this.#pendingChangesService.check())), map$1((canClose) => !canClose && dialogRef.close()));
4992
5015
  }
4993
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DialogCloseGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4994
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DialogCloseGuard }); }
5016
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DialogCloseGuard, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5017
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DialogCloseGuard }); }
4995
5018
  }
4996
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DialogCloseGuard, decorators: [{
5019
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: DialogCloseGuard, decorators: [{
4997
5020
  type: Injectable
4998
5021
  }] });
4999
5022
 
@@ -5011,10 +5034,10 @@ class TabGuardDirective {
5011
5034
  const hasPending = this.#pending.hasPendingTask();
5012
5035
  this.#tabGroup._tabs.forEach((tab, i) => (tab.disabled = hasPending && i !== activeIndex));
5013
5036
  }
5014
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: TabGuardDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5015
- static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.15", type: TabGuardDirective, isStandalone: true, selector: "mat-tab-group[yuvTabGuardDisable]", ngImport: i0 }); }
5037
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: TabGuardDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5038
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.20", type: TabGuardDirective, isStandalone: true, selector: "mat-tab-group[yuvTabGuardDisable]", ngImport: i0 }); }
5016
5039
  }
5017
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: TabGuardDirective, decorators: [{
5040
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: TabGuardDirective, decorators: [{
5018
5041
  type: Directive,
5019
5042
  args: [{
5020
5043
  selector: 'mat-tab-group[yuvTabGuardDisable]'
@@ -5065,10 +5088,10 @@ class PredictionService {
5065
5088
  }
5066
5089
  }), {})));
5067
5090
  }
5068
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PredictionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5069
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PredictionService, providedIn: 'root' }); }
5091
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: PredictionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5092
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: PredictionService, providedIn: 'root' }); }
5070
5093
  }
5071
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: PredictionService, decorators: [{
5094
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: PredictionService, decorators: [{
5072
5095
  type: Injectable,
5073
5096
  args: [{
5074
5097
  providedIn: 'root'
@@ -5127,10 +5150,10 @@ class RetentionService {
5127
5150
  else
5128
5151
  return { underRetention: false };
5129
5152
  }
5130
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: RetentionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5131
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: RetentionService, providedIn: 'root' }); }
5153
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: RetentionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5154
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: RetentionService, providedIn: 'root' }); }
5132
5155
  }
5133
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: RetentionService, decorators: [{
5156
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: RetentionService, decorators: [{
5134
5157
  type: Injectable,
5135
5158
  args: [{
5136
5159
  providedIn: 'root'
@@ -5319,10 +5342,10 @@ class SessionStorageService {
5319
5342
  }
5320
5343
  return res;
5321
5344
  }
5322
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SessionStorageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5323
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SessionStorageService, providedIn: 'root' }); }
5345
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SessionStorageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5346
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SessionStorageService, providedIn: 'root' }); }
5324
5347
  }
5325
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SessionStorageService, decorators: [{
5348
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SessionStorageService, decorators: [{
5326
5349
  type: Injectable,
5327
5350
  args: [{
5328
5351
  providedIn: 'root'
@@ -5353,10 +5376,10 @@ class UserStorageService {
5353
5376
  #sanitizeSection(section) {
5354
5377
  return encodeURIComponent(section);
5355
5378
  }
5356
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserStorageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5357
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserStorageService, providedIn: 'root' }); }
5379
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UserStorageService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5380
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UserStorageService, providedIn: 'root' }); }
5358
5381
  }
5359
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: UserStorageService, decorators: [{
5382
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: UserStorageService, decorators: [{
5360
5383
  type: Injectable,
5361
5384
  args: [{
5362
5385
  providedIn: 'root'
@@ -5374,10 +5397,10 @@ class LocaleDecimalPipe extends DecimalPipe {
5374
5397
  transform(value, digits, locale) {
5375
5398
  return super.transform(value, digits, locale || this.translate.currentLang || 'en');
5376
5399
  }
5377
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocaleDecimalPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5378
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: LocaleDecimalPipe, isStandalone: true, name: "localeDecimal" }); }
5400
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocaleDecimalPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5401
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: LocaleDecimalPipe, isStandalone: true, name: "localeDecimal" }); }
5379
5402
  }
5380
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocaleDecimalPipe, decorators: [{
5403
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocaleDecimalPipe, decorators: [{
5381
5404
  type: Pipe,
5382
5405
  args: [{
5383
5406
  name: 'localeDecimal',
@@ -5395,10 +5418,10 @@ class LocalePercentPipe extends PercentPipe {
5395
5418
  transform(value, digits, locale) {
5396
5419
  return super.transform(value, digits, locale || this.translate.currentLang || 'en');
5397
5420
  }
5398
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocalePercentPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5399
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: LocalePercentPipe, isStandalone: true, name: "localePercent", pure: false }); }
5421
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocalePercentPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5422
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: LocalePercentPipe, isStandalone: true, name: "localePercent", pure: false }); }
5400
5423
  }
5401
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocalePercentPipe, decorators: [{
5424
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocalePercentPipe, decorators: [{
5402
5425
  type: Pipe,
5403
5426
  args: [{
5404
5427
  name: 'localePercent',
@@ -5417,10 +5440,10 @@ class LocaleCurrencyPipe extends CurrencyPipe {
5417
5440
  transform(value, currencyCode, display, digits, locale) {
5418
5441
  return super.transform(value, currencyCode, display, digits, locale || this.translate.currentLang || 'en');
5419
5442
  }
5420
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocaleCurrencyPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5421
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: LocaleCurrencyPipe, isStandalone: true, name: "localeCurrency" }); }
5443
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocaleCurrencyPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5444
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: LocaleCurrencyPipe, isStandalone: true, name: "localeCurrency" }); }
5422
5445
  }
5423
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocaleCurrencyPipe, decorators: [{
5446
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocaleCurrencyPipe, decorators: [{
5424
5447
  type: Pipe,
5425
5448
  args: [{
5426
5449
  name: 'localeCurrency',
@@ -5462,10 +5485,10 @@ class LocaleNumberPipe {
5462
5485
  scale = typeof scale === 'number' ? scale : 2;
5463
5486
  return this.transform(value, grouping, pattern, scale, `1.${scale}-${scale}`);
5464
5487
  }
5465
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocaleNumberPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5466
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: LocaleNumberPipe, isStandalone: true, name: "localeNumber" }); }
5488
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocaleNumberPipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5489
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: LocaleNumberPipe, isStandalone: true, name: "localeNumber" }); }
5467
5490
  }
5468
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocaleNumberPipe, decorators: [{
5491
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocaleNumberPipe, decorators: [{
5469
5492
  type: Pipe,
5470
5493
  args: [{
5471
5494
  name: 'localeNumber',
@@ -5499,10 +5522,10 @@ class FileSizePipe extends LocaleNumberPipe {
5499
5522
  const number = super.stringToNumber((match ? match[1] : value).trim());
5500
5523
  return isNaN(number) ? number : Math.round(number * Math.pow(1024, match ? sizes.indexOf(match[2]) : 0));
5501
5524
  }
5502
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: FileSizePipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
5503
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: FileSizePipe, isStandalone: true, name: "fileSize" }); }
5525
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FileSizePipe, deps: null, target: i0.ɵɵFactoryTarget.Pipe }); }
5526
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: FileSizePipe, isStandalone: true, name: "fileSize" }); }
5504
5527
  }
5505
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: FileSizePipe, decorators: [{
5528
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: FileSizePipe, decorators: [{
5506
5529
  type: Pipe,
5507
5530
  args: [{ name: 'fileSize', standalone: true }]
5508
5531
  }] });
@@ -5537,10 +5560,10 @@ class LocaleDatePipe {
5537
5560
  }
5538
5561
  }
5539
5562
  }
5540
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocaleDatePipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5541
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: LocaleDatePipe, isStandalone: true, name: "localeDate" }); }
5563
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocaleDatePipe, deps: [{ token: i1.TranslateService }], target: i0.ɵɵFactoryTarget.Pipe }); }
5564
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: LocaleDatePipe, isStandalone: true, name: "localeDate" }); }
5542
5565
  }
5543
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: LocaleDatePipe, decorators: [{
5566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: LocaleDatePipe, decorators: [{
5544
5567
  type: Pipe,
5545
5568
  args: [{
5546
5569
  name: 'localeDate',
@@ -5561,10 +5584,10 @@ class SafeHtmlPipe {
5561
5584
  transform(style) {
5562
5585
  return this.sanitizer.bypassSecurityTrustHtml(style);
5563
5586
  }
5564
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SafeHtmlPipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
5565
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: SafeHtmlPipe, isStandalone: true, name: "safeHtml" }); }
5587
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SafeHtmlPipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
5588
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: SafeHtmlPipe, isStandalone: true, name: "safeHtml" }); }
5566
5589
  }
5567
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SafeHtmlPipe, decorators: [{
5590
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SafeHtmlPipe, decorators: [{
5568
5591
  type: Pipe,
5569
5592
  args: [{ name: 'safeHtml', standalone: true }]
5570
5593
  }], ctorParameters: () => [{ type: i1$1.DomSanitizer }] });
@@ -5580,10 +5603,10 @@ class SafeUrlPipe {
5580
5603
  transform(url) {
5581
5604
  return this.sanitizer.bypassSecurityTrustResourceUrl(url);
5582
5605
  }
5583
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
5584
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
5606
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SafeUrlPipe, deps: [{ token: i1$1.DomSanitizer }], target: i0.ɵɵFactoryTarget.Pipe }); }
5607
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: SafeUrlPipe, isStandalone: true, name: "safeUrl" }); }
5585
5608
  }
5586
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SafeUrlPipe, decorators: [{
5609
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: SafeUrlPipe, decorators: [{
5587
5610
  type: Pipe,
5588
5611
  args: [{ name: 'safeUrl', standalone: true }]
5589
5612
  }], ctorParameters: () => [{ type: i1$1.DomSanitizer }] });
@@ -5595,10 +5618,10 @@ class KeysPipe {
5595
5618
  transform(value) {
5596
5619
  return Object.keys(value);
5597
5620
  }
5598
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: KeysPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5599
- static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: KeysPipe, isStandalone: true, name: "keys", pure: false }); }
5621
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: KeysPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
5622
+ static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "19.2.20", ngImport: i0, type: KeysPipe, isStandalone: true, name: "keys", pure: false }); }
5600
5623
  }
5601
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: KeysPipe, decorators: [{
5624
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: KeysPipe, decorators: [{
5602
5625
  type: Pipe,
5603
5626
  args: [{ name: 'keys', pure: false, standalone: true }]
5604
5627
  }] });
@@ -5631,10 +5654,10 @@ class NativeNotificationService {
5631
5654
  };
5632
5655
  }
5633
5656
  }
5634
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: NativeNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5635
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: NativeNotificationService, providedIn: 'root' }); }
5657
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NativeNotificationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5658
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NativeNotificationService, providedIn: 'root' }); }
5636
5659
  }
5637
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: NativeNotificationService, decorators: [{
5660
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: NativeNotificationService, decorators: [{
5638
5661
  type: Injectable,
5639
5662
  args: [{
5640
5663
  providedIn: 'root'