@provoly/dashboard 1.4.11 → 1.4.13

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 (34) hide show
  1. package/esm2022/lib/core/store/search/search.effects.mjs +4 -6
  2. package/esm2022/lib/dashboard/components/widgets/base-widget.component.mjs +5 -1
  3. package/esm2022/lib/dashboard/filter/components/filter-group/filter-group.component.mjs +2 -2
  4. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +3 -2
  5. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +6 -2
  6. package/esm2022/toolbox/components/save-view/save-view.component.mjs +3 -2
  7. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +1 -1
  8. package/esm2022/widgets/widget-analytic/component/widget-analytic.component.mjs +1 -1
  9. package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +1 -1
  10. package/esm2022/widgets/widget-graph/component/widget-graph.component.mjs +1 -1
  11. package/esm2022/widgets/widget-iframe/component/widget-iframe.component.mjs +1 -1
  12. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +1 -1
  13. package/esm2022/widgets/widget-table/component/widget-table.component.mjs +1 -1
  14. package/esm2022/widgets/widget-template/component/widget-template.component.mjs +1 -1
  15. package/esm2022/widgets/widget-tile/component/widget-tile.component.mjs +1 -1
  16. package/esm2022/widgets/widget-vega/component/widget-vega.component.mjs +1 -1
  17. package/fesm2022/provoly-dashboard-toolbox.mjs +2 -1
  18. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  19. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  20. package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs.map +1 -1
  21. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
  22. package/fesm2022/provoly-dashboard-widgets-widget-graph.mjs.map +1 -1
  23. package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs.map +1 -1
  24. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  25. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
  26. package/fesm2022/provoly-dashboard-widgets-widget-template.mjs.map +1 -1
  27. package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs.map +1 -1
  28. package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs.map +1 -1
  29. package/fesm2022/provoly-dashboard.mjs +15 -6
  30. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  31. package/lib/dashboard/components/widgets/base-widget.component.d.ts +1 -0
  32. package/lib/dashboard/store/dashboard.actions.d.ts +6 -1
  33. package/lib/dashboard/store/dashboard.effects.d.ts +2 -0
  34. package/package.json +13 -13
@@ -32,6 +32,7 @@ export declare class BaseWidgetComponent extends SubscriptionnerDirective implem
32
32
  ngAfterViewChecked(): void;
33
33
  toImage(): Promise<string>;
34
34
  changeWidgetTitle($event: string): void;
35
+ emitManifest(): void;
35
36
  static ɵfac: i0.ɵɵFactoryDeclaration<BaseWidgetComponent, never>;
36
37
  static ɵcmp: i0.ɵɵComponentDeclaration<BaseWidgetComponent, "pry-base-widget", never, { "open$": { "alias": "open$"; "required": false; }; "widgetIndex": { "alias": "widgetIndex"; "required": false; }; "staticManifest": { "alias": "staticManifest"; "required": false; }; }, { "manifestModified": "manifestModified"; }, never, never, false, never>;
37
38
  }
@@ -178,6 +178,7 @@ export declare const DashboardActions: {
178
178
  additionalOptions?: any;
179
179
  } & import("@ngrx/store").Action<"[Dashboard] update widget in presentation">>;
180
180
  requestAllRoutes: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) requesting route update", () => import("@ngrx/store").Action<"[Dashboard] (bus) requesting route update">>;
181
+ requestManifestsToEmit: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) pre-save manifest, asking all widgets to emit", () => import("@ngrx/store").Action<"[Dashboard] (bus) pre-save manifest, asking all widgets to emit">>;
181
182
  updateRouteManifest: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) updating route", (props: {
182
183
  sender?: string;
183
184
  route: string;
@@ -434,7 +435,11 @@ export declare const DashboardActions: {
434
435
  datasourceId: string;
435
436
  } & import("@ngrx/store").Action<"[Dashboard] (bus) update filter value">>;
