@provoly/dashboard 0.18.2 → 0.18.4

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 (96) hide show
  1. package/assets/svgs/clear_filter.svg +12 -0
  2. package/assets/svgs/refresh_data.svg +15 -0
  3. package/assets/svgs/refresh_filter.svg +13 -0
  4. package/assets/svgs/trash.svg +1 -0
  5. package/components/color-picker/color-picker.component.d.ts +58 -0
  6. package/components/color-picker/color-picker.module.d.ts +9 -0
  7. package/components/color-picker/index.d.ts +5 -0
  8. package/components/color-picker/public-api.d.ts +2 -0
  9. package/components/scheme-picker/index.d.ts +5 -0
  10. package/components/scheme-picker/public-api.d.ts +3 -0
  11. package/components/scheme-picker/scheme-picker.component.d.ts +34 -0
  12. package/components/scheme-picker/scheme-picker.module.d.ts +11 -0
  13. package/components/scheme-picker/scheme.service.d.ts +12 -0
  14. package/dataset/components/dataset-card/dataset-card.component.d.ts +11 -3
  15. package/dataset/i18n/en.translations.d.ts +1 -0
  16. package/dataset/i18n/fr.translations.d.ts +1 -0
  17. package/dataset/style/_o-pry-dataset-card.scss +16 -1
  18. package/dataset/style/_o-pry-dataset.scss +18 -3
  19. package/esm2022/admin/components/admin-dataset/shared/admin-form-dataset/admin-form-dataset.component.mjs +7 -5
  20. package/esm2022/components/color-picker/color-picker.component.mjs +314 -0
  21. package/esm2022/components/color-picker/color-picker.module.mjs +20 -0
  22. package/esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs +5 -0
  23. package/esm2022/components/color-picker/public-api.mjs +3 -0
  24. package/esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs +5 -0
  25. package/esm2022/components/scheme-picker/public-api.mjs +4 -0
  26. package/esm2022/components/scheme-picker/scheme-picker.component.mjs +104 -0
  27. package/esm2022/components/scheme-picker/scheme-picker.module.mjs +22 -0
  28. package/esm2022/components/scheme-picker/scheme.service.mjs +47 -0
  29. package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +26 -9
  30. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -3
  31. package/esm2022/dataset/components/dataset.component.mjs +3 -3
  32. package/esm2022/dataset/i18n/en.translations.mjs +2 -1
  33. package/esm2022/dataset/i18n/fr.translations.mjs +2 -1
  34. package/esm2022/dataset/style/css.component.mjs +2 -2
  35. package/esm2022/lib/core/i18n/en.translations.mjs +6 -2
  36. package/esm2022/lib/core/i18n/fr.translations.mjs +6 -2
  37. package/esm2022/lib/core/model/widget-aggregated-chart-manifest.interface.mjs +1 -1
  38. package/esm2022/lib/core/model/widget-chart-manifest.interface.mjs +2 -1
  39. package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +4 -1
  40. package/esm2022/lib/core/store/data-source/data-source.model.mjs +1 -1
  41. package/esm2022/lib/core/store/search/search.actions.mjs +3 -2
  42. package/esm2022/lib/core/store/search/search.reducer.mjs +6 -1
  43. package/esm2022/lib/dashboard/components/dashboard.component.mjs +16 -11
  44. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
  45. package/esm2022/presentation/style/css.component.mjs +2 -2
  46. package/esm2022/restitution/components/restitution/restitution.component.mjs +11 -20
  47. package/esm2022/restitution/model/restitution.model.mjs +1 -1
  48. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +134 -26
  49. package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +19 -2
  50. package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +19 -2
  51. package/esm2022/widgets/widget-aggregated-chart/widget-aggregated-chart.module.mjs +16 -5
  52. package/esm2022/widgets/widget-chart/i18n/en.translations.mjs +3 -2
  53. package/esm2022/widgets/widget-chart/i18n/fr.translations.mjs +3 -2
  54. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +2 -2
  55. package/fesm2022/provoly-dashboard-admin.mjs +6 -4
  56. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  57. package/fesm2022/provoly-dashboard-components-color-picker.mjs +337 -0
  58. package/fesm2022/provoly-dashboard-components-color-picker.mjs.map +1 -0
  59. package/fesm2022/provoly-dashboard-components-scheme-picker.mjs +171 -0
  60. package/fesm2022/provoly-dashboard-components-scheme-picker.mjs.map +1 -0
  61. package/fesm2022/provoly-dashboard-dataset.mjs +29 -14
  62. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  63. package/fesm2022/provoly-dashboard-presentation.mjs +4 -4
  64. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  65. package/fesm2022/provoly-dashboard-restitution.mjs +10 -19
  66. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  67. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +183 -30
  68. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  69. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +4 -2
  70. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
  71. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -1
  72. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  73. package/fesm2022/provoly-dashboard.mjs +37 -13
  74. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  75. package/lib/core/i18n/en.translations.d.ts +4 -0
  76. package/lib/core/i18n/fr.translations.d.ts +4 -0
  77. package/lib/core/model/widget-aggregated-chart-manifest.interface.d.ts +7 -0
  78. package/lib/core/model/widget-chart-manifest.interface.d.ts +1 -0
  79. package/lib/core/store/data-source/data-source.model.d.ts +0 -2
  80. package/lib/core/store/search/search.actions.d.ts +7 -0
  81. package/lib/dashboard/components/dashboard.component.d.ts +2 -0
  82. package/package.json +19 -7
  83. package/presentation/style/_o-pry-new-presentation.scss +2 -1
  84. package/restitution/components/restitution/restitution.component.d.ts +0 -2
  85. package/restitution/model/restitution.model.d.ts +1 -1
  86. package/styles/components/_a-color-picker.scss +62 -0
  87. package/styles/components/_a-page-loader.scss +14 -0
  88. package/styles/components/_m-color-scheme.scss +20 -0
  89. package/styles/main.scss +3 -0
  90. package/styles-theme/components-theme/_o-pry-admin-classes-customize.theme.scss +4 -0
  91. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +17 -5
  92. package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +17 -0
  93. package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +17 -0
  94. package/widgets/widget-aggregated-chart/widget-aggregated-chart.module.d.ts +3 -1
  95. package/widgets/widget-chart/i18n/en.translations.d.ts +1 -0
  96. package/widgets/widget-chart/i18n/fr.translations.d.ts +1 -0

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.