@provoly/dashboard 0.21.3 → 0.21.4

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 (55) hide show
  1. package/esm2022/lib/core/auth/geoAuth.service.mjs +29 -5
  2. package/esm2022/lib/core/components/select/select.component.mjs +13 -3
  3. package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +14 -6
  4. package/esm2022/lib/core/components/snackbar/snackbar.service.mjs +8 -3
  5. package/esm2022/lib/core/i18n/en.translations.mjs +9 -2
  6. package/esm2022/lib/core/i18n/fr.translations.mjs +9 -3
  7. package/esm2022/lib/core/model/display-options.interface.mjs +24 -7
  8. package/esm2022/lib/core/store/item/item.effects.mjs +2 -2
  9. package/esm2022/lib/dashboard/components/dashboard.component.mjs +3 -3
  10. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +12 -5
  11. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +8 -2
  12. package/esm2022/presentation/components/presentation.component.mjs +9 -3
  13. package/esm2022/presentation/i18n/en.translations.mjs +2 -1
  14. package/esm2022/presentation/i18n/fr.translations.mjs +3 -2
  15. package/esm2022/toolbox/components/delete/delete.component.mjs +29 -0
  16. package/esm2022/toolbox/components/share/share.component.mjs +69 -0
  17. package/esm2022/toolbox/components/switch-to-edit-content/switch-to-edit-content.component.mjs +26 -0
  18. package/esm2022/toolbox/components/toolbox.component.mjs +3 -3
  19. package/esm2022/toolbox/public-api.mjs +4 -1
  20. package/esm2022/toolbox/toolbox.model.mjs +22 -2
  21. package/esm2022/toolbox/toolbox.module.mjs +16 -4
  22. package/esm2022/widgets/widget-map/component/widget-map-layer.service.mjs +27 -13
  23. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +7 -8
  24. package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +6 -5
  25. package/esm2022/widgets/widget-vega/component/widget-vega.component.mjs +2 -2
  26. package/fesm2022/provoly-dashboard-presentation.mjs +11 -3
  27. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  28. package/fesm2022/provoly-dashboard-toolbox.mjs +131 -7
  29. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  30. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +37 -23
  31. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  32. package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs +1 -1
  33. package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs.map +1 -1
  34. package/fesm2022/provoly-dashboard.mjs +116 -29
  35. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  36. package/lib/core/auth/geoAuth.service.d.ts +5 -1
  37. package/lib/core/components/select/select.component.d.ts +2 -0
  38. package/lib/core/components/share/group-share/group-share.component.d.ts +2 -2
  39. package/lib/core/components/snackbar/snackbar.service.d.ts +2 -1
  40. package/lib/core/i18n/en.translations.d.ts +7 -0
  41. package/lib/core/i18n/fr.translations.d.ts +7 -1
  42. package/lib/core/model/display-options.interface.d.ts +3 -0
  43. package/lib/dashboard/store/dashboard.effects.d.ts +1 -1
  44. package/package.json +19 -19
  45. package/presentation/components/presentation.component.d.ts +1 -0
  46. package/presentation/i18n/en.translations.d.ts +1 -0
  47. package/presentation/i18n/fr.translations.d.ts +1 -0
  48. package/styles/components/_o-draggable-menu.scss +8 -0
  49. package/toolbox/components/delete/delete.component.d.ts +19 -0
  50. package/toolbox/components/share/share.component.d.ts +25 -0
  51. package/toolbox/components/switch-to-edit-content/switch-to-edit-content.component.d.ts +15 -0
  52. package/toolbox/public-api.d.ts +3 -0
  53. package/toolbox/toolbox.module.d.ts +12 -9
  54. package/widgets/widget-map/component/widget-map-layer.service.d.ts +4 -3
  55. package/widgets/widget-map/component/widget-map.component.d.ts +3 -5
@@ -1,5 +1,7 @@
1
1
  import { InjectionToken } from '@angular/core';
2
2
  import { HttpClient } from '@angular/common/http';
