@everymatrix/stage-mm-verification-report 1.0.22 → 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-RUQTRHSC.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-BTUZAOXK.js.map
219
+ //# sourceMappingURL=chunk-3MEV7EYH.js.map
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  DeleteTemplateModalComponent
3
- } from "./chunk-7473W6W2.js";
4
- import "./chunk-RUQTRHSC.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-MVLDJ2EO.js.map
10
+ //# sourceMappingURL=chunk-47OBX3AV.js.map
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  DmButtonLibComponent
3
- } from "./chunk-RUQTRHSC.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-7473W6W2.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,97 +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
- }
29432
- ngOnInit() {
29433
29351
  this.setupHeaders();
29434
29352
  }
29435
- ngOnDestroy() {
29436
- window.removeEventListener("message", this.listener);
29437
- }
29438
29353
  getHeaders() {
29439
29354
  window.postMessage({ type: "GetInitialReportData" }, "*");
29440
29355
  window.addEventListener("message", this.listener);
@@ -29455,12 +29370,17 @@ var SessionService = class _SessionService {
29455
29370
  this.sessionDataSubject.next(newSessionData);
29456
29371
  }
29457
29372
  };
29458
- setupHeaders() {
29459
- interval(12e5).pipe(startWith(0), takeUntilDestroyed(this.destroyRef)).subscribe(() => this.getHeaders());
29373
+ resetSession() {
29374
+ this.setInitData(null);
29375
+ this.setupHeaders();
29460
29376
  }
29461
29377
  setInitData(data) {
29462
29378
  this.sessionDataSubject.next(data);
29463
29379
  }
29380
+ setupHeaders() {
29381
+ this.intervalSub?.unsubscribe();
29382
+ this.intervalSub = interval(12e5).pipe(startWith(0)).subscribe(() => this.getHeaders());
29383
+ }
29464
29384
  static \u0275fac = function SessionService_Factory(__ngFactoryType__) {
29465
29385
  return new (__ngFactoryType__ || _SessionService)();
29466
29386
  };
@@ -30167,17 +30087,12 @@ var SendingService = class _SendingService {
30167
30087
 
30168
30088
  // libs/shared/data-access/utils/src/lib/services/tracing-info.service.ts
30169
30089
  var TracingInfoService = class _TracingInfoService {
30090
+ intervalSub = null;
30170
30091
  tracingInfoSubject = new BehaviorSubject(null);
30171
30092
  tracingInfoData$ = this.tracingInfoSubject.asObservable();
30172
- destroyRef = inject(DestroyRef);
30173
30093
  constructor() {
30174
- }
30175
- ngOnInit() {
30176
30094
  this.setupTracingInfo();
30177
30095
  }
30178
- ngOnDestroy() {
30179
- window.removeEventListener("message", this.listener);
30180
- }
30181
30096
  getTracingInfo() {
30182
30097
  window.postMessage({ type: "GetTracingInfo" }, "*");
30183
30098
  window.addEventListener("message", this.listener);
@@ -30188,12 +30103,17 @@ var TracingInfoService = class _TracingInfoService {
30188
30103
  this.tracingInfoSubject.next(e.data.payload);
30189
30104
  }
30190
30105
  };
30191
- setupTracingInfo() {
30192
- interval(12e5).pipe(startWith(0), takeUntilDestroyed(this.destroyRef)).subscribe(() => this.getTracingInfo());
30106
+ resetTracingInfo() {
30107
+ this.setInitData(null);
30108
+ this.setupTracingInfo();
30193
30109
  }
30194
30110
  setInitData(data) {
30195
30111
  this.tracingInfoSubject.next(data);
30196
30112
  }
30113
+ setupTracingInfo() {
30114
+ this.intervalSub?.unsubscribe();
30115
+ this.intervalSub = interval(12e5).pipe(startWith(0)).subscribe(() => this.getTracingInfo());
30116
+ }
30197
30117
  static \u0275fac = function TracingInfoService_Factory(__ngFactoryType__) {
30198
30118
  return new (__ngFactoryType__ || _TracingInfoService)();
30199
30119
  };
@@ -37470,8 +37390,6 @@ export {
37470
37390
  require_moment,
37471
37391
  environment,
37472
37392
  ApiHandlerService,
37473
- takeUntilDestroyed,
37474
- toSignal,
37475
37393
  SessionService,
37476
37394
  ShadowDomStyleInjectorService,
37477
37395
  UiGridCommonService,
@@ -37540,13 +37458,6 @@ crypto-js/mode-ctr-gladman.js:
37540
37458
  * License: MIT
37541
37459
  *)
37542
37460
 
37543
- @angular/core/fesm2022/rxjs-interop.mjs:
37544
- (**
37545
- * @license Angular v19.0.7
37546
- * (c) 2010-2024 Google LLC. https://angular.io/
37547
- * License: MIT
37548
- *)
37549
-
37550
37461
  @angular/platform-browser/fesm2022/animations/async.mjs:
37551
37462
  (**
37552
37463
  * @license Angular v19.0.7
@@ -37554,4 +37465,4 @@ crypto-js/mode-ctr-gladman.js:
37554
37465
  * License: MIT
37555
37466
  *)
37556
37467
  */
37557
- //# sourceMappingURL=chunk-RUQTRHSC.js.map
37468
+ //# sourceMappingURL=chunk-UADUFI5X.js.map