barsa-novin-ray-core 2.3.60 → 2.3.62

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,8 +1,8 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Injectable, inject, ElementRef, Input, ChangeDetectionStrategy, Component, Pipe, ComponentFactoryResolver, Injector, ApplicationRef, Compiler, DOCUMENT, NgModuleFactory, InjectionToken, NgZone, EventEmitter, ChangeDetectorRef, Renderer2, HostBinding, Output, HostListener, ViewContainerRef, ViewChild, signal, Directive, TemplateRef, input, NgModule, NO_ERRORS_SCHEMA, CUSTOM_ELEMENTS_SCHEMA, provideAppInitializer, ErrorHandler } from '@angular/core';
3
- import { Subject, from, BehaviorSubject, of, exhaustMap, map as map$1, combineLatest, withLatestFrom as withLatestFrom$1, fromEvent, forkJoin, takeUntil as takeUntil$1, throwError, merge, interval, filter as filter$1, tap as tap$1, concatMap as concatMap$1, catchError as catchError$1, finalize as finalize$1, Observable, timer, debounceTime as debounceTime$1, mergeWith, Subscription } from 'rxjs';
3
+ import { Subject, from, BehaviorSubject, of, exhaustMap, map as map$1, combineLatest, withLatestFrom as withLatestFrom$1, fromEvent, forkJoin, takeUntil as takeUntil$1, filter as filter$1, throwError, merge, interval, tap as tap$1, concatMap as concatMap$1, catchError as catchError$1, finalize as finalize$1, Observable, timer, debounceTime as debounceTime$1, mergeWith, Subscription } from 'rxjs';
4
4
  import * as i1 from '@angular/router';
5
- import { Router, NavigationEnd, ActivatedRoute, NavigationStart, RouterEvent, RouterModule } from '@angular/router';
5
+ import { Router, NavigationEnd, ActivatedRoute, RouterEvent, NavigationStart, RouterModule } from '@angular/router';
6
6
  import { DomSanitizer, Title } from '@angular/platform-browser';
7
7
  import { filter, startWith, map, tap, takeUntil, withLatestFrom, delay, debounceTime, distinctUntilChanged, exhaustMap as exhaustMap$1, concatMap, finalize, publishReplay, refCount, shareReplay, switchMap, catchError, merge as merge$1, pluck, mergeWith as mergeWith$1 } from 'rxjs/operators';
8
8
  import moment from 'moment';
@@ -6245,6 +6245,7 @@ class ContainerService {
6245
6245
  this._scrollTop = 0;
6246
6246
  this._el = inject(ElementRef);
6247
6247
  this.paramId$ = this._activatedRoute.paramMap.pipe(takeUntil$1(this._onDestroy$));
6248
+ this.routeEvents$ = this._router.events.pipe(takeUntil$1(this._onDestroy$), filter$1((event) => event instanceof NavigationEnd && event instanceof RouterEvent));
6248
6249
  }
6249
6250
  /** Inserted by Angular inject() migration for backwards compatibility */
6250
6251
  ngOnDestroy() {
@@ -10905,7 +10906,7 @@ class FormComponent extends BaseComponent {
10905
10906
  frmParams.LoadActivityView = true;
10906
10907
  }
10907
10908
  const urlparams = this._activatedRoute.snapshot.params;
10908
- urlparams && urlparams.id && (frmParams.MoId = urlparams.id);
10909
+ urlparams && urlparams.moid && (frmParams.MoId = urlparams.moid);
10909
10910
  const formpanelCtrlr = new BarsaApi.Ul.FormPanelCtrlr({
10910
10911
  FormRequestParams: frmParams
10911
10912
  });