@provoly/dashboard 1.4.22 → 1.4.24
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/model/manifest.interface.mjs +1 -1
- package/esm2022/lib/core/store/search/search.actions.mjs +1 -1
- package/esm2022/lib/core/store/search/search.effects.mjs +10 -5
- package/esm2022/lib/core/store/search/search.service.mjs +14 -5
- package/esm2022/lib/dashboard/components/dashboard.component.mjs +7 -10
- package/esm2022/lib/dashboard/components/widgets/data-widget.component.mjs +4 -2
- package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.mjs +32 -23
- package/esm2022/lib/dashboard/resultset-utils.mjs +18 -11
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +11 -19
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +5 -2
- package/esm2022/lib/dashboard/store/manifest-utils.class.mjs +17 -1
- package/fesm2022/provoly-dashboard.mjs +144 -105
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/model/manifest.interface.d.ts +7 -0
- package/lib/core/store/search/search.actions.d.ts +5 -4
- package/lib/core/store/search/search.effects.d.ts +2 -1
- package/lib/core/store/search/search.service.d.ts +4 -3
- package/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.d.ts +3 -9
- package/lib/dashboard/resultset-utils.d.ts +1 -0
- package/lib/dashboard/store/dashboard.actions.d.ts +5 -3
- package/lib/dashboard/store/dashboard.effects.d.ts +3 -3
- package/lib/dashboard/store/manifest-utils.class.d.ts +2 -1
- package/package.json +43 -43
- package/search/search-fulltext/store/search-fulltext.effects.d.ts +1 -1
- package/search/search-mono-class/store/search-mono-class.effects.d.ts +1 -1
- 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?:
|
|
9
|
+
linkedItems?: LinkedItemsOptions;
|
|
9
10
|
}) => {
|
|
10
11
|
payload: MonoClassSearchPayload | MultiClassSearchPayload | FullTextSearchPayload;
|
|
11
12
|
id?: string;
|
|
12
|
-
linkedItems?:
|
|
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?:
|
|
20
|
+
linkedItems?: LinkedItemsOptions;
|
|
20
21
|
}) => {
|
|
21
22
|
id: string;
|
|
22
23
|
excludeGeo: boolean;
|
|
23
24
|
from: string;
|
|
24
25
|
next?: boolean;
|
|
25
|
-
linkedItems?:
|
|
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?:
|
|
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?:
|
|
27
|
-
getItemsSerializedParams(id: string, quickOrder
|
|
27
|
+
getItems(id: string, quickOrder?: ResultOrder, excludeGeo?: boolean, searchAfter?: string, linkedItems?: LinkedItemsOptions): Observable<ResultSet>;
|
|
28
|
+
getItemsSerializedParams(id: string, quickOrder: {
|
|
28
29
|
[id: string]: ResultOrder | undefined;
|
|
29
|
-
}): 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
|
/**
|
|
@@ -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:
|
|
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>;
|
|
@@ -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,9 +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;
|
|
292
|
+
staticManifest?: DashboardManifest | null;
|
|
293
293
|
}) => {
|
|
294
|
-
staticManifest?: DashboardManifest;
|
|
294
|
+
staticManifest?: DashboardManifest | null;
|
|
295
295
|
} & import("@ngrx/store").Action<"[Dashboard] assert resultSet">>;
|
|
296
296
|
updateResultSet: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) received named resultSet (not-active-action)", (props: {
|
|
297
297
|
id: string;
|
|
@@ -395,10 +395,12 @@ export declare const DashboardActions: {
|
|
|
395
395
|
datasourceId: string;
|
|
396
396
|
attribute: string;
|
|
397
397
|
asc: OrderValue;
|
|
398
|
+
linkedItems?: LinkedItemsOptions;
|
|
398
399
|
}) => {
|
|
399
400
|
datasourceId: string;
|
|
400
401
|
attribute: string;
|
|
401
402
|
asc: OrderValue;
|
|
403
|
+
linkedItems?: LinkedItemsOptions;
|
|
402
404
|
} & import("@ngrx/store").Action<"[Dashboard] (bus) quick order">>;
|
|
403
405
|
setGridLayout: import("@ngrx/store").ActionCreator<"[Dashboard] set grid layout", (props: {
|
|
404
406
|
layout: string;
|
|
@@ -100,7 +100,7 @@ export declare class DashboardEffects {
|
|
|
100
100
|
excludeGeo: boolean;
|
|
101
101
|
from: string;
|
|
102
102
|
next?: boolean;
|
|
103
|
-
linkedItems?: ("
|
|
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,7 +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;
|
|
111
|
+
staticManifest?: import("../../core/model/manifest.interface").DashboardManifest | null;
|
|
112
112
|
} & import("@ngrx/store").Action<"[Dashboard] assert resultSet">)> & import("@ngrx/effects").CreateEffectMetadata;
|
|
113
113
|
updateTitle$: import("rxjs").Observable<[({
|
|
114
114
|
tenants: string[];
|
|
@@ -225,7 +225,7 @@ export declare class DashboardEffects {
|
|
|
225
225
|
excludeGeo: boolean;
|
|
226
226
|
from: string;
|
|
227
227
|
next?: boolean;
|
|
228
|
-
linkedItems?: ("
|
|
228
|
+
linkedItems?: import("../../core/model/manifest.interface").LinkedItemsOptions;
|
|
229
229
|
} & import("@ngrx/store").Action<"[Search] (bus) get datasource items (not-active-action)">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
230
230
|
propagateGridLayout$: import("rxjs").Observable<{
|
|
231
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.
|
|
3
|
+
"version": "1.4.24",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "17.x || 18.x",
|
|
@@ -138,36 +138,6 @@
|
|
|
138
138
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
139
139
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
140
140
|
},
|
|
141
|
-
"./filters/autocomplete": {
|
|
142
|
-
"types": "./filters/autocomplete/index.d.ts",
|
|
143
|
-
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
144
|
-
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
145
|
-
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
146
|
-
},
|
|
147
|
-
"./filters/date": {
|
|
148
|
-
"types": "./filters/date/index.d.ts",
|
|
149
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
150
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
151
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
152
|
-
},
|
|
153
|
-
"./filters/list": {
|
|
154
|
-
"types": "./filters/list/index.d.ts",
|
|
155
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
156
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
157
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
158
|
-
},
|
|
159
|
-
"./filters/number": {
|
|
160
|
-
"types": "./filters/number/index.d.ts",
|
|
161
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
162
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
163
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
164
|
-
},
|
|
165
|
-
"./filters/text": {
|
|
166
|
-
"types": "./filters/text/index.d.ts",
|
|
167
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
168
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
169
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
170
|
-
},
|
|
171
141
|
"./components/card": {
|
|
172
142
|
"types": "./components/card/index.d.ts",
|
|
173
143
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -192,18 +162,18 @@
|
|
|
192
162
|
"esm": "./esm2022/components/data-format/provoly-dashboard-components-data-format.mjs",
|
|
193
163
|
"default": "./fesm2022/provoly-dashboard-components-data-format.mjs"
|
|
194
164
|
},
|
|
195
|
-
"./components/expand-panel": {
|
|
196
|
-
"types": "./components/expand-panel/index.d.ts",
|
|
197
|
-
"esm2022": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
198
|
-
"esm": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
199
|
-
"default": "./fesm2022/provoly-dashboard-components-expand-panel.mjs"
|
|
200
|
-
},
|
|
201
165
|
"./components/filter": {
|
|
202
166
|
"types": "./components/filter/index.d.ts",
|
|
203
167
|
"esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
204
168
|
"esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
205
169
|
"default": "./fesm2022/provoly-dashboard-components-filter.mjs"
|
|
206
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
|
+
},
|
|
207
177
|
"./components/metadata-editor": {
|
|
208
178
|
"types": "./components/metadata-editor/index.d.ts",
|
|
209
179
|
"esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
@@ -240,6 +210,36 @@
|
|
|
240
210
|
"esm": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
241
211
|
"default": "./fesm2022/provoly-dashboard-components-text-editor.mjs"
|
|
242
212
|
},
|
|
213
|
+
"./filters/autocomplete": {
|
|
214
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
215
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
216
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
217
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
218
|
+
},
|
|
219
|
+
"./filters/date": {
|
|
220
|
+
"types": "./filters/date/index.d.ts",
|
|
221
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
222
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
223
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
224
|
+
},
|
|
225
|
+
"./filters/list": {
|
|
226
|
+
"types": "./filters/list/index.d.ts",
|
|
227
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
228
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
229
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
230
|
+
},
|
|
231
|
+
"./filters/number": {
|
|
232
|
+
"types": "./filters/number/index.d.ts",
|
|
233
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
234
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
235
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
236
|
+
},
|
|
237
|
+
"./filters/text": {
|
|
238
|
+
"types": "./filters/text/index.d.ts",
|
|
239
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
240
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
241
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
242
|
+
},
|
|
243
243
|
"./pipeline-components/filter": {
|
|
244
244
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
245
245
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|
|
@@ -336,18 +336,18 @@
|
|
|
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-tile": {
|
|
340
|
-
"types": "./widgets/widget-tile/index.d.ts",
|
|
341
|
-
"esm2022": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
|
|
342
|
-
"esm": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
|
|
343
|
-
"default": "./fesm2022/provoly-dashboard-widgets-widget-tile.mjs"
|
|
344
|
-
},
|
|
345
339
|
"./widgets/widget-template": {
|
|
346
340
|
"types": "./widgets/widget-template/index.d.ts",
|
|
347
341
|
"esm2022": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
|
|
348
342
|
"esm": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
|
|
349
343
|
"default": "./fesm2022/provoly-dashboard-widgets-widget-template.mjs"
|
|
350
344
|
},
|
|
345
|
+
"./widgets/widget-tile": {
|
|
346
|
+
"types": "./widgets/widget-tile/index.d.ts",
|
|
347
|
+
"esm2022": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
|
|
348
|
+
"esm": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
|
|
349
|
+
"default": "./fesm2022/provoly-dashboard-widgets-widget-tile.mjs"
|
|
350
|
+
},
|
|
351
351
|
"./widgets/widget-vega": {
|
|
352
352
|
"types": "./widgets/widget-vega/index.d.ts",
|
|
353
353
|
"esm2022": "./esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs",
|
|
@@ -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?: ("
|
|
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?: ("
|
|
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?: ("
|
|
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";
|