@provoly/dashboard 0.19.4 → 0.19.5

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 (32) hide show
  1. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -6
  2. package/esm2022/lib/core/i18n/en.translations.mjs +3 -1
  3. package/esm2022/lib/core/i18n/fr.translations.mjs +3 -1
  4. package/esm2022/lib/core/model/display-options.interface.mjs +29 -36
  5. package/esm2022/lib/core/store/config/config.effects.mjs +2 -2
  6. package/esm2022/lib/core/store/search/search.service.mjs +7 -4
  7. package/esm2022/lib/dashboard/components/dashboard.component.mjs +3 -4
  8. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +3 -1
  9. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +7 -4
  10. package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +3 -2
  11. package/esm2022/lib/dashboard/store/manifest.service.mjs +2 -2
  12. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +39 -8
  13. package/esm2022/presentation/components/presentation.component.mjs +17 -10
  14. package/esm2022/toolbox/components/toolbox.component.mjs +15 -12
  15. package/fesm2022/provoly-dashboard-dataset.mjs +2 -5
  16. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  17. package/fesm2022/provoly-dashboard-presentation.mjs +54 -16
  18. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  19. package/fesm2022/provoly-dashboard-toolbox.mjs +14 -11
  20. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  21. package/fesm2022/provoly-dashboard.mjs +71 -67
  22. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  23. package/lib/core/i18n/en.translations.d.ts +2 -0
  24. package/lib/core/i18n/fr.translations.d.ts +2 -0
  25. package/lib/core/model/display-options.interface.d.ts +3 -8
  26. package/lib/dashboard/store/dashboard.actions.d.ts +8 -6
  27. package/lib/dashboard/store/dashboard.effects.d.ts +9 -5
  28. package/lib/dashboard/store/dashboard.selectors.d.ts +1 -1
  29. package/package.json +37 -37
  30. package/presentation/components/add-edit-presentation/add-edit-presentation.component.d.ts +10 -2
  31. package/presentation/components/presentation.component.d.ts +5 -3
  32. package/toolbox/components/toolbox.component.d.ts +2 -1
