@provoly/dashboard 0.18.3 → 0.18.5

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 (91) hide show
  1. package/assets/svgs/clear_filter.svg +7 -6
  2. package/assets/svgs/refresh_filter.svg +6 -7
  3. package/assets/svgs/trash.svg +1 -0
  4. package/dataset/style/_o-pry-dataset.scss +1 -1
  5. package/esm2022/components/color-picker/color-picker.component.mjs +2 -2
  6. package/esm2022/dataset/style/css.component.mjs +2 -2
  7. package/esm2022/filters/date/date-filter.component.mjs +3 -3
  8. package/esm2022/filters/list/list-filter.component.mjs +3 -3
  9. package/esm2022/filters/number/number-filter.component.mjs +3 -3
  10. package/esm2022/filters/text/text-filter.component.mjs +3 -3
  11. package/esm2022/lib/core/i18n/en.translations.mjs +3 -2
  12. package/esm2022/lib/core/i18n/fr.translations.mjs +3 -2
  13. package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +5 -2
  14. package/esm2022/lib/core/store/data-source/datasource-utils.mjs +4 -2
  15. package/esm2022/lib/core/store/search/search.actions.mjs +3 -2
  16. package/esm2022/lib/core/store/search/search.reducer.mjs +6 -1
  17. package/esm2022/lib/dashboard/components/dashboard.component.mjs +16 -11
  18. package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +10 -11
  19. package/esm2022/lib/dashboard/filter/base-filter.component.mjs +5 -2
  20. package/esm2022/lib/dashboard/filter/components/filter-instanciator/filter-instanciator.component.mjs +11 -2
  21. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +3 -1
  22. package/esm2022/lib/dashboard/store/dashboard.contants.mjs +2 -2
  23. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +15 -2
  24. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +12 -1
  25. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
  26. package/esm2022/presentation/components/presentation.component.mjs +5 -3
  27. package/esm2022/presentation/components/title-presentation/title-presentation.component.mjs +3 -4
  28. package/esm2022/presentation/i18n/en.translations.mjs +2 -2
  29. package/esm2022/presentation/i18n/fr.translations.mjs +2 -2
  30. package/esm2022/presentation/style/css.component.mjs +2 -2
  31. package/esm2022/restitution/style/css.component.mjs +2 -2
  32. package/esm2022/toolbox/components/refresh-datasets/refresh-datasets.component.mjs +3 -3
  33. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +50 -11
  34. package/esm2022/widgets/widget-aggregated-chart/style/css.component.mjs +2 -2
  35. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +2 -2
  36. package/esm2022/widgets/widget-table/component/widget-table.component.mjs +3 -3
  37. package/esm2022/widgets/widget-table/style/css.component.mjs +2 -2
  38. package/fesm2022/provoly-dashboard-components-color-picker.mjs +1 -1
  39. package/fesm2022/provoly-dashboard-components-color-picker.mjs.map +1 -1
  40. package/fesm2022/provoly-dashboard-dataset.mjs +2 -2
  41. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  42. package/fesm2022/provoly-dashboard-filters-date.mjs +2 -2
  43. package/fesm2022/provoly-dashboard-filters-date.mjs.map +1 -1
  44. package/fesm2022/provoly-dashboard-filters-list.mjs +2 -2
  45. package/fesm2022/provoly-dashboard-filters-list.mjs.map +1 -1
  46. package/fesm2022/provoly-dashboard-filters-number.mjs +2 -2
  47. package/fesm2022/provoly-dashboard-filters-number.mjs.map +1 -1
  48. package/fesm2022/provoly-dashboard-filters-text.mjs +2 -2
  49. package/fesm2022/provoly-dashboard-filters-text.mjs.map +1 -1
  50. package/fesm2022/provoly-dashboard-presentation.mjs +13 -11
  51. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  52. package/fesm2022/provoly-dashboard-restitution.mjs +2 -2
  53. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  54. package/fesm2022/provoly-dashboard-toolbox.mjs +2 -2
  55. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  56. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +51 -12
  57. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  58. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -1
  59. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  60. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +4 -4
  61. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
  62. package/fesm2022/provoly-dashboard.mjs +76 -21
  63. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  64. package/lib/core/i18n/en.translations.d.ts +1 -0
  65. package/lib/core/i18n/fr.translations.d.ts +1 -0
  66. package/lib/core/store/search/search.actions.d.ts +7 -0
  67. package/lib/dashboard/components/dashboard.component.d.ts +2 -0
  68. package/lib/dashboard/components/widgets/header/widget-header.component.d.ts +1 -1
  69. package/lib/dashboard/filter/base-filter.component.d.ts +2 -0
  70. package/lib/dashboard/filter/components/filter-instanciator/filter-instanciator.component.d.ts +5 -2
  71. package/lib/dashboard/store/dashboard.actions.d.ts +2 -0
  72. package/lib/dashboard/store/dashboard.contants.d.ts +1 -1
  73. package/lib/dashboard/store/dashboard.effects.d.ts +3 -0
  74. package/package.json +31 -31
  75. package/presentation/style/_o-pry-new-presentation.scss +3 -2
  76. package/presentation/style/_o-pry-presentation.scss +7 -1
  77. package/styles/components/_a-btn.scss +14 -13
  78. package/styles/components/_a-color-picker.scss +1 -0
  79. package/styles/components/_a-page-loader.scss +14 -0
  80. package/styles/components/_m-filter.scss +57 -2
  81. package/styles/components/_o-about.scss +1 -1
  82. package/styles/components/_o-widget.scss +4 -2
  83. package/styles/layout/_o-workspace.scss +23 -1
  84. package/styles/main.scss +1 -0
  85. package/styles-theme/abstracts-theme/variables/_variables-typo.scss +10 -1
  86. package/styles-theme/components-theme/_m-filter.theme.scss +25 -1
  87. package/styles-theme/components-theme/_m-tooltip.theme.scss +2 -2
  88. package/styles-theme/components-theme/_o-pry-dataset.theme.scss +1 -1
  89. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +1 -0
  90. package/widgets/widget-aggregated-chart/style/_o-widget-chart.scss +5 -0
  91. package/widgets/widget-table/style/_o-widget-table.scss +15 -0
