@provoly/dashboard 0.13.7 → 0.13.8

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