@c8y/ngx-components 1018.503.52 → 1018.503.56
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/context-dashboard/device-info-dashboard/device-info-dashboard.component.d.ts +1 -1
- package/core/common/ApplicationOptions.d.ts +4 -1
- package/esm2020/context-dashboard/device-info-dashboard/device-info-dashboard.component.mjs +12 -12
- package/esm2020/core/common/ApplicationOptions.mjs +1 -1
- package/esm2020/core/dashboard/wiget-time-context/widget-time-context.component.mjs +4 -3
- package/esm2020/protocol-lwm2m/components/configuration/lwm2m-configuration.component.mjs +2 -1
- package/esm2020/protocol-lwm2m/components/configuration/typed-forms/connectivity-settings.component.mjs +8 -12
- package/esm2020/protocol-lwm2m/components/configuration/typed-forms/single-server-settings.component.mjs +21 -9
- package/esm2020/protocol-lwm2m/model/index.mjs +3 -1
- package/esm2020/protocol-lwm2m/services/lwm2m-configuration.service.mjs +64 -5
- package/fesm2015/c8y-ngx-components-context-dashboard.mjs +10 -10
- package/fesm2015/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-protocol-lwm2m-components-configuration.mjs +30 -21
- package/fesm2015/c8y-ngx-components-protocol-lwm2m-components-configuration.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-protocol-lwm2m-model.mjs +2 -0
- package/fesm2015/c8y-ngx-components-protocol-lwm2m-model.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-protocol-lwm2m-services.mjs +63 -4
- package/fesm2015/c8y-ngx-components-protocol-lwm2m-services.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components.mjs +3 -2
- package/fesm2015/c8y-ngx-components.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-context-dashboard.mjs +10 -10
- package/fesm2020/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-protocol-lwm2m-components-configuration.mjs +27 -19
- package/fesm2020/c8y-ngx-components-protocol-lwm2m-components-configuration.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-protocol-lwm2m-model.mjs +2 -0
- package/fesm2020/c8y-ngx-components-protocol-lwm2m-model.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-protocol-lwm2m-services.mjs +63 -4
- package/fesm2020/c8y-ngx-components-protocol-lwm2m-services.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components.mjs +3 -2
- package/fesm2020/c8y-ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/protocol-lwm2m/components/configuration/typed-forms/connectivity-settings.component.d.ts +1 -4
- package/protocol-lwm2m/components/configuration/typed-forms/single-server-settings.component.d.ts +16 -22
- package/protocol-lwm2m/model/index.d.ts +11 -1
- package/protocol-lwm2m/services/lwm2m-configuration.service.d.ts +8 -1
|
@@ -2267,15 +2267,15 @@ class DeviceInfoDashboardComponent {
|
|
|
2267
2267
|
_x: 0,
|
|
2268
2268
|
_y: 0,
|
|
2269
2269
|
_height: 5,
|
|
2270
|
-
_width:
|
|
2270
|
+
_width: 8
|
|
2271
2271
|
},
|
|
2272
2272
|
{
|
|
2273
2273
|
name: 'Data points graph',
|
|
2274
2274
|
title: gettext('Device and communication'),
|
|
2275
|
-
_x:
|
|
2275
|
+
_x: 8,
|
|
2276
2276
|
_y: 0,
|
|
2277
2277
|
_height: 5,
|
|
2278
|
-
_width:
|
|
2278
|
+
_width: 16,
|
|
2279
2279
|
config: {
|
|
2280
2280
|
interval: 'hours',
|
|
2281
2281
|
aggregation: 'NONE',
|
|
@@ -2443,15 +2443,15 @@ class DeviceInfoDashboardComponent {
|
|
|
2443
2443
|
_x: 0,
|
|
2444
2444
|
_y: 5,
|
|
2445
2445
|
_height: 8,
|
|
2446
|
-
_width:
|
|
2446
|
+
_width: 8
|
|
2447
2447
|
},
|
|
2448
2448
|
{
|
|
2449
2449
|
name: 'Alarm list',
|
|
2450
2450
|
title: gettext('Active, critical alarms'),
|
|
2451
|
-
_x:
|
|
2451
|
+
_x: 8,
|
|
2452
2452
|
_y: 5,
|
|
2453
2453
|
_height: 4,
|
|
2454
|
-
_width:
|
|
2454
|
+
_width: 8,
|
|
2455
2455
|
config: {
|
|
2456
2456
|
options: {
|
|
2457
2457
|
orderMode: 'ACTIVE_FIRST',
|
|
@@ -2468,18 +2468,18 @@ class DeviceInfoDashboardComponent {
|
|
|
2468
2468
|
{
|
|
2469
2469
|
name: 'deviceGroupAssignmentWidget',
|
|
2470
2470
|
title: gettext('Group assignment'),
|
|
2471
|
-
_x:
|
|
2471
|
+
_x: 16,
|
|
2472
2472
|
_y: 5,
|
|
2473
2473
|
_height: 4,
|
|
2474
|
-
_width:
|
|
2474
|
+
_width: 8
|
|
2475
2475
|
},
|
|
2476
2476
|
{
|
|
2477
2477
|
componentId: 'Map',
|
|
2478
2478
|
title: gettext('Location'),
|
|
2479
|
-
_x:
|
|
2479
|
+
_x: 8,
|
|
2480
2480
|
_y: 9,
|
|
2481
2481
|
_height: 4,
|
|
2482
|
-
_width:
|
|
2482
|
+
_width: 16
|
|
2483
2483
|
}
|
|
2484
2484
|
];
|
|
2485
2485
|
}
|