@schneideress/dashboardframework 17.0.2 → 17.0.4
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/esm2022/lib/ra-dashboard-area/ra.dashboard.area.mjs +2 -1
- package/esm2022/lib/ra-widget-container/ra.widget.container.component.mjs +110 -94
- package/esm2022/lib/ra.dashboard.service.mjs +2 -1
- package/fesm2022/schneideress-dashboardframework.mjs +111 -93
- package/fesm2022/schneideress-dashboardframework.mjs.map +1 -1
- package/lib/ra-widget-container/ra.widget.container.component.d.ts +1 -0
- package/lib/ra.dashboard.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -137,6 +137,7 @@ export declare class RAWidgetContainer implements OnInit, OnChanges, AfterViewIn
|
|
|
137
137
|
private setInapplicableFilters;
|
|
138
138
|
openPopup(title: any, data: any, footer: any, type: any, template?: any): void;
|
|
139
139
|
closePopup(): void;
|
|
140
|
+
getwidgetTitleTranslation(item: any): any;
|
|
140
141
|
static ɵfac: i0.ɵɵFactoryDeclaration<RAWidgetContainer, never>;
|
|
141
142
|
static ɵcmp: i0.ɵɵComponentDeclaration<RAWidgetContainer, "ra-widget-container", never, { "widgetInstanceId": { "alias": "widget-instance-id"; "required": false; }; "globalFilter": { "alias": "global-filter"; "required": false; }; "data": { "alias": "data"; "required": false; }; "raDashboardEventBus": { "alias": "event-bus"; "required": false; }; "appConfig": { "alias": "app-config"; "required": false; }; "width": { "alias": "widget-width"; "required": false; }; "height": { "alias": "widget-height"; "required": false; }; "gridCellHeight": { "alias": "grid-cell-height"; "required": false; }; "setResized": { "alias": "dom-resized"; "required": false; }; }, { "widgetDeleted": "widgetDeleted"; "updateAppliedFilters": "updateAppliedFilters"; }, never, never, false, never>;
|
|
142
143
|
}
|
|
@@ -5,6 +5,7 @@ import * as i0 from "@angular/core";
|
|
|
5
5
|
export declare class RaDashboardService extends BaseService {
|
|
6
6
|
constructor(injector: Injector);
|
|
7
7
|
private loadedScripts;
|
|
8
|
+
clientId: any;
|
|
8
9
|
loadExternalScript(scriptPath: string, callback: any): void;
|
|
9
10
|
getWidgetsByDashboardArea(widgetInfo: IWidgetInfo, appConfig: IAppConfig): import("rxjs").Observable<any>;
|
|
10
11
|
updateWidgets(widgetList: Array<IWidgetInfo>, appConfig: IAppConfig): import("rxjs").Observable<any>;
|