@provoly/dashboard 0.21.4 → 0.21.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 (74) hide show
  1. package/assets/svgs/layers.svg +3 -2
  2. package/assets/svgs/legend.svg +14 -3
  3. package/dataset/style/_o-pry-dataset.scss +6 -9
  4. package/esm2022/dataset/components/dataset.component.mjs +3 -3
  5. package/esm2022/dataset/style/css.component.mjs +2 -2
  6. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  7. package/esm2022/lib/core/store/field/field.interface.mjs +2 -1
  8. package/esm2022/lib/core/store/search/search.reducer.mjs +2 -2
  9. package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-instanciator.component.mjs +12 -3
  10. package/esm2022/lib/dashboard/dashboard.module.mjs +5 -4
  11. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
  12. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +3 -2
  13. package/esm2022/lib/dashboard/store/manifest.service.mjs +4 -3
  14. package/esm2022/notification/components/notification/content/notification-content.component.mjs +12 -8
  15. package/esm2022/notification/components/notification/notification.component.mjs +2 -1
  16. package/esm2022/notification/style/css.component.mjs +2 -2
  17. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
  18. package/esm2022/presentation/components/presentation.component.mjs +11 -9
  19. package/esm2022/presentation/style/css.component.mjs +2 -2
  20. package/esm2022/restitution/components/restitution/restitution.component.mjs +5 -5
  21. package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +3 -3
  22. package/esm2022/restitution/style/css.component.mjs +2 -2
  23. package/esm2022/toolbox/components/save-view/save-view.component.mjs +12 -6
  24. package/esm2022/toolbox/components/share/share.component.mjs +8 -5
  25. package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +2 -2
  26. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +57 -17
  27. package/esm2022/widgets/widget-map/i18n/en.translations.mjs +5 -2
  28. package/esm2022/widgets/widget-map/i18n/fr.translations.mjs +5 -2
  29. package/esm2022/widgets/widget-map/interaction/interaction-manager.class.mjs +3 -2
  30. package/esm2022/widgets/widget-map/style/css.component.mjs +2 -2
  31. package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +12 -4
  32. package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +3 -2
  33. package/fesm2022/provoly-dashboard-dataset.mjs +4 -4
  34. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  35. package/fesm2022/provoly-dashboard-notification.mjs +14 -9
  36. package/fesm2022/provoly-dashboard-notification.mjs.map +1 -1
  37. package/fesm2022/provoly-dashboard-presentation.mjs +14 -12
  38. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  39. package/fesm2022/provoly-dashboard-restitution.mjs +8 -8
  40. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  41. package/fesm2022/provoly-dashboard-toolbox.mjs +17 -8
  42. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  43. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +1 -1
  44. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
  45. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +80 -27
  46. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  47. package/fesm2022/provoly-dashboard.mjs +22 -10
  48. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  49. package/lib/core/model/manifest.interface.d.ts +3 -1
  50. package/lib/core/store/field/field.interface.d.ts +1 -0
  51. package/lib/dashboard/components/widgets/widget-instanciator/widget-instanciator.component.d.ts +1 -0
  52. package/lib/dashboard/store/dashboard.actions.d.ts +3 -0
  53. package/lib/dashboard/store/manifest.service.d.ts +2 -1
  54. package/notification/components/notification/content/notification-content.component.d.ts +4 -2
  55. package/notification/style/_m-notifications.scss +6 -7
  56. package/package.json +24 -24
  57. package/presentation/components/presentation.component.d.ts +3 -1
  58. package/presentation/style/_o-pry-presentation.scss +0 -16
  59. package/restitution/components/restitution/restitution.component.d.ts +1 -1
  60. package/restitution/style/_o-restitution.scss +12 -42
  61. package/styles/components/_a-page-loader.scss +1 -1
  62. package/styles/components/_o-pry-stepper.scss +9 -10
  63. package/styles/components/_o-widget.scss +7 -3
  64. package/styles/layout/_o-manifest-layout.scss +20 -0
  65. package/styles-theme/components-theme/_o-widget.theme.scss +1 -1
  66. package/toolbox/components/save-view/save-view.component.d.ts +3 -2
  67. package/toolbox/components/share/share.component.d.ts +2 -1
  68. package/widgets/widget-chart/component/widget-chart.component.d.ts +1 -1
  69. package/widgets/widget-map/component/widget-map.component.d.ts +5 -1
  70. package/widgets/widget-map/i18n/en.translations.d.ts +3 -0
  71. package/widgets/widget-map/i18n/fr.translations.d.ts +3 -0
  72. package/widgets/widget-map/style/_o-layer-legend.scss +43 -54
  73. package/widgets/widget-map/utils/cql-utils.class.d.ts +2 -2
  74. package/widgets/widget-map/utils/widget-map.utils.d.ts +2 -0