3
+ import { PrySnackbarService } from '../components/snackbar/snackbar.service';
4
+ import { PryI18nService } from '../i18n/i18n.service';
3
5
  import * as i0 from "@angular/core";
4
6
  export declare abstract class PryGeoAuthService {
5
7
  abstract customLoader(tile: any, src: string): void;
@@ -7,7 +9,9 @@ export declare abstract class PryGeoAuthService {
7
9
  export declare const PRY_GEOAUTH_TOKEN: InjectionToken<PryGeoAuthService>;
8
10
  export declare class PryDefaultGeoAuthService extends PryGeoAuthService {
9
11
  private httpClient;
10
- constructor(httpClient: HttpClient);
12
+ private snack;
13
+ private i18nService;
14
+ constructor(httpClient: HttpClient, snack: PrySnackbarService, i18nService: PryI18nService);
11
15
  customLoader(tile: any, src: string): void;
12
16
  static ɵfac: i0.ɵɵFactoryDeclaration<PryDefaultGeoAuthService, never>;
13
17
  static ɵprov: i0.ɵɵInjectableDeclaration<PryDefaultGeoAuthService>;
@@ -60,6 +60,8 @@ export declare class PrySelectComponent extends SubscriptionnerDirective impleme
60
60
  search($event: string): void;
61
61
  select($event: Event, item: any, index: number): void;
62
62
  toggle(force?: boolean): void;
63
+ handleClick(): void;
64
+ onInputFocus(force?: boolean): void;
63
65
  private getOverlayConfig;
64
66
  get _elementRef(): HTMLDivElement;
65
67
  static ɵfac: i0.ɵɵFactoryDeclaration<PrySelectComponent, never>;
@@ -11,15 +11,15 @@ export declare class PryGroupShareComponent extends SubscriptionnerDirective imp
11
11
  private _onChange;
12
12
  private _onTouched;
13
13
  _disabled: boolean;
14
+ assignedGroupNames$: BehaviorSubject<string[]>;
14
15
  radioValue: PryVisibilityType;
15
- groups$: Observable<Group[]>;
16
16
  assignedGroups$: Observable<Group[]>;
17
+ groups$: Observable<Group[]>;
17
18
  PryVisibilityType: typeof PryVisibilityType;
18
19
  visibilityTypes: {
19
20
  label: string;
20
21
  value: PryVisibilityType;
21
22
  }[];
22
- assignedGroupNames$: BehaviorSubject<string[]>;
23
23
  constructor(store: Store, _cd: ChangeDetectorRef);
24
24
  writeValue(value: string[] | undefined): void;
25
25
  registerOnChange(fn: any): void;
@@ -17,7 +17,8 @@ export declare class PrySnackbarService {
17
17
  constructor(overlay: Overlay, translate: PryI18nService);
18
18
  setRootViewContainerRef(viewContainerRef: ViewContainerRef): void;
19
19
  dispatchOpenEvent(message: PrySnackMessage): void;
20
- open(message: PrySnackMessage): Observable<void> | null;
20
+ notMitigatedOpen(message: PrySnackMessage): Observable<void> | null;
21
+ open(message: PrySnackMessage): void;
21
22
  static ɵfac: i0.ɵɵFactoryDeclaration<PrySnackbarService, never>;
22
23
  static ɵprov: i0.ɵɵInjectableDeclaration<PrySnackbarService>;
23
24
  }
@@ -158,6 +158,10 @@ export declare const enTranslations: {
158
158
  '1/4': string;
159
159
  '1/4_detailled': string;
160
160
  };
161
+ switchEdit: string;
162
+ switchEditContent: string;
163
+ share: string;
164
+ delete: string;
161
165
  };
162
166
  manifest: {
163
167
  name: string;
@@ -374,5 +378,8 @@ export declare const enTranslations: {
374
378
  autocomplete: string;
375
379
  };
376
380
  };
381
+ geoAuth: {
382
+ failure: string;
383
+ };
377
384
  };
378
385
  };
