@provoly/dashboard 1.3.4 → 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/core/components/select/select.component.mjs +3 -3
- 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 +4 -2
- 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 +1 -1
package/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { Store } from '@ngrx/store';
|
|
3
3
|
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
4
4
|
import { DataSource } from '../../../../core/store/data-source/data-source.model';
|
|
5
5
|
import { WidgetManifest } from '../../../../core/model/manifest.interface';
|
|
6
6
|
import { SubscriptionnerDirective } from '../../subscriptionner.directive';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class DatasourceSelectorComponent extends SubscriptionnerDirective {
|
|
8
|
+
export declare class DatasourceSelectorComponent extends SubscriptionnerDirective implements OnInit {
|
|
9
9
|
private store;
|
|
10
10
|
private cdr;
|
|
11
11
|
manifest$: BehaviorSubject<WidgetManifest | null>;
|
|
@@ -21,6 +21,7 @@ export declare class DatasourceSelectorComponent extends SubscriptionnerDirectiv
|
|
|
21
21
|
validated: EventEmitter<any>;
|
|
22
22
|
itemsChanged: EventEmitter<string[]>;
|
|
23
23
|
constructor(store: Store, cdr: ChangeDetectorRef);
|
|
24
|
+
ngOnInit(): void;
|
|
24
25
|
isGeo(item: DataSource): boolean;
|
|
25
26
|
toggleSelection(id: string): void;
|
|
26
27
|
updateDatasourceList(ids: string[]): void;
|