@c8y/ngx-components 1020.29.0 → 1020.33.1
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/bookmarks/bookmarks.service.d.ts +3 -2
- package/bookmarks/bookmarks.service.d.ts.map +1 -1
- package/context-dashboard/context-dashboard.service.d.ts.map +1 -1
- package/core/common/common.module.d.ts +2 -2
- package/core/common/humanize-app-name.model.d.ts +2 -2
- package/core/common/humanize-app-name.pipe.d.ts.map +1 -1
- package/core/dashboard/dashboard.model.d.ts +1 -0
- package/core/dashboard/dashboard.model.d.ts.map +1 -1
- package/core/dashboard/widgets-dashboard.component.d.ts +1 -0
- package/core/dashboard/widgets-dashboard.component.d.ts.map +1 -1
- package/core/data-grid/data-grid.model.d.ts +1 -1
- package/core/data-grid/data-grid.model.d.ts.map +1 -1
- package/core/data-grid/visible-controls.pipe.d.ts +3 -2
- package/core/data-grid/visible-controls.pipe.d.ts.map +1 -1
- package/esm2022/bookmarks/bookmarks.service.mjs +9 -7
- package/esm2022/context-dashboard/context-dashboard.service.mjs +6 -3
- package/esm2022/core/common/common.module.mjs +3 -3
- package/esm2022/core/common/humanize-app-name.model.mjs +3 -3
- package/esm2022/core/common/humanize-app-name.pipe.mjs +6 -5
- package/esm2022/core/dashboard/dashboard.model.mjs +2 -2
- package/esm2022/core/dashboard/widgets-dashboard.component.mjs +12 -3
- package/esm2022/core/data-grid/data-grid.component.mjs +3 -3
- package/esm2022/core/data-grid/data-grid.model.mjs +1 -1
- package/esm2022/core/data-grid/visible-controls.pipe.mjs +5 -4
- package/esm2022/core/docs/defaults.items.mjs +2 -2
- package/esm2022/protocol-opcua/opcua-device-protocol-data-reporting.component.mjs +3 -3
- package/esm2022/widgets/definitions/device-management-welcome/index.mjs +2 -2
- package/esm2022/widgets/implementations/info-gauge/info-gauge-widget-view/info-gauge-widget-view.component.mjs +22 -5
- package/fesm2022/c8y-ngx-components-bookmarks.mjs +7 -5
- package/fesm2022/c8y-ngx-components-bookmarks.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-context-dashboard.mjs +5 -2
- package/fesm2022/c8y-ngx-components-context-dashboard.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-protocol-opcua.mjs +2 -2
- package/fesm2022/c8y-ngx-components-protocol-opcua.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-widgets-definitions-device-management-welcome.mjs +1 -1
- package/fesm2022/c8y-ngx-components-widgets-definitions-device-management-welcome.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components-widgets-implementations-info-gauge.mjs +24 -9
- package/fesm2022/c8y-ngx-components-widgets-implementations-info-gauge.mjs.map +1 -1
- package/fesm2022/c8y-ngx-components.mjs +27 -17
- package/fesm2022/c8y-ngx-components.mjs.map +1 -1
- package/locales/de.po +6 -0
- package/locales/es.po +6 -0
- package/locales/fr.po +6 -0
- package/locales/ja_JP.po +6 -0
- package/locales/locales.pot +12 -9
- package/locales/nl.po +6 -0
- package/locales/pl.po +6 -0
- package/locales/pt_BR.po +6 -0
- package/package.json +1 -1
- package/widgets/definitions/device-management-welcome/index.d.ts +1 -1
- package/widgets/definitions/device-management-welcome/index.d.ts.map +1 -1
- package/widgets/device-management/index.d.ts +1 -1
- package/widgets/implementations/info-gauge/info-gauge-widget-view/info-gauge-widget-view.component.d.ts +5 -1
- package/widgets/implementations/info-gauge/info-gauge-widget-view/info-gauge-widget-view.component.d.ts.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../widgets/definitions/device-management-welcome/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../widgets/definitions/device-management-welcome/index.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,uCAAuC,CAAC;AAGjF,eAAO,MAAM,uCAAuC;;;;;;;CAwBd,CAAC"}
|
|
@@ -3,7 +3,7 @@ import { WidgetsModule } from '@c8y/ngx-components/widgets';
|
|
|
3
3
|
export declare const deviceManagementDefaultWidgets: {
|
|
4
4
|
id: "devicemanagement.welcome.widget";
|
|
5
5
|
label: "Quick links";
|
|
6
|
-
description: "Displays quick links for Device
|
|
6
|
+
description: "Displays quick links for Device Management";
|
|
7
7
|
loadComponent: () => Promise<import("@angular/core").Type<any> | typeof import("../../dist/widgets/implementations/device-management-welcome").WelcomeToDeviceManagementComponent>;
|
|
8
8
|
previewImage: string;
|
|
9
9
|
data: import("../../dist/context-dashboard").ContextWidgetConfig;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { OnChanges } from '@angular/core';
|
|
2
2
|
import type { KPIDetails } from '@c8y/ngx-components/datapoint-selector';
|
|
3
|
+
import { ContextDashboardComponent } from '@c8y/ngx-components/context-dashboard';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class InfoGaugeWidgetViewComponent implements OnChanges {
|
|
6
|
+
private dashboard;
|
|
5
7
|
config: {
|
|
6
8
|
datapointsLabels?: KPIDetails[];
|
|
7
9
|
datapointsGauge: KPIDetails[];
|
|
@@ -10,8 +12,10 @@ export declare class InfoGaugeWidgetViewComponent implements OnChanges {
|
|
|
10
12
|
activeDatapointLabels: any[];
|
|
11
13
|
activeDatapointGauge: KPIDetails;
|
|
12
14
|
fractionSize: string;
|
|
15
|
+
constructor(dashboard: ContextDashboardComponent);
|
|
13
16
|
ngOnChanges(): void;
|
|
14
|
-
|
|
17
|
+
private assignContextFromContextDashboard;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<InfoGaugeWidgetViewComponent, [{ optional: true; }]>;
|
|
15
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<InfoGaugeWidgetViewComponent, "c8y-info-gauge-widget-view", never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, true, never>;
|
|
16
20
|
}
|
|
17
21
|
//# sourceMappingURL=info-gauge-widget-view.component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"info-gauge-widget-view.component.d.ts","sourceRoot":"","sources":["../../../../../widgets/implementations/info-gauge/info-gauge-widget-view/info-gauge-widget-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,
|
|
1
|
+
{"version":3,"file":"info-gauge-widget-view.component.d.ts","sourceRoot":"","sources":["../../../../../widgets/implementations/info-gauge/info-gauge-widget-view/info-gauge-widget-view.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,SAAS,EAAmB,MAAM,eAAe,CAAC;AACtE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wCAAwC,CAAC;AAIzE,OAAO,EAAE,yBAAyB,EAAE,MAAM,uCAAuC,CAAC;;AAElF,qBAQa,4BAA6B,YAAW,SAAS;IAUpC,OAAO,CAAC,SAAS;IAThC,MAAM,EAAE;QACf,gBAAgB,CAAC,EAAE,UAAU,EAAE,CAAC;QAChC,eAAe,EAAE,UAAU,EAAE,CAAC;QAC9B,YAAY,EAAE,MAAM,CAAC;KACtB,CAAC;IACF,qBAAqB,QAAM;IAC3B,oBAAoB,EAAE,UAAU,CAAC;IACjC,YAAY,SAAW;gBAES,SAAS,EAAE,yBAAyB;IAEpE,WAAW,IAAI,IAAI;IAgBnB,OAAO,CAAC,iCAAiC;yCA5B9B,4BAA4B;2CAA5B,4BAA4B;CAsCxC"}
|