@schneideress/dashboardframework 20.0.21 → 20.0.22
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
|
@@ -1105,9 +1105,13 @@ declare class RAWidgetContainer implements OnInit, OnChanges, AfterViewInit, OnD
|
|
|
1105
1105
|
get widgetViewState(): typeof WidgetViewState;
|
|
1106
1106
|
/** True when Widget_Config has hideEllipses: true (widget shows inline actions instead of ellipsis menu). */
|
|
1107
1107
|
get hideEllipses(): boolean;
|
|
1108
|
+
/** True when the inline Download icon should be shown (hidden when Statistics tab is selected). */
|
|
1109
|
+
get showInlineDownloadIcon(): boolean;
|
|
1108
1110
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1109
1111
|
invokeWidgetResizedEvent(): void;
|
|
1110
1112
|
mouseHover(isHover?: boolean): void;
|
|
1113
|
+
/** Refresh download icon state when user clicks inside widget (e.g. tab change). */
|
|
1114
|
+
onWidgetBodyClick(): void;
|
|
1111
1115
|
ngAfterViewInit(): void;
|
|
1112
1116
|
ngOnDestroy(): void;
|
|
1113
1117
|
/** To Edit current widget configuration*/
|