@provoly/dashboard 0.21.5 → 0.21.7

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 (43) hide show
  1. package/esm2022/lib/core/i18n/en.translations.mjs +2 -2
  2. package/esm2022/lib/core/i18n/fr.translations.mjs +2 -2
  3. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  4. package/esm2022/lib/core/model/search-mono-class.model.mjs +1 -1
  5. package/esm2022/lib/core/model/search-multi-class.model.mjs +1 -1
  6. package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +2 -2
  7. package/esm2022/lib/core/store/config/config.actions.mjs +4 -2
  8. package/esm2022/lib/core/store/config/config.reducer.mjs +6 -2
  9. package/esm2022/lib/core/store/config/config.selectors.mjs +5 -2
  10. package/esm2022/lib/core/store/image/image.service.mjs +3 -3
  11. package/esm2022/lib/core/store/search/search.service.mjs +14 -4
  12. package/esm2022/lib/core/symbol/symbol.service.mjs +7 -10
  13. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
  14. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +2 -3
  15. package/esm2022/lib/dashboard/store/manifest.service.mjs +3 -4
  16. package/esm2022/presentation/components/presentation.component.mjs +8 -12
  17. package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +3 -4
  18. package/esm2022/toolbox/components/save-view/save-view.component.mjs +6 -10
  19. package/esm2022/toolbox/components/share/share.component.mjs +5 -8
  20. package/fesm2022/provoly-dashboard-presentation.mjs +7 -11
  21. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  22. package/fesm2022/provoly-dashboard-restitution.mjs +2 -3
  23. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  24. package/fesm2022/provoly-dashboard-toolbox.mjs +8 -15
  25. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  26. package/fesm2022/provoly-dashboard.mjs +39 -25
  27. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  28. package/lib/core/i18n/en.translations.d.ts +1 -1
  29. package/lib/core/i18n/fr.translations.d.ts +1 -1
  30. package/lib/core/model/manifest.interface.d.ts +0 -2
  31. package/lib/core/model/search-mono-class.model.d.ts +1 -0
  32. package/lib/core/model/search-multi-class.model.d.ts +2 -0
  33. package/lib/core/store/config/config.actions.d.ts +10 -0
  34. package/lib/core/store/config/config.reducer.d.ts +3 -0
  35. package/lib/core/store/config/config.selectors.d.ts +5 -0
  36. package/lib/core/store/image/image.service.d.ts +1 -1
  37. package/lib/core/store/search/search.service.d.ts +4 -1
  38. package/lib/dashboard/store/dashboard.actions.d.ts +0 -3
  39. package/lib/dashboard/store/manifest.service.d.ts +1 -2
  40. package/package.json +7 -7
  41. package/presentation/components/presentation.component.d.ts +1 -3
  42. package/toolbox/components/save-view/save-view.component.d.ts +2 -3
  43. package/toolbox/components/share/share.component.d.ts +1 -2
@@ -502,7 +502,7 @@ const enTranslations$1 = {
502
502
  noItemSelected: 'No user group selected',
503
503
  groups: {
504
504
  ALL: 'Public',
505
- CONNECTED: 'Connected users'
505
+ AUTHENTICATED: 'Connected users'
506
506
  }
507
507
  }
508
508
  },
@@ -889,7 +889,7 @@ const frTranslations$1 = {
889
889
  noItemSelected: "Aucun groupe d'utilisateurs sélectionné",
890
890
  groups: {
891
891
  ALL: 'Publique',
892
- CONNECTED: 'Les utilisateurs connectés'
892
+ AUTHENTICATED: 'Les utilisateurs connectés'
893
893
  }
894
894
  }
895
895
  }
@@ -1356,6 +1356,7 @@ const ClassSelectors = {
1356
1356
  getAttributeById
1357
1357
  };
1358
1358
 
