barsa-novin-ray-core 2.2.83 → 2.2.85
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,5 +1,10 @@
|
|
|
1
1
|
import { SafeHtml } from '@angular/platform-browser';
|
|
2
2
|
import { DateInfo as DateInfoService } from '../date-services';
|
|
3
|
+
export type ShortCuts = {
|
|
4
|
+
[key: string]: {
|
|
5
|
+
dynCommand: MetaobjectDataModel;
|
|
6
|
+
};
|
|
7
|
+
};
|
|
3
8
|
export type UlvParamType = {
|
|
4
9
|
Flags: {
|
|
5
10
|
Data: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BehaviorSubject, Observable, Subscription } from 'rxjs';
|
|
2
|
-
import { MenuItem, MetaobjectDataModel, PagingSetting, SearchPanelSettings, GeneralControlInfoModel, ColumnInfoType, FormSetting, ShareButtonsChoiceDef, CssBackground } from '../abstract-classes';
|
|
2
|
+
import { MenuItem, MetaobjectDataModel, PagingSetting, SearchPanelSettings, GeneralControlInfoModel, ColumnInfoType, FormSetting, ShareButtonsChoiceDef, CssBackground, ShortCuts } from '../abstract-classes';
|
|
3
3
|
import { BbbTranslatePipe } from '../pipes';
|
|
4
4
|
import { ApiService } from './api.service';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -85,6 +85,7 @@ export declare class UlvMainService {
|
|
|
85
85
|
private _defaultSearchPanelSettingsSource;
|
|
86
86
|
private _allSearchPanelSettingsSource;
|
|
87
87
|
private _cssBackgroundSource;
|
|
88
|
+
private _shortCutsSource;
|
|
88
89
|
private _hidePagingSource;
|
|
89
90
|
private _openSearchPanelHiddenSettingsSource;
|
|
90
91
|
private _openSearchFilesManageSource;
|
|
@@ -112,6 +113,7 @@ export declare class UlvMainService {
|
|
|
112
113
|
get hideSearchpanel$(): Observable<boolean>;
|
|
113
114
|
get hideSearchpanel(): boolean;
|
|
114
115
|
get cssBackground$(): Observable<CssBackground | null>;
|
|
116
|
+
setShortCuts(shortCuts: ShortCuts): void;
|
|
115
117
|
setBackground(cssBackground: CssBackground): void;
|
|
116
118
|
hidePaging(hide: boolean): void;
|
|
117
119
|
setUiViewerClass(selector: string): void;
|