-
Notifications
You must be signed in to change notification settings - Fork 4
/
w20-business-theme.w20.json
139 lines (138 loc) · 5.82 KB
/
w20-business-theme.w20.json
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
{
"id": "w20-business-theme",
"name": "W20 Business Theme",
"type": "theme",
"modules": {
"main": {
"path": "{w20-business-theme}/modules/main",
"autoload": true,
"configSchema": {
"title": "Business theme main module configuration",
"type": "object",
"additionalProperties": false,
"properties": {
"sidebar": {
"title": "Sidebar configuration",
"type": "object",
"additionalProperties": false,
"properties": {
"width": {
"description": "Width of the side menu",
"type": "integer"
},
"show": {
"description": "Whether to show the sidebar or not",
"type": "boolean"
}
}
},
"brand": {
"title": "Topbar brand (application title) configuration",
"type": "object",
"additionalProperties": false,
"properties": {
"fixedWidth": {
"description": "If true, the brand name size will not exceed the default sidebar width",
"type": "boolean"
},
"backgroundColor": {
"description": "Set the color of the brand background",
"type": "string"
},
"textColor": {
"description": "Set the color of the brand text",
"type": "string"
}
}
},
"logo": {
"title": "Logo definition",
"type": "object",
"additionalProperties": false,
"properties": {
"image": {
"description": "The URL of the image",
"type": "string"
},
"link": {
"description": "The URL of the logo link",
"type": "string"
},
"tooltip": {
"description": "The text of the logo tooltip",
"type": "string"
},
"target": {
"description": "The target for the logo link",
"type": "string"
}
}
},
"links": {
"description": "Links to show directly in the top bar (up to 10 links)",
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"label": {
"type": "string",
"description": "Link displayed text"
},
"i18n": {
"type": "string",
"description": "I18n key of the link displayed text"
},
"href": {
"type": "string",
"description": "URL of the link"
},
"target": {
"type": "string",
"description": "The target of the link"
},
"security": {
"type": "string",
"description": "The link display security expression"
}
}
}
},
"hideBookmarks": {
"description": "Hide the bookmarks menu",
"type": "boolean"
},
"hideNotifications": {
"description": "Hide the notifications menu",
"type": "boolean"
},
"hideConnectivity": {
"description": "Hide the connectivity indicator",
"type": "boolean"
},
"hideCulture": {
"description": "Hide the culture chooser",
"type": "boolean"
},
"hideSecurity": {
"description": "Hide the security status",
"type": "boolean"
}
}
}
},
"style": {
"path": "[css]!{psa-business-theme}/psa-business-theme.css",
"autoload": true
}
},
"i18n": {
"en": [ "{w20-business-theme}/i18n/messages-en.json" ],
"fr": [ "{w20-business-theme}/i18n/messages-fr.json" ]
},
"requireConfig": {
"paths": {
"{psa-business-theme}": "${components-path:node_modules}/@groupe-psa/psa-business-theme"
}
}
}