@provoly/dashboard 1.3.5 → 1.3.6
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/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.mjs +3 -1
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +3 -3
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +2 -2
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +2 -0
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.d.ts +3 -2
- package/package.json +36 -36
|
@@ -10781,6 +10781,8 @@ class DatasourceSelectorComponent extends SubscriptionnerDirective {
|
|
|
10781
10781
|
this.store.select(DataSourceSelectors.getDataSourcesSorted),
|
|
10782
10782
|
this.selectedIds$
|
|
10783
10783
|
]).pipe(map(([datasources, selectedIds]) => DatasourceUtils.getAllDatasourcesWithUnknowns(datasources, selectedIds).filter((ds) => selectedIds.includes(ds.id))));
|
|
10784
|
+
}
|
|
10785
|
+
ngOnInit() {
|
|
10784
10786
|
this.subscriptions.add(this.selectedIds$.subscribe((selectedIds) => {
|
|
10785
10787
|
this.itemsChanged.emit(selectedIds);
|
|
10786
10788
|
this.detectChanges();
|