436
437
  clearAllFilterValues: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) clear all filter values", () => import("@ngrx/store").Action<"[Dashboard] (bus) clear all filter values">>;
437
- dispatchFilters: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) apply filters to presentation datasources", () => import("@ngrx/store").Action<"[Dashboard] (bus) apply filters to presentation datasources">>;
438
+ dispatchFilters: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) apply filters to presentation datasources", (props: {
439
+ staticManifest?: DashboardManifest;
440
+ }) => {
441
+ staticManifest?: DashboardManifest;
442
+ } & import("@ngrx/store").Action<"[Dashboard] (bus) apply filters to presentation datasources">>;
438
443
  resetWmsFeatures: import("@ngrx/store").ActionCreator<"[Widget map] Reset Wms layer features", (props: {
439
444
  componentId: string;
440
445
  }) => {
@@ -93,6 +93,8 @@ export declare class DashboardEffects {
93
93
  sender?: string;
94
94
  route: string;
95
95
  } & import("@ngrx/store").Action<"[Dashboard] (bus) updating route">> & import("@ngrx/effects").CreateEffectMetadata;
96
+ requestManifestsToEmit$: import("rxjs").Observable<import("@ngrx/store").Action<"[Dashboard] (bus) pre-save manifest, asking all widgets to emit">> & import("@ngrx/effects").CreateEffectMetadata;
97
+ dispatchFilter$: import("rxjs").Observable<import("@ngrx/store").Action<"[Dashboard] (bus) pre-save manifest, asking all widgets to emit">> & import("@ngrx/effects").CreateEffectMetadata;
96
98
  assertResultSets$: import("rxjs").Observable<({
97
99
  id: string;
98
100
  excludeGeo: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "1.4.11",
3
+ "version": "1.4.13",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "17.x || 18.x",
@@ -114,18 +114,18 @@
114
114
  "esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
115
115
  "default": "./fesm2022/provoly-dashboard-pipeline.mjs"
116
116
  },
117
- "./restitution": {
118
- "types": "./restitution/index.d.ts",
119
- "esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
120
- "esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
121
- "default": "./fesm2022/provoly-dashboard-restitution.mjs"
122
- },
123
117
  "./presentation": {
124
118
  "types": "./presentation/index.d.ts",
125
119
  "esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
126
120
  "esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
127
121
  "default": "./fesm2022/provoly-dashboard-presentation.mjs"
128
122
  },
123
+ "./restitution": {
124
+ "types": "./restitution/index.d.ts",
125
+ "esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
126
+ "esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
127
+ "default": "./fesm2022/provoly-dashboard-restitution.mjs"
128
+ },
129
129
  "./search": {
130
130
  "types": "./search/index.d.ts",
131
131
  "esm2022": "./esm2022/search/provoly-dashboard-search.mjs",
@@ -198,18 +198,18 @@
198
198
  "esm": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
199
199
  "default": "./fesm2022/provoly-dashboard-components-expand-panel.mjs"
200
200
  },
201
- "./components/metadata-editor": {
202
- "types": "./components/metadata-editor/index.d.ts",
203
- "esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
204
- "esm": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
205
- "default": "./fesm2022/provoly-dashboard-components-metadata-editor.mjs"
206
- },
207
201
  "./components/filter": {
208
202
  "types": "./components/filter/index.d.ts",
209
203
  "esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
210
204
  "esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
211
205
  "default": "./fesm2022/provoly-dashboard-components-filter.mjs"
212
206
  },
207
+ "./components/metadata-editor": {
208
+ "types": "./components/metadata-editor/index.d.ts",
209
+ "esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
210
+ "esm": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
211
+ "default": "./fesm2022/provoly-dashboard-components-metadata-editor.mjs"
212
+ },
213
213
  "./components/page-loader": {
214
214
  "types": "./components/page-loader/index.d.ts",
215
215
  "esm2022": "./esm2022/components/page-loader/provoly-dashboard-components-page-loader.mjs",