@schneideress/dashboardframework 0.0.113 → 0.0.114
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/bundles/schneideress-dashboardframework.umd.js +3 -3
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +4 -4
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +4 -4
- package/fesm2015/schneideress-dashboardframework.js +3 -3
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +3 -3
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -1526,7 +1526,7 @@
|
|
|
1526
1526
|
this.isDownloadIconVisible = false;
|
|
1527
1527
|
this.isChartDownloadVisible = false;
|
|
1528
1528
|
this.isGridDownloadVisible = false;
|
|
1529
|
-
this.dropDownShown =
|
|
1529
|
+
this.dropDownShown = false;
|
|
1530
1530
|
this.isDownloadChartVisible = false;
|
|
1531
1531
|
this.enableTitleLine = false;
|
|
1532
1532
|
this.toolTipValue = ' ';
|
|
@@ -1540,7 +1540,7 @@
|
|
|
1540
1540
|
*/
|
|
1541
1541
|
function (e) {
|
|
1542
1542
|
if (e.target !== _this.widgetDropdown.nativeElement) {
|
|
1543
|
-
|
|
1543
|
+
_this.dropDownShown = false;
|
|
1544
1544
|
}
|
|
1545
1545
|
}));
|
|
1546
1546
|
this.renderer.listen('window', 'click', (/**
|
|
@@ -2062,7 +2062,7 @@
|
|
|
2062
2062
|
*/
|
|
2063
2063
|
function () {
|
|
2064
2064
|
this.setDownloadIcon();
|
|
2065
|
-
this.dropDownShown =
|
|
2065
|
+
this.dropDownShown = !this.dropDownShown;
|
|
2066
2066
|
};
|
|
2067
2067
|
/**Hide dropdown on outside click */
|
|
2068
2068
|
/**
|