@@ -3892,7 +3892,7 @@ const initialSearchState = {
3892
3892
  };
3893
3893
  const searchReducer = createReducer(initialSearchState, on(SearchActions.search, (state, action) => ({
3894
3894
  ...state,
3895
- searchLoading: [...new Set([...state.searchLoading, DEFAULT_NAMED_QUERY_ID])],
3895
+ searchLoading: [...new Set([...state.searchLoading, action.id ?? DEFAULT_NAMED_QUERY_ID])],
3896
3896
  payload: action.payload,
3897
3897
  id: action.id
3898
3898
  })), on(SearchActions.getDatasourceItems, (state, action) => ({
@@ -4628,6 +4628,7 @@ const GeometricFieldTypes = [
4628
4628
  FieldType.GEOMETRYCOLLECTION
4629
4629
  ];
4630
4630
  const NumericFieldTypes = [FieldType.INTEGER, FieldType.DECIMAL, FieldType.INSTANT, FieldType.LONG];
4631
+ const TextFieldTypes = [FieldType.STRING, FieldType.KEYWORD];
4631
4632
 
4632
4633
  const hiddenFieldText = '*********';
4633
4634
  class ItemUtils {
@@ -7825,6 +7826,7 @@ class WidgetInstanciatorComponent extends SubscriptionnerDirective {
7825
7826
  .resolveComponent(widgetManifest)
7826
7827
  .pipe(delay(1))
7827
7828
  .subscribe((component) => {
7829
+ this.release();
7828
7830
  this.instanciatedComponent = !!component
7829
7831
  ? this.componentRef.createComponent(component)
7830
7832
  : this.componentRef.createComponent(WidgetPlaceholderComponent);
@@ -7841,11 +7843,19 @@ class WidgetInstanciatorComponent extends SubscriptionnerDirective {
7841
7843
  });
7842
7844
  }));
7843
7845
  }
7844
- ngOnDestroy() {
7845
- super.ngOnDestroy();
7846
+ release() {
7846
7847
  if (this.instanciatedComponent) {
7847
7848
  this.instanciatedComponent.destroy();
7849
+ // @ts-ignore
7850
+ this.instanciatedComponent = null;
7848
7851
  }
7852
+ this.instanceSubscription?.unsubscribe();
7853
+ // @ts-ignore
7854
+ this.instanceSubscription = null;
7855
+ }
7856
+ ngOnDestroy() {
7857
+ super.ngOnDestroy();
7858
+ this.release();
7849
7859
  this.cdRef.detectChanges();
7850
7860
  }
7851
7861
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WidgetInstanciatorComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: WidgetFactoryService }, { token: i1.Store }], target: i0.ɵɵFactoryTarget.Component }); }
@@ -10450,7 +10460,7 @@ class ManifestService {
10450
10460
  .select(ConfigSelectors.refUrl)
10451
10461
  .pipe(mergeMap((url) => this.httpClient.get(encodeURI(`${url}/users/me/dashboards/id/${id}/manifest`))));
10452
10462
  }
10453
- save(name, manifest, id, description, image, cover, metadata, groups) {
10463
+ save(name, manifest, id, description, image, cover, metadata, groups, visibility) {
10454
10464
  return this.store.select(ConfigSelectors.refUrl).pipe(mergeMap((url) => this.httpClient.post(encodeURI(`${url}/users/me/dashboards`), {
10455
10465
  id,
10456
10466
  name,
@@ -10460,7 +10470,8 @@ class ManifestService {
10460
10470
  cover,
10461
10471
  metadata,
10462
10472
  datasource: ManifestUtils.getDatasourcesUsedByManifest(manifest).map((ds) => ds.datasetId),
10463
- groups
10473
+ groups,
10474
+ visibility
10464
10475
  })));
10465
10476
  }
10466
10477
  delete(id) {
@@ -10762,7 +10773,7 @@ class DashboardEffects {
10762
10773
  });
10763
10774
  })), { dispatch: false });