@@ -248,6 +248,7 @@ const enTranslations$1 = {
248
248
  description: 'Presentation description',
249
249
  saved: 'Presentation saved as {{viewId}}',
250
250
  saveErrorCode: {
251
+ UNKNOWN: 'Unknown error',
251
252
  FORBIDDEN: 'You are not the owner of this presentation',
252
253
  NAME_ALREADY_USED: 'A presentation called "{{name}}" already exists, please select another name.',
253
254
  SAVE_METADATA: 'Save your presentation before choosing the theme.'
@@ -271,6 +272,7 @@ const enTranslations$1 = {
271
272
  },
272
273
  saved: 'Restitution saved as {{viewId}}',
273
274
  saveErrorCode: {
275
+ UNKNOWN: 'Unknown error',
274
276
  NAME_ALREADY_USED: 'A restitution called "{{name}}" already exists, please select another name.'
275
277
  }
276
278
  },
@@ -599,6 +601,7 @@ const frTranslations$1 = {
599
601
  description: 'Description de la présentation',
600
602
  saved: 'Présentation {{viewId}} sauvegardée',
601
603
  saveErrorCode: {
604
+ UNKNOWN: 'Erreur inconnue',
602
605
  FORBIDDEN: "Vous n'êtes pas le propriétaire de cette présentation ",
603
606
  NAME_ALREADY_USED: 'Une présentation avec le nom "{{name}}" existe déjà, veuillez sélectionner un autre nom.',
604
607
  SAVE_METADATA: 'Veuillez sauvegarder la presentation avant de choisir une thématique.'
@@ -621,6 +624,7 @@ const frTranslations$1 = {
621
624
  name: 'Filtrer par nom'
622
625
  },
623
626
  saveErrorCode: {
627
+ UNKNOWN: 'Erreur inconnue',
624
628
  NAME_ALREADY_USED: 'Une restitution avec le nom "{{name}}" existe déjà, veuillez sélectionner un autre nom.'
625
629
  },
626
630
  saved: 'Présentation {{viewId}} sauvegardée'
@@ -3604,7 +3608,7 @@ class ConfigEffects {
3604
3608
  type: 'success'
3605
3609
  })), map$1(() => ConfigActions.loadWidgets()), catchError$1((error) => {
3606
3610
  this.snackBar.open({
3607
- message: this.translateService.instant('@pry.toolbox.catalog.saveErrorCode.' + error.error.code, {
3611
+ message: this.translateService.instant('@pry.toolbox.catalog.saveErrorCode.' + +(error.error?.code ?? 'UNKNOWN'), {
3608
3612
  name: action.widget.name
3609
3613
  }),
3610
3614
  type: 'error'
@@ -3703,6 +3707,8 @@ var ViewMode;
3703
3707
  ViewMode["CREATION"] = "creation";
3704
3708
  ViewMode["EDITION"] = "edition";
3705
3709
  ViewMode["EDITOR"] = "editor";
3710
+ ViewMode["SEARCH"] = "search";
3711
+ ViewMode["CUSTOM"] = "custom";
3706
3712
  })(ViewMode || (ViewMode = {}));
3707
3713
  const DashboardActions = {
3708
3714
  join: createAction('[Dashboard] joined', props()),
@@ -3923,6 +3929,55 @@ class ProxyUtils {
3923
3929
  }
3924
3930
  }
3925
3931
 
3932
+ const BASE_DISPLAY_OPTIONS = {
3933
+ presentationTitle: true,
3934
+ search: false,
3935
+ catalog: false,
3936
+ useFilters: false,
3937
+ toolbox: {
3938
+ save_view: false,
3939
+ save_view_as: false,
3940
+ filter_settings: false,
3941
+ new_tab: false,
3942
+ clear_view: false,
3943
+ default_size: false,
3944
+ refresh_datasets: false,
3945
+ automate_refresh: false
3946
+ }
3947
+ };
3948
+ function getDisplayOptions(mode) {
3949
+ switch (mode) {
3950
+ case ViewMode.CONSULT:
3951
+ return {
3952
+ ...BASE_DISPLAY_OPTIONS,
3953
+ useFilters: true,
3954
+ toolbox: { ...BASE_DISPLAY_OPTIONS.toolbox, save_view_as: true, refresh_datasets: true }
3955
+ };
3956
+ case ViewMode.SEARCH:
3957
+ return {
3958
+ ...BASE_DISPLAY_OPTIONS,
3959
+ presentationTitle: false,
3960
+ search: true,
3961
+ toolbox: { ...BASE_DISPLAY_OPTIONS.toolbox, clear_view: true, default_size: true, refresh_datasets: true }
3962
+ };
3963
+ case ViewMode.EDITION:
3964
+ case ViewMode.CREATION:
3965
+ return {
3966
+ ...BASE_DISPLAY_OPTIONS,
3967
+ catalog: true,
3968
+ useFilters: true,
3969
+ toolbox: {
3970
+ ...Object.keys(BASE_DISPLAY_OPTIONS.toolbox).reduce((acc, key) => {
3971
+ acc[key] = true;
3972
+ return acc;
3973
+ }, {})
3974
+ }
3975
+ };
3976
+ default:
3977
+ return BASE_DISPLAY_OPTIONS;
3978
+ }
3979
+ }
3980
+
3926
3981
  const NEW_WINDOW_TARGET = -1;
3927
3982
  const feature$3 = createFeatureSelector('@pry/dashboard');
3928
3983
  const manifests = createSelector(feature$3, (state) => state?.manifests);
@@ -4003,7 +4058,7 @@ const datasourceFilters = createSelector(feature$3, (state) => state?.manifests.
4003
4058
  obj), {})
4004
4059
  : {});
4005
4060
  const wmsFeatures = createSelector(feature$3, (state) => state?.wmsFeatures);
4006
- const displayOptions = createSelector(feature$3, (state) => state?.display);
4061
+ const displayOptions = createSelector(feature$3, (state) => state?.display ?? BASE_DISPLAY_OPTIONS);
4007
4062
  const capabilities = createSelector(feature$3, (state) => state?.capabilities);
4008
4063
  const DashboardSelectors = {
4009
4064
  feature: feature$3,
@@ -4118,9 +4173,12 @@ class SearchService {
4118
4173
  return transformed;
4119
4174
  }
4120
4175
  autocomplete(attributes, search) {
4121
- return this.store.select(ConfigSelectors.dataUrl).pipe(switchMap((url) => this.httpClient.post(encodeURI(`${url}/data-sources/autocomplete`), {
4122
- attributes: (attributes ?? []).map((attr) => ({ datasource: attr.datasource, attribute: attr.id })),
4123
- search
4176
+ return this.store.select(ConfigSelectors.dataUrl).pipe(switchMap((url) => this.httpClient.post(encodeURI(`${url}/data-sources/search`), {
4177
+ datasourceByAttribute: (attributes ?? [])
4178
+ .map((attr) => ({ [attr.id]: attr.datasource }))
4179
+ .reduce((p, c) => ({ ...p, ...c }), {}),
4180
+ value: search,
4181
+ limit: 10
4124
4182
  })));
4125
4183
  }
4126
4184
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SearchService, deps: [{ token: i1$2.HttpClient }, { token: i1.Store }], target: i0.ɵɵFactoryTarget.Injectable }); }
@@ -6990,63 +7048,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
6990
7048
  }]
6991
7049
  }], ctorParameters: function () { return [{ type: i1.Store }]; } });
