@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.
- package/components/paginator/paginator.component.d.ts +3 -1
- package/dataset/components/dataset-detail/dataset-detail.component.d.ts +4 -3
- package/esm2022/components/paginator/paginator.component.mjs +8 -4
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +9 -11
- package/esm2022/filters/autocomplete/autocomplete.component.mjs +2 -1
- package/esm2022/filters/date/date-filter.component.mjs +2 -1
- package/esm2022/filters/list/list-filter.component.mjs +7 -3
- package/esm2022/filters/number/number-filter.component.mjs +7 -3
- package/esm2022/filters/text/text-filter.component.mjs +7 -3
- package/esm2022/import/components/list/import-list.component.mjs +1 -1
- package/esm2022/lib/core/components/select/select.component.mjs +3 -3
- package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
- package/esm2022/lib/core/model/result-set.interface.mjs +1 -1
- package/esm2022/lib/core/model/widget-map-manifest.interface.mjs +1 -1
- package/esm2022/lib/core/store/search/search.actions.mjs +1 -1
- package/esm2022/lib/core/store/search/search.effects.mjs +33 -8
- package/esm2022/lib/core/store/search/search.service.mjs +24 -6
- package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.mjs +20 -2
- package/esm2022/lib/dashboard/filter/base-filter.component.mjs +5 -2
- package/esm2022/lib/dashboard/filter/components/filter-group/filter-group.component.mjs +16 -3
- package/esm2022/lib/dashboard/filter/components/filter-instanciator/filter-instanciator.component.mjs +6 -2
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +3 -5
- package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +16 -49
- package/esm2022/lib/dashboard/store/dashboard.selectors.mjs +2 -4
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +34 -15
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +60 -55
- package/esm2022/widgets/widget-map/interaction/tooltip-manager.class.mjs +41 -48
- package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +2 -2
- package/esm2022/widgets/widget-table/component/widget-table.component.mjs +32 -17
- package/fesm2022/provoly-dashboard-components-paginator.mjs +7 -3
- package/fesm2022/provoly-dashboard-components-paginator.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-dataset.mjs +9 -11
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +1 -0
- package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-filters-date.mjs +1 -0
- package/fesm2022/provoly-dashboard-filters-date.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-filters-list.mjs +6 -2
- package/fesm2022/provoly-dashboard-filters-list.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-filters-number.mjs +6 -2
- package/fesm2022/provoly-dashboard-filters-number.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-filters-text.mjs +6 -2
- package/fesm2022/provoly-dashboard-filters-text.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-import.mjs +1 -1
- package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +32 -13
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +100 -102
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +32 -17
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +323 -284
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/filters/list/list-filter.component.d.ts +1 -0
- package/filters/number/number-filter.component.d.ts +1 -0
- package/filters/text/text-filter.component.d.ts +1 -0
- package/lib/core/model/manifest.interface.d.ts +2 -10
- package/lib/core/model/result-set.interface.d.ts +1 -0
- package/lib/core/model/widget-map-manifest.interface.d.ts +1 -0
- package/lib/core/store/search/search.actions.d.ts +4 -0
- package/lib/core/store/search/search.effects.d.ts +12 -1
- package/lib/core/store/search/search.service.d.ts +3 -1
- package/lib/dashboard/components/widgets/widget-instanciator/widget-factory.service.d.ts +1 -0
- package/lib/dashboard/components/widgets/widget-placement/widget-placement.utils.d.ts +1 -0
- package/lib/dashboard/filter/base-filter.component.d.ts +2 -1
- package/lib/dashboard/filter/components/filter-group/filter-group.component.d.ts +4 -1
- package/lib/dashboard/filter/components/filter-instanciator/filter-instanciator.component.d.ts +2 -1
- package/lib/dashboard/store/dashboard.actions.d.ts +9 -18
- package/lib/dashboard/store/dashboard.effects.d.ts +3 -1
- package/lib/dashboard/store/dashboard.selectors.d.ts +0 -9
- package/package.json +37 -37
- package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +2 -1
- package/widgets/widget-map/component/widget-map.component.d.ts +1 -2
- 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.