@schneideress/dashboardframework 17.0.21 → 17.0.23
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/gridster/lib/gridsterRenderer.service.mjs +2 -2
- package/esm2022/lib/ra-dashboard-area/ra.dashboard.area.mjs +45 -49
- package/esm2022/lib/ra-widget-container/ra.widget.container.component.mjs +5 -7
- package/fesm2022/schneideress-dashboardframework.mjs +49 -55
- package/fesm2022/schneideress-dashboardframework.mjs.map +1 -1
- package/lib/ra-dashboard-area/ra.dashboard.area.d.ts +4 -5
- package/package.json +1 -1
|
@@ -45,8 +45,6 @@ export declare class RADashboardArea implements OnInit, OnChanges, OnDestroy {
|
|
|
45
45
|
emptyDashboardButtonAction: any;
|
|
46
46
|
private initialWidgetCount;
|
|
47
47
|
private currentLoadingCount;
|
|
48
|
-
private loading;
|
|
49
|
-
private widgetsLoaded;
|
|
50
48
|
userDashboardId: number;
|
|
51
49
|
areaKey: string;
|
|
52
50
|
globalFilter: any;
|
|
@@ -59,8 +57,9 @@ export declare class RADashboardArea implements OnInit, OnChanges, OnDestroy {
|
|
|
59
57
|
templateConfig: any;
|
|
60
58
|
hideDashboardBanner: EventEmitter<any>;
|
|
61
59
|
gridWrapper: ElementRef;
|
|
62
|
-
private
|
|
60
|
+
private scrollTrigger;
|
|
63
61
|
constructor(dashboardService: RaDashboardService, ngZone: NgZone, ngxService: NgxUiLoaderService, translateService: RATranslateService, notifier: NotifierService, cdr: ChangeDetectorRef, responsiveService: RADashboardResponsiveService, permissionService: RAPermissionService);
|
|
62
|
+
scroll(): void;
|
|
64
63
|
ngOnInit(): void;
|
|
65
64
|
ngOnChanges(changes: SimpleChanges): void;
|
|
66
65
|
ngAfterViewChecked(): void;
|
|
@@ -70,7 +69,8 @@ export declare class RADashboardArea implements OnInit, OnChanges, OnDestroy {
|
|
|
70
69
|
widgetLoaded(widgetElement: any, widget: any): void;
|
|
71
70
|
private loadData;
|
|
72
71
|
dataLoaded(widgetInfo: any): void;
|
|
73
|
-
private
|
|
72
|
+
private isElementLoaded;
|
|
73
|
+
private loadWidgetWrappers;
|
|
74
74
|
/** To initiate eventbus subsctiptions */
|
|
75
75
|
inititateEventBusSubscritions(): void;
|
|
76
76
|
/**
|
|
@@ -89,7 +89,6 @@ export declare class RADashboardArea implements OnInit, OnChanges, OnDestroy {
|
|
|
89
89
|
formatWidgetDataForPositionDetails(widgetItemList: IWidgetInfo[]): any;
|
|
90
90
|
/** To retrieve widgets based on userDashboardid and area name */
|
|
91
91
|
loadWidgets(userDashboarId: number, areaKey: string): void;
|
|
92
|
-
private loadWidgetWrappers;
|
|
93
92
|
/** To set Area(Gridster) height dynamically as widgets are added/removed */
|
|
94
93
|
setAreaHeight(): void;
|
|
95
94
|
/** To remove a widget instance from dashboard and to save info in database */
|