@@ -2,10 +2,10 @@ import { Component, ViewEncapsulation } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export class PryWidgetAggregatedChartCssComponent {
4
4
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryWidgetAggregatedChartCssComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
5
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: PryWidgetAggregatedChartCssComponent, selector: "pry-widget-aggregated-chart-css", ngImport: i0, template: '', isInline: true, styles: [".o-widget--chart-color-thumb{display:flex;flex-direction:row;margin-bottom:20px}.o-widget--chart-color-thumb-item{flex:1 1 20px;height:20px;border-radius:4px}.o-widget--chart div.vega-embed{display:block}.o-widget--chart div.vega-embed.has-actions{display:block;height:100%;padding-right:0}.o-widget--chart div.vega-embed.has-actions>div.chart-wrapper.fit-y.fit-x{height:100%;overflow:hidden}.o-widget--chart div.vega-embed.has-actions>details>summary{right:25px}.o-widget--chart div.vega-embed.has-actions>details .vega-actions{right:16px}\n"], encapsulation: i0.ViewEncapsulation.None }); }
5
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.6", type: PryWidgetAggregatedChartCssComponent, selector: "pry-widget-aggregated-chart-css", ngImport: i0, template: '', isInline: true, styles: [".o-widget--chart-color-thumb{display:flex;flex-direction:row;margin-bottom:20px}.o-widget--chart-color-thumb-item{flex:1 1 20px;height:20px;border-radius:4px}.o-widget--chart div.vega-embed{display:block}.o-widget--chart div.vega-embed.has-actions{display:block;height:100%;padding-right:0}.o-widget--chart div.vega-embed.has-actions>div.chart-wrapper.fit-y.fit-x{height:100%;overflow:hidden}.o-widget--chart div.vega-embed.has-actions>details>summary{right:25px}.o-widget--chart div.vega-embed.has-actions>details .vega-actions{right:16px}#vg-tooltip-element.vg-tooltip.custom-theme{font-size:12px;font-family:Ubuntu,\"sans-serif\"}\n"], encapsulation: i0.ViewEncapsulation.None }); }
6
6
  }
