@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
|
@@ -1337,7 +1337,7 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1337
1337
|
this.isDownloadIconVisible = false;
|
|
1338
1338
|
this.isChartDownloadVisible = false;
|
|
1339
1339
|
this.isGridDownloadVisible = false;
|
|
1340
|
-
this.dropDownShown =
|
|
1340
|
+
this.dropDownShown = false;
|
|
1341
1341
|
this.isDownloadChartVisible = false;
|
|
1342
1342
|
this.enableTitleLine = false;
|
|
1343
1343
|
this.toolTipValue = ' ';
|
|
@@ -1351,7 +1351,7 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1351
1351
|
*/
|
|
1352
1352
|
function (e) {
|
|
1353
1353
|
if (e.target !== _this.widgetDropdown.nativeElement) {
|
|
1354
|
-
|
|
1354
|
+
_this.dropDownShown = false;
|
|
1355
1355
|
}
|
|
1356
1356
|
}));
|
|
1357
1357
|
this.renderer.listen('window', 'click', (/**
|
|
@@ -1873,7 +1873,7 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1873
1873
|
*/
|
|
1874
1874
|
function () {
|
|
1875
1875
|
this.setDownloadIcon();
|
|
1876
|
-
this.dropDownShown =
|
|
1876
|
+
this.dropDownShown = !this.dropDownShown;
|
|
1877
1877
|
};
|
|
1878
1878
|
/**Hide dropdown on outside click */
|
|
1879
1879
|
/**
|