cat-qw-lib 2.1.53 → 2.1.54

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.
@@ -5787,6 +5787,7 @@ class WidgetContainerComponent {
5787
5787
  this.widgetQuery.getWidgetList()
5788
5788
  .pipe(takeUntil(this.destroy$))
5789
5789
  .subscribe((data) => {
5790
+ console.log('data1', data);
5790
5791
  this.updateWidgetStyles(data);
5791
5792
  this.onUpdatedWidgetList.emit(data);
5792
5793
  });
@@ -5816,6 +5817,7 @@ class WidgetContainerComponent {
5816
5817
  this.widgetQuery.getWidgetList()
5817
5818
  .pipe(takeUntil(this.destroy$))
5818
5819
  .subscribe((data) => {
5820
+ console.log('data', data);
5819
5821
  if (data && data.style) {
5820
5822
  this.updateWidgetStyles(data);
5821
5823
  }