@c8y/devicemanagement 1022.9.6 → 1022.13.0
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 +7 -0
- package/package.json +8 -8
- package/src/app/app.module.ts +2 -1
package/cumulocity.config.ts
CHANGED
|
@@ -74,6 +74,13 @@ export default {
|
|
|
74
74
|
description: 'Adds passthrough support to the remote access feature.',
|
|
75
75
|
scope: 'self'
|
|
76
76
|
},
|
|
77
|
+
{
|
|
78
|
+
name: 'Data point explorer',
|
|
79
|
+
module: 'DatapointExplorerModule',
|
|
80
|
+
path: '@c8y/ngx-components/datapoint-explorer',
|
|
81
|
+
description: 'Enables visualization of data points',
|
|
82
|
+
scope: 'self'
|
|
83
|
+
},
|
|
77
84
|
{
|
|
78
85
|
name: 'Device parameters list',
|
|
79
86
|
module: 'deviceParametersFeatureProvider',
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c8y/devicemanagement",
|
|
3
|
-
"version": "1022.
|
|
3
|
+
"version": "1022.13.0",
|
|
4
4
|
"description": "This package is used to scaffold a Device Management application for Cumulocity IoT.",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@c8y/style": "1022.
|
|
7
|
-
"@c8y/ng1-modules": "1022.
|
|
8
|
-
"@c8y/ngx-components": "1022.
|
|
9
|
-
"@c8y/client": "1022.
|
|
10
|
-
"@c8y/bootstrap": "1022.
|
|
6
|
+
"@c8y/style": "1022.13.0",
|
|
7
|
+
"@c8y/ng1-modules": "1022.13.0",
|
|
8
|
+
"@c8y/ngx-components": "1022.13.0",
|
|
9
|
+
"@c8y/client": "1022.13.0",
|
|
10
|
+
"@c8y/bootstrap": "1022.13.0",
|
|
11
11
|
"@angular/cdk": "^19.2.18",
|
|
12
12
|
"@angular/upgrade": "^19.2.14",
|
|
13
13
|
"angular": "1.8.3",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
"rxjs": "7.8.1"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@c8y/options": "1022.
|
|
19
|
-
"@c8y/devkit": "1022.
|
|
18
|
+
"@c8y/options": "1022.13.0",
|
|
19
|
+
"@c8y/devkit": "1022.13.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@angular/common": ">=19 <20"
|
package/src/app/app.module.ts
CHANGED
|
@@ -39,6 +39,7 @@ import {
|
|
|
39
39
|
import { cockpitWidgets } from '@c8y/ngx-components/widgets/cockpit';
|
|
40
40
|
import { deviceManagementWidgets } from '@c8y/ngx-components/widgets/device-management';
|
|
41
41
|
import { DeviceProvisionedCertificatesModule } from '@c8y/ngx-components/device-provisioned-certificates';
|
|
42
|
+
import { datapointGraphWidgetproviders } from '@c8y/ngx-components/widgets/definitions/datapoints-graph';
|
|
42
43
|
|
|
43
44
|
@NgModule({
|
|
44
45
|
imports: [
|
|
@@ -80,7 +81,7 @@ import { DeviceProvisionedCertificatesModule } from '@c8y/ngx-components/device-
|
|
|
80
81
|
DeviceProvisionedCertificatesModule,
|
|
81
82
|
alarmsDeviceManagementRouteAndNodeConfig()
|
|
82
83
|
],
|
|
83
|
-
providers: [deviceMapFeatureProvider, trackingFeatureProvider]
|
|
84
|
+
providers: [deviceMapFeatureProvider, trackingFeatureProvider, datapointGraphWidgetproviders]
|
|
84
85
|
})
|
|
85
86
|
export class AppModule extends HybridAppModule {
|
|
86
87
|
constructor(protected override upgrade: NgUpgradeModule) {
|