@provoly/dashboard 0.13.7 → 0.13.9

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 (120) hide show
  1. package/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.d.ts +4 -4
  2. package/admin/components/admin-dataset/store/admin-dataset.actions.d.ts +3 -3
  3. package/assets/svgs/layers.svg +2 -0
  4. package/esm2022/admin/components/admin-classes/admin-classes-customize/tooltip/admin-classes-customize-tooltip.component.mjs +3 -3
  5. package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +2 -2
  6. package/esm2022/admin/components/admin-dataset/store/admin-dataset.actions.mjs +1 -1
  7. package/esm2022/lib/core/components/overlay/dialog-confirm.component.mjs +5 -12
  8. package/esm2022/lib/core/components/overlay/overlay.module.mjs +5 -4
  9. package/esm2022/lib/core/components/select/select.component.mjs +2 -2
  10. package/esm2022/lib/core/components/share/share.component.mjs +3 -3
  11. package/esm2022/lib/core/model/admin-api.model.mjs +1 -1
  12. package/esm2022/lib/core/model/dataset.interface.mjs +1 -1
  13. package/esm2022/lib/core/model/display-options.interface.mjs +4 -2
  14. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  15. package/esm2022/lib/core/model/widget-map-manifest.interface.mjs +1 -1
  16. package/esm2022/lib/core/store/config/config.actions.mjs +2 -1
  17. package/esm2022/lib/core/store/config/config.effects.mjs +25 -4
  18. package/esm2022/lib/core/store/data-source/data-source.actions.mjs +1 -1
  19. package/esm2022/lib/core/store/data-source/data-source.effects.mjs +1 -1
  20. package/esm2022/lib/core/store/data-source/data-source.model.mjs +1 -1
  21. package/esm2022/lib/core/store/data-source/data-source.reducer.mjs +1 -1
  22. package/esm2022/lib/core/store/data-source/data-source.service.mjs +1 -1
  23. package/esm2022/lib/dashboard/components/context-menu/context-menu.component.mjs +3 -7
  24. package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.mjs +1 -1
  25. package/esm2022/lib/dashboard/components/widgets/settings/settings.component.mjs +6 -3
  26. package/esm2022/lib/dashboard/public-api.mjs +2 -1
  27. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +2 -3
  28. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +25 -11
  29. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +2 -11
  30. package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +3 -5
  31. package/esm2022/lib/dashboard/store/manifest-utils.class.mjs +11 -0
  32. package/esm2022/lib/dashboard/store/manifest.service.mjs +3 -10
  33. package/esm2022/lib/dashboard/tooltip/components/default/default.tooltip.component.mjs +5 -4
  34. package/esm2022/pipeline/components/pipeline-list/pipeline-list.component.mjs +5 -8
  35. package/esm2022/presentation/components/presentation.component.mjs +5 -42
  36. package/esm2022/presentation/presentation.module.mjs +8 -4
  37. package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +9 -65
  38. package/esm2022/search/components/save-query/save-query.component.mjs +5 -8
  39. package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +3 -3
  40. package/esm2022/toolbox/components/refresh-datasets/refresh-datasets.component.mjs +3 -3
  41. package/esm2022/toolbox/components/select-grid-layout/select-grid-layout.component.mjs +5 -16
  42. package/esm2022/toolbox/toolbox.module.mjs +8 -4
  43. package/esm2022/tooltips/attribute/attribute-tooltip.component.mjs +3 -3
  44. package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +3 -3
  45. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +90 -26
  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 +2 -36
  49. package/esm2022/widgets/widget-map/style/css.component.mjs +2 -2
  50. package/esm2022/widgets/widget-tile/component/widget-tile.component.mjs +3 -3
  51. package/fesm2022/provoly-dashboard-admin.mjs +2 -2
  52. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  53. package/fesm2022/provoly-dashboard-pipeline.mjs +4 -7
  54. package/fesm2022/provoly-dashboard-pipeline.mjs.map +1 -1
  55. package/fesm2022/provoly-dashboard-presentation.mjs +11 -44
  56. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  57. package/fesm2022/provoly-dashboard-restitution.mjs +9 -65
  58. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  59. package/fesm2022/provoly-dashboard-search.mjs +4 -7
  60. package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
  61. package/fesm2022/provoly-dashboard-toolbox.mjs +14 -21
  62. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  63. package/fesm2022/provoly-dashboard-tooltips-attribute.mjs +2 -2
  64. package/fesm2022/provoly-dashboard-tooltips-attribute.mjs.map +1 -1
  65. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +2 -2
  66. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
  67. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +103 -129
  68. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  69. package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs +2 -2
  70. package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs.map +1 -1
  71. package/fesm2022/provoly-dashboard.mjs +153 -135
  72. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  73. package/lib/core/components/overlay/overlay.module.d.ts +2 -1
  74. package/lib/core/model/admin-api.model.d.ts +1 -1
  75. package/lib/core/model/dataset.interface.d.ts +0 -10
  76. package/lib/core/model/display-options.interface.d.ts +1 -0
  77. package/lib/core/model/manifest.interface.d.ts +2 -0
  78. package/lib/core/model/widget-map-manifest.interface.d.ts +1 -0
  79. package/lib/core/store/config/config.actions.d.ts +5 -0
  80. package/lib/core/store/config/config.effects.d.ts +6 -1
  81. package/lib/core/store/data-source/data-source.actions.d.ts +2 -2
  82. package/lib/core/store/data-source/data-source.effects.d.ts +2 -3
  83. package/lib/core/store/data-source/data-source.model.d.ts +11 -3
  84. package/lib/core/store/data-source/data-source.reducer.d.ts +2 -2
  85. package/lib/core/store/data-source/data-source.selectors.d.ts +5 -5
  86. package/lib/core/store/data-source/data-source.service.d.ts +4 -4
  87. package/lib/dashboard/components/context-menu/context-menu.component.d.ts +0 -1
  88. package/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.d.ts +1 -2
  89. package/lib/dashboard/components/widgets/settings/settings.component.d.ts +1 -0
  90. package/lib/dashboard/public-api.d.ts +1 -0
  91. package/lib/dashboard/store/dashboard.actions.d.ts +6 -17
  92. package/lib/dashboard/store/dashboard.effects.d.ts +6 -7
  93. package/lib/dashboard/store/dashboard.reducers.d.ts +1 -5
  94. package/lib/dashboard/store/dashboard.selectors.d.ts +0 -57
  95. package/lib/dashboard/store/manifest-utils.class.d.ts +4 -0
  96. package/lib/dashboard/store/manifest.service.d.ts +0 -1
  97. package/package.json +25 -25
  98. package/pipeline/components/pipeline-list/pipeline-list.component.d.ts +1 -2
  99. package/presentation/components/presentation.component.d.ts +0 -5
  100. package/presentation/presentation.module.d.ts +2 -1
  101. package/restitution/components/restitution-catalog/restitution-catalog.component.d.ts +4 -15
  102. package/schematics/ng-add/index.js +0 -2
  103. package/schematics/ng-add/index.js.map +1 -1
  104. package/schematics/ng-update/version-0-13/index.js +18 -1
  105. package/schematics/ng-update/version-0-13/index.js.map +1 -1
  106. package/schematics/ng-update/version-0-13/index.spec.js +8 -1
  107. package/schematics/ng-update/version-0-13/index.spec.js.map +1 -1
  108. package/search/components/save-query/save-query.component.d.ts +1 -2
  109. package/styles/components/_m-tooltip.scss +18 -2
  110. package/styles-theme/components-theme/_m-tooltip.theme.scss +0 -12
  111. package/toolbox/components/select-grid-layout/select-grid-layout.component.d.ts +0 -4
  112. package/toolbox/toolbox.module.d.ts +2 -1
  113. package/widgets/widget-map/component/widget-map.component.d.ts +16 -3
  114. package/widgets/widget-map/i18n/en.translations.d.ts +3 -0
  115. package/widgets/widget-map/i18n/fr.translations.d.ts +3 -0
  116. package/widgets/widget-map/interaction/interaction-manager.class.d.ts +3 -8
  117. package/widgets/widget-map/style/_o-layer-legend.scss +45 -0
  118. package/widgets/widget-map/style/_o-widget-map.scss +0 -1
  119. package/esm2022/widgets/widget-map/search-bar/search-bar.control.mjs +0 -66
  120. package/widgets/widget-map/search-bar/search-bar.control.d.ts +0 -27

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.