6992
7050
 
6993
- var DisplayMode;
6994
- (function (DisplayMode) {
6995
- DisplayMode["CONSULT"] = "CONSULT";
6996
- DisplayMode["CREATE"] = "CREATE";
6997
- DisplayMode["EDIT"] = "EDIT";
6998
- DisplayMode["SEARCH"] = "SEARCH";
6999
- DisplayMode["CUSTOM"] = "CUSTOM";
7000
- })(DisplayMode || (DisplayMode = {}));
7001
- function getDisplayOptions(mode) {
7002
- const displayOptions = {
7003
- presentationTitle: true,
7004
- search: false,
7005
- catalog: false,
7006
- useFilters: false,
7007
- toolbox: {
7008
- save_view: false,
7009
- save_view_as: false,
7010
- filter_settings: false,
7011
- new_tab: false,
7012
- clear_view: false,
7013
- default_size: false,
7014
- refresh_datasets: false,
7015
- automate_refresh: false
7016
- }
7017
- };
7018
- switch (mode) {
7019
- case DisplayMode.CONSULT:
7020
- return {
7021
- ...displayOptions,
7022
- useFilters: true,
7023
- toolbox: { ...displayOptions.toolbox, save_view_as: true, refresh_datasets: true }
7024
- };
7025
- case DisplayMode.SEARCH:
7026
- return {
7027
- ...displayOptions,
7028
- presentationTitle: false,
7029
- search: true,
7030
- toolbox: { ...displayOptions.toolbox, clear_view: true, default_size: true, refresh_datasets: true }
7031
- };
7032
- case DisplayMode.EDIT:
7033
- case DisplayMode.CREATE:
7034
- return {
7035
- ...displayOptions,
7036
- catalog: true,
7037
- useFilters: true,
7038
- toolbox: {
7039
- ...Object.keys(displayOptions.toolbox).reduce((acc, key) => {
7040
- acc[key] = true;
7041
- return acc;
7042
- }, {})
7043
- }
7044
- };
7045
- default:
7046
- return displayOptions;
7047
- }
7048
- }
7049
-
7050
7051
  const MIME_TYPE_RESULTSET = 'application/resultset';
