@provoly/dashboard 0.18.10 → 0.19.1

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/README.md +1 -1
  2. package/assets/svgs/code-box.svg +1 -0
  3. package/dataset/components/dataset-card/dataset-card.component.d.ts +3 -3
  4. package/dataset/style/_o-pry-dataset.scss +1 -1
  5. package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +2 -2
  6. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +2 -1
  7. package/esm2022/dataset/style/css.component.mjs +2 -2
  8. package/esm2022/filters/autocomplete/autocomplete.component.mjs +41 -0
  9. package/esm2022/filters/autocomplete/autocomplete.module.mjs +24 -0
  10. package/esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs +5 -0
  11. package/esm2022/filters/autocomplete/public-api.mjs +4 -0
  12. package/esm2022/filters/autocomplete/style/css.component.mjs +11 -0
  13. package/esm2022/lib/core/components/about/about.component.mjs +3 -3
  14. package/esm2022/lib/core/components/select/select.component.mjs +4 -8
  15. package/esm2022/lib/core/components/snackbar/snackbar.service.mjs +4 -1
  16. package/esm2022/lib/core/errors/http-error-interceptor.service.mjs +4 -5
  17. package/esm2022/lib/core/i18n/en.translations.mjs +3 -2
  18. package/esm2022/lib/core/i18n/fr.translations.mjs +3 -2
  19. package/esm2022/lib/core/model/widget-aggregated-chart-manifest.interface.mjs +1 -1
  20. package/esm2022/lib/core/model/widget-map-manifest.interface.mjs +1 -1
  21. package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +2 -2
  22. package/esm2022/lib/core/store/search/search.service.mjs +8 -2
  23. package/esm2022/lib/dashboard/dashboard.module.mjs +8 -3
  24. package/esm2022/lib/dashboard/filter/components/filter-group/filter-group.component.mjs +44 -0
  25. package/esm2022/lib/dashboard/filter/public-api.mjs +3 -1
  26. package/esm2022/lib/dashboard/filter/style/css.component.mjs +11 -0
  27. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +3 -2
  28. package/esm2022/lib/dashboard/store/wms.service.mjs +1 -1
  29. package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +3 -1
  30. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +41 -41
  31. package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +10 -1
  32. package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +10 -1
  33. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +95 -115
  34. package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +35 -2
  35. package/esm2022/widgets/widget-map/utils/xml-utils.class.mjs +15 -13
  36. package/fesm2022/provoly-dashboard-dataset.mjs +4 -3
  37. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  38. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +75 -0
  39. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -0
  40. package/fesm2022/provoly-dashboard-toolbox.mjs +2 -0
  41. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  42. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +58 -40
  43. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  44. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +138 -125
  45. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  46. package/fesm2022/provoly-dashboard.mjs +72 -21
  47. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  48. package/filters/autocomplete/autocomplete.component.d.ts +16 -0
  49. package/filters/autocomplete/autocomplete.module.d.ts +14 -0
  50. package/filters/autocomplete/index.d.ts +5 -0
  51. package/filters/autocomplete/public-api.d.ts +3 -0
  52. package/filters/autocomplete/style/_m-autocomplete.scss +7 -0
  53. package/filters/autocomplete/style/css.component.d.ts +5 -0
  54. package/lib/core/components/select/select.component.d.ts +0 -1
  55. package/lib/core/components/snackbar/snackbar.service.d.ts +1 -0
  56. package/lib/core/i18n/en.translations.d.ts +1 -0
  57. package/lib/core/i18n/fr.translations.d.ts +1 -0
  58. package/lib/core/model/widget-aggregated-chart-manifest.interface.d.ts +1 -1
  59. package/lib/core/model/widget-map-manifest.interface.d.ts +1 -1
  60. package/lib/core/store/search/search.service.d.ts +6 -0
  61. package/lib/dashboard/dashboard.module.d.ts +17 -15
  62. package/lib/dashboard/filter/components/filter-group/filter-group.component.d.ts +17 -0
  63. package/lib/dashboard/filter/public-api.d.ts +2 -0
  64. package/lib/dashboard/filter/style/_o-pry-filter-group.scss +41 -0
  65. package/lib/dashboard/filter/style/css.component.d.ts +5 -0
  66. package/lib/dashboard/store/wms.service.d.ts +1 -1
  67. package/package.json +20 -14
  68. package/styles/layout/_o-workspace.scss +0 -29
  69. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +13 -6
  70. package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +9 -0
  71. package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +9 -0
  72. package/widgets/widget-map/component/widget-map.component.d.ts +5 -7
  73. package/widgets/widget-map/utils/widget-map.utils.d.ts +7 -1
  74. package/widgets/widget-map/utils/xml-utils.class.d.ts +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.