@schneideress/dashboardframework 0.0.181 → 0.0.183
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 -2
- 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 -3
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +4 -3
- package/fesm2015/schneideress-dashboardframework.js +3 -2
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +3 -2
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -1845,7 +1845,7 @@
|
|
|
1845
1845
|
function () {
|
|
1846
1846
|
/** @type {?} */
|
|
1847
1847
|
var widgetConfigFilter;
|
|
1848
|
-
if (this.widgetElement) {
|
|
1848
|
+
if (this.widgetElement && typeof (this.widgetElement.getConfigFilter) == 'function') {
|
|
1849
1849
|
/** @type {?} */
|
|
1850
1850
|
var configData = this.widgetElement.getConfigFilter();
|
|
1851
1851
|
if (configData) {
|
|
@@ -2102,8 +2102,9 @@
|
|
|
2102
2102
|
widgetContainer.isWidgetLoaded = true;
|
|
2103
2103
|
widgetConfigFilter.appConfig = this.appConfig;
|
|
2104
2104
|
widgetConfigFilter.widgetInfo = widgetInfo;
|
|
2105
|
-
|
|
2105
|
+
widgetConfigFilter.configChanges = this.getConfigChanges(false);
|
|
2106
2106
|
widgetConfigFilter.widgetInfo.widgetName = widgetInfo.widgetName;
|
|
2107
|
+
console.log(widgetConfigFilter);
|
|
2107
2108
|
widgetContainer.widgetElement.loadContent(widgetConfigFilter);
|
|
2108
2109
|
return [4 /*yield*/, widgetContainer.setLock(widgetConfigFilter.config)];
|
|
2109
2110
|
case 1:
|