7051
7052
 
7052
7053
  const DEFAULT_GAP_PX = 15;
@@ -8063,7 +8064,7 @@ class DashboardComponent extends SubscriptionnerDirective {
8063
8064
  }
8064
8065
  ngOnInit() {
8065
8066
  if (this.displayOptions)
8066
- this.store.dispatch(DashboardActions.updateDisplayOptions({ mode: DisplayMode.CUSTOM, customDisplay: this.displayOptions }));
8067
+ this.store.dispatch(DashboardActions.updateDisplayOptions({ mode: ViewMode.CUSTOM, customDisplay: this.displayOptions }));
8067
8068
  }
8068
8069
  ngAfterViewInit() {
8069
8070
  this.canCalculateView = true;
@@ -10311,7 +10312,7 @@ class ManifestService {
10311
10312
  visibility,
10312
10313
  cover,
10313
10314
  metadata,
10314
- datasource: ManifestUtils.getDatasourcesUsedByManifest(manifest)
10315
+ datasource: ManifestUtils.getDatasourcesUsedByManifest(manifest).map((ds) => ds.datasetId)
10315
10316
  })));
10316
10317
  }
10317
10318
  delete(id) {
@@ -10626,7 +10627,7 @@ class DashboardEffects {
10626
10627
  type: 'success'
10627
10628
  })), map$1(() => action.manifest ?? currentManifest), catchError((error) => {
10628
10629
  this.snackBar.open({
10629
- message: this.translateService.instant('@pry.toolbox.manifest.saveErrorCode.' + error.error.code, {
10630
+ message: this.translateService.instant('@pry.toolbox.manifest.saveErrorCode.' + (error.error?.code ?? 'UNKNOWN'), {
10630
10631
  name: action.name
10631
10632
  }),
10632
10633
  type: 'error'
@@ -10830,7 +10831,10 @@ class DashboardEffects {
10830
10831
  manifestId: action.presentation.id
10831
10832
  }),
10832
10833
  DashboardActions.setInitialPresentation({
10833
- initial: manifest
10834
+ initial: action.viewMode === ViewMode.CONSULT ? undefined : manifest
10835
+ }),
10836
+ DashboardActions.updateDisplayOptions({
10837
+ mode: action.viewMode
10834
10838
  }),
10835
10839
  DashboardActions.followManifestRoute()
10836
10840
  ])))));
