forked from redhat-developer/rhdh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.d.ts
190 lines (190 loc) · 4.39 KB
/
config.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
export interface Config {
/** Configurations for the backstage(janus) instance */
developerHub?: {
/**
* The url of json data for customization.
* @visibility frontend
*/
proxyPath?: string;
/**
* Name of the Backstage flavor (e.g. backstage, rhdh, rhtap)
* @visibility frontend
*/
flavor?: string;
};
app: {
branding?: {
/**
* Base64 URI for the full logo
* @visibility frontend
*/
fullLogo?: string;
/**
* size Configuration for the full logo
* The following units are supported: <number>, px, em, rem, <percentage>
* @visibility frontend
*/
fullLogoWidth?: string | number;
/**
* Base64 URI for the icon logo
* @visibility frontend
*/
iconLogo?: string;
/**
* @deepVisibility frontend
*/
theme?: {
[key: string]: unknown;
};
};
sidebar?: {
/**
* Show the logo in the sidebar
* @visibility frontend
*/
logo?: boolean;
/**
* Show the search in the sidebar
* @visibility frontend
*/
search?: boolean;
/**
* Show the settings in the sidebar
* @visibility frontend
*/
settings?: boolean;
/**
* Show the administration in the sidebar
* @visibility frontend
*/
administration?: boolean;
};
};
/** @deepVisibility frontend */
dynamicPlugins: {
/** @deepVisibility frontend */
frontend?: {
[key: string]: {
dynamicRoutes?: {
path: string;
module?: string;
importName?: string;
menuItem?: {
icon: string;
text: string;
};
config: {
props?: {
[key: string]: string;
};
};
}[];
routeBindings?: {
targets?: {
module?: string;
importName: string;
name?: string;
}[];
bindings?: {
bindTarget: string;
bindMap: {
[key: string]: string;
};
}[];
};
entityTabs?: {
path: string;
title: string;
mountPoint: string;
priority?: number;
}[];
mountPoints?: {
mountPoint: string;
module?: string;
importName?: string;
config: {
layout?: {
[key: string]:
| string
| {
[key: string]: string;
};
};
props?: {
[key: string]: string;
};
if?: {
allOf?: (
| {
[key: string]: string | string[];
}
| string
)[];
anyOf?: (
| {
[key: string]: string | string[];
}
| string
)[];
oneOf?: (
| {
[key: string]: string | string[];
}
| string
)[];
};
};
}[];
appIcons?: {
module?: string;
importName?: string;
name: string;
}[];
apiFactories?: {
module?: string;
importName?: string;
}[];
providerSettings?: {
title: string;
description: string;
provider: string;
}[];
scaffolderFieldExtensions?: {
module?: string;
importName?: string;
}[];
signInPage?: {
module?: string;
importName: string;
};
techdocsAddons?: {
module?: string;
importName?: string;
config?: {
props?: {
[key: string]: string;
};
};
}[];
themes?: {
module?: string;
id: string;
title: string;
variant: 'light' | 'dark';
icon: string;
importName?: string;
}[];
};
};
};
/**
* The signInPage provider
* @visibility frontend
*/
signInPage?: string;
/**
* The option to includes transient parent groups when determining user group membership
* @visibility frontend
*/
includeTransitiveGroupOwnership?: boolean;
}