@topconsultnpm/sdkui-react-beta 6.7.8 → 6.7.10
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,23 +1,4 @@
|
|
|
1
|
-
import { AppearanceSettings, FilterPageSettings, SearchSettings, UIPanel, UserAppSettings } from "@topconsultnpm/sdk-ts-beta";
|
|
2
1
|
export class SDKUI_Globals {
|
|
3
|
-
constructor() {
|
|
4
|
-
SDKUI_Globals.userAppSettings = new UserAppSettings();
|
|
5
|
-
SDKUI_Globals.userAppSettings.appearanceSettings = new AppearanceSettings();
|
|
6
|
-
SDKUI_Globals.userAppSettings.appearanceSettings.fontSize = "12px";
|
|
7
|
-
SDKUI_Globals.userAppSettings.appearanceSettings.gridRowAlternationEnabled = 0;
|
|
8
|
-
SDKUI_Globals.userAppSettings.appearanceSettings.gridShowColumnLines = 0;
|
|
9
|
-
SDKUI_Globals.userAppSettings.appearanceSettings.gridShowRowLines = 0;
|
|
10
|
-
SDKUI_Globals.userAppSettings.appearanceSettings.useNativeScrollbar = 1;
|
|
11
|
-
SDKUI_Globals.userAppSettings.landingPage = "";
|
|
12
|
-
SDKUI_Globals.userAppSettings.searchSettings = new SearchSettings();
|
|
13
|
-
SDKUI_Globals.userAppSettings.searchSettings.filterPageSettings = new FilterPageSettings();
|
|
14
|
-
SDKUI_Globals.userAppSettings.searchSettings.filterPageSettings.treePanel = new UIPanel();
|
|
15
|
-
SDKUI_Globals.userAppSettings.searchSettings.filterPageSettings.treePanel.visible = 1;
|
|
16
|
-
SDKUI_Globals.userAppSettings.searchSettings.filterPageSettings.treePanel.size = '20%';
|
|
17
|
-
SDKUI_Globals.userAppSettings.searchSettings.filterPageSettings.recentPanel = new UIPanel();
|
|
18
|
-
SDKUI_Globals.userAppSettings.searchSettings.filterPageSettings.recentPanel.visible = 1;
|
|
19
|
-
SDKUI_Globals.userAppSettings.searchSettings.filterPageSettings.recentPanel.size = '30%';
|
|
20
|
-
}
|
|
21
2
|
static get dataGridShowRowLines() { return this._dataGridShowRowLines; }
|
|
22
3
|
static set dataGridShowRowLines(theDataGridShowRowLines) { this._dataGridShowRowLines = theDataGridShowRowLines; }
|
|
23
4
|
static get dataGridShowColumnLines() { return this._dataGridShowColumnLines; }
|