beca-ui 2.1.0-beta.79 → 2.1.0-beta.80
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.
- package/dist/beca-ui.js +3672 -3668
- package/dist/components/MainLayout/MainLayout.types.d.ts +34 -0
- package/dist/main.css +1 -1
- package/package.json +1 -1
|
@@ -60,3 +60,37 @@ export interface MainLayoutConfig {
|
|
|
60
60
|
}
|
|
61
61
|
export declare const DEFAULT_MAIN_LAYOUT_CONFIG: MainLayoutConfig;
|
|
62
62
|
export declare const DEFAULT_USER_CONFIG: UserConfig;
|
|
63
|
+
interface HiddenMenu {
|
|
64
|
+
path: string;
|
|
65
|
+
}
|
|
66
|
+
interface CustomMenu {
|
|
67
|
+
path: string;
|
|
68
|
+
replaceUrl?: string;
|
|
69
|
+
label?: string;
|
|
70
|
+
labelEN?: string;
|
|
71
|
+
}
|
|
72
|
+
interface SettingLayoutConfigFunction {
|
|
73
|
+
workflow: any;
|
|
74
|
+
homePage: any;
|
|
75
|
+
mail: any;
|
|
76
|
+
calendar: any;
|
|
77
|
+
work: any;
|
|
78
|
+
library: any;
|
|
79
|
+
documentary: any;
|
|
80
|
+
contact: any;
|
|
81
|
+
social: any;
|
|
82
|
+
chat: any;
|
|
83
|
+
crm: any;
|
|
84
|
+
eam: any;
|
|
85
|
+
fsm: any;
|
|
86
|
+
}
|
|
87
|
+
export interface SettingLayoutConfigType {
|
|
88
|
+
layout: string;
|
|
89
|
+
css?: string;
|
|
90
|
+
hiddenMenu: HiddenMenu[];
|
|
91
|
+
customMenu: CustomMenu[];
|
|
92
|
+
defaultWorkflowPriority: string;
|
|
93
|
+
mainTheme: MainTheme;
|
|
94
|
+
functions: Partial<SettingLayoutConfigFunction>;
|
|
95
|
+
}
|
|
96
|
+
export declare const DEFAULT_SETTING_LAYOUT_CONFIG: SettingLayoutConfigType;
|