@c8y/administration 1020.24.2 → 1020.26.2
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/cumulocity.config.ts +31 -1
- package/package.json +8 -8
package/cumulocity.config.ts
CHANGED
|
@@ -19,7 +19,37 @@ export default {
|
|
|
19
19
|
contextHelp: true,
|
|
20
20
|
contentSecurityPolicy:
|
|
21
21
|
"base-uri 'none'; default-src 'self' 'unsafe-inline' http: https: ws: wss:; connect-src 'self' http: https: ws: wss:; script-src 'self' *.bugherd.com *.twitter.com *.twimg.com *.aptrinsic.com 'unsafe-inline' 'unsafe-eval' data:; style-src * 'unsafe-inline' blob:; media-src 'self' blob:; img-src * data: blob:; font-src * data:; frame-src *; worker-src 'self' blob:;",
|
|
22
|
-
upgrade: true
|
|
22
|
+
upgrade: true,
|
|
23
|
+
exports: [
|
|
24
|
+
{
|
|
25
|
+
module: 'BaseBrandingModule',
|
|
26
|
+
name: gettext('Branding base editor'),
|
|
27
|
+
path: '@c8y/ngx-components/branding/base-branding',
|
|
28
|
+
description: gettext('Allows to make basic changes to the tenants branding.'),
|
|
29
|
+
scope: 'self'
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
module: 'DarkThemeModule',
|
|
33
|
+
name: gettext('Branding dark theme editor'),
|
|
34
|
+
path: '@c8y/ngx-components/branding/dark-theme',
|
|
35
|
+
description: gettext('Allows editing the dark theme variables.'),
|
|
36
|
+
scope: 'self'
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
module: 'ExtraCssBrandingEditorModule',
|
|
40
|
+
name: gettext('Branding custom CSS editor'),
|
|
41
|
+
path: '@c8y/ngx-components/branding/extra-css-branding-editor',
|
|
42
|
+
description: gettext('Allows to add and edit a custom style sheet to the branding.'),
|
|
43
|
+
scope: 'self'
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
module: 'PlainBrandingEditorModule',
|
|
47
|
+
name: gettext('Branding JSON editor'),
|
|
48
|
+
path: '@c8y/ngx-components/branding/plain-branding-editor',
|
|
49
|
+
description: gettext('Allows to edit the plain JSON of the branding.'),
|
|
50
|
+
scope: 'self'
|
|
51
|
+
}
|
|
52
|
+
]
|
|
23
53
|
},
|
|
24
54
|
buildTime: {
|
|
25
55
|
federation: [
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c8y/administration",
|
|
3
|
-
"version": "1020.
|
|
3
|
+
"version": "1020.26.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@c8y/style": "1020.
|
|
7
|
-
"@c8y/ng1-modules": "1020.
|
|
8
|
-
"@c8y/ngx-components": "1020.
|
|
9
|
-
"@c8y/client": "1020.
|
|
10
|
-
"@c8y/bootstrap": "1020.
|
|
6
|
+
"@c8y/style": "1020.26.2",
|
|
7
|
+
"@c8y/ng1-modules": "1020.26.2",
|
|
8
|
+
"@c8y/ngx-components": "1020.26.2",
|
|
9
|
+
"@c8y/client": "1020.26.2",
|
|
10
|
+
"@c8y/bootstrap": "1020.26.2",
|
|
11
11
|
"@angular/cdk": "^17.3.9",
|
|
12
12
|
"@angular/upgrade": "^17.3.9",
|
|
13
13
|
"angular": "1.8.3",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"rxjs": "^7.4.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@c8y/options": "1020.
|
|
19
|
-
"@c8y/devkit": "1020.
|
|
18
|
+
"@c8y/options": "1020.26.2",
|
|
19
|
+
"@c8y/devkit": "1020.26.2"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@angular/common": ">=16 <18"
|