@@ -119,7 +119,6 @@ export declare const frTranslations: {
119
119
  rename: string;
120
120
  restore: string;
121
121
  save: string;
122
- share: string;
123
122
  drag: string;
124
123
  dragIndication: string;
125
124
  barchart: string;
@@ -159,6 +158,10 @@ export declare const frTranslations: {
159
158
  '1/4': string;
160
159
  '1/4_detailled': string;
161
160
  };
161
+ switchEdit: string;
162
+ switchEditContent: string;
163
+ share: string;
164
+ delete: string;
162
165
  };
163
166
  manifest: {
164
167
  name: string;
@@ -375,5 +378,8 @@ export declare const frTranslations: {
375
378
  autocomplete: string;
376
379
  };
377
380
  };
381
+ geoAuth: {
382
+ failure: string;
383
+ };
378
384
  };
379
385
  };
@@ -17,6 +17,9 @@ export interface ToolboxDisplayOptions {
17
17
  default_size: boolean;
18
18
  refresh_datasets: boolean;
19
19
  automate_refresh: boolean;
20
+ edit_presentation_content: boolean;
21
+ share: boolean;
22
+ delete: boolean;
20
23
  }
21
24
  export interface WidgetContextMenuDisplayOptions {
22
25
  datasourceSelection: boolean;
@@ -59,7 +59,6 @@ export declare class DashboardEffects {
59
59
  fetchStaticManifest$: import("rxjs").Observable<{
60
60
  staticManifest: GlobalManifest;
61
61
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) received staticManifest">> & import("@ngrx/effects").CreateEffectMetadata;
62
- fetchStaticManifestLoading$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dashboard] end loading">> & import("@ngrx/effects").CreateEffectMetadata;
63
62
  loadAndActivateManifest$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) follow manifest route"> | ({
64
63
  tenants?: string[] | undefined;
65
64
  manifest: GlobalManifest;
@@ -88,6 +87,7 @@ export declare class DashboardEffects {
88
87
  name: string;
89
88
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] download manifest">> & import("@ngrx/effects").CreateEffectMetadata;
90
89
  followManifestRoute$: import("rxjs").Observable<[import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) follow manifest route">, import("../../core/model/manifest.interface").DashboardManifest]> & import("@ngrx/effects").CreateEffectMetadata;
90
+ endLoadingAfterFollowingManifestRoute$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dashboard] end loading">> & import("@ngrx/effects").CreateEffectMetadata;
91
91
  requestManifestRoute$: import("rxjs").Observable<{
92
92
  sender?: string | undefined;
93
93
  route: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "0.21.3",
3
+ "version": "0.21.4",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "14.x || 15.x || 16.x",
@@ -84,18 +84,18 @@
84
84
  "esm": "./esm2022/admin/provoly-dashboard-admin.mjs",
85
85
  "default": "./fesm2022/provoly-dashboard-admin.mjs"
86
86
  },
87
- "./dataset": {
88
- "types": "./dataset/index.d.ts",
89
- "esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
90
- "esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
91
- "default": "./fesm2022/provoly-dashboard-dataset.mjs"
92
- },
93
87
  "./import": {
94
88
  "types": "./import/index.d.ts",
95
89
  "esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
96
90
  "esm": "./esm2022/import/provoly-dashboard-import.mjs",
97
91
  "default": "./fesm2022/provoly-dashboard-import.mjs"
98
92
  },
93
+ "./dataset": {
94
+ "types": "./dataset/index.d.ts",
95
+ "esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
96
+ "esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
97
+ "default": "./fesm2022/provoly-dashboard-dataset.mjs"
98
+ },
99
99
  "./notification": {
100
100
  "types": "./notification/index.d.ts",
101
101
  "esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
@@ -288,18 +288,18 @@
288
288
  "esm": "./esm2022/widgets/widget-iframe/provoly-dashboard-widgets-widget-iframe.mjs",
289
289
  "default": "./fesm2022/provoly-dashboard-widgets-widget-iframe.mjs"
290
290
  },
