@schneideress/dashboardframework 20.0.20 → 20.0.21
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/index.d.ts
CHANGED
|
@@ -1063,6 +1063,7 @@ declare class RAWidgetContainer implements OnInit, OnChanges, AfterViewInit, OnD
|
|
|
1063
1063
|
inapplicableIconFooter: any;
|
|
1064
1064
|
isCustomElement: any;
|
|
1065
1065
|
showOnlyDropdown: boolean;
|
|
1066
|
+
private trendsReportDownloadRequestSub;
|
|
1066
1067
|
ctlWidget: ElementRef;
|
|
1067
1068
|
ctlWidgetModule: ViewContainerRef;
|
|
1068
1069
|
widgetDropdown: ElementRef;
|
|
@@ -1102,6 +1103,8 @@ declare class RAWidgetContainer implements OnInit, OnChanges, AfterViewInit, OnD
|
|
|
1102
1103
|
constructor(dashboardService: RaDashboardService, ngxService: NgxUiLoaderService, translateService: RATranslateService, ngZone: NgZone, notifier: NotifierService, renderer: Renderer2, cdr: ChangeDetectorRef, raPermissionService: RAPermissionService, domService: DomService);
|
|
1103
1104
|
ngOnInit(): void;
|
|
1104
1105
|
get widgetViewState(): typeof WidgetViewState;
|
|
1106
|
+
/** True when Widget_Config has hideEllipses: true (widget shows inline actions instead of ellipsis menu). */
|
|
1107
|
+
get hideEllipses(): boolean;
|
|
1105
1108
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1106
1109
|
invokeWidgetResizedEvent(): void;
|
|
1107
1110
|
mouseHover(isHover?: boolean): void;
|
|
@@ -1132,6 +1135,8 @@ declare class RAWidgetContainer implements OnInit, OnChanges, AfterViewInit, OnD
|
|
|
1132
1135
|
private setLock;
|
|
1133
1136
|
setDownloadIcon(): Promise<void>;
|
|
1134
1137
|
downloadIconClicked(type: string): void;
|
|
1138
|
+
/** Trends Report: open download format modal (persistent Download icon click) */
|
|
1139
|
+
onTrendReportDownloadClick(): Promise<void>;
|
|
1135
1140
|
private removeMenu;
|
|
1136
1141
|
private checkVisitLinkVisiblity;
|
|
1137
1142
|
/**Show dropdown on gear icon click */
|
|
@@ -1224,7 +1229,11 @@ declare enum RAEvent {
|
|
|
1224
1229
|
/** Event on emission report snapshot selected from list*/
|
|
1225
1230
|
SnapShotSelected = "SnapShotSelected",
|
|
1226
1231
|
/** Event to update widget count */
|
|
1227
|
-
UpdateWidgetCount = "UpdateWidgetCount"
|
|
1232
|
+
UpdateWidgetCount = "UpdateWidgetCount",
|
|
1233
|
+
/** Trends Report: open download format modal (payload: { widgetInstanceId, isChartDownloadVisible, isGridDownloadVisible }) */
|
|
1234
|
+
TrendsReportDownloadModalOpen = "TrendsReportDownloadModalOpen",
|
|
1235
|
+
/** Trends Report: execute download for widget (payload: { widgetInstanceId, format }) */
|
|
1236
|
+
TrendsReportDownloadRequest = "TrendsReportDownloadRequest"
|
|
1228
1237
|
}
|
|
1229
1238
|
declare enum RAEventKey {
|
|
1230
1239
|
/** on edit widget click */
|