@provoly/dashboard 1.4.5 → 1.4.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 (26) hide show
  1. package/esm2022/filters/date/date-filter.component.mjs +3 -3
  2. package/esm2022/import/components/list/import-list.component.mjs +3 -3
  3. package/esm2022/lib/core/components/sort/sort-data.pipe.mjs +2 -2
  4. package/esm2022/lib/core/errors/http-error-interceptor.service.mjs +1 -2
  5. package/esm2022/lib/core/store/config/config.service.mjs +22 -18
  6. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +106 -92
  7. package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +11 -2
  8. package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +12 -3
  9. package/esm2022/widgets/widget-map/interaction/tooltip-manager.class.mjs +2 -1
  10. package/fesm2022/provoly-dashboard-filters-date.mjs +2 -2
  11. package/fesm2022/provoly-dashboard-filters-date.mjs.map +1 -1
  12. package/fesm2022/provoly-dashboard-import.mjs +2 -2
  13. package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
  14. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +126 -94
  15. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  16. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -0
  17. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  18. package/fesm2022/provoly-dashboard.mjs +22 -19
  19. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  20. package/lib/core/components/sort/sort-data.pipe.d.ts +1 -1
  21. package/lib/core/store/config/config.service.d.ts +2 -1
  22. package/package.json +31 -31
  23. package/styles/components/_m-filter.scss +17 -2
  24. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +13 -13
  25. package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +9 -0
  26. package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +9 -0
@@ -1257,6 +1257,7 @@ class TooltipManager {
1257
1257
  }
1258
1258
  this.tooltipEvent = event;
1259
1259
  this.calculatedTooltipPosition = undefined;
1260
+ this.tooltipDisplayedIndex$.next(0);
1260
1261
  };
1261
1262
  if (this.parent.optionsCopy.tooltipMode !== TooltipMode.NONE) {
1262
1263
  this.parent.map.un('singleclick', popupListener);