@provoly/dashboard 0.21.3 → 0.21.5

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 (112) hide show
  1. package/assets/svgs/layers.svg +3 -2
  2. package/assets/svgs/legend.svg +14 -3
  3. package/dataset/style/_o-pry-dataset.scss +6 -9
  4. package/esm2022/dataset/components/dataset.component.mjs +3 -3
  5. package/esm2022/dataset/style/css.component.mjs +2 -2
  6. package/esm2022/lib/core/auth/geoAuth.service.mjs +29 -5
  7. package/esm2022/lib/core/components/select/select.component.mjs +13 -3
  8. package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +14 -6
  9. package/esm2022/lib/core/components/snackbar/snackbar.service.mjs +8 -3
  10. package/esm2022/lib/core/i18n/en.translations.mjs +9 -2
  11. package/esm2022/lib/core/i18n/fr.translations.mjs +9 -3
  12. package/esm2022/lib/core/model/display-options.interface.mjs +24 -7
  13. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  14. package/esm2022/lib/core/store/field/field.interface.mjs +2 -1
  15. package/esm2022/lib/core/store/item/item.effects.mjs +2 -2
  16. package/esm2022/lib/core/store/search/search.reducer.mjs +2 -2
  17. package/esm2022/lib/dashboard/components/dashboard.component.mjs +3 -3
  18. package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-instanciator.component.mjs +12 -3
  19. package/esm2022/lib/dashboard/dashboard.module.mjs +5 -4
  20. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
  21. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +14 -6
  22. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +8 -2
  23. package/esm2022/lib/dashboard/store/manifest.service.mjs +4 -3
  24. package/esm2022/notification/components/notification/content/notification-content.component.mjs +12 -8
  25. package/esm2022/notification/components/notification/notification.component.mjs +2 -1
  26. package/esm2022/notification/style/css.component.mjs +2 -2
  27. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
  28. package/esm2022/presentation/components/presentation.component.mjs +17 -9
  29. package/esm2022/presentation/i18n/en.translations.mjs +2 -1
  30. package/esm2022/presentation/i18n/fr.translations.mjs +3 -2
  31. package/esm2022/presentation/style/css.component.mjs +2 -2
  32. package/esm2022/restitution/components/restitution/restitution.component.mjs +5 -5
  33. package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +3 -3
  34. package/esm2022/restitution/style/css.component.mjs +2 -2
  35. package/esm2022/toolbox/components/delete/delete.component.mjs +29 -0
  36. package/esm2022/toolbox/components/save-view/save-view.component.mjs +12 -6
  37. package/esm2022/toolbox/components/share/share.component.mjs +72 -0
  38. package/esm2022/toolbox/components/switch-to-edit-content/switch-to-edit-content.component.mjs +26 -0
  39. package/esm2022/toolbox/components/toolbox.component.mjs +3 -3
  40. package/esm2022/toolbox/public-api.mjs +4 -1
  41. package/esm2022/toolbox/toolbox.model.mjs +22 -2
  42. package/esm2022/toolbox/toolbox.module.mjs +16 -4
  43. package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +2 -2
  44. package/esm2022/widgets/widget-map/component/widget-map-layer.service.mjs +27 -13
  45. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +61 -22
  46. package/esm2022/widgets/widget-map/i18n/en.translations.mjs +5 -2
  47. package/esm2022/widgets/widget-map/i18n/fr.translations.mjs +5 -2
  48. package/esm2022/widgets/widget-map/interaction/interaction-manager.class.mjs +3 -2
  49. package/esm2022/widgets/widget-map/style/css.component.mjs +2 -2
  50. package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +16 -7
  51. package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +3 -2
  52. package/esm2022/widgets/widget-vega/component/widget-vega.component.mjs +2 -2
  53. package/fesm2022/provoly-dashboard-dataset.mjs +4 -4
  54. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  55. package/fesm2022/provoly-dashboard-notification.mjs +14 -9
  56. package/fesm2022/provoly-dashboard-notification.mjs.map +1 -1
  57. package/fesm2022/provoly-dashboard-presentation.mjs +23 -13
  58. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  59. package/fesm2022/provoly-dashboard-restitution.mjs +8 -8
  60. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  61. package/fesm2022/provoly-dashboard-toolbox.mjs +145 -12
  62. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  63. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +1 -1
  64. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
  65. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +114 -47
  66. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  67. package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs +1 -1
  68. package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs.map +1 -1
  69. package/fesm2022/provoly-dashboard.mjs +138 -39
  70. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  71. package/lib/core/auth/geoAuth.service.d.ts +5 -1
  72. package/lib/core/components/select/select.component.d.ts +2 -0
  73. package/lib/core/components/share/group-share/group-share.component.d.ts +2 -2
  74. package/lib/core/components/snackbar/snackbar.service.d.ts +2 -1
  75. package/lib/core/i18n/en.translations.d.ts +7 -0
  76. package/lib/core/i18n/fr.translations.d.ts +7 -1
  77. package/lib/core/model/display-options.interface.d.ts +3 -0
  78. package/lib/core/model/manifest.interface.d.ts +3 -1
  79. package/lib/core/store/field/field.interface.d.ts +1 -0
  80. package/lib/dashboard/components/widgets/widget-instanciator/widget-instanciator.component.d.ts +1 -0
  81. package/lib/dashboard/store/dashboard.actions.d.ts +3 -0
  82. package/lib/dashboard/store/dashboard.effects.d.ts +1 -1
  83. package/lib/dashboard/store/manifest.service.d.ts +2 -1
  84. package/notification/components/notification/content/notification-content.component.d.ts +4 -2
  85. package/notification/style/_m-notifications.scss +6 -7
  86. package/package.json +7 -7
  87. package/presentation/components/presentation.component.d.ts +4 -1
  88. package/presentation/i18n/en.translations.d.ts +1 -0
  89. package/presentation/i18n/fr.translations.d.ts +1 -0
  90. package/presentation/style/_o-pry-presentation.scss +0 -16
  91. package/restitution/components/restitution/restitution.component.d.ts +1 -1
  92. package/restitution/style/_o-restitution.scss +12 -42
  93. package/styles/components/_a-page-loader.scss +1 -1
  94. package/styles/components/_o-draggable-menu.scss +8 -0
  95. package/styles/components/_o-pry-stepper.scss +9 -10
  96. package/styles/components/_o-widget.scss +7 -3
  97. package/styles/layout/_o-manifest-layout.scss +20 -0
  98. package/styles-theme/components-theme/_o-widget.theme.scss +1 -1
  99. package/toolbox/components/delete/delete.component.d.ts +19 -0
  100. package/toolbox/components/save-view/save-view.component.d.ts +3 -2
  101. package/toolbox/components/share/share.component.d.ts +26 -0
  102. package/toolbox/components/switch-to-edit-content/switch-to-edit-content.component.d.ts +15 -0
  103. package/toolbox/public-api.d.ts +3 -0
  104. package/toolbox/toolbox.module.d.ts +12 -9
  105. package/widgets/widget-chart/component/widget-chart.component.d.ts +1 -1
  106. package/widgets/widget-map/component/widget-map-layer.service.d.ts +4 -3
  107. package/widgets/widget-map/component/widget-map.component.d.ts +8 -6
  108. package/widgets/widget-map/i18n/en.translations.d.ts +3 -0
  109. package/widgets/widget-map/i18n/fr.translations.d.ts +3 -0
  110. package/widgets/widget-map/style/_o-layer-legend.scss +43 -54
  111. package/widgets/widget-map/utils/cql-utils.class.d.ts +2 -2
  112. package/widgets/widget-map/utils/widget-map.utils.d.ts +2 -0

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.