barsa-novin-ray-core 2.2.82 → 2.2.84
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.
|
@@ -5749,6 +5749,7 @@ class UlvMainService {
|
|
|
5749
5749
|
this._defaultSearchPanelSettingsSource = new Subject();
|
|
5750
5750
|
this._allSearchPanelSettingsSource = new BehaviorSubject([]);
|
|
5751
5751
|
this._cssBackgroundSource = new BehaviorSubject(null);
|
|
5752
|
+
this._shortCutsSource = new BehaviorSubject({});
|
|
5752
5753
|
this._hidePagingSource = new BehaviorSubject(false);
|
|
5753
5754
|
this._openSearchPanelHiddenSettingsSource = new Subject();
|
|
5754
5755
|
this._openSearchFilesManageSource = new Subject();
|
|
@@ -5861,6 +5862,9 @@ class UlvMainService {
|
|
|
5861
5862
|
get cssBackground$() {
|
|
5862
5863
|
return this._cssBackgroundSource.asObservable();
|
|
5863
5864
|
}
|
|
5865
|
+
setShortCuts(shortCuts) {
|
|
5866
|
+
this._shortCutsSource.next(shortCuts);
|
|
5867
|
+
}
|
|
5864
5868
|
setBackground(cssBackground) {
|
|
5865
5869
|
return this._cssBackgroundSource.next(cssBackground);
|
|
5866
5870
|
}
|