291
- "./widgets/widget-image": {
292
- "types": "./widgets/widget-image/index.d.ts",
293
- "esm2022": "./esm2022/widgets/widget-image/provoly-dashboard-widgets-widget-image.mjs",
294
- "esm": "./esm2022/widgets/widget-image/provoly-dashboard-widgets-widget-image.mjs",
295
- "default": "./fesm2022/provoly-dashboard-widgets-widget-image.mjs"
296
- },
297
291
  "./widgets/widget-map": {
298
292
  "types": "./widgets/widget-map/index.d.ts",
299
293
  "esm2022": "./esm2022/widgets/widget-map/provoly-dashboard-widgets-widget-map.mjs",
300
294
  "esm": "./esm2022/widgets/widget-map/provoly-dashboard-widgets-widget-map.mjs",
301
295
  "default": "./fesm2022/provoly-dashboard-widgets-widget-map.mjs"
302
296
  },
297
+ "./widgets/widget-image": {
298
+ "types": "./widgets/widget-image/index.d.ts",
299
+ "esm2022": "./esm2022/widgets/widget-image/provoly-dashboard-widgets-widget-image.mjs",
300
+ "esm": "./esm2022/widgets/widget-image/provoly-dashboard-widgets-widget-image.mjs",
301
+ "default": "./fesm2022/provoly-dashboard-widgets-widget-image.mjs"
302
+ },
303
303
  "./widgets/widget-table": {
304
304
  "types": "./widgets/widget-table/index.d.ts",
305
305
  "esm2022": "./esm2022/widgets/widget-table/provoly-dashboard-widgets-widget-table.mjs",
@@ -312,17 +312,17 @@
312
312
  "esm": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
313
313
  "default": "./fesm2022/provoly-dashboard-widgets-widget-template.mjs"
314
314
  },
315
- "./widgets/widget-tile": {
316
- "types": "./widgets/widget-tile/index.d.ts",
317
- "esm2022": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
318
- "esm": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
319
- "default": "./fesm2022/provoly-dashboard-widgets-widget-tile.mjs"
320
- },
321
315
  "./widgets/widget-vega": {
322
316
  "types": "./widgets/widget-vega/index.d.ts",
323
317
  "esm2022": "./esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs",
324
318
  "esm": "./esm2022/widgets/widget-vega/provoly-dashboard-widgets-widget-vega.mjs",
325
319
  "default": "./fesm2022/provoly-dashboard-widgets-widget-vega.mjs"
320
+ },
321
+ "./widgets/widget-tile": {
322
+ "types": "./widgets/widget-tile/index.d.ts",
323
+ "esm2022": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
324
+ "esm": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
325
+ "default": "./fesm2022/provoly-dashboard-widgets-widget-tile.mjs"
326
326
  }
327
327
  },
328
328
  "schematics": "./schematics/collection.json",
