@schneideress/dashboardframework 0.0.265 → 0.0.266
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 -6
- 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 -7
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +9 -7
- package/fesm2015/schneideress-dashboardframework.js +8 -6
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +8 -6
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/lib/ra-widget-container/ra.widget.container.component.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1079,13 +1079,15 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1079
1079
|
}
|
|
1080
1080
|
}
|
|
1081
1081
|
if (changes.globalFilter && changes.globalFilter.currentValue != changes.globalFilter.previousValue) {
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
if (
|
|
1082
|
+
if (!this.dashboardInfo.curatedFilters) {
|
|
1083
|
+
var filterObj = this.getParsedConfig(this.globalFilter);
|
|
1084
|
+
if (filterObj.WidgetInstanceId) {
|
|
1085
|
+
if (this.data.widgetInfo.widgetInstanceId != filterObj.WidgetInstanceId)
|
|
1086
|
+
this.refreshWidget(this.data.widgetInfo);
|
|
1087
|
+
}
|
|
1088
|
+
else {
|
|
1085
1089
|
this.refreshWidget(this.data.widgetInfo);
|
|
1086
|
-
|
|
1087
|
-
else {
|
|
1088
|
-
this.refreshWidget(this.data.widgetInfo);
|
|
1090
|
+
}
|
|
1089
1091
|
}
|
|
1090
1092
|
}
|
|
1091
1093
|
if (changes.width && changes.width.currentValue != changes.width.previousValue ||
|