@c8y/ngx-components 1017.0.510 → 1017.0.511
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/core/header/right-drawer/right-drawer.component.d.ts +22 -0
- package/core/shared/core.model.d.ts +22 -0
- package/device-grid/device-grid.service.d.ts +3 -4
- package/esm2020/core/action-bar/action-bar.component.mjs +10 -7
- package/esm2020/core/header/right-drawer/right-drawer.component.mjs +5 -3
- package/esm2020/core/shared/core.model.mjs +15 -0
- package/esm2020/device-grid/device-grid.service.mjs +6 -15
- package/esm2020/sensor-phone/sensor-phone-modal.component.mjs +26 -15
- package/esm2020/sensor-phone/sensor-phone.model.mjs +13 -0
- package/esm2020/sensor-phone/sensor-phone.service.mjs +5 -7
- package/esm2020/sub-assets/delete-assets-modal/delete-assets-modal.component.mjs +13 -3
- package/esm2020/sub-assets/shared/sub-assets.model.mjs +11 -0
- package/fesm2015/c8y-ngx-components-device-grid.mjs +4 -15
- package/fesm2015/c8y-ngx-components-device-grid.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-sensor-phone.mjs +40 -19
- package/fesm2015/c8y-ngx-components-sensor-phone.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components-sub-assets.mjs +22 -2
- package/fesm2015/c8y-ngx-components-sub-assets.mjs.map +1 -1
- package/fesm2015/c8y-ngx-components.mjs +25 -7
- package/fesm2015/c8y-ngx-components.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-device-grid.mjs +4 -13
- package/fesm2020/c8y-ngx-components-device-grid.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-sensor-phone.mjs +40 -19
- package/fesm2020/c8y-ngx-components-sensor-phone.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components-sub-assets.mjs +22 -2
- package/fesm2020/c8y-ngx-components-sub-assets.mjs.map +1 -1
- package/fesm2020/c8y-ngx-components.mjs +25 -7
- package/fesm2020/c8y-ngx-components.mjs.map +1 -1
- package/package.json +2 -2
- package/sensor-phone/sensor-phone.model.d.ts +18 -0
- package/sensor-phone/sensor-phone.service.d.ts +2 -3
- package/sub-assets/delete-assets-modal/delete-assets-modal.component.d.ts +1 -0
- package/sub-assets/shared/sub-assets.model.d.ts +15 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@c8y/ngx-components",
|
|
3
|
-
"version": "1017.0.
|
|
3
|
+
"version": "1017.0.511",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"author": "Cumulocity",
|
|
6
6
|
"description": "Angular modules for Cumulocity IoT applications",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"rxjs": "~6.6.3"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@c8y/client": "1017.0.
|
|
25
|
+
"@c8y/client": "1017.0.511",
|
|
26
26
|
"@ngx-translate/core": "14.0.0",
|
|
27
27
|
"@ngx-translate/http-loader": "7.0.0",
|
|
28
28
|
"@ngx-formly/core": "5.10.13",
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export declare const PRODUCT_EXPERIENCE: {
|
|
2
|
+
EVENTS: {
|
|
3
|
+
CONNECT_SMARTPHONE: string;
|
|
4
|
+
};
|
|
5
|
+
COMPONENTS: {
|
|
6
|
+
SENSOR_PHONE_MODAL: string;
|
|
7
|
+
};
|
|
8
|
+
ACTIONS: {
|
|
9
|
+
ESCAPE: string;
|
|
10
|
+
OPEN_DASHBOARD: string;
|
|
11
|
+
RETRY: string;
|
|
12
|
+
};
|
|
13
|
+
RESULTS: {
|
|
14
|
+
FAILED: string;
|
|
15
|
+
REGISTER_PHONE_STARTED: string;
|
|
16
|
+
SUCCESS: string;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { DeviceRegistrationService, InventoryService } from '@c8y/client';
|
|
2
|
-
import { AppStateService
|
|
2
|
+
import { AppStateService } from '@c8y/ngx-components';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SensorPhoneService {
|
|
5
5
|
private ui;
|
|
6
6
|
private inventoryService;
|
|
7
7
|
private deviceRegistrationService;
|
|
8
|
-
private gainsightService;
|
|
9
8
|
readonly HTTP_STATUS_CODE: {
|
|
10
9
|
OK: number;
|
|
11
10
|
CREATED: number;
|
|
@@ -14,7 +13,7 @@ export declare class SensorPhoneService {
|
|
|
14
13
|
private tenantId;
|
|
15
14
|
private PHONE_GROUP_FRAGMENT;
|
|
16
15
|
private readonly PHONE_GROUP_NAME;
|
|
17
|
-
constructor(ui: AppStateService, inventoryService: InventoryService, deviceRegistrationService: DeviceRegistrationService
|
|
16
|
+
constructor(ui: AppStateService, inventoryService: InventoryService, deviceRegistrationService: DeviceRegistrationService);
|
|
18
17
|
getHost(): string;
|
|
19
18
|
getTenantName(): string;
|
|
20
19
|
getTenantId(): string;
|
|
@@ -7,6 +7,7 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class DeleteAssetsModalComponent {
|
|
8
8
|
private translateService;
|
|
9
9
|
private gainsightService;
|
|
10
|
+
CURRENT_LOCATION: string;
|
|
10
11
|
showWithCascadeCheckbox: boolean;
|
|
11
12
|
showWithDeviceUserCheckbox: boolean;
|
|
12
13
|
asset: IManagedObject;
|