1359
+ const DEFAULT_SEARCH_LIMIT_NUMBER = 200;
1359
1360
  const ConfigActions = {
1360
1361
  defineUrls: createAction('[Config] (bus) defining urls', props()),
1361
1362
  updateIcons: createAction('[Config] (bus) updating icons', props()),
@@ -1388,7 +1389,8 @@ const ConfigActions = {
1388
1389
  loadVersionsSuccess: createAction('[about] (bus) Load Versions Success', props()),
1389
1390
  loadVersionsFailure: createAction('[about] Load Versions Failure', props()),
1390
1391
  loadAccessGroups: createAction('[Users] load access groups'),
1391
- loadAccessGroupsSuccess: createAction('[Config] load access groups Success', props())
1392
+ loadAccessGroupsSuccess: createAction('[Config] load access groups Success', props()),
1393
+ defineLimits: createAction('[Config] defining limits', props())
1392
1394
  };
1393
1395
 
1394
1396
  var VegaType;
@@ -1529,7 +1531,8 @@ const initialConfigState = {
1529
1531
  chartOption: ChartOptionDefault,
1530
1532
  maxAttributesInTiles: 5,
1531
1533
  versions: null,
1532
- accessGroups: []
1534
+ accessGroups: [],
1535
+ limits: {}
1533
1536
  };
1534
1537
  const configReducer = createReducer(initialConfigState, on(ConfigActions.defineUrls, (state, action) => ({
1535
1538
  ...state,
@@ -1633,6 +1636,9 @@ const configReducer = createReducer(initialConfigState, on(ConfigActions.defineU
1633
1636
  })), on(ConfigActions.loadAccessGroupsSuccess, (state, action) => ({
1634
1637
  ...state,
1635
1638
  accessGroups: action.groups
1639
+ })), on(ConfigActions.defineLimits, (state, action) => ({
1640
+ ...state,
1641
+ limits: { ...state.limits, ...action.limits }
1636
1642
  })));
1637
1643
 
1638
1644
  const feature$7 = createFeatureSelector(configFeatureKey);
@@ -1685,6 +1691,7 @@ const chartOption = createSelector(feature$7, (config) => config.chartOption);
1685
1691
  const maxAttributesInTiles = createSelector(feature$7, (config) => config.maxAttributesInTiles);
1686
1692
  const selectVersions = createSelector(feature$7, (state) => state.versions);
1687
1693
  const accessGroups = createSelector(feature$7, (state) => state.accessGroups);
1694
+ const limits = createSelector(feature$7, (state) => ({ default: DEFAULT_SEARCH_LIMIT_NUMBER, ...(state.limits ?? {}) }));
1688
1695
  const ConfigSelectors = {
1689
1696
  feature: feature$7,
1690
1697
  pryUrl,
@@ -1711,7 +1718,8 @@ const ConfigSelectors = {
1711
1718
  maxAttributesInTiles,
1712
1719
  execUrl,
1713
1720
  selectVersions,
1714
- accessGroups
1721
+ accessGroups,
1722
+ limits
1715
1723
  };
1716
1724
 
1717
1725
  const showAnimation = animation([style({ transform: '{{transform}}', opacity: 0 }), animate('{{transition}}')]);
@@ -1855,10 +1863,10 @@ class ImageService {
1855
1863
  type: image.type
1856
1864
  }))));
1857
1865
  }
