@provoly/dashboard 0.14.9 → 0.14.11

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 (100) hide show
  1. package/admin/components/admin-layout/admin-layout.component.d.ts +5 -3
  2. package/assets/svgs/map.svg +1 -1
  3. package/components/metadata-editor/metadata-editor.component.d.ts +1 -3
  4. package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +1 -1
  5. package/esm2022/admin/components/admin-layout/admin-layout.component.mjs +10 -7
  6. package/esm2022/admin/components/admin-user/admin-user-select/admin-user-select.component.mjs +1 -1
  7. package/esm2022/admin/i18n/en.translations.mjs +2 -2
  8. package/esm2022/admin/i18n/fr.translations.mjs +5 -5
  9. package/esm2022/components/metadata-editor/metadata-editor.component.mjs +8 -29
  10. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +2 -2
  11. package/esm2022/lib/core/components/about/about.component.mjs +29 -0
  12. package/esm2022/lib/core/components/about/pry-about.module.mjs +21 -0
  13. package/esm2022/lib/core/components/icon/icon.component.mjs +5 -1
  14. package/esm2022/lib/core/i18n/en.translations.mjs +13 -2
  15. package/esm2022/lib/core/i18n/fr.translations.mjs +13 -2
  16. package/esm2022/lib/core/i18n/i18n.pipe.mjs +4 -3
  17. package/esm2022/lib/core/i18n/i18n.service.mjs +5 -5
  18. package/esm2022/lib/core/model/widget-map-manifest.interface.mjs +1 -1
  19. package/esm2022/lib/core/public-api.mjs +3 -1
  20. package/esm2022/lib/core/store/class/class.effects.mjs +1 -1
  21. package/esm2022/lib/core/store/config/config.actions.mjs +5 -2
  22. package/esm2022/lib/core/store/config/config.effects.mjs +4 -1
  23. package/esm2022/lib/core/store/config/config.reducer.mjs +10 -3
  24. package/esm2022/lib/core/store/config/config.selectors.mjs +6 -4
  25. package/esm2022/lib/core/store/config/config.service.mjs +36 -2
  26. package/esm2022/lib/core/store/config/versions.interface.mjs +2 -0
  27. package/esm2022/lib/core/toolbox/toolbox-manifest.service.mjs +15 -1
  28. package/esm2022/lib/core/toolbox/toolbox-menu.service.mjs +3 -17
  29. package/esm2022/lib/dashboard/components/manifests/manifests.component.mjs +3 -1
  30. package/esm2022/lib/dashboard/components/widgets/base-widget.component.mjs +3 -2
  31. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +2 -2
  32. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +12 -4
  33. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +7 -1
  34. package/esm2022/lib/dashboard/store/manifest.service.mjs +2 -3
  35. package/esm2022/notification/store/notification.effects.mjs +3 -3
  36. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +23 -18
  37. package/esm2022/presentation/components/presentation.component.mjs +18 -18
  38. package/esm2022/presentation/style/css.component.mjs +2 -2
  39. package/esm2022/restitution/components/restitution-list/restitution-list.component.mjs +3 -3
  40. package/esm2022/restitution/components/restitution-list-item/restitution-list-item.component.mjs +6 -3
  41. package/esm2022/supervision/components/supervision-integration-errors/supervision-integration-errors-select/supervision-integration-errors-select.component.mjs +6 -3
  42. package/esm2022/supervision/components/supervision-integration-errors/supervision-integration-errors.component.mjs +2 -2
  43. package/esm2022/supervision/components/supervision-layout/supervision-layout.component.mjs +2 -2
  44. package/esm2022/supervision/components/supervision.component.mjs +2 -2
  45. package/esm2022/supervision/store/supervision.actions.mjs +1 -1
  46. package/esm2022/supervision/store/supervision.reducer.mjs +3 -2
  47. package/esm2022/supervision/store/supervision.selectors.mjs +2 -2
  48. package/esm2022/tooltips/attribute/attribute-tooltip.component.mjs +18 -11
  49. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +20 -6
  50. package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +1 -2
  51. package/esm2022/widgets/widget-map/component/widget-map-layer.service.mjs +2 -2
  52. package/fesm2022/provoly-dashboard-admin.mjs +15 -12
  53. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  54. package/fesm2022/provoly-dashboard-components-metadata-editor.mjs +7 -28
  55. package/fesm2022/provoly-dashboard-components-metadata-editor.mjs.map +1 -1
  56. package/fesm2022/provoly-dashboard-dataset.mjs +1 -1
  57. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  58. package/fesm2022/provoly-dashboard-notification.mjs +2 -2
  59. package/fesm2022/provoly-dashboard-notification.mjs.map +1 -1
  60. package/fesm2022/provoly-dashboard-presentation.mjs +41 -37
  61. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  62. package/fesm2022/provoly-dashboard-restitution.mjs +7 -4
  63. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  64. package/fesm2022/provoly-dashboard-supervision.mjs +11 -8
  65. package/fesm2022/provoly-dashboard-supervision.mjs.map +1 -1
  66. package/fesm2022/provoly-dashboard-tooltips-attribute.mjs +17 -10
  67. package/fesm2022/provoly-dashboard-tooltips-attribute.mjs.map +1 -1
  68. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +19 -6
  69. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  70. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -1
  71. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  72. package/fesm2022/provoly-dashboard.mjs +184 -56
  73. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  74. package/lib/core/components/about/about.component.d.ts +12 -0
  75. package/lib/core/components/about/pry-about.module.d.ts +10 -0
  76. package/lib/core/i18n/en.translations.d.ts +11 -0
  77. package/lib/core/i18n/fr.translations.d.ts +11 -0
  78. package/lib/core/i18n/i18n.service.d.ts +2 -2
  79. package/lib/core/model/widget-map-manifest.interface.d.ts +2 -0
  80. package/lib/core/public-api.d.ts +2 -0
  81. package/lib/core/store/config/config.actions.d.ts +12 -0
  82. package/lib/core/store/config/config.effects.d.ts +6 -0
  83. package/lib/core/store/config/config.reducer.d.ts +2 -0
  84. package/lib/core/store/config/config.selectors.d.ts +1 -0
  85. package/lib/core/store/config/config.service.d.ts +2 -0
  86. package/lib/core/store/config/versions.interface.d.ts +10 -0
  87. package/lib/dashboard/store/dashboard.actions.d.ts +4 -4
  88. package/lib/dashboard/store/manifest.service.d.ts +1 -1
  89. package/package.json +25 -25
  90. package/presentation/components/add-edit-presentation/add-edit-presentation.component.d.ts +4 -3
  91. package/presentation/components/presentation.component.d.ts +2 -2
  92. package/presentation/style/_o-pry-new-presentation.scss +7 -0
  93. package/restitution/components/restitution-list-item/restitution-list-item.component.d.ts +3 -2
  94. package/styles/layout/_o-base-layout.scss +8 -1
  95. package/supervision/components/supervision-integration-errors/supervision-integration-errors-select/supervision-integration-errors-select.component.d.ts +1 -1
  96. package/supervision/store/supervision.actions.d.ts +2 -2
  97. package/supervision/store/supervision.reducer.d.ts +1 -1
  98. package/supervision/store/supervision.selectors.d.ts +1 -1
  99. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +7 -0
  100. package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +0 -1
@@ -506,7 +506,7 @@ class WidgetMapLayerService {
506
506
  attributions: [layer.attribution ?? ''],
507
507
  crossOrigin: 'anonymous',
508
508
  url: layer.url,
509
- params: { LAYERS: layer.paramLayer, TILED: layer.paramTiled }
509
+ params: { LAYERS: layer.paramLayer, TILED: layer.paramTiled, ...(layer.additionalParameters ?? {}) }
510
510
  })
511
511
  });
512
512
  impl.set('url', layer.url);