@provoly/dashboard 1.1.9 → 1.1.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 (64) hide show
  1. package/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.d.ts +5 -3
  2. package/dataset/components/dataset-detail/dataset-detail.component.d.ts +5 -3
  3. package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +24 -12
  4. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +18 -9
  5. package/esm2022/dataset/components/dataset.component.mjs +3 -2
  6. package/esm2022/import/components/import.component.mjs +6 -4
  7. package/esm2022/lib/core/access/access.service.mjs +4 -1
  8. package/esm2022/lib/core/components/modal-status/modal-status.component.mjs +3 -3
  9. package/esm2022/lib/core/components/share/access-rights-share/access-rights-share.component.mjs +3 -3
  10. package/esm2022/lib/core/components/share/access-rights-share-modal/access-rights-share-modal.component.mjs +3 -1
  11. package/esm2022/lib/core/components/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +8 -12
  12. package/esm2022/lib/core/i18n/en.translations.mjs +4 -1
  13. package/esm2022/lib/core/i18n/fr.translations.mjs +4 -1
  14. package/esm2022/lib/core/store/config/config.selectors.mjs +2 -2
  15. package/esm2022/lib/core/store/relation-types/relation-types.selectors.mjs +2 -2
  16. package/esm2022/lib/core/symbol/symbol.service.mjs +4 -4
  17. package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +2 -2
  18. package/esm2022/restitution/components/restitution-list/restitution-list.component.mjs +2 -2
  19. package/esm2022/toolbox/components/delete/delete.component.mjs +3 -3
  20. package/esm2022/toolbox/components/edit-mode-action/edit-mode-action.component.mjs +3 -3
  21. package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +3 -4
  22. package/esm2022/toolbox/components/save-view/save-view.component.mjs +3 -3
  23. package/esm2022/toolbox/components/share/share.component.mjs +3 -3
  24. package/esm2022/toolbox/components/switch-to-edit-content/switch-to-edit-content.component.mjs +3 -3
  25. package/esm2022/toolbox/components/toolbox-action/toolbox-action.component.mjs +5 -5
  26. package/esm2022/toolbox/components/toolbox.component.mjs +15 -12
  27. package/esm2022/toolbox/toolbox.model.mjs +4 -4
  28. package/esm2022/widgets/widget-aggregated-chart/style/css.component.mjs +2 -2
  29. package/esm2022/widgets/widget-iframe/component/widget-iframe.component.mjs +3 -3
  30. package/esm2022/widgets/widget-map/component/widget-map-layer.service.mjs +1 -1
  31. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +11 -7
  32. package/esm2022/widgets/widget-map/style/css.component.mjs +2 -2
  33. package/esm2022/widgets/widget-vega/style/css.component.mjs +2 -2
  34. package/fesm2022/provoly-dashboard-admin.mjs +22 -10
  35. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  36. package/fesm2022/provoly-dashboard-dataset.mjs +19 -9
  37. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  38. package/fesm2022/provoly-dashboard-import.mjs +5 -3
  39. package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
  40. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  41. package/fesm2022/provoly-dashboard-toolbox.mjs +33 -31
  42. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  43. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +2 -2
  44. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  45. package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs +2 -2
  46. package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs.map +1 -1
  47. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +12 -8
  48. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  49. package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs +2 -2
  50. package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs.map +1 -1
  51. package/fesm2022/provoly-dashboard.mjs +26 -17
  52. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  53. package/lib/core/access/access.service.d.ts +3 -0
  54. package/lib/core/components/translate-item-to-symbol/translate-item-to-symbol.pipe.d.ts +1 -7
  55. package/lib/core/i18n/en.translations.d.ts +3 -0
  56. package/lib/core/i18n/fr.translations.d.ts +3 -0
  57. package/package.json +25 -25
  58. package/styles/abstracts/_mixins.scss +1 -1
  59. package/styles-theme/abstracts-theme/variables/_variables-typo.scss +5 -5
  60. package/toolbox/components/toolbox-action/toolbox-action.component.d.ts +1 -1
  61. package/toolbox/components/toolbox.component.d.ts +3 -2
  62. package/widgets/widget-aggregated-chart/style/_o-widget-chart.scss +1 -1
  63. package/widgets/widget-map/style/_m-layer-legend.scss +7 -0
  64. package/widgets/widget-vega/style/_o-widget-vega.scss +9 -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.