7
7
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.6", ngImport: i0, type: PryWidgetAggregatedChartCssComponent, decorators: [{
8
8
  type: Component,
9
- args: [{ selector: 'pry-widget-aggregated-chart-css', template: '', encapsulation: ViewEncapsulation.None, styles: [".o-widget--chart-color-thumb{display:flex;flex-direction:row;margin-bottom:20px}.o-widget--chart-color-thumb-item{flex:1 1 20px;height:20px;border-radius:4px}.o-widget--chart div.vega-embed{display:block}.o-widget--chart div.vega-embed.has-actions{display:block;height:100%;padding-right:0}.o-widget--chart div.vega-embed.has-actions>div.chart-wrapper.fit-y.fit-x{height:100%;overflow:hidden}.o-widget--chart div.vega-embed.has-actions>details>summary{right:25px}.o-widget--chart div.vega-embed.has-actions>details .vega-actions{right:16px}\n"] }]
9
+ args: [{ selector: 'pry-widget-aggregated-chart-css', template: '', encapsulation: ViewEncapsulation.None, styles: [".o-widget--chart-color-thumb{display:flex;flex-direction:row;margin-bottom:20px}.o-widget--chart-color-thumb-item{flex:1 1 20px;height:20px;border-radius:4px}.o-widget--chart div.vega-embed{display:block}.o-widget--chart div.vega-embed.has-actions{display:block;height:100%;padding-right:0}.o-widget--chart div.vega-embed.has-actions>div.chart-wrapper.fit-y.fit-x{height:100%;overflow:hidden}.o-widget--chart div.vega-embed.has-actions>details>summary{right:25px}.o-widget--chart div.vega-embed.has-actions>details .vega-actions{right:16px}#vg-tooltip-element.vg-tooltip.custom-theme{font-size:12px;font-family:Ubuntu,\"sans-serif\"}\n"] }]
10
10
  }] });
11
11
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3NzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Byb3ZvbHkvZGFzaGJvYXJkL3dpZGdldHMvd2lkZ2V0LWFnZ3JlZ2F0ZWQtY2hhcnQvc3R5bGUvY3NzLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sZUFBZSxDQUFDOztBQVE3RCxNQUFNLE9BQU8sb0NBQW9DOzhHQUFwQyxvQ0FBb0M7a0dBQXBDLG9DQUFvQyx1RUFKckMsRUFBRTs7MkZBSUQsb0NBQW9DO2tCQU5oRCxTQUFTOytCQUNFLGlDQUFpQyxZQUNqQyxFQUFFLGlCQUVHLGlCQUFpQixDQUFDLElBQUkiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIFZpZXdFbmNhcHN1bGF0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3ByeS13aWRnZXQtYWdncmVnYXRlZC1jaGFydC1jc3MnLFxuICB0ZW1wbGF0ZTogJycsXG4gIHN0eWxlVXJsczogWycuL19vLXdpZGdldC1jaGFydC5zY3NzJ10sXG4gIGVuY2Fwc3VsYXRpb246IFZpZXdFbmNhcHN1bGF0aW9uLk5vbmVcbn0pXG5leHBvcnQgY2xhc3MgUHJ5V2lkZ2V0QWdncmVnYXRlZENoYXJ0Q3NzQ29tcG9uZW50IHt9XG4iXX0=