@@ -52,6 +52,7 @@ export declare class PryPresentationComponent extends SubscriptionnerDirective {
52
52
  changeVisibility(presentation?: ManifestDescription): void;
53
53
  focusCrossElement(): void;
54
54
  focusValidation(): void;
55
+ editContent(selectedPresentation: ManifestDescription): void;
55
56
  static ɵfac: i0.ɵɵFactoryDeclaration<PryPresentationComponent, never>;
56
57
  static ɵcmp: i0.ɵɵComponentDeclaration<PryPresentationComponent, "pry-presentation", never, { "editionStartUrl": { "alias": "editionStartUrl"; "required": false; }; "consultStartUrl": { "alias": "consultStartUrl"; "required": false; }; "meAsOwner": { "alias": "meAsOwner"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "listOfManifests": { "alias": "listOfManifests"; "required": false; }; "hideToolbox": { "alias": "hideToolbox"; "required": false; }; "search": { "alias": "search"; "required": false; }; }, {}, never, never, false, never>;
57
58
  }
@@ -34,6 +34,7 @@ export declare const enTranslations: {
34
34
  required: string;
35
35
  maxLength: string;
36
36
  edition: string;
37
+ editionContent: string;
37
38
  delete: string;
38
39
  backToCatalog: string;
39
40
  search: string;
@@ -35,6 +35,7 @@ export declare const frTranslations: {
35
35
  required: string;
36
36
  maxLength: string;
37
37
  edition: string;
38
+ editionContent: string;
38
39
  delete: string;
39
40
  backToCatalog: string;
40
41
  search: string;
@@ -8,6 +8,14 @@
8
8
  width: toRem(170);
9
9
  padding: toRem(6);
10
10
 
11
+ &.-dropdown {
12
+ width: fit-content;
13
+
14
+ button {
15
+ border: none;
16
+ }
17
+ }
18
+
11
19
  &__list {
12
20
  @extend %list-unstyled;
13
21
 
@@ -0,0 +1,19 @@
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { Store } from '@ngrx/store';
3
+ import { GlobalManifest, ManifestDescription, ViewMode } from '@provoly/dashboard';
4
+ import { ToolboxActionComponent } from '../toolbox-action/toolbox-action.component';
5
+ import { Overlay } from '@angular/cdk/overlay';
6
+ import * as i0 from "@angular/core";
7
+ export declare class DeleteComponent extends ToolboxActionComponent {
8
+ private overlay;
9
+ private viewContainerRef;
10
+ presentation: {
11
+ current: ManifestDescription | undefined;
12
+ viewMode?: ViewMode;
13
+ initial: GlobalManifest | undefined;
14
+ } | undefined;
15
+ constructor(store: Store, overlay: Overlay, viewContainerRef: ViewContainerRef);
16
+ trigger(): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<DeleteComponent, never>;
18
+ static ɵcmp: i0.ɵɵComponentDeclaration<DeleteComponent, "pry-delete-pres", never, {}, {}, never, never, false, never>;
19
+ }
@@ -0,0 +1,25 @@
1
+ import { TemplateRef, ViewContainerRef } from '@angular/core';
2
+ import { Store } from '@ngrx/store';
3
+ import { GlobalManifest, ManifestDescription, ViewMode } from '@provoly/dashboard';
4
+ import { ToolboxActionComponent } from '../toolbox-action/toolbox-action.component';
5
+ import { Overlay, OverlayRef } from '@angular/cdk/overlay';
6
+ import * as i0 from "@angular/core";
7
+ export declare class ShareComponent extends ToolboxActionComponent {
8
+ private overlay;
9
+ private viewContainerRef;
10
+ presentation: {
11
+ current: ManifestDescription | undefined;
12
+ viewMode?: ViewMode;
13
+ initial: GlobalManifest | undefined;
14
+ } | undefined;
15
+ modalOpened: boolean;
16
+ overlayRef?: OverlayRef;
17
+ accessGroups: string[];
18
+ template: TemplateRef<any>;
19
+ constructor(store: Store, overlay: Overlay, viewContainerRef: ViewContainerRef);
20
+ trigger(): void;
21
+ toggleModal(): void;
22
+ changeVisibility(): void;
23
+ static ɵfac: i0.ɵɵFactoryDeclaration<ShareComponent, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<ShareComponent, "pry-share-pres", never, {}, {}, never, never, false, never>;
25
+ }
@@ -0,0 +1,15 @@
1
+ import { Store } from '@ngrx/store';
2
+ import { GlobalManifest, ManifestDescription, ViewMode } from '@provoly/dashboard';
3
+ import { ToolboxActionComponent } from '../toolbox-action/toolbox-action.component';
4
+ import * as i0 from "@angular/core";
5
+ export declare class SwitchToEditContentComponent extends ToolboxActionComponent {
6
+ presentation: {
7
+ current: ManifestDescription | undefined;
8
+ viewMode?: ViewMode;
9
+ initial: GlobalManifest | undefined;
10
+ } | undefined;
11
+ constructor(store: Store);
12
+ trigger(): void;
13
+ static ɵfac: i0.ɵɵFactoryDeclaration<SwitchToEditContentComponent, never>;
14
+ static ɵcmp: i0.ɵɵComponentDeclaration<SwitchToEditContentComponent, "pry-switch-to-edit", never, {}, {}, never, never, false, never>;
15
+ }
@@ -12,5 +12,8 @@ export * from './components/toolbox-action/toolbox-action.component';
12
12
  export * from './components/toolbox-action-instanciator/toolbox-action-instanciator.component';
13
13
  export * from './components/refresh-datasets/refresh-datasets.component';
14
14
  export * from './components/automate-refresh/automate-refresh.component';
15
+ export * from './components/delete/delete.component';
16
+ export * from './components/share/share.component';
17
+ export * from './components/switch-to-edit-content/switch-to-edit-content.component';
15
18
  export * from './style/css.component';
16
19
  export * from './toolbox.model';
@@ -13,16 +13,19 @@ import * as i11 from "./style/css.component";
13
13
  import * as i12 from "./components/filter-settings/filter-settings.component";
14
14
  import * as i13 from "./components/refresh-datasets/refresh-datasets.component";
15
15
  import * as i14 from "./components/automate-refresh/automate-refresh.component";
16
- import * as i15 from "@angular/common";
17
- import * as i16 from "@angular/forms";
18
- import * as i17 from "@angular/cdk/overlay";
19
- import * as i18 from "@provoly/dashboard";
20
- import * as i19 from "@provoly/dashboard/components/checkbox";
21
- import * as i20 from "@provoly/dashboard/components/stepper";
22
- import * as i21 from "@angular/cdk/drag-drop";
23
- import * as i22 from "@angular/cdk/a11y";
16
+ import * as i15 from "./components/switch-to-edit-content/switch-to-edit-content.component";
17
+ import * as i16 from "./components/share/share.component";
18
+ import * as i17 from "./components/delete/delete.component";
19
+ import * as i18 from "@angular/common";
20
+ import * as i19 from "@angular/forms";
21
+ import * as i20 from "@angular/cdk/overlay";
22
+ import * as i21 from "@provoly/dashboard";
23
+ import * as i22 from "@provoly/dashboard/components/checkbox";
24
+ import * as i23 from "@provoly/dashboard/components/stepper";
25
+ import * as i24 from "@angular/cdk/drag-drop";
26
+ import * as i25 from "@angular/cdk/a11y";
24
27
  export declare class PryToolboxModule {
25
28
  static ɵfac: i0.ɵɵFactoryDeclaration<PryToolboxModule, never>;
26
- static ɵmod: i0.ɵɵNgModuleDeclaration<PryToolboxModule, [typeof i1.ToolboxActionComponent, typeof i2.ToolboxActionInstanciatorComponent, typeof i3.ClearViewComponent, typeof i4.DragWidgetsComponent, typeof i5.EditModeToggleComponent, typeof i6.LaunchTabComponent, typeof i7.NamedQueryComponent, typeof i8.SaveViewComponent, typeof i9.SelectGridLayoutComponent, typeof i10.ToolboxComponent, typeof i11.PrySelectGridLayoutCssComponent, typeof i12.PryFilterSettingsComponent, typeof i13.RefreshDatasetsComponent, typeof i14.AutomateRefreshComponent], [typeof i15.CommonModule, typeof i16.FormsModule, typeof i17.OverlayModule, typeof i18.PryOverlayModule, typeof i18.PryCoreModule, typeof i18.PryDashboardModule, typeof i18.PrySelectModule, typeof i18.PryIconModule, typeof i19.PryCheckboxModule, typeof i18.PryToggleModule, typeof i20.PryStepperModule, typeof i18.PryShareModule, typeof i18.PryI18nModule, typeof i21.CdkDropList, typeof i21.CdkDrag, typeof i21.CdkDragHandle, typeof i22.A11yModule], [typeof i1.ToolboxActionComponent, typeof i2.ToolboxActionInstanciatorComponent, typeof i3.ClearViewComponent, typeof i4.DragWidgetsComponent, typeof i5.EditModeToggleComponent, typeof i6.LaunchTabComponent, typeof i7.NamedQueryComponent, typeof i8.SaveViewComponent, typeof i9.SelectGridLayoutComponent, typeof i10.ToolboxComponent, typeof i11.PrySelectGridLayoutCssComponent, typeof i12.PryFilterSettingsComponent, typeof i13.RefreshDatasetsComponent, typeof i14.AutomateRefreshComponent]>;
29
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PryToolboxModule, [typeof i1.ToolboxActionComponent, typeof i2.ToolboxActionInstanciatorComponent, typeof i3.ClearViewComponent, typeof i4.DragWidgetsComponent, typeof i5.EditModeToggleComponent, typeof i6.LaunchTabComponent, typeof i7.NamedQueryComponent, typeof i8.SaveViewComponent, typeof i9.SelectGridLayoutComponent, typeof i10.ToolboxComponent, typeof i11.PrySelectGridLayoutCssComponent, typeof i12.PryFilterSettingsComponent, typeof i13.RefreshDatasetsComponent, typeof i14.AutomateRefreshComponent, typeof i15.SwitchToEditContentComponent, typeof i16.ShareComponent, typeof i17.DeleteComponent], [typeof i18.CommonModule, typeof i19.FormsModule, typeof i20.OverlayModule, typeof i21.PryOverlayModule, typeof i21.PryCoreModule, typeof i21.PryDashboardModule, typeof i21.PrySelectModule, typeof i21.PryIconModule, typeof i22.PryCheckboxModule, typeof i21.PryToggleModule, typeof i23.PryStepperModule, typeof i21.PryShareModule, typeof i21.PryI18nModule, typeof i24.CdkDropList, typeof i24.CdkDrag, typeof i24.CdkDragHandle, typeof i25.A11yModule], [typeof i1.ToolboxActionComponent, typeof i2.ToolboxActionInstanciatorComponent, typeof i3.ClearViewComponent, typeof i4.DragWidgetsComponent, typeof i5.EditModeToggleComponent, typeof i6.LaunchTabComponent, typeof i7.NamedQueryComponent, typeof i8.SaveViewComponent, typeof i9.SelectGridLayoutComponent, typeof i10.ToolboxComponent, typeof i11.PrySelectGridLayoutCssComponent, typeof i12.PryFilterSettingsComponent, typeof i13.RefreshDatasetsComponent, typeof i14.AutomateRefreshComponent, typeof i15.SwitchToEditContentComponent, typeof i16.ShareComponent, typeof i17.DeleteComponent]>;
27
30
  static ɵinj: i0.ɵɵInjectorDeclaration<PryToolboxModule>;
28
31
  }
@@ -5,8 +5,9 @@ import { Tile } from 'ol/layer';
5
5
  import BaseLayer from 'ol/layer/Base';
6
6
  import VectorLayer from 'ol/layer/Vector';
7
7
  import VectorTileLayer from 'ol/layer/VectorTile';
8
- import { TileWMS, Vector, WMTS, XYZ } from 'ol/source';
8
+ import { ImageWMS, TileWMS, Vector, WMTS, XYZ } from 'ol/source';
9
9
  import { Style } from 'ol/style';
10
+ import ImageLayer from 'ol/layer/Image';
10
11
  import * as i0 from "@angular/core";
11
12
  export type AttributesForClass = {
12
13
  [key: string]: {
@@ -75,7 +76,7 @@ export declare class WidgetMapLayerService {
75
76
  wms: (layer: MapWMSLayerLayerOptions, attributesForClass: AttributesForClass, layerClassesId: string[], resultSet: ResultSet, range: {
76
77
  min: number;
77
78
  max: number;
78
- }, itemStyles: ItemStyles, map: Map) => Tile<TileWMS>;
79
+ }, itemStyles: ItemStyles, map: Map) => Tile<TileWMS> | ImageLayer<ImageWMS>;
79
80
  wmts: (layer: MapWMTSLayerLayerOptions, attributesForClass: AttributesForClass, layerClassesId: string[], resultSet: ResultSet, range: {
80
81
  min: number;
81
82
  max: number;
@@ -83,7 +84,7 @@ export declare class WidgetMapLayerService {
83
84
  geoserver: (layer: MapGeoServerLayerOptions, attributesForClass: AttributesForClass, layerClassesId: string[], resultSet: ResultSet, range: {
84
85
  min: number;
85
86
  max: number;
86
- }, itemStyles: ItemStyles, map: Map) => Tile<TileWMS>;
87
+ }, itemStyles: ItemStyles, map: Map) => Tile<TileWMS> | ImageLayer<ImageWMS>;
87
88
  featurelayer: (layer: MapFeatureLayerOptions, attributesForClass: AttributesForClass, layerClassesId: string[], resultSet: ResultSet, range: {
88
89
  min: number;
89
90
  max: number;
@@ -1,6 +1,6 @@
1
1
  import { AfterViewInit, ComponentRef, ElementRef, Injector, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
2
2
  import { Store } from '@ngrx/store';
3
- import { BaseTooltipComponent, BaseWidgetMapLayerOptions, Class, DataWidgetComponent, Field, FilterContext, GetCapabilitiesResponse, MapAutoLayerOptions, MapFeatureLayerOptions, MapGeoServerLayerOptions, MapRasterTileLayerOptions, MapVectorTileLayerOptions, MapWidgetBubbleLayerOptions, MapWidgetHeatMapLayerOptions, MapWidgetLayerOptions, MapWidgetMarkerLayerOptions, MapWidgetOptions, MapWMSLayerLayerOptions, MapWMTSLayerLayerOptions, PryAggregationService, PryGeoAuthService, PryI18nService, SymbolService, TooltipFactoryService } from '@provoly/dashboard';
3
+ import { BaseTooltipComponent, BaseWidgetMapLayerOptions, Class, DataWidgetComponent, Field, GetCapabilitiesResponse, MapAutoLayerOptions, MapFeatureLayerOptions, MapGeoServerLayerOptions, MapRasterTileLayerOptions, MapVectorTileLayerOptions, MapWidgetBubbleLayerOptions, MapWidgetHeatMapLayerOptions, MapWidgetLayerOptions, MapWidgetMarkerLayerOptions, MapWidgetOptions, MapWMSLayerLayerOptions, MapWMTSLayerLayerOptions, PryAggregationService, PryGeoAuthService, PryI18nService, SymbolService, TooltipFactoryService } from '@provoly/dashboard';
4
4
  import { Map } from 'ol';
5
5
  import { Coordinate } from 'ol/coordinate';
6
6
  import { Geometry } from 'ol/geom';
@@ -136,9 +136,7 @@ export declare class WidgetMapComponent extends DataWidgetComponent implements A
136
136
  fitMapForObjects(selectedIds?: string[], extents?: {
137
137
  datasource: string;
138
138
  extent: Coordinate[];
139
- }[], filters?: {
140
- [p: string]: FilterContext[];
141
- }): void;
139
+ }[]): void;
142
140
  private getAttributesForDrawing;
143
141
  private getIntensityAttribute;
144
142
  private getLocationAttribute;
@@ -160,7 +158,7 @@ export declare class WidgetMapComponent extends DataWidgetComponent implements A
160
158
  changeUrl($event: Event, layer: MapWMSLayerLayerOptions | MapFeatureLayerOptions | MapVectorTileLayerOptions | MapRasterTileLayerOptions | MapWMTSLayerLayerOptions | MapGeoServerLayerOptions): void;
161
159
  changeAttribution($event: Event, layer: BaseWidgetMapLayerOptions): void;
162
160
  changeParamLayer($event: Event, layer: MapWMSLayerLayerOptions | MapWMTSLayerLayerOptions): void;
163
- changeParamTiled($event: boolean, layer: MapWMSLayerLayerOptions): void;
161
+ changeParamTiled($event: boolean, layer: MapWMSLayerLayerOptions | MapGeoServerLayerOptions): void;
164
162
  changeMatrixSet($event: Event, layer: MapWMTSLayerLayerOptions): void;
165
163
  changeParamStyle($event: Event, layer: MapWMTSLayerLayerOptions): void;
166
164
  export(): void;