@c8y/devicemanagement 1023.0.2 → 1023.4.1
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 +23 -1
- package/package.json +9 -8
package/cumulocity.config.ts
CHANGED
|
@@ -19,11 +19,19 @@ export default {
|
|
|
19
19
|
sensorAppOneLink: 'http://onelink.to/pca6qe',
|
|
20
20
|
sensorPhone: true,
|
|
21
21
|
contentSecurityPolicy:
|
|
22
|
-
"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:; img-src * data: blob:; font-src * data:; frame-src *; worker-src 'self' blob:;",
|
|
22
|
+
"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: blob:; style-src * 'unsafe-inline' blob:; img-src * data: blob:; font-src * data:; frame-src *; worker-src 'self' blob:;",
|
|
23
23
|
dynamicOptionsUrl: true,
|
|
24
24
|
contextHelp: true,
|
|
25
25
|
license,
|
|
26
26
|
upgrade: true,
|
|
27
|
+
importMap: {
|
|
28
|
+
lit: '@c8y/html-repo/lit',
|
|
29
|
+
leaflet: '@c8y/html-repo/leaflet',
|
|
30
|
+
echarts: '@c8y/html-repo/echarts',
|
|
31
|
+
angular: '@c8y/html-repo/angular',
|
|
32
|
+
styles: '@c8y/html-repo/styles',
|
|
33
|
+
fetch: '@c8y/html-repo/fetch'
|
|
34
|
+
},
|
|
27
35
|
exports: [
|
|
28
36
|
...deviceManagementWidgetsExports,
|
|
29
37
|
{
|
|
@@ -93,6 +101,20 @@ export default {
|
|
|
93
101
|
'Adds Dashboard manager as Management feature and allows to manage type dashboards.',
|
|
94
102
|
scope: 'self'
|
|
95
103
|
},
|
|
104
|
+
{
|
|
105
|
+
name: 'Dashboards: Add device dashboards',
|
|
106
|
+
module: 'addDeviceContextDashboardFeatureProvider',
|
|
107
|
+
path: '@c8y/ngx-components/context-dashboard/devicemanagement',
|
|
108
|
+
description: 'Allows to add dashboards on device level.',
|
|
109
|
+
scope: 'self'
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
name: 'Dashboards: View device dashboards',
|
|
113
|
+
module: 'viewDeviceContextDashboardFeatureProvider',
|
|
114
|
+
path: '@c8y/ngx-components/context-dashboard/devicemanagement',
|
|
115
|
+
description: 'Allows to view dashboards on device level.',
|
|
116
|
+
scope: 'self'
|
|
117
|
+
},
|
|
96
118
|
{
|
|
97
119
|
name: 'Sensor phone',
|
|
98
120
|
module: 'SensorPhoneModule',
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c8y/devicemanagement",
|
|
3
|
-
"version": "1023.
|
|
3
|
+
"version": "1023.4.1",
|
|
4
4
|
"description": "This package is used to scaffold a Device Management application for Cumulocity IoT.",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@c8y/style": "1023.
|
|
7
|
-
"@c8y/ng1-modules": "1023.
|
|
8
|
-
"@c8y/ngx-components": "1023.
|
|
9
|
-
"@c8y/client": "1023.
|
|
10
|
-
"@c8y/bootstrap": "1023.
|
|
6
|
+
"@c8y/style": "1023.4.1",
|
|
7
|
+
"@c8y/ng1-modules": "1023.4.1",
|
|
8
|
+
"@c8y/ngx-components": "1023.4.1",
|
|
9
|
+
"@c8y/client": "1023.4.1",
|
|
10
|
+
"@c8y/bootstrap": "1023.4.1",
|
|
11
|
+
"@c8y/html-repo": "1023.4.1",
|
|
11
12
|
"@angular/cdk": "^20.2.7",
|
|
12
13
|
"@angular/upgrade": "^20.3.3",
|
|
13
14
|
"angular": "1.8.3",
|
|
@@ -16,8 +17,8 @@
|
|
|
16
17
|
"rxjs": "7.8.2"
|
|
17
18
|
},
|
|
18
19
|
"devDependencies": {
|
|
19
|
-
"@c8y/options": "1023.
|
|
20
|
-
"@c8y/devkit": "1023.
|
|
20
|
+
"@c8y/options": "1023.4.1",
|
|
21
|
+
"@c8y/devkit": "1023.4.1"
|
|
21
22
|
},
|
|
22
23
|
"peerDependencies": {
|
|
23
24
|
"@angular/common": ">=20 <21"
|