@provoly/dashboard 1.4.8 → 1.4.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 (74) hide show
  1. package/components/paginator/paginator.component.d.ts +3 -1
  2. package/dataset/components/dataset-detail/dataset-detail.component.d.ts +4 -3
  3. package/esm2022/components/paginator/paginator.component.mjs +8 -4
  4. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +9 -11
  5. package/esm2022/filters/autocomplete/autocomplete.component.mjs +2 -1
  6. package/esm2022/filters/date/date-filter.component.mjs +2 -1
  7. package/esm2022/filters/list/list-filter.component.mjs +7 -3
  8. package/esm2022/filters/number/number-filter.component.mjs +7 -3
  9. package/esm2022/filters/text/text-filter.component.mjs +7 -3
  10. package/esm2022/import/components/list/import-list.component.mjs +1 -1
  11. package/esm2022/lib/core/components/select/select.component.mjs +3 -3
  12. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  13. package/esm2022/lib/core/model/result-set.interface.mjs +1 -1
  14. package/esm2022/lib/core/model/widget-map-manifest.interface.mjs +1 -1
  15. package/esm2022/lib/core/store/search/search.actions.mjs +1 -1
  16. package/esm2022/lib/core/store/search/search.effects.mjs +33 -8
  17. package/esm2022/lib/core/store/search/search.service.mjs +24 -6
  18. package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.mjs +20 -2
  19. package/esm2022/lib/dashboard/filter/base-filter.component.mjs +5 -2
  20. package/esm2022/lib/dashboard/filter/components/filter-group/filter-group.component.mjs +16 -3
  21. package/esm2022/lib/dashboard/filter/components/filter-instanciator/filter-instanciator.component.mjs +6 -2
  22. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +3 -5
  23. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +16 -49
  24. package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +2 -4
  25. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +34 -15
  26. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +60 -55
  27. package/esm2022/widgets/widget-map/interaction/tooltip-manager.class.mjs +41 -48
  28. package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +2 -2
  29. package/esm2022/widgets/widget-table/component/widget-table.component.mjs +32 -17
  30. package/fesm2022/provoly-dashboard-components-paginator.mjs +7 -3
  31. package/fesm2022/provoly-dashboard-components-paginator.mjs.map +1 -1
  32. package/fesm2022/provoly-dashboard-dataset.mjs +9 -11
  33. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  34. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +1 -0
  35. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
  36. package/fesm2022/provoly-dashboard-filters-date.mjs +1 -0
  37. package/fesm2022/provoly-dashboard-filters-date.mjs.map +1 -1
  38. package/fesm2022/provoly-dashboard-filters-list.mjs +6 -2
  39. package/fesm2022/provoly-dashboard-filters-list.mjs.map +1 -1
  40. package/fesm2022/provoly-dashboard-filters-number.mjs +6 -2
  41. package/fesm2022/provoly-dashboard-filters-number.mjs.map +1 -1
  42. package/fesm2022/provoly-dashboard-filters-text.mjs +6 -2
  43. package/fesm2022/provoly-dashboard-filters-text.mjs.map +1 -1
  44. package/fesm2022/provoly-dashboard-import.mjs +1 -1
  45. package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
  46. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +32 -13
  47. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  48. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +100 -102
  49. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  50. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +32 -17
  51. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
  52. package/fesm2022/provoly-dashboard.mjs +323 -284
  53. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  54. package/filters/list/list-filter.component.d.ts +1 -0
  55. package/filters/number/number-filter.component.d.ts +1 -0
  56. package/filters/text/text-filter.component.d.ts +1 -0
  57. package/lib/core/model/manifest.interface.d.ts +2 -10
  58. package/lib/core/model/result-set.interface.d.ts +1 -0
  59. package/lib/core/model/widget-map-manifest.interface.d.ts +1 -0
  60. package/lib/core/store/search/search.actions.d.ts +4 -0
  61. package/lib/core/store/search/search.effects.d.ts +12 -1
  62. package/lib/core/store/search/search.service.d.ts +3 -1
  63. package/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.d.ts +1 -0
  64. package/lib/dashboard/components/widgets/widget-placement/widget-placement.utils.d.ts +1 -0
  65. package/lib/dashboard/filter/base-filter.component.d.ts +2 -1
  66. package/lib/dashboard/filter/components/filter-group/filter-group.component.d.ts +4 -1
  67. package/lib/dashboard/filter/components/filter-instanciator/filter-instanciator.component.d.ts +2 -1
  68. package/lib/dashboard/store/dashboard.actions.d.ts +9 -18
  69. package/lib/dashboard/store/dashboard.effects.d.ts +3 -1
  70. package/lib/dashboard/store/dashboard.selectors.d.ts +0 -9
  71. package/package.json +37 -37
  72. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +2 -1
  73. package/widgets/widget-map/component/widget-map.component.d.ts +1 -2
  74. package/widgets/widget-map/interaction/tooltip-manager.class.d.ts +0 -2

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.