@c8y/cockpit 1020.6.2 → 1020.7.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.
@@ -30,6 +30,77 @@ export default {
30
30
  path: '@c8y/ngx-components/report-dashboard',
31
31
  description: 'Reports list and navigator items reports',
32
32
  scope: 'self'
33
+ },
34
+ {
35
+ name: 'Cockpit widgets',
36
+ module: 'CockpitWidgetsModule',
37
+ path: '@c8y/ngx-components/widgets/cockpit',
38
+ description: 'Angular widgets used in the cockpit application.',
39
+ scope: 'self'
40
+ },
41
+ {
42
+ name: 'Cockpit alarms',
43
+ module: 'CockpitAlarmsModule',
44
+ path: '@c8y/ngx-components/alarms/cockpit',
45
+ description: 'Alarms functionality in cockpit application.',
46
+ scope: 'self'
47
+ },
48
+ {
49
+ name: 'Sensor phone',
50
+ module: 'SensorPhoneModule',
51
+ path: '@c8y/ngx-components/sensor-phone',
52
+ description: 'Dialogs to connect smartphone to platform.',
53
+ scope: 'self'
54
+ },
55
+ {
56
+ name: 'Child devices',
57
+ module: 'ChildDevicesModule',
58
+ path: '@c8y/ngx-components/child-devices',
59
+ description: 'View listing children of devices.',
60
+ scope: 'self'
61
+ },
62
+ {
63
+ name: 'Assets navigator',
64
+ module: 'AssetsNavigatorModule',
65
+ path: '@c8y/ngx-components/assets-navigator',
66
+ description: '"Groups" navigation entry, allowing to navigate through asset hierarchy.',
67
+ scope: 'self'
68
+ },
69
+ {
70
+ name: 'Data point library',
71
+ module: 'DatapointLibraryModule',
72
+ path: '@c8y/ngx-components/datapoint-library',
73
+ description: 'Allows to define certain features of data points.',
74
+ scope: 'self'
75
+ },
76
+ {
77
+ name: 'Bookmarks',
78
+ module: 'BookmarksModule',
79
+ path: '@c8y/ngx-components/bookmarks',
80
+ description: 'Allows to bookmark views.',
81
+ scope: 'self'
82
+ },
83
+ {
84
+ name: 'Location',
85
+ module: 'LocationTabModule',
86
+ path: '@c8y/ngx-components/location',
87
+ description: 'View the location of devices and assets.',
88
+ scope: 'self'
89
+ },
90
+ {
91
+ name: 'Add location',
92
+ module: 'AddLocationModule',
93
+ path: '@c8y/ngx-components/location',
94
+ description:
95
+ 'Assign a location to devices and assets that currently do not have any location.',
96
+ scope: 'self-optional'
97
+ },
98
+ {
99
+ name: 'Search',
100
+ module: 'SearchModule',
101
+ path: '@c8y/ngx-components/search',
102
+ description: 'Allows to search for assets.',
103
+ scope: 'self'
33
104
  }
34
105
  ]
35
106
  },
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@c8y/cockpit",
3
- "version": "1020.6.2",
3
+ "version": "1020.7.0",
4
4
  "description": "This package is used to scaffold a cockpit application for Cumulocity IoT.",
5
5
  "dependencies": {
6
- "@c8y/style": "1020.6.2",
7
- "@c8y/ng1-modules": "1020.6.2",
8
- "@c8y/ngx-components": "1020.6.2",
9
- "@c8y/client": "1020.6.2",
10
- "@c8y/bootstrap": "1020.6.2",
6
+ "@c8y/style": "1020.7.0",
7
+ "@c8y/ng1-modules": "1020.7.0",
8
+ "@c8y/ngx-components": "1020.7.0",
9
+ "@c8y/client": "1020.7.0",
10
+ "@c8y/bootstrap": "1020.7.0",
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.6.2",
19
- "@c8y/devkit": "1020.6.2"
18
+ "@c8y/options": "1020.7.0",
19
+ "@c8y/devkit": "1020.7.0"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "@angular/common": ">=16 <18"
@@ -9,24 +9,15 @@ import {
9
9
  UPGRADE_ROUTES
10
10
  } from '@c8y/ngx-components/upgrade';
11
11
  import { SubAssetsModule } from '@c8y/ngx-components/sub-assets';
12
- import { ChildDevicesModule } from '@c8y/ngx-components/child-devices';
13
12
  import {
14
13
  CockpitDashboardModule,
15
14
  DashboardManagerModule
16
15
  } from '@c8y/ngx-components/context-dashboard';
17
16
  import { ReportsModule } from '@c8y/ngx-components/reports';
18
- import { SensorPhoneModule } from '@c8y/ngx-components/sensor-phone';
19
17
  import { BinaryFileDownloadModule } from '@c8y/ngx-components/binary-file-download';
20
- import { SearchModule } from '@c8y/ngx-components/search';
21
- import { AssetsNavigatorModule } from '@c8y/ngx-components/assets-navigator';
22
18
  import { CockpitConfigModule } from '@c8y/ngx-components/cockpit-config';
23
- import { DatapointLibraryModule } from '@c8y/ngx-components/datapoint-library';
24
- import { cockpitWidgets } from '@c8y/ngx-components/widgets/cockpit';
25
19
  import { PluginSetupStepperModule } from '@c8y/ngx-components/ecosystem/plugin-setup-stepper';
26
- import { BookmarksModule } from '@c8y/ngx-components/bookmarks';
27
- import { LocationModule } from '@c8y/ngx-components/location';
28
20
  import { PendingMoRequestModule } from '@c8y/ngx-components/pending-mo-request';
29
- import { alarmsCockpitRouteAndNodeConfig } from '@c8y/ngx-components/alarms/cockpit';
30
21
 
31
22
  @NgModule({
32
23
  imports: [
@@ -37,23 +28,14 @@ import { alarmsCockpitRouteAndNodeConfig } from '@c8y/ngx-components/alarms/cock
37
28
  CoreModule.forRoot(),
38
29
  ReportsModule,
39
30
  NgUpgradeModule,
40
- AssetsNavigatorModule,
41
31
  DashboardUpgradeModule,
42
32
  CockpitDashboardModule,
43
- SensorPhoneModule,
44
33
  DashboardManagerModule,
45
34
  BinaryFileDownloadModule,
46
- SearchModule,
47
35
  SubAssetsModule.config(),
48
- ChildDevicesModule,
49
36
  CockpitConfigModule,
50
- DatapointLibraryModule.forRoot(),
51
- cockpitWidgets(),
52
37
  PluginSetupStepperModule,
53
- BookmarksModule,
54
- LocationModule.config(),
55
- PendingMoRequestModule,
56
- alarmsCockpitRouteAndNodeConfig()
38
+ PendingMoRequestModule
57
39
  ]
58
40
  })
59
41
  export class AppModule extends HybridAppModule {