@provoly/dashboard 0.14.9 → 0.14.10

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