@provoly/dashboard 1.4.23 → 1.4.25

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.
Files changed (36) hide show
  1. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +1 -1
  2. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  3. package/esm2022/lib/core/store/search/search.actions.mjs +1 -1
  4. package/esm2022/lib/core/store/search/search.effects.mjs +9 -4
  5. package/esm2022/lib/core/store/search/search.service.mjs +1 -1
  6. package/esm2022/lib/dashboard/components/dashboard.component.mjs +8 -26
  7. package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +1 -1
  8. package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.mjs +32 -23
  9. package/esm2022/lib/dashboard/filter/components/filter-group/filter-group.component.mjs +4 -6
  10. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +2 -2
  11. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +8 -18
  12. package/esm2022/lib/dashboard/store/manifest-utils.class.mjs +17 -1
  13. package/esm2022/toolbox/components/select-grid-layout/select-grid-layout.component.mjs +1 -1
  14. package/esm2022/widgets/widget-map/interaction/tooltip-manager.class.mjs +3 -2
  15. package/fesm2022/provoly-dashboard-dataset.mjs +1 -1
  16. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  17. package/fesm2022/provoly-dashboard-toolbox.mjs +1 -1
  18. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  19. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +2 -1
  20. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  21. package/fesm2022/provoly-dashboard.mjs +108 -109
  22. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  23. package/lib/core/model/manifest.interface.d.ts +7 -0
  24. package/lib/core/store/search/search.actions.d.ts +5 -4
  25. package/lib/core/store/search/search.effects.d.ts +2 -1
  26. package/lib/core/store/search/search.service.d.ts +3 -2
  27. package/lib/dashboard/components/dashboard.component.d.ts +1 -3
  28. package/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.d.ts +3 -9
  29. package/lib/dashboard/filter/components/filter-group/filter-group.component.d.ts +1 -2
  30. package/lib/dashboard/store/dashboard.actions.d.ts +6 -14
  31. package/lib/dashboard/store/dashboard.effects.d.ts +3 -4
  32. package/lib/dashboard/store/manifest-utils.class.d.ts +2 -1
  33. package/package.json +19 -19
  34. package/search/search-fulltext/store/search-fulltext.effects.d.ts +1 -1
  35. package/search/search-mono-class/store/search-mono-class.effects.d.ts +1 -1
  36. package/search/search-multi-class/store/search-multi-class.effects.d.ts +1 -1
@@ -52,6 +52,7 @@ export interface DashboardManifest {
52
52
  route?: string;
53
53
  grid?: GridLayout;
54
54
  widgets: WidgetManifest[];
55
+ linkedItems?: LinkedItemsOptions;
55
56
  }
