@c8y/cockpit 1023.26.1 → 1023.30.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 +48 -43
- package/package.json +9 -9
package/cumulocity.config.ts
CHANGED
|
@@ -36,151 +36,156 @@ export default {
|
|
|
36
36
|
exports: [
|
|
37
37
|
...cockpitWidgetsExports,
|
|
38
38
|
{
|
|
39
|
-
name: 'Dashboards: Reports',
|
|
39
|
+
name: gettext('Dashboards: Reports'),
|
|
40
40
|
module: 'ReportDashboardModule',
|
|
41
41
|
path: '@c8y/ngx-components/report-dashboard',
|
|
42
|
-
description: 'Reports list and navigator items reports',
|
|
42
|
+
description: gettext('Reports list and navigator items reports'),
|
|
43
43
|
scope: 'self'
|
|
44
44
|
},
|
|
45
45
|
{
|
|
46
|
-
name: 'Cockpit alarms',
|
|
46
|
+
name: gettext('Cockpit alarms'),
|
|
47
47
|
module: 'CockpitAlarmsModule',
|
|
48
48
|
path: '@c8y/ngx-components/alarms/cockpit',
|
|
49
|
-
description: 'Alarms functionality in cockpit application.',
|
|
49
|
+
description: gettext('Alarms functionality in cockpit application.'),
|
|
50
50
|
scope: 'self'
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
|
-
name: 'Sensor phone',
|
|
53
|
+
name: gettext('Sensor phone'),
|
|
54
54
|
module: 'SensorPhoneModule',
|
|
55
55
|
path: '@c8y/ngx-components/sensor-phone',
|
|
56
|
-
description: 'Dialogs to connect smartphone to platform.',
|
|
56
|
+
description: gettext('Dialogs to connect smartphone to platform.'),
|
|
57
57
|
scope: 'self'
|
|
58
58
|
},
|
|
59
59
|
{
|
|
60
|
-
name: 'Child devices',
|
|
60
|
+
name: gettext('Child devices'),
|
|
61
61
|
module: 'ChildDevicesModule',
|
|
62
62
|
path: '@c8y/ngx-components/child-devices',
|
|
63
|
-
description: 'View listing children of devices.',
|
|
63
|
+
description: gettext('View listing children of devices.'),
|
|
64
64
|
scope: 'self'
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
name: 'Assets navigator',
|
|
67
|
+
name: gettext('Assets navigator'),
|
|
68
68
|
module: 'AssetsNavigatorModule',
|
|
69
69
|
path: '@c8y/ngx-components/module-federation-exports/assets-navigator',
|
|
70
|
-
description:
|
|
70
|
+
description: gettext(
|
|
71
|
+
'"Groups" navigation entry, allowing to navigate through asset hierarchy.'
|
|
72
|
+
),
|
|
71
73
|
scope: 'self'
|
|
72
74
|
},
|
|
73
75
|
{
|
|
74
|
-
name: 'Data point library',
|
|
76
|
+
name: gettext('Data point library'),
|
|
75
77
|
module: 'DatapointLibraryModule',
|
|
76
78
|
path: '@c8y/ngx-components/datapoint-library',
|
|
77
|
-
description: 'Allows to define certain features of data points.',
|
|
79
|
+
description: gettext('Allows to define certain features of data points.'),
|
|
78
80
|
scope: 'self'
|
|
79
81
|
},
|
|
80
82
|
{
|
|
81
|
-
name: 'Bookmarks',
|
|
83
|
+
name: gettext('Bookmarks'),
|
|
82
84
|
module: 'BookmarksModule',
|
|
83
85
|
path: '@c8y/ngx-components/bookmarks',
|
|
84
|
-
description: 'Allows to bookmark views.',
|
|
86
|
+
description: gettext('Allows to bookmark views.'),
|
|
85
87
|
scope: 'self'
|
|
86
88
|
},
|
|
87
89
|
{
|
|
88
|
-
name: 'Location',
|
|
90
|
+
name: gettext('Location'),
|
|
89
91
|
module: 'LocationTabModule',
|
|
90
92
|
path: '@c8y/ngx-components/location',
|
|
91
|
-
description: 'View the location of devices and assets.',
|
|
93
|
+
description: gettext('View the location of devices and assets.'),
|
|
92
94
|
scope: 'self'
|
|
93
95
|
},
|
|
94
96
|
{
|
|
95
|
-
name: 'Add location',
|
|
97
|
+
name: gettext('Add location'),
|
|
96
98
|
module: 'AddLocationModule',
|
|
97
99
|
path: '@c8y/ngx-components/location',
|
|
98
|
-
description:
|
|
99
|
-
'Assign a location to devices and assets that currently do not have any location.'
|
|
100
|
+
description: gettext(
|
|
101
|
+
'Assign a location to devices and assets that currently do not have any location.'
|
|
102
|
+
),
|
|
100
103
|
scope: 'self-optional'
|
|
101
104
|
},
|
|
102
105
|
{
|
|
103
|
-
name: 'Search',
|
|
106
|
+
name: gettext('Search'),
|
|
104
107
|
module: 'SearchModule',
|
|
105
108
|
path: '@c8y/ngx-components/search',
|
|
106
|
-
description: 'Allows to search for assets.',
|
|
109
|
+
description: gettext('Allows to search for assets.'),
|
|
107
110
|
scope: 'self'
|
|
108
111
|
},
|
|
109
112
|
{
|
|
110
|
-
name: 'Data point explorer',
|
|
113
|
+
name: gettext('Data point explorer'),
|
|
111
114
|
module: 'DatapointExplorerModule',
|
|
112
115
|
path: '@c8y/ngx-components/datapoint-explorer',
|
|
113
|
-
description: 'Enables visualization of data points',
|
|
116
|
+
description: gettext('Enables visualization of data points'),
|
|
114
117
|
scope: 'self'
|
|
115
118
|
},
|
|
116
119
|
{
|
|
117
|
-
name: 'Dashboards: Dashboard manager',
|
|
120
|
+
name: gettext('Dashboards: Dashboard manager'),
|
|
118
121
|
module: 'DashboardManagerModule',
|
|
119
122
|
path: '@c8y/ngx-components/dashboard-manager',
|
|
120
|
-
description: 'Type dashboards manager.',
|
|
123
|
+
description: gettext('Type dashboards manager.'),
|
|
121
124
|
scope: 'self'
|
|
122
125
|
},
|
|
123
126
|
{
|
|
124
|
-
name: 'Dashboards: Add device dashboards',
|
|
127
|
+
name: gettext('Dashboards: Add device dashboards'),
|
|
125
128
|
module: 'AddDeviceContextDashboardModule',
|
|
126
129
|
path: '@c8y/ngx-components/context-dashboard/device/add',
|
|
127
|
-
description: 'Allows to add dashboards on device level.',
|
|
130
|
+
description: gettext('Allows to add dashboards on device level.'),
|
|
128
131
|
scope: 'self'
|
|
129
132
|
},
|
|
130
133
|
{
|
|
131
|
-
name: 'Dashboards: View device dashboards',
|
|
134
|
+
name: gettext('Dashboards: View device dashboards'),
|
|
132
135
|
module: 'ViewDeviceContextDashboardModule',
|
|
133
136
|
path: '@c8y/ngx-components/context-dashboard/device/view',
|
|
134
|
-
description: 'Allows to view dashboards on device level.',
|
|
137
|
+
description: gettext('Allows to view dashboards on device level.'),
|
|
135
138
|
scope: 'self'
|
|
136
139
|
},
|
|
137
140
|
{
|
|
138
|
-
name: 'Dashboards: Add asset/group dashboards',
|
|
141
|
+
name: gettext('Dashboards: Add asset/group dashboards'),
|
|
139
142
|
module: 'AddAssetContextDashboardModule',
|
|
140
143
|
path: '@c8y/ngx-components/context-dashboard/asset/add',
|
|
141
|
-
description: 'Allows to add dashboards on asset/group level.',
|
|
144
|
+
description: gettext('Allows to add dashboards on asset/group level.'),
|
|
142
145
|
scope: 'self'
|
|
143
146
|
},
|
|
144
147
|
{
|
|
145
|
-
name: 'Dashboards: View asset/group dashboards',
|
|
148
|
+
name: gettext('Dashboards: View asset/group dashboards'),
|
|
146
149
|
module: 'ViewAssetContextDashboardModule',
|
|
147
150
|
path: '@c8y/ngx-components/context-dashboard/asset/view',
|
|
148
|
-
description: 'Allows to view dashboards on asset/group level.',
|
|
151
|
+
description: gettext('Allows to view dashboards on asset/group level.'),
|
|
149
152
|
scope: 'self'
|
|
150
153
|
},
|
|
151
154
|
{
|
|
152
|
-
name: 'Dashboards: Cockpit home dashboard',
|
|
155
|
+
name: gettext('Dashboards: Cockpit home dashboard'),
|
|
153
156
|
module: 'CockpitDashboardModule',
|
|
154
157
|
path: '@c8y/ngx-components/context-dashboard/cockpit-home-dashboard',
|
|
155
|
-
description:
|
|
158
|
+
description: gettext(
|
|
159
|
+
'The home dashboard of the cockpit app, shown when cockpit is opened.'
|
|
160
|
+
),
|
|
156
161
|
scope: 'self'
|
|
157
162
|
},
|
|
158
163
|
{
|
|
159
|
-
name: 'Dashboard details advanced tab',
|
|
164
|
+
name: gettext('Dashboard details advanced tab'),
|
|
160
165
|
module: 'DashboardDetailsAdvancedTabModule',
|
|
161
166
|
path: '@c8y/ngx-components/dashboard-details-advanced-tab',
|
|
162
|
-
description: 'Dashboard details tab for advanced settings.',
|
|
167
|
+
description: gettext('Dashboard details tab for advanced settings.'),
|
|
163
168
|
scope: 'self'
|
|
164
169
|
},
|
|
165
170
|
{
|
|
166
|
-
name: 'Exports',
|
|
171
|
+
name: gettext('Exports'),
|
|
167
172
|
module: 'exportsProviders',
|
|
168
173
|
path: '@c8y/ngx-components/exports',
|
|
169
|
-
description: 'Exports',
|
|
174
|
+
description: gettext('Exports'),
|
|
170
175
|
scope: 'self'
|
|
171
176
|
},
|
|
172
177
|
{
|
|
173
|
-
name: 'Computed asset properties',
|
|
178
|
+
name: gettext('Computed asset properties'),
|
|
174
179
|
module: 'computedAssetPropertiesProviders',
|
|
175
180
|
path: '@c8y/ngx-components/computed-asset-properties',
|
|
176
|
-
description: 'Set of predefined computed asset properties.',
|
|
181
|
+
description: gettext('Set of predefined computed asset properties.'),
|
|
177
182
|
scope: 'self'
|
|
178
183
|
},
|
|
179
184
|
{
|
|
180
|
-
name: 'Group breadcrumbs',
|
|
185
|
+
name: gettext('Group breadcrumbs'),
|
|
181
186
|
module: 'groupBreadcrumbsProviders',
|
|
182
187
|
path: '@c8y/ngx-components/group-breadcrumbs',
|
|
183
|
-
description: 'Breadcrumbs extension to enhance navigation between groups.',
|
|
188
|
+
description: gettext('Breadcrumbs extension to enhance navigation between groups.'),
|
|
184
189
|
scope: 'self'
|
|
185
190
|
}
|
|
186
191
|
],
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c8y/cockpit",
|
|
3
|
-
"version": "1023.
|
|
3
|
+
"version": "1023.30.0",
|
|
4
4
|
"description": "This package is used to scaffold a cockpit 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.
|
|
11
|
-
"@c8y/html-repo": "1023.
|
|
6
|
+
"@c8y/style": "1023.30.0",
|
|
7
|
+
"@c8y/ng1-modules": "1023.30.0",
|
|
8
|
+
"@c8y/ngx-components": "1023.30.0",
|
|
9
|
+
"@c8y/client": "1023.30.0",
|
|
10
|
+
"@c8y/bootstrap": "1023.30.0",
|
|
11
|
+
"@c8y/html-repo": "1023.30.0",
|
|
12
12
|
"@angular/cdk": "^20.2.14",
|
|
13
13
|
"@angular/upgrade": "^20.3.16",
|
|
14
14
|
"angular": "1.8.3",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"rxjs": "7.8.2"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@c8y/options": "1023.
|
|
21
|
-
"@c8y/devkit": "1023.
|
|
20
|
+
"@c8y/options": "1023.30.0",
|
|
21
|
+
"@c8y/devkit": "1023.30.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"@angular/common": ">=20 <21"
|