1858
- getImage(path) {
1866
+ getImage(path, externalUrl = false) {
1859
1867
  return this.store.select(ConfigSelectors.dataUrl).pipe(mergeMap((url) => {
1860
1868
  return this.httpClient
1861
- .get(encodeURI(`${url}/file/icons/${path}`), {
1869
+ .get(encodeURI(externalUrl ? path : `${url}/file/icons/${path}`), {
1862
1870
  observe: 'response',
1863
1871
  responseType: 'blob'
1864
1872
  })
@@ -2069,15 +2077,12 @@ class SymbolService {
2069
2077
  image.onload = () => {
2070
2078
  resolve(image);
2071
2079
  };
2072
- if (url.startsWith(INTERNALLY_STORED_IMAGE_PREFIX)) {
2073
- const regexp = new RegExp('^' + INTERNALLY_STORED_IMAGE_PREFIX);
2074
- this.imageService.getImage(url.replace(regexp, '')).subscribe((res) => {
2075
- image.src = this.sanitizer.sanitize(SecurityContext.URL, res.url) ?? DEFAULT_ICON_URL;
2076
- });
2077
- }
2078
- else {
2079
- image.src = this.sanitizer.sanitize(SecurityContext.URL, url) ?? DEFAULT_ICON_URL;
2080
- }
2080
+ const regexp = new RegExp('^' + INTERNALLY_STORED_IMAGE_PREFIX);
2081
+ this.imageService
2082
+ .getImage(url.replace(regexp, ''), !url.startsWith(INTERNALLY_STORED_IMAGE_PREFIX))
2083
+ .subscribe((res) => {
2084
+ image.src = this.sanitizer.sanitize(SecurityContext.URL, res.url) ?? DEFAULT_ICON_URL;
2085
+ });
2081
2086
  });
2082
2087
  return this.cache[url];
2083
2088
  }
@@ -4180,9 +4185,13 @@ class SearchService {
4180
4185
  this.store = store;
4181
4186
  this.transformations = [];
4182
4187
  this.filters = {};
4188
+ this.limits = {};
4183
4189
  store.select(DashboardSelectors.datasourceFilters).subscribe((filters) => {
4184
4190
  this.filters = filters;
4185
4191
  });
4192
+ store.select(ConfigSelectors.limits).subscribe((limits) => {
4193
+ this.limits = limits;
4194
+ });
4186
4195
  }
4187
4196
  getItems(id, quickOrder, excludeGeo) {
4188
4197
  const params = this.getItemsFilter(id, this.getOrder(quickOrder)).append('excludeGeo', excludeGeo ?? false);
@@ -4195,7 +4204,7 @@ class SearchService {
4195
4204
  getItemsSerializedParams(id, quickOrder = {}) {
4196
4205
  return '|' + this.getItemsFilter(id, this.getOrder(quickOrder[id])).toString() + '|';
4197
4206
  }
4198
- getItemsFilter(id, cumulative) {
4207
+ getItemsFilter(id, cumulative, includeLimit = true) {
4199
4208
  let params = cumulative ?? new HttpParams();
4200
4209
  if (this.filters[id]) {
4201
4210
  this.filters[id]
@@ -4204,6 +4213,10 @@ class SearchService {
4204
4213
  params = params.append('filter', `${filter.attribute},${filter.operator},${filter.value}`);
4205
4214
  });
4206
4215
  }
4216
+ if (includeLimit) {
4217
+ const limit = this.limits[id] ?? this.limits['default'];
4218
+ params = params.append('limit', limit);
4219
+ }
4207
4220
  return params;
4208
4221
  }
4209
4222
  getOrder(quickOrder, cumulative) {
@@ -4220,12 +4233,14 @@ class SearchService {
4220
4233
  search(condition) {
4221
4234
  return combineLatest([
4222
4235
  this.store.select(ConfigSelectors.dataUrl),
4223
- this.store.select(DashboardSelectors.quickOrder)
4224
- ]).pipe(mergeMap(([url, quickOrder]) => {
4236
+ this.store.select(DashboardSelectors.quickOrder),
4237
+ this.store.select(ConfigSelectors.limits)
4238
+ ]).pipe(mergeMap(([url, quickOrder, limits]) => {
4225
4239
  const params = {};
4226
4240
  if (quickOrder[DEFAULT_NAMED_QUERY_ID]) {
4227
4241
  params['order'] = `${quickOrder[DEFAULT_NAMED_QUERY_ID]?.attribute},${quickOrder[DEFAULT_NAMED_QUERY_ID]?.asc ?? ''}`;
4228
4242
  }
4243
+ condition.limit = limits[DEFAULT_NAMED_QUERY_ID] ?? limits['default'];
4229
4244
  return this.httpClient.post(encodeURI(`${url}/items/search`), condition, { params });
4230
4245
  }), map((rs) => this.applyTransformations(DEFAULT_NAMED_QUERY_ID, rs)));
4231
4246
  }
@@ -5553,7 +5568,7 @@ class PryBackendAggregationService extends PryAggregationService {
5553
5568
  if (options.graph && options.graph.sort) {
5554
5569
  params = params.set('sort', `${options.graph.sort.direction},${(options.graph.sort.value ?? '').toUpperCase()}`);
5555
5570
  }
5556
- params = this.searchService.getItemsFilter(targetDatasource, params);
5571
+ params = this.searchService.getItemsFilter(targetDatasource, params, false);
5557
5572
  const key = `${this.dataUrl}_${params.toString()}`;
5558
5573
  if (!this.cache[key] || this.cache[key].time + 1000 < new Date().getTime()) {
5559
5574
  this.cache[key] = {
@@ -10460,7 +10475,7 @@ class ManifestService {
10460
10475
  .select(ConfigSelectors.refUrl)
10461
10476
  .pipe(mergeMap((url) => this.httpClient.get(encodeURI(`${url}/users/me/dashboards/id/${id}/manifest`))));
10462
10477
  }
10463
- save(name, manifest, id, description, image, cover, metadata, groups, visibility) {
10478
+ save(name, manifest, id, description, image, cover, metadata, groups) {
10464
10479
  return this.store.select(ConfigSelectors.refUrl).pipe(mergeMap((url) => this.httpClient.post(encodeURI(`${url}/users/me/dashboards`), {
10465
10480
  id,
10466
10481
  name,
@@ -10470,8 +10485,7 @@ class ManifestService {
10470
10485
  cover,
10471
10486
  metadata,
10472
10487
  datasource: ManifestUtils.getDatasourcesUsedByManifest(manifest).map((ds) => ds.datasetId),
10473
- groups,
10474
- visibility
10488
+ groups
10475
10489
  })));
10476
10490
  }
10477
10491
  delete(id) {
@@ -10773,7 +10787,7 @@ class DashboardEffects {
10773
10787
  });
10774
10788
  })), { dispatch: false });
10775
10789
  this.saveManifest$ = createEffect(() => this.actions$.pipe(ofType(DashboardActions.saveManifest), withLatestFrom(this.store.select(DashboardSelectors.globalManifest)), mergeMap$1(([action, currentManifest]) => this.manifestService
10776
- .save(action.name, action.manifest ?? currentManifest, action.id, action.description, action.image, action.cover, action.metadata, action.groups, action.visibility ?? { type: PryVisibilityType.PRIVATE })
10790
+ .save(action.name, action.manifest ?? currentManifest, action.id, action.description, action.image, action.cover, action.metadata, action.groups)
10777
10791
  .pipe(tap(() => this.snackBar.open({
10778
10792
  message: this.translateService.instant('@pry.toolbox.manifest.saved', { viewId: action.name }),
10779
10793
  type: 'success'
@@ -12298,5 +12312,5 @@ function filterLoader(module, prop) {
12298
12312
  * Generated bundle index. Do not edit.
12299
12313
  */
12300
12314
 
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 };
12315
+ 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, DEFAULT_SEARCH_LIMIT_NUMBER, 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 };
12302
12316
  //# sourceMappingURL=provoly-dashboard.mjs.map