@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
|
@@ -1634,7 +1634,7 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1634
1634
|
function () {
|
|
1635
1635
|
/** @type {?} */
|
|
1636
1636
|
var widgetConfigFilter;
|
|
1637
|
-
if (this.widgetElement) {
|
|
1637
|
+
if (this.widgetElement && typeof (this.widgetElement.getConfigFilter) == 'function') {
|
|
1638
1638
|
/** @type {?} */
|
|
1639
1639
|
var configData = this.widgetElement.getConfigFilter();
|
|
1640
1640
|
if (configData) {
|
|
@@ -1891,8 +1891,9 @@ var RAWidgetContainer = /** @class */ (function () {
|
|
|
1891
1891
|
widgetContainer.isWidgetLoaded = true;
|
|
1892
1892
|
widgetConfigFilter.appConfig = this.appConfig;
|
|
1893
1893
|
widgetConfigFilter.widgetInfo = widgetInfo;
|
|
1894
|
-
|
|
1894
|
+
widgetConfigFilter.configChanges = this.getConfigChanges(false);
|
|
1895
1895
|
widgetConfigFilter.widgetInfo.widgetName = widgetInfo.widgetName;
|
|
1896
|
+
console.log(widgetConfigFilter);
|
|
1896
1897
|
widgetContainer.widgetElement.loadContent(widgetConfigFilter);
|
|
1897
1898
|
return [4 /*yield*/, widgetContainer.setLock(widgetConfigFilter.config)];
|
|
1898
1899
|
case 1:
|