10764
10775
  this.saveManifest$ = createEffect(() => this.actions$.pipe(ofType(DashboardActions.saveManifest), withLatestFrom(this.store.select(DashboardSelectors.globalManifest)), mergeMap$1(([action, currentManifest]) => this.manifestService
10765
- .save(action.name, action.manifest ?? currentManifest, action.id, action.description, action.image, action.cover, action.metadata, action.groups)
10776
+ .save(action.name, action.manifest ?? currentManifest, action.id, action.description, action.image, action.cover, action.metadata, action.groups, action.visibility ?? { type: PryVisibilityType.PRIVATE })
10766
10777
  .pipe(tap(() => this.snackBar.open({
10767
10778
  message: this.translateService.instant('@pry.toolbox.manifest.saved', { viewId: action.name }),
10768
10779
  type: 'success'
@@ -11772,7 +11783,8 @@ class PryDashboardModule {
11772
11783
  RefreshService,
11773
11784
  PryTitleService,
11774
11785
  WebsocketService,
11775
- ConfigService
11786
+ ConfigService,
11787
+ WidgetFactoryService
11776
11788
  ]
11777
11789
  };
11778
11790
  }
@@ -11826,7 +11838,7 @@ class PryDashboardModule {
11826
11838
  FilterInstanciatorComponent,
11827
11839
  FilterGroupComponent,
11828
11840
  DatasourceSelectorComponent] }); }
11829
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PryDashboardModule, providers: [WidgetFactoryService], imports: [CommonModule,
11841
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PryDashboardModule, imports: [CommonModule,
11830
11842
  FormsModule,
11831
11843
  PrySelectModule,
11832
11844
  PryIconModule,
@@ -11860,7 +11872,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
11860
11872
  PryI18nModule
11861
11873
  ],
11862
11874
  exports: [...components],
11863
- providers: [WidgetFactoryService]
11875
+ providers: []
11864
11876
  }]
11865
11877
  }], ctorParameters: function () { return [{ type: i1.Store }]; } });
11866
11878
 
@@ -12286,5 +12298,5 @@ function filterLoader(module, prop) {
12286
12298
  * Generated bundle index. Do not edit.
12287
12299
  */
12288
12300
 
12289
- export { AccordionComponent, AccordionItemComponent, Aggregation, BASE_DISPLAY_OPTIONS, BaseFilterComponent, BaseFilterModule, BaseLayoutComponent, BaseMenuComponent, BaseToolboxComponent, BaseTooltipComponent, BaseTooltipModule, BaseWidgetComponent, BaseWidgetModule, BusService, CategoryActions, CategorySelectors, CategoryService, ChartOptionDefault, ChipsSelectorComponent, 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, EllipsisDirective, 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, PryGroupShareComponent, 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, solveCollisions, solvingCollisionOptions, sortByName$2 as sortByName, subTypesDefault, tooltipLoader, vegaColorSchemesDefault, widgetLoader, widgetMapConfig };
12301
+ export { AccordionComponent, AccordionItemComponent, Aggregation, BASE_DISPLAY_OPTIONS, BaseFilterComponent, BaseFilterModule, BaseLayoutComponent, BaseMenuComponent, BaseToolboxComponent, BaseTooltipComponent, BaseTooltipModule, BaseWidgetComponent, BaseWidgetModule, BusService, CategoryActions, CategorySelectors, CategoryService, ChartOptionDefault, ChipsSelectorComponent, 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, EllipsisDirective, 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, PryGroupShareComponent, 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, TextFieldTypes, 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, solveCollisions, solvingCollisionOptions, sortByName$2 as sortByName, subTypesDefault, tooltipLoader, vegaColorSchemesDefault, widgetLoader, widgetMapConfig };
12290
12302
  //# sourceMappingURL=provoly-dashboard.mjs.map