@@ -11823,5 +11827,5 @@ function filterLoader(module, prop) {
11823
11827
  * Generated bundle index. Do not edit.
11824
11828
  */
11825
11829
 
11826
- export { AccordionComponent, AccordionItemComponent, Aggregation, BaseFilterComponent, BaseFilterModule, BaseLayoutComponent, BaseMenuComponent, BaseToolboxComponent, BaseTooltipComponent, BaseTooltipModule, BaseWidgetComponent, BaseWidgetModule, BusService, CategoryActions, CategorySelectors, CategoryService, ChartOptionDefault, ClassActions, ClassSelectors, ClassService, ConfigActions, ConfigSelectors, ConfigService, ContextMenuActions, ContextMenuComponent, ContextMenuSelectors, DEFAULT_CATEGORY_UUID, DEFAULT_COLUMNS_NUMBER, DEFAULT_GAP_PX, DEFAULT_ICON_URL, DEFAULT_MSG_TIMEOUT, DEFAULT_NAMED_QUERY_ID, DEFAULT_PROJECTION, DEFAULT_RESTITUTION_ICON_URL, DEFAULT_ROWS_NUMBER, DEFAULT_ROW_HEIGHT_PX, DELAY_FOR_HIDE, DashboardActions, DashboardComponent, DashboardGridLayout, DashboardSelectors, DataSourceActions, DataSourceSelectors, DataSourceService, DataWidgetComponent, DatasourceSelectorComponent, DatasourceUtils, DateRangeHighlightPipe, DateUtils, DefaultTooltipComponent, DisplayMode, ENV_OPTIONS, EXPLORE_NAMED_QUERY_ID, FIELD_OPTIONS, FIELD_UUID, FILTERS_DOMAIN, FILTER_DEFINITION, FieldActions, FieldSelectors, FieldService, FieldType, FilterFactoryService, FilterGroupComponent, FilterInstanciatorComponent, GeoMetadata, GeometricFieldTypes, GetSecuredImagePipe, GraphType, HTTP_ORIGIN_METADATA, I18nPipe, INTERNALLY_STORED_IMAGE_PREFIX, IconPosition, ImageActions, ImageService, ImagesSelectors, ItemUtils, LibraryTypes, LoopScrollColumnComponent, METADATA_TYPE, META_OPTIONS, MIME_TYPE_RESULTSET, MIME_TYPE_WIDGET_MANIFEST, MIME_TYPE_WIDGET_SIZE, MIME_TYPE_WIDGET_TYPE, ManifestService, ManifestUtils, ManifestsComponent, MarkSubType, MarkType, MetadataComponent, NamedQueryTypes, NumericFieldTypes, OPERATOR_OPTIONS, Operation, PRY_ACCESS_GUARD, PRY_ACCESS_TOKEN, PRY_CUSTOMEVENT_TYPE, PRY_DIALOG_DATA, PRY_GEOAUTH_TOKEN, PryAboutComponent, PryAboutModule, PryAccessDirective, PryAccessUtils, PryAggregationService, PryBackendAggregationService, PryBaseAccess, PryBaseAccessGuard, PryCoreModule, PryDashboardModule, PryDatasetType, PryDatePickerComponent, PryDatePickerModule, PryDefaultAccessGuard, PryDefaultAccessService, PryDefaultGeoAuthService, PryDialogConfirmComponent, PryDialogRef, PryDialogService, PryEditInputComponent, PryEditInputModule, PryFilterGroupCssComponent, PryFrontendAggregationService, PryGeoAuthService, PryHiddenWhenOverlay, PryHiddenWhenOverlayDirective, PryHttpErrorInterceptorService, PryI18nModule, PryI18nService, PryIconComponent, PryIconModule, PryModalComponent, PryModalModule, PryModalStatusComponent, PryModalStatusModule, PryNqColorSelectorComponent, PryObjectEditionComponent, PryOverlayDirective, PryOverlayModule, PryRangeComponent, PryRangeModule, PrySelectComponent, PrySelectImageComponent, PrySelectModule, PryShareComponent, PryShareModule, PrySnackbarComponent, PrySnackbarModule, PrySnackbarService, PrySortDataPipe, PrySortHeaderComponent, PrySortHeaderDirective, PrySortModule, PrySortTableDirective, PryTimePickerComponent, PryTitleService, PryToggleComponent, PryToggleModule, PryUploadComponent, PryVisibilityType, PryWidgetHeaderComponent, RawService, RelationTypesActions, RelationTypesSelectors, RelationTypesService, ResultSetSizePipe, ResultsetUtils, SYMBOL_DOMAIN, SearchActions, SearchSelectors, SearchService, SettingsComponent, SubscriptionnerDirective, SymbolService, TABLE_ATTR_DOMAIN, TILE_ATTR_DOMAIN, TOOLTIPS_DOMAIN, TOOLTIP_DEFINITION, TabComponent, TabGroupComponent, ToolboxManifestService, ToolboxMenuService, TooltipFactoryService, TooltipMode, TranslateIdPipe, TranslateItemToSymbolPipe, UNKNOWN_DATASOURCE, USE_CURRENT_RESULTSET, VARIABLE_TYPE, VegaColorType, VegaType, ViewMode, VizualizeRawComponent, WIDGET_DEFINITION, WIDGET_HEADER_HEIGHT, WebsocketService, WidgetFactoryService, WidgetInstanciatorComponent, WidgetPlaceholderComponent, WidgetPlacementUtils, WmsService, adapter$2 as adapter, aggregationDefault, baseItemProperties, classReducer, classesFeatureKey, compareOperationFunctions, contextMenuFeatureKey, contextMenuReducer, createPlacedWidgetCopy, dashboardFeatureKey, dashboardInitialState, dashboardReducer, dataSourceFeatureKey, dataSourceReducer, deepMerge, defaultColors, defaultMenuStructure, enTranslations$1 as enTranslations, filterLoader, frTranslations$1 as frTranslations, getDisplayOptions, httpErrorOptions, imageFeatureKey, imageReducer, initialClassState, initialContextMenuState, initialDataSourceState, initialImageState, initialSearchState, latLonToGeographicFieldTransformation, markTypesDefault, notificationFeatureKey, orderWidgetsAccordingToPlacement, searchFeatureKey, searchReducer, selectAll$2 as selectAll, selectEntities$2 as selectEntities, selectIds$2 as selectIds, selectTotal$2 as selectTotal, solveCollisions, solvingCollisionOptions, sortByName$2 as sortByName, subTypesDefault, tooltipLoader, vegaColorSchemesDefault, widgetLoader, widgetMapConfig };
11830
+ export { AccordionComponent, AccordionItemComponent, Aggregation, BASE_DISPLAY_OPTIONS, BaseFilterComponent, BaseFilterModule, BaseLayoutComponent, BaseMenuComponent, BaseToolboxComponent, BaseTooltipComponent, BaseTooltipModule, BaseWidgetComponent, BaseWidgetModule, BusService, CategoryActions, CategorySelectors, CategoryService, ChartOptionDefault, ClassActions, ClassSelectors, ClassService, ConfigActions, ConfigSelectors, ConfigService, ContextMenuActions, ContextMenuComponent, ContextMenuSelectors, DEFAULT_CATEGORY_UUID, DEFAULT_COLUMNS_NUMBER, DEFAULT_GAP_PX, DEFAULT_ICON_URL, DEFAULT_MSG_TIMEOUT, DEFAULT_NAMED_QUERY_ID, DEFAULT_PROJECTION, DEFAULT_RESTITUTION_ICON_URL, DEFAULT_ROWS_NUMBER, DEFAULT_ROW_HEIGHT_PX, DELAY_FOR_HIDE, DashboardActions, DashboardComponent, DashboardGridLayout, DashboardSelectors, DataSourceActions, DataSourceSelectors, DataSourceService, DataWidgetComponent, DatasourceSelectorComponent, DatasourceUtils, DateRangeHighlightPipe, DateUtils, DefaultTooltipComponent, ENV_OPTIONS, EXPLORE_NAMED_QUERY_ID, FIELD_OPTIONS, FIELD_UUID, FILTERS_DOMAIN, FILTER_DEFINITION, FieldActions, FieldSelectors, FieldService, FieldType, FilterFactoryService, FilterGroupComponent, FilterInstanciatorComponent, GeoMetadata, GeometricFieldTypes, GetSecuredImagePipe, GraphType, HTTP_ORIGIN_METADATA, I18nPipe, INTERNALLY_STORED_IMAGE_PREFIX, IconPosition, ImageActions, ImageService, ImagesSelectors, ItemUtils, LibraryTypes, LoopScrollColumnComponent, METADATA_TYPE, META_OPTIONS, MIME_TYPE_RESULTSET, MIME_TYPE_WIDGET_MANIFEST, MIME_TYPE_WIDGET_SIZE, MIME_TYPE_WIDGET_TYPE, ManifestService, ManifestUtils, ManifestsComponent, MarkSubType, MarkType, MetadataComponent, NamedQueryTypes, NumericFieldTypes, OPERATOR_OPTIONS, Operation, PRY_ACCESS_GUARD, PRY_ACCESS_TOKEN, PRY_CUSTOMEVENT_TYPE, PRY_DIALOG_DATA, PRY_GEOAUTH_TOKEN, PryAboutComponent, PryAboutModule, PryAccessDirective, PryAccessUtils, PryAggregationService, PryBackendAggregationService, PryBaseAccess, PryBaseAccessGuard, PryCoreModule, PryDashboardModule, PryDatasetType, PryDatePickerComponent, PryDatePickerModule, PryDefaultAccessGuard, PryDefaultAccessService, PryDefaultGeoAuthService, PryDialogConfirmComponent, PryDialogRef, PryDialogService, PryEditInputComponent, PryEditInputModule, PryFilterGroupCssComponent, PryFrontendAggregationService, PryGeoAuthService, PryHiddenWhenOverlay, PryHiddenWhenOverlayDirective, PryHttpErrorInterceptorService, PryI18nModule, PryI18nService, PryIconComponent, PryIconModule, PryModalComponent, PryModalModule, PryModalStatusComponent, PryModalStatusModule, PryNqColorSelectorComponent, PryObjectEditionComponent, PryOverlayDirective, PryOverlayModule, PryRangeComponent, PryRangeModule, PrySelectComponent, PrySelectImageComponent, PrySelectModule, PryShareComponent, PryShareModule, PrySnackbarComponent, PrySnackbarModule, PrySnackbarService, PrySortDataPipe, PrySortHeaderComponent, PrySortHeaderDirective, PrySortModule, PrySortTableDirective, PryTimePickerComponent, PryTitleService, PryToggleComponent, PryToggleModule, PryUploadComponent, PryVisibilityType, PryWidgetHeaderComponent, RawService, RelationTypesActions, RelationTypesSelectors, RelationTypesService, ResultSetSizePipe, ResultsetUtils, SYMBOL_DOMAIN, SearchActions, SearchSelectors, SearchService, SettingsComponent, SubscriptionnerDirective, SymbolService, TABLE_ATTR_DOMAIN, TILE_ATTR_DOMAIN, TOOLTIPS_DOMAIN, TOOLTIP_DEFINITION, TabComponent, TabGroupComponent, ToolboxManifestService, ToolboxMenuService, TooltipFactoryService, TooltipMode, TranslateIdPipe, TranslateItemToSymbolPipe, UNKNOWN_DATASOURCE, USE_CURRENT_RESULTSET, VARIABLE_TYPE, VegaColorType, VegaType, ViewMode, VizualizeRawComponent, WIDGET_DEFINITION, WIDGET_HEADER_HEIGHT, WebsocketService, WidgetFactoryService, WidgetInstanciatorComponent, WidgetPlaceholderComponent, WidgetPlacementUtils, WmsService, adapter$2 as adapter, aggregationDefault, baseItemProperties, classReducer, classesFeatureKey, compareOperationFunctions, contextMenuFeatureKey, contextMenuReducer, createPlacedWidgetCopy, dashboardFeatureKey, dashboardInitialState, dashboardReducer, dataSourceFeatureKey, dataSourceReducer, deepMerge, defaultColors, defaultMenuStructure, enTranslations$1 as enTranslations, filterLoader, frTranslations$1 as frTranslations, getDisplayOptions, httpErrorOptions, imageFeatureKey, imageReducer, initialClassState, initialContextMenuState, initialDataSourceState, initialImageState, initialSearchState, latLonToGeographicFieldTransformation, markTypesDefault, notificationFeatureKey, orderWidgetsAccordingToPlacement, searchFeatureKey, searchReducer, selectAll$2 as selectAll, selectEntities$2 as selectEntities, selectIds$2 as selectIds, selectTotal$2 as selectTotal, solveCollisions, solvingCollisionOptions, sortByName$2 as sortByName, subTypesDefault, tooltipLoader, vegaColorSchemesDefault, widgetLoader, widgetMapConfig };
11827
11831
  //# sourceMappingURL=provoly-dashboard.mjs.map