@c8y/devicemanagement 1022.13.0 → 1022.16.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/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@c8y/devicemanagement",
3
- "version": "1022.13.0",
3
+ "version": "1022.16.2",
4
4
  "description": "This package is used to scaffold a Device Management application for Cumulocity IoT.",
5
5
  "dependencies": {
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",
6
+ "@c8y/style": "1022.16.2",
7
+ "@c8y/ng1-modules": "1022.16.2",
8
+ "@c8y/ngx-components": "1022.16.2",
9
+ "@c8y/client": "1022.16.2",
10
+ "@c8y/bootstrap": "1022.16.2",
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.13.0",
19
- "@c8y/devkit": "1022.13.0"
18
+ "@c8y/options": "1022.16.2",
19
+ "@c8y/devkit": "1022.16.2"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "@angular/common": ">=19 <20"
@@ -14,8 +14,10 @@ import {
14
14
  } from '@c8y/ngx-components/context-dashboard';
15
15
  import { DeviceListModule } from '@c8y/ngx-components/device-list';
16
16
  import { deviceMapFeatureProvider } from '@c8y/ngx-components/device-map';
17
+ import { deviceParametersFeatureProvider } from '@c8y/ngx-components/device-parameters';
17
18
  import { DeviceProfileModule } from '@c8y/ngx-components/device-profile';
18
19
  import { DeviceProtocolsModule } from '@c8y/ngx-components/device-protocols';
20
+ import { DeviceProvisionedCertificatesModule } from '@c8y/ngx-components/device-provisioned-certificates';
19
21
  import { DeviceShellModule } from '@c8y/ngx-components/device-shell';
20
22
  import { DiagnosticsModule } from '@c8y/ngx-components/diagnostics';
21
23
  import { AddLocationModule, LocationTabModule } from '@c8y/ngx-components/location';
@@ -37,9 +39,8 @@ import {
37
39
  UpgradeModule
38
40
  } from '@c8y/ngx-components/upgrade';
39
41
  import { cockpitWidgets } from '@c8y/ngx-components/widgets/cockpit';
40
- import { deviceManagementWidgets } from '@c8y/ngx-components/widgets/device-management';
41
- import { DeviceProvisionedCertificatesModule } from '@c8y/ngx-components/device-provisioned-certificates';
42
42
  import { datapointGraphWidgetproviders } from '@c8y/ngx-components/widgets/definitions/datapoints-graph';
43
+ import { deviceManagementWidgets } from '@c8y/ngx-components/widgets/device-management';
43
44
 
44
45
  @NgModule({
45
46
  imports: [
@@ -81,7 +82,12 @@ import { datapointGraphWidgetproviders } from '@c8y/ngx-components/widgets/defin
81
82
  DeviceProvisionedCertificatesModule,
82
83
  alarmsDeviceManagementRouteAndNodeConfig()
83
84
  ],
84
- providers: [deviceMapFeatureProvider, trackingFeatureProvider, datapointGraphWidgetproviders]
85
+ providers: [
86
+ deviceMapFeatureProvider,
87
+ trackingFeatureProvider,
88
+ datapointGraphWidgetproviders,
89
+ deviceParametersFeatureProvider
90
+ ]
85
91
  })
86
92
  export class AppModule extends HybridAppModule {
87
93
  constructor(protected override upgrade: NgUpgradeModule) {