@everymatrix/stage-mm-verification-report 1.0.20 → 1.0.23

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.
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  DmButtonLibComponent
3
- } from "./chunk-V6NIUBXM.js";
3
+ } from "./chunk-UADUFI5X.js";
4
4
  import {
5
5
  Dialog,
6
6
  DialogModule,
@@ -216,4 +216,4 @@ var DomainsOverloadModalComponent = class _DomainsOverloadModalComponent {
216
216
  export {
217
217
  DomainsOverloadModalComponent
218
218
  };
219
- //# sourceMappingURL=chunk-HIYUKGZE.js.map
219
+ //# sourceMappingURL=chunk-3MEV7EYH.js.map
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  DeleteTemplateModalComponent
3
- } from "./chunk-GBDROC4V.js";
4
- import "./chunk-V6NIUBXM.js";
3
+ } from "./chunk-BFUWYAHC.js";
4
+ import "./chunk-UADUFI5X.js";
5
5
  import "./chunk-2SMQV2OO.js";
6
6
  import "./chunk-57JN4OKS.js";
7
7
  export {
8
8
  DeleteTemplateModalComponent
9
9
  };
10
- //# sourceMappingURL=chunk-MGRA6L6G.js.map
10
+ //# sourceMappingURL=chunk-47OBX3AV.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  DmButtonLibComponent
3
- } from "./chunk-V6NIUBXM.js";
3
+ } from "./chunk-UADUFI5X.js";
4
4
  import {
5
5
  BaseComponent,
6
6
  BaseStyle,
@@ -450,4 +450,4 @@ export {
450
450
  ProgressSpinnerModule,
451
451
  DeleteTemplateModalComponent
452
452
  };
453
- //# sourceMappingURL=chunk-GBDROC4V.js.map
453
+ //# sourceMappingURL=chunk-BFUWYAHC.js.map
@@ -16,7 +16,6 @@ import {
16
16
  Component,
17
17
  Console,
18
18
  DOCUMENT,
19
- DestroyRef,
20
19
  DomAdapter,
21
20
  ElementRef,
22
21
  EnvironmentInjector,
@@ -63,8 +62,6 @@ import {
63
62
  _sanitizeHtml,
64
63
  _sanitizeUrl,
65
64
  allowSanitizationBypassAndThrow,
66
- assertInInjectionContext,
67
- assertNotInReactiveContext,
68
65
  booleanAttribute,
69
66
  bypassSanitizationTrustHtml,
70
67
  bypassSanitizationTrustResourceUrl,
@@ -72,7 +69,6 @@ import {
72
69
  bypassSanitizationTrustStyle,
73
70
  bypassSanitizationTrustUrl,
74
71
  catchError,
75
- computed,
76
72
  concatMap,
77
73
  createPlatformFactory,
78
74
  filter,
@@ -99,7 +95,6 @@ import {
99
95
  signal,
100
96
  startWith,
101
97
  switchMap,
102
- takeUntil,
103
98
  tap,
104
99
  throttleTime,
105
100
  throwError,
@@ -8077,7 +8072,7 @@ var require_angular = __commonJS({
8077
8072
  return this.state[section].body.join("");
8078
8073
  },
8079
8074
  recurse: function(ast, intoId, nameId, recursionFn, create, skipWatchIdCheck) {
8080
- var left, right, self2 = this, args, expression, computed2;
8075
+ var left, right, self2 = this, args, expression, computed;
8081
8076
  recursionFn = recursionFn || noop2;
8082
8077
  if (!skipWatchIdCheck && isDefined(ast.watchId)) {
8083
8078
  intoId = intoId || this.nextId();
@@ -8253,13 +8248,13 @@ var require_angular = __commonJS({
8253
8248
  break;
8254
8249
  case AST.ObjectExpression:
8255
8250
  args = [];
8256
- computed2 = false;
8251
+ computed = false;
8257
8252
  forEach(ast.properties, function(property) {
8258
8253
  if (property.computed) {
8259
- computed2 = true;
8254
+ computed = true;
8260
8255
  }
8261
8256
  });
8262
- if (computed2) {
8257
+ if (computed) {
8263
8258
  intoId = intoId || this.nextId();
8264
8259
  this.assign(intoId, "{}");
8265
8260
  forEach(ast.properties, function(property) {
@@ -8362,8 +8357,8 @@ var require_angular = __commonJS({
8362
8357
  computedMember: function(left, right) {
8363
8358
  return left + "[" + right + "]";
8364
8359
  },
8365
- member: function(left, right, computed2) {
8366
- if (computed2) return this.computedMember(left, right);
8360
+ member: function(left, right, computed) {
8361
+ if (computed) return this.computedMember(left, right);
8367
8362
  return this.nonComputedMember(left, right);
8368
8363
  },
8369
8364
  getStringValue: function(item) {
@@ -29344,95 +29339,17 @@ var ApiHandlerService = class _ApiHandlerService {
29344
29339
  }], () => [{ type: HttpClient }], null);
29345
29340
  })();
29346
29341
 
29347
- // node_modules/@angular/core/fesm2022/rxjs-interop.mjs
29348
- function takeUntilDestroyed(destroyRef) {
29349
- if (!destroyRef) {
29350
- assertInInjectionContext(takeUntilDestroyed);
29351
- destroyRef = inject(DestroyRef);
29352
- }
29353
- const destroyed$ = new Observable((observer) => {
29354
- const unregisterFn = destroyRef.onDestroy(observer.next.bind(observer));
29355
- return unregisterFn;
29356
- });
29357
- return (source) => {
29358
- return source.pipe(takeUntil(destroyed$));
29359
- };
29360
- }
29361
- function toSignal(source, options) {
29362
- ngDevMode && assertNotInReactiveContext(toSignal, "Invoking `toSignal` causes new subscriptions every time. Consider moving `toSignal` outside of the reactive context and read the signal value where needed.");
29363
- const requiresCleanup = !options?.manualCleanup;
29364
- requiresCleanup && !options?.injector && assertInInjectionContext(toSignal);
29365
- const cleanupRef = requiresCleanup ? options?.injector?.get(DestroyRef) ?? inject(DestroyRef) : null;
29366
- const equal = makeToSignalEqual(options?.equal);
29367
- let state;
29368
- if (options?.requireSync) {
29369
- state = signal({
29370
- kind: 0
29371
- /* StateKind.NoValue */
29372
- }, {
29373
- equal
29374
- });
29375
- } else {
29376
- state = signal({
29377
- kind: 1,
29378
- value: options?.initialValue
29379
- }, {
29380
- equal
29381
- });
29382
- }
29383
- const sub = source.subscribe({
29384
- next: (value) => state.set({
29385
- kind: 1,
29386
- value
29387
- }),
29388
- error: (error) => {
29389
- if (options?.rejectErrors) {
29390
- throw error;
29391
- }
29392
- state.set({
29393
- kind: 2,
29394
- error
29395
- });
29396
- }
29397
- // Completion of the Observable is meaningless to the signal. Signals don't have a concept of
29398
- // "complete".
29399
- });
29400
- if (options?.requireSync && state().kind === 0) {
29401
- throw new RuntimeError(601, (typeof ngDevMode === "undefined" || ngDevMode) && "`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.");
29402
- }
29403
- cleanupRef?.onDestroy(sub.unsubscribe.bind(sub));
29404
- return computed(() => {
29405
- const current = state();
29406
- switch (current.kind) {
29407
- case 1:
29408
- return current.value;
29409
- case 2:
29410
- throw current.error;
29411
- case 0:
29412
- throw new RuntimeError(601, (typeof ngDevMode === "undefined" || ngDevMode) && "`toSignal()` called with `requireSync` but `Observable` did not emit synchronously.");
29413
- }
29414
- }, {
29415
- equal: options?.equal
29416
- });
29417
- }
29418
- function makeToSignalEqual(userEquality = Object.is) {
29419
- return (a, b) => a.kind === 1 && b.kind === 1 && userEquality(a.value, b.value);
29420
- }
29421
-
29422
29342
  // libs/shared/data-access/utils/src/lib/services/session.service.ts
29423
29343
  var SessionService = class _SessionService {
29344
+ intervalSub = null;
29424
29345
  sessionDataSubject = new BehaviorSubject(null);
29425
29346
  sessionData$ = this.sessionDataSubject.asObservable();
29426
- destroyRef = inject(DestroyRef);
29427
29347
  get sessionData() {
29428
29348
  return this.sessionDataSubject.value;
29429
29349
  }
29430
29350
  constructor() {
29431
29351
  this.setupHeaders();
29432
29352
  }
29433
- ngOnDestroy() {
29434
- window.removeEventListener("message", this.listener);
29435
- }
29436
29353
  getHeaders() {
29437
29354
  window.postMessage({ type: "GetInitialReportData" }, "*");
29438
29355
  window.addEventListener("message", this.listener);
@@ -29453,12 +29370,17 @@ var SessionService = class _SessionService {
29453
29370
  this.sessionDataSubject.next(newSessionData);
29454
29371
  }
29455
29372
  };
29456
- setupHeaders() {
29457
- interval(12e5).pipe(startWith(0), takeUntilDestroyed(this.destroyRef)).subscribe(() => this.getHeaders());
29373
+ resetSession() {
29374
+ this.setInitData(null);
29375
+ this.setupHeaders();
29458
29376
  }
29459
29377
  setInitData(data) {
29460
29378
  this.sessionDataSubject.next(data);
29461
29379
  }
29380
+ setupHeaders() {
29381
+ this.intervalSub?.unsubscribe();
29382
+ this.intervalSub = interval(12e5).pipe(startWith(0)).subscribe(() => this.getHeaders());
29383
+ }
29462
29384
  static \u0275fac = function SessionService_Factory(__ngFactoryType__) {
29463
29385
  return new (__ngFactoryType__ || _SessionService)();
29464
29386
  };
@@ -30165,15 +30087,12 @@ var SendingService = class _SendingService {
30165
30087
 
30166
30088
  // libs/shared/data-access/utils/src/lib/services/tracing-info.service.ts
30167
30089
  var TracingInfoService = class _TracingInfoService {
30090
+ intervalSub = null;
30168
30091
  tracingInfoSubject = new BehaviorSubject(null);
30169
30092
  tracingInfoData$ = this.tracingInfoSubject.asObservable();
30170
- destroyRef = inject(DestroyRef);
30171
30093
  constructor() {
30172
30094
  this.setupTracingInfo();
30173
30095
  }
30174
- ngOnDestroy() {
30175
- window.removeEventListener("message", this.listener);
30176
- }
30177
30096
  getTracingInfo() {
30178
30097
  window.postMessage({ type: "GetTracingInfo" }, "*");
30179
30098
  window.addEventListener("message", this.listener);
@@ -30184,12 +30103,17 @@ var TracingInfoService = class _TracingInfoService {
30184
30103
  this.tracingInfoSubject.next(e.data.payload);
30185
30104
  }
30186
30105
  };
30187
- setupTracingInfo() {
30188
- interval(12e5).pipe(startWith(0), takeUntilDestroyed(this.destroyRef)).subscribe(() => this.getTracingInfo());
30106
+ resetTracingInfo() {
30107
+ this.setInitData(null);
30108
+ this.setupTracingInfo();
30189
30109
  }
30190
30110
  setInitData(data) {
30191
30111
  this.tracingInfoSubject.next(data);
30192
30112
  }
30113
+ setupTracingInfo() {
30114
+ this.intervalSub?.unsubscribe();
30115
+ this.intervalSub = interval(12e5).pipe(startWith(0)).subscribe(() => this.getTracingInfo());
30116
+ }
30193
30117
  static \u0275fac = function TracingInfoService_Factory(__ngFactoryType__) {
30194
30118
  return new (__ngFactoryType__ || _TracingInfoService)();
30195
30119
  };
@@ -37466,8 +37390,6 @@ export {
37466
37390
  require_moment,
37467
37391
  environment,
37468
37392
  ApiHandlerService,
37469
- takeUntilDestroyed,
37470
- toSignal,
37471
37393
  SessionService,
37472
37394
  ShadowDomStyleInjectorService,
37473
37395
  UiGridCommonService,
@@ -37536,13 +37458,6 @@ crypto-js/mode-ctr-gladman.js:
37536
37458
  * License: MIT
37537
37459
  *)
37538
37460
 
37539
- @angular/core/fesm2022/rxjs-interop.mjs:
37540
- (**
37541
- * @license Angular v19.0.7
37542
- * (c) 2010-2024 Google LLC. https://angular.io/
37543
- * License: MIT
37544
- *)
37545
-
37546
37461
  @angular/platform-browser/fesm2022/animations/async.mjs:
37547
37462
  (**
37548
37463
  * @license Angular v19.0.7
@@ -37550,4 +37465,4 @@ crypto-js/mode-ctr-gladman.js:
37550
37465
  * License: MIT
37551
37466
  *)
37552
37467
  */
37553
- //# sourceMappingURL=chunk-V6NIUBXM.js.map
37468
+ //# sourceMappingURL=chunk-UADUFI5X.js.map