56
57
  export interface GlobalManifest {
57
58
  windows: DashboardManifest[];
@@ -74,3 +75,9 @@ export interface CustomWidgetOptions {
74
75
  [opt: string]: any;
75
76
  }
76
77
  export type WidgetOptions = MapWidgetOptions | ImageWidgetOptions | TableWidgetOptions | DetailWidgetOptions | ChartWidgetOptions | ChartAggregatedWidgetOptions | IframeWidgetOptions | GraphWidgetOptions | TemplateWidgetOptions | TileWidgetOptions | VegaWidgetOptions | CustomWidgetOptions;
78
+ export type LinkedItemsOptions = ('source' | 'destination')[];
79
+ export type DatasourceRequest = {
80
+ datasetId: string;
81
+ excludeGeo: boolean;
82
+ linkedItems?: LinkedItemsOptions;
83
+ };
@@ -1,28 +1,29 @@
1
1
  import { ResultSet } from '../../model/result-set.interface';
2
2
  import { MonoClassSearchPayload } from '../../model/search-mono-class.model';
3
3
  import { FullTextSearchPayload, MultiClassSearchPayload } from '../../model/search-multi-class.model';
4
+ import { LinkedItemsOptions } from '../../model/manifest.interface';
4
5
  export declare const SearchActions: {
5
6
  search: import("@ngrx/store").ActionCreator<"[Search] search", (props: {
6
7
  payload: MonoClassSearchPayload | MultiClassSearchPayload | FullTextSearchPayload;
7
8
  id?: string;
8
- linkedItems?: ("destination" | "source")[];
9
+ linkedItems?: LinkedItemsOptions;
9
10
  }) => {
10
11
  payload: MonoClassSearchPayload | MultiClassSearchPayload | FullTextSearchPayload;
11
12
  id?: string;
12
- linkedItems?: ("destination" | "source")[];
13
+ linkedItems?: LinkedItemsOptions;
13
14
  } & import("@ngrx/store").Action<"[Search] search">>;
14
15
  getDatasourceItems: import("@ngrx/store").ActionCreator<"[Search] (bus) get datasource items (not-active-action)", (props: {
15
16
  id: string;
16
17
  excludeGeo: boolean;
17
18
  from: string;
18
19
  next?: boolean;
19
- linkedItems?: ("destination" | "source")[];
20
+ linkedItems?: LinkedItemsOptions;
20
21
  }) => {
21
22
  id: string;
22
23
  excludeGeo: boolean;
23
24
  from: string;
24
25
  next?: boolean;
25
- linkedItems?: ("destination" | "source")[];
26
+ linkedItems?: LinkedItemsOptions;
26
27
  } & import("@ngrx/store").Action<"[Search] (bus) get datasource items (not-active-action)">>;
27
28
  searchSuccess: import("@ngrx/store").ActionCreator<"[Search Api] (bus) Search Success (not-active-action)", (props: {
28
29
  resultSet: ResultSet;
@@ -2,6 +2,7 @@ import { Actions } from '@ngrx/effects';
2
2
  import { Store } from '@ngrx/store';
3
3
  import { SearchService } from './search.service';
4
4
  import { WidgetFactoryService } from '../../../dashboard/components/widgets/widget-instanciator/widget-factory.service';
5
+ import { LinkedItemsOptions } from '../../model/manifest.interface';
5
6
  import * as i0 from "@angular/core";
6
7
  export declare class SearchEffects {
7
8
  private actions$;
@@ -23,7 +24,7 @@ export declare class SearchEffects {
23
24
  excludeGeo: boolean;
24
25
  from: string;
25
26
  next?: boolean;
26
- linkedItems?: ("destination" | "source")[];
27
+ linkedItems?: LinkedItemsOptions;
27
28
  } & import("@ngrx/store").Action<"[Search] (bus) get datasource items (not-active-action)">> & import("@ngrx/effects").CreateEffectMetadata;
28
29
  search$: import("rxjs").Observable<({
29
30
  resultSet: import("@provoly/dashboard").ResultSet;
@@ -9,6 +9,7 @@ import { FullTextSearchPayload, MultiClassSearchPayload } from '../../model/sear
9
9
  import { ConfigState } from '../config/config.reducer';
10
10
  import { SearchState } from './search.reducer';
11
11
  import { DataSource } from '../data-source/data-source.model';
12
+ import { LinkedItemsOptions } from '../../model/manifest.interface';
12
13
  import * as i0 from "@angular/core";
13
14
  export type ResultsetTransformation = (id: string, result: ResultSet) => ResultSet;
14
15
  export declare class SearchService {
@@ -23,10 +24,10 @@ export declare class SearchService {
23
24
  };
24
25
  datasources: DataSource[];
25
26
  constructor(httpClient: HttpClient, store: Store<ConfigState | SearchState>);
26
- getItems(id: string, quickOrder?: ResultOrder, excludeGeo?: boolean, searchAfter?: string, linkedItems?: ('destination' | 'source')[]): Observable<ResultSet>;
27
+ getItems(id: string, quickOrder?: ResultOrder, excludeGeo?: boolean, searchAfter?: string, linkedItems?: LinkedItemsOptions): Observable<ResultSet>;
27
28
  getItemsSerializedParams(id: string, quickOrder: {
28
29
  [id: string]: ResultOrder | undefined;
29
- } | undefined, excludeGeo: boolean, linkedItems?: ('destination' | 'source')[]): string;
30
+ } | undefined, excludeGeo: boolean, linkedItems?: LinkedItemsOptions): string;
30
31
  getItemsFilter(id: string, cumulative?: HttpParams): HttpParams;
31
32
  getOrder(quickOrder: ResultOrder | undefined): HttpParams;
32
33
  /**
@@ -65,8 +65,6 @@ export declare class DashboardComponent extends SubscriptionnerDirective impleme
65
65
  backgroundArea$: Observable<string>;
66
66
  private confirmRemoveRef?;
67
67
  Array: any;
68
- set linkedItems(linkedItems: ('destination' | 'source')[]);
69
- linkedItems$: BehaviorSubject<('destination' | 'source')[] | undefined>;
70
68
  constructor(store: Store<any>, overlay: Overlay, viewContainerRef: ViewContainerRef, el: ElementRef);
71
69
  ngAfterViewChecked(): void;
72
70
  ngOnInit(): void;
@@ -115,5 +113,5 @@ export declare class DashboardComponent extends SubscriptionnerDirective impleme
115
113
  trackWidgets(index: number, widgetManifest: WidgetManifest): string;
116
114
  changeSize(direction: string, offset: number): void;
117
115
  static ɵfac: i0.ɵɵFactoryDeclaration<DashboardComponent, never>;
118
- static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "pry-dashboard", never, { "staticDashboard": { "alias": "staticDashboard"; "required": false; }; "forceModeEdition": { "alias": "forceModeEdition"; "required": false; }; "CloseOnDragOut": { "alias": "CloseOnDragOut"; "required": false; }; "displayOptions": { "alias": "displayOptions"; "required": false; }; "noBackground": { "alias": "noBackground"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; "linkedItems": { "alias": "linkedItems"; "required": false; }; }, { "rowHeight": "rowHeight"; "rows": "rows"; }, never, never, false, never>;
116
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "pry-dashboard", never, { "staticDashboard": { "alias": "staticDashboard"; "required": false; }; "forceModeEdition": { "alias": "forceModeEdition"; "required": false; }; "CloseOnDragOut": { "alias": "CloseOnDragOut"; "required": false; }; "displayOptions": { "alias": "displayOptions"; "required": false; }; "noBackground": { "alias": "noBackground"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; }, { "rowHeight": "rowHeight"; "rows": "rows"; }, never, never, false, never>;
119
117
  }
@@ -1,6 +1,6 @@
1
1
  import { InjectionToken, Injector, Type } from '@angular/core';
2
2
  import { BehaviorSubject, Observable } from 'rxjs';
3
- import { GlobalManifest, WidgetManifest } from '../../../../core/model/manifest.interface';
3
+ import { DashboardManifest, DatasourceRequest, GlobalManifest, WidgetManifest } from '../../../../core/model/manifest.interface';
4
4
  import { BaseWidgetComponent } from '../base-widget.component';
5
5
  import { WidgetDefinition } from './widgets-definition.model';
6
6
  import { Store } from '@ngrx/store';
@@ -26,17 +26,11 @@ export declare class WidgetFactoryService {
26
26
  resolveComponent(manifest: WidgetManifest): Observable<Type<BaseWidgetComponent>>;
27
27
  private putDefinitions;
28
28
  isModuleLoaded(type: string): Observable<boolean>;
29
- datasourcesToAutoLoad(manifest: WidgetManifest): {
30
- datasetId: string;
31
- excludeGeo: boolean;
32
- }[];
29
+ datasourcesToAutoLoad(manifest: DashboardManifest): DatasourceRequest[];
33
30
  private calculateExcludeGeo;
34
31
  aggregatesToAutoLoad(manifest: WidgetManifest): string[];
35
32
  getObjectsToAutoLoad(manifest: GlobalManifest): {
36
- datasources: {
37
- datasetId: string;
38
- excludeGeo: boolean;
39
- }[];
33
+ datasources: DatasourceRequest[];
40
34
  aggregates: string[];
41
35
  };
42
36
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetFactoryService, never>;
@@ -10,7 +10,6 @@ export declare class FilterGroupComponent {
10
10
  isSelectOpen: boolean;
11
11
  enterTriggerFilter: boolean;
12
12
  clearTriggerFilter: boolean;
13
- linkedItems?: ('destination' | 'source')[];
14
13
  constructor(store: Store, document: Document);
15
14
  filter(): void;
16
15
  clearFilters(): void;
@@ -18,5 +17,5 @@ export declare class FilterGroupComponent {
18
17
  enterPressed(): void;
19
18
  cleared(): void;
20
19
  static ɵfac: i0.ɵɵFactoryDeclaration<FilterGroupComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<FilterGroupComponent, "pry-filter-group", never, { "enterTriggerFilter": { "alias": "enterTriggerFilter"; "required": false; }; "clearTriggerFilter": { "alias": "clearTriggerFilter"; "required": false; }; "linkedItems": { "alias": "linkedItems"; "required": false; }; }, {}, never, never, false, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<FilterGroupComponent, "pry-filter-group", never, { "enterTriggerFilter": { "alias": "enterTriggerFilter"; "required": false; }; "clearTriggerFilter": { "alias": "clearTriggerFilter"; "required": false; }; }, {}, never, never, false, never>;
22
21
  }
@@ -2,7 +2,7 @@ import { PrySnackMessage } from '../../core/components/snackbar/snack.interface'
2
2
  import { DisplayOptions } from '../../core/model/display-options.interface';
3
3
  import { Filter } from '../../core/model/filter.interface';
4
4
  import { Item } from '../../core/model/item.interface';
5
- import { DashboardManifest, GlobalManifest, ManifestDescription, WidgetManifest } from '../../core/model/manifest.interface';
5
+ import { DashboardManifest, GlobalManifest, LinkedItemsOptions, ManifestDescription, WidgetManifest } from '../../core/model/manifest.interface';
6
6
  import { Relation } from '../../core/model/relation.interface';
7
7
  import { OrderValue } from '../../core/model/result-order.interface';
8
8
  import { ResultSet, ResultSets } from '../../core/model/result-set.interface';
@@ -289,11 +289,9 @@ export declare const DashboardActions: {
289
289
  widgetIndex: number;
290
290
  } & import("@ngrx/store").Action<"[Dashboard] maximize widget">>;
291
291
  assertResultSets: import("@ngrx/store").ActionCreator<"[Dashboard] assert resultSet", (props: {
292
- staticManifest?: DashboardManifest;
293
- linkedItems?: ("destination" | "source")[];
292
+ staticManifest?: DashboardManifest | null;
294
293
  }) => {
295
- staticManifest?: DashboardManifest;
296
- linkedItems?: ("destination" | "source")[];
294
+ staticManifest?: DashboardManifest | null;
297
295
  } & import("@ngrx/store").Action<"[Dashboard] assert resultSet">>;
298
296
  updateResultSet: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) received named resultSet (not-active-action)", (props: {
299
297
  id: string;
@@ -397,12 +395,12 @@ export declare const DashboardActions: {
397
395
  datasourceId: string;
398
396
  attribute: string;
399
397
  asc: OrderValue;
400
- linkedItems?: ("destination" | "source")[];
398
+ linkedItems?: LinkedItemsOptions;
401
399
  }) => {
402
400
  datasourceId: string;
403
401
  attribute: string;
404
402
  asc: OrderValue;
405
- linkedItems?: ("destination" | "source")[];
403
+ linkedItems?: LinkedItemsOptions;
406
404
  } & import("@ngrx/store").Action<"[Dashboard] (bus) quick order">>;
407
405
  setGridLayout: import("@ngrx/store").ActionCreator<"[Dashboard] set grid layout", (props: {
408
406
  layout: string;
@@ -443,17 +441,11 @@ export declare const DashboardActions: {
443
441
  value: any;
444
442
  datasourceId: string;
445
443
  } & import("@ngrx/store").Action<"[Dashboard] (bus) update filter value">>;
446
- clearAllFilterValues: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) clear all filter values", (props: {
447
- linkedItems?: ("destination" | "source")[];
448
- }) => {
449
- linkedItems?: ("destination" | "source")[];
450
- } & import("@ngrx/store").Action<"[Dashboard] (bus) clear all filter values">>;
444
+ clearAllFilterValues: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) clear all filter values", () => import("@ngrx/store").Action<"[Dashboard] (bus) clear all filter values">>;
451
445
  dispatchFilters: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) apply filters to presentation datasources", (props: {
452
446
  staticManifest?: DashboardManifest;
453
- linkedItems?: ("destination" | "source")[];
454
447
  }) => {
455
448
  staticManifest?: DashboardManifest;
456
- linkedItems?: ("destination" | "source")[];
457
449
  } & import("@ngrx/store").Action<"[Dashboard] (bus) apply filters to presentation datasources">>;
458
450
  resetWmsFeatures: import("@ngrx/store").ActionCreator<"[Widget map] Reset Wms layer features", (props: {
459
451
  componentId: string;
@@ -100,7 +100,7 @@ export declare class DashboardEffects {
100
100
  excludeGeo: boolean;
101
101
  from: string;
102
102
  next?: boolean;
103
- linkedItems?: ("destination" | "source")[];
103
+ linkedItems?: import("../../core/model/manifest.interface").LinkedItemsOptions;
104
104
  } & import("@ngrx/store").Action<"[Search] (bus) get datasource items (not-active-action)">) | ({
105
105
  id: string;
106
106
  } & import("@ngrx/store").Action<"[Dashboard] (bus) Triggering aggregates for datasource">)> & import("@ngrx/effects").CreateEffectMetadata;
@@ -108,8 +108,7 @@ export declare class DashboardEffects {
108
108
  id: string;
109
109
  } & import("@ngrx/store").Action<"[Dashboard] (bus) Triggering aggregates for datasource">> & import("@ngrx/effects").CreateEffectMetadata;
110
110
  startMissingViewAfterViewUpdate$: import("rxjs").Observable<import("@ngrx/store").Action<"[Dashboard] solving collisions"> | import("@ngrx/store").Action<"[Dashboard] opening missing views for manifest"> | ({
111
- staticManifest?: import("../../core/model/manifest.interface").DashboardManifest;
112
- linkedItems?: ("destination" | "source")[];
111
+ staticManifest?: import("../../core/model/manifest.interface").DashboardManifest | null;
113
112
  } & import("@ngrx/store").Action<"[Dashboard] assert resultSet">)> & import("@ngrx/effects").CreateEffectMetadata;
114
113
  updateTitle$: import("rxjs").Observable<[({
115
114
  tenants: string[];
@@ -226,7 +225,7 @@ export declare class DashboardEffects {
226
225
  excludeGeo: boolean;
227
226
  from: string;
228
227
  next?: boolean;
229
- linkedItems?: ("destination" | "source")[];
228
+ linkedItems?: import("../../core/model/manifest.interface").LinkedItemsOptions;
230
229
  } & import("@ngrx/store").Action<"[Search] (bus) get datasource items (not-active-action)">> & import("@ngrx/effects").CreateEffectMetadata;
231
230
  propagateGridLayout$: import("rxjs").Observable<{
232
231
  manifest: import("../../core/model/manifest.interface").DashboardManifest;
@@ -1,4 +1,4 @@
1
- import { GlobalManifest } from '../../core/model/manifest.interface';
1
+ import { DatasourceRequest, GlobalManifest } from '../../core/model/manifest.interface';
2
2
  export declare class ManifestUtils {
3
3
  static getDatasourcesUsedByManifest(manifest: GlobalManifest): {
4
4
  datasetId: string;
@@ -6,4 +6,5 @@ export declare class ManifestUtils {
6
6
  }[];
7
7
  static cleanupManifest(manifest: GlobalManifest): GlobalManifest;
8
8
  private static cleanupDashboardManifest;
9
+ static mergeDatasourceRequests(datasourceRequests: DatasourceRequest[]): DatasourceRequest[];
9
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "1.4.23",
3
+ "version": "1.4.25",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "17.x || 18.x",
@@ -162,18 +162,18 @@
162
162
  "esm": "./esm2022/components/data-format/provoly-dashboard-components-data-format.mjs",
163
163
  "default": "./fesm2022/provoly-dashboard-components-data-format.mjs"
164
164
  },
165
- "./components/expand-panel": {
166
- "types": "./components/expand-panel/index.d.ts",
167
- "esm2022": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
168
- "esm": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
169
- "default": "./fesm2022/provoly-dashboard-components-expand-panel.mjs"
170
- },
171
165
  "./components/filter": {
172
166
  "types": "./components/filter/index.d.ts",
173
167
  "esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
174
168
  "esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
175
169
  "default": "./fesm2022/provoly-dashboard-components-filter.mjs"
176
170
  },
171
+ "./components/expand-panel": {
172
+ "types": "./components/expand-panel/index.d.ts",
173
+ "esm2022": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
174
+ "esm": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
175
+ "default": "./fesm2022/provoly-dashboard-components-expand-panel.mjs"
176
+ },
177
177
  "./components/metadata-editor": {
178
178
  "types": "./components/metadata-editor/index.d.ts",
179
179
  "esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
@@ -252,6 +252,12 @@
252
252
  "esm": "./esm2022/pipeline-components/input-datasource/provoly-dashboard-pipeline-components-input-datasource.mjs",
253
253
  "default": "./fesm2022/provoly-dashboard-pipeline-components-input-datasource.mjs"
254
254
  },
255
+ "./pipeline-components/noop": {
256
+ "types": "./pipeline-components/noop/index.d.ts",
257
+ "esm2022": "./esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs",
258
+ "esm": "./esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs",
259
+ "default": "./fesm2022/provoly-dashboard-pipeline-components-noop.mjs"
260
+ },
255
261
  "./pipeline-components/output-dataset": {
256
262
  "types": "./pipeline-components/output-dataset/index.d.ts",
257
263
  "esm2022": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
@@ -264,12 +270,6 @@
264
270
  "esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
265
271
  "default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
266
272
  },
267
- "./pipeline-components/noop": {
268
- "types": "./pipeline-components/noop/index.d.ts",
269
- "esm2022": "./esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs",
270
- "esm": "./esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs",
271
- "default": "./fesm2022/provoly-dashboard-pipeline-components-noop.mjs"
272
- },
273
273
  "./tooltips/attribute": {
274
274
  "types": "./tooltips/attribute/index.d.ts",
275
275
  "esm2022": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
@@ -336,6 +336,12 @@
336
336
  "esm": "./esm2022/widgets/widget-table/provoly-dashboard-widgets-widget-table.mjs",
337
337
  "default": "./fesm2022/provoly-dashboard-widgets-widget-table.mjs"
338
338
  },
339
+ "./widgets/widget-template": {
340
+ "types": "./widgets/widget-template/index.d.ts",
341
+ "esm2022": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
342
+ "esm": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
343
+ "default": "./fesm2022/provoly-dashboard-widgets-widget-template.mjs"
344
+ },
339
345
  "./widgets/widget-tile": {
340
346
  "types": "./widgets/widget-tile/index.d.ts",
341
347
  "esm2022": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
@@ -347,12 +353,6 @@
347
353
  "esm2022": "./esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs",
348
354
  "esm": "./esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs",
349
355
  "default": "./fesm2022/provoly-dashboard-widgets-widget-vega.mjs"
350
- },
351
- "./widgets/widget-template": {
352
- "types": "./widgets/widget-template/index.d.ts",
353
- "esm2022": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
354
- "esm": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
355
- "default": "./fesm2022/provoly-dashboard-widgets-widget-template.mjs"
356
356
  }
357
357
  },
358
358
  "schematics": "./schematics/collection.json",
@@ -21,7 +21,7 @@ export declare class SearchFulltextEffects {
21
21
  } & import("@ngrx/store").Action<"[NamedQuery] post">) | ({
22
22
  payload: import("@provoly/dashboard").MonoClassSearchPayload | import("@provoly/dashboard").MultiClassSearchPayload | import("@provoly/dashboard").FullTextSearchPayload;
23
23
  id?: string;
24
- linkedItems?: ("destination" | "source")[];
24
+ linkedItems?: import("@provoly/dashboard").LinkedItemsOptions;
25
25
  } & import("@ngrx/store").Action<"[Search] search">)> & import("@ngrx/effects").CreateEffectMetadata;
26
26
  constructor(actions$: Actions, store: Store<any>, searchFulltextService: SearchFulltextService);
27
27
  static ɵfac: i0.ɵɵFactoryDeclaration<SearchFulltextEffects, never>;
@@ -43,7 +43,7 @@ export declare class SearchMonoClassEffects {
43
43
  } & Action<"[NamedQuery] post">) | ({
44
44
  payload: MonoClassSearchPayload | MultiClassSearchPayload | import("@provoly/dashboard").FullTextSearchPayload;
45
45
  id?: string;
46
- linkedItems?: ("destination" | "source")[];
46
+ linkedItems?: import("@provoly/dashboard").LinkedItemsOptions;
47
47
  } & Action<"[Search] search">)> & import("@ngrx/effects").CreateEffectMetadata;
48
48
  loadExistingConditions$: import("rxjs").Observable<({
49
49
  ids: string[];
@@ -31,7 +31,7 @@ export declare class SearchMultiClassEffects {
31
31
  } & import("@ngrx/store").Action<"[NamedQuery] post">) | ({
32
32
  payload: import("@provoly/dashboard").MonoClassSearchPayload | import("@provoly/dashboard").MultiClassSearchPayload | import("@provoly/dashboard").FullTextSearchPayload;
33
33
  id?: string;
34
- linkedItems?: ("destination" | "source")[];
34
+ linkedItems?: import("@provoly/dashboard").LinkedItemsOptions;
35
35
  } & import("@ngrx/store").Action<"[Search] search">)> & import("@ngrx/effects").CreateEffectMetadata;
36
36
  loadExistingConditions$: import("rxjs").Observable<({
37
37
  multiType: "AND" | "OR";