File tree Expand file tree Collapse file tree 4 files changed +198
-108
lines changed
client/packages/lowcoder/src
redux/reducers/uiReducers Expand file tree Collapse file tree 4 files changed +198
-108
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,29 @@ export interface ThemeDetail {
79
79
showDataLoadingIndicators ?: boolean ;
80
80
}
81
81
82
+ export interface BrandingSettings {
83
+ logo : string | null ;
84
+ squareLogo : string | null ;
85
+ mainBrandingColor : string ;
86
+ editorHeaderColor : string ;
87
+ adminSidebarColor : string ;
88
+ editorSidebarColor : string ;
89
+ font : string ;
90
+ errorPageText : string ;
91
+ errorPageImage : string | null ;
92
+ signUpPageText : string ;
93
+ signUpPageImage : string | null ;
94
+ loggedOutPageText : string ;
95
+ loggedOutPageImage : string | null ;
96
+ standardDescription : string ;
97
+ standardTitle : string ;
98
+ showDocumentation : boolean ;
99
+ documentationLink : string | null ;
100
+ submitIssue : boolean ;
101
+ whatsNew : boolean ;
102
+ whatsNewLink : string | null ;
103
+ }
104
+
82
105
export function getThemeDetailName ( key : keyof ThemeDetail ) {
83
106
switch ( key ) {
84
107
case "primary" : return trans ( "themeDetail.primary" ) ;
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ interface UploadResponse {
10
10
export enum MaterialUploadTypeEnum {
11
11
LOGO = "LOGO" ,
12
12
FAVICON = "FAVICON" ,
13
+ COMMON = "COMMON" ,
13
14
}
14
15
15
16
class MaterialApi extends Api {
You can’t perform that action at this time.
0 commit comments