barsa-novin-ray-core 2.3.51 → 2.3.53
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.
|
@@ -6423,6 +6423,7 @@ class UlvMainService {
|
|
|
6423
6423
|
this._hideSearchapanelSource = new BehaviorSubject(false);
|
|
6424
6424
|
this._workflowShareButtons = [];
|
|
6425
6425
|
this._prepareMoForNewForm$ = new Subject();
|
|
6426
|
+
this._hideViewerLoadingSource = new BehaviorSubject(false);
|
|
6426
6427
|
this.context$ = this._contextSource
|
|
6427
6428
|
.asObservable()
|
|
6428
6429
|
.pipe(takeUntil(this._onDestroy$), tap((context) => (this.context = context)), tap((context) => this._initialize(context)), tap((context) => this._addEventListener(context)))
|
|
@@ -6483,6 +6484,9 @@ class UlvMainService {
|
|
|
6483
6484
|
this.allSearchPanelSettings$
|
|
6484
6485
|
]).pipe(map(([id, settings]) => settings?.find((c) => c.Id === id)), shareReplay(1));
|
|
6485
6486
|
}
|
|
6487
|
+
get hideViewerLoading$() {
|
|
6488
|
+
return this._hideViewerLoadingSource.asObservable();
|
|
6489
|
+
}
|
|
6486
6490
|
get hidePaging$() {
|
|
6487
6491
|
return this._hidePagingSource.asObservable();
|
|
6488
6492
|
}
|
|
@@ -6622,6 +6626,9 @@ class UlvMainService {
|
|
|
6622
6626
|
setTitle(title) {
|
|
6623
6627
|
this._titleSource.next({ text: title, image: '' });
|
|
6624
6628
|
}
|
|
6629
|
+
ulvSetHideViewerLoading(hideViewerLoading) {
|
|
6630
|
+
this._hideViewerLoadingSource.next(hideViewerLoading);
|
|
6631
|
+
}
|
|
6625
6632
|
toggleHideSearchpanel(val) {
|
|
6626
6633
|
this._hideSearchapanelSource.next(typeof val !== 'undefined' ? val : !this._hideSearchapanelSource.getValue());
|
|
6627
6634
|
}
|