@schneideress/dashboardframework 0.0.189 → 0.0.190
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 +8 -8
- 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 +9 -9
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +9 -9
- package/fesm2015/schneideress-dashboardframework.js +8 -8
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +8 -8
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -2394,14 +2394,14 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
2394
2394
|
html += this.getHtmlForButton('wcDownloadExcel', 'fal fa-download', this.excelText);
|
|
2395
2395
|
html += '</div>';
|
|
2396
2396
|
}
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2397
|
+
}
|
|
2398
|
+
if (this.isDownloadIconVisible && this.isWidgetMgmnt) {
|
|
2399
|
+
html += this.getHr();
|
|
2400
|
+
}
|
|
2401
|
+
if (this.isWidgetMgmnt) {
|
|
2402
|
+
html += '<a id="wcWidgetDelete"><i class="fal fa-times" style="padding-left: 3px;color: red;"></i><span>';
|
|
2403
|
+
html += this.deleteText;
|
|
2404
|
+
html += '</span></a>';
|
|
2405
2405
|
}
|
|
2406
2406
|
html += '</div>';
|
|
2407
2407
|
return html;
|