@provoly/dashboard 0.25.7 → 0.25.9

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 (78) hide show
  1. package/components/page-loader/index.d.ts +5 -0
  2. package/components/page-loader/page-loader.component.d.ts +7 -0
  3. package/components/page-loader/page-loader.module.d.ts +7 -0
  4. package/components/page-loader/public-api.d.ts +2 -0
  5. package/components/text-editor/text-editor.module.d.ts +1 -2
  6. package/dataset/components/dataset-detail/dataset-detail.component.d.ts +3 -2
  7. package/dataset/i18n/en.translations.d.ts +6 -0
  8. package/dataset/i18n/fr.translations.d.ts +6 -0
  9. package/dataset/style/_o-pry-dataset-detail.scss +5 -4
  10. package/dataset/style/_o-pry-dataset.scss +0 -1
  11. package/esm2022/components/page-loader/page-loader.component.mjs +15 -0
  12. package/esm2022/components/page-loader/page-loader.module.mjs +16 -0
  13. package/esm2022/components/page-loader/provoly-dashboard-components-page-loader.mjs +5 -0
  14. package/esm2022/components/page-loader/public-api.mjs +3 -0
  15. package/esm2022/components/text-editor/text-editor.module.mjs +25 -5
  16. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +14 -5
  17. package/esm2022/dataset/i18n/en.translations.mjs +9 -3
  18. package/esm2022/dataset/i18n/fr.translations.mjs +9 -3
  19. package/esm2022/dataset/style/css.component.mjs +2 -2
  20. package/esm2022/lib/core/components/edit-input/edit-input.component.mjs +12 -4
  21. package/esm2022/lib/core/i18n/en.translations.mjs +3 -3
  22. package/esm2022/lib/core/i18n/fr.translations.mjs +3 -3
  23. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  24. package/esm2022/lib/core/model/widget-aggregated-chart-manifest.interface.mjs +1 -1
  25. package/esm2022/lib/core/store/data-source/data-source.actions.mjs +4 -1
  26. package/esm2022/lib/core/store/data-source/data-source.effects.mjs +24 -2
  27. package/esm2022/lib/core/store/data-source/data-source.service.mjs +6 -1
  28. package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
  29. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +2 -2
  30. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +4 -4
  31. package/esm2022/lib/dashboard/store/manifest.service.mjs +4 -3
  32. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +8 -5
  33. package/esm2022/presentation/presentation.module.mjs +8 -4
  34. package/esm2022/presentation/style/css.component.mjs +2 -2
  35. package/esm2022/toolbox/components/dashboard-details/dashboard-details.component.mjs +6 -4
  36. package/esm2022/toolbox/toolbox.module.mjs +8 -4
  37. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +21 -5
  38. package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +2 -2
  39. package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +2 -2
  40. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +37 -10
  41. package/fesm2022/provoly-dashboard-components-page-loader.mjs +35 -0
  42. package/fesm2022/provoly-dashboard-components-page-loader.mjs.map +1 -0
  43. package/fesm2022/provoly-dashboard-components-text-editor.mjs +24 -4
  44. package/fesm2022/provoly-dashboard-components-text-editor.mjs.map +1 -1
  45. package/fesm2022/provoly-dashboard-dataset.mjs +31 -10
  46. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  47. package/fesm2022/provoly-dashboard-presentation.mjs +16 -9
  48. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  49. package/fesm2022/provoly-dashboard-toolbox.mjs +11 -6
  50. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  51. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +22 -6
  52. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  53. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +36 -9
  54. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  55. package/fesm2022/provoly-dashboard.mjs +68 -17
  56. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  57. package/lib/core/components/edit-input/edit-input.component.d.ts +2 -1
  58. package/lib/core/model/manifest.interface.d.ts +1 -1
  59. package/lib/core/model/widget-aggregated-chart-manifest.interface.d.ts +1 -1
  60. package/lib/core/store/data-source/data-source.actions.d.ts +15 -0
  61. package/lib/core/store/data-source/data-source.effects.d.ts +14 -6
  62. package/lib/core/store/data-source/data-source.service.d.ts +1 -0
  63. package/lib/dashboard/store/dashboard.actions.d.ts +4 -5
  64. package/lib/dashboard/store/dashboard.effects.d.ts +0 -1
  65. package/lib/dashboard/store/dashboard.selectors.d.ts +0 -8
  66. package/lib/dashboard/store/manifest.service.d.ts +1 -1
  67. package/package.json +25 -19
  68. package/presentation/presentation.module.d.ts +2 -1
  69. package/presentation/style/_o-pry-new-presentation.scss +9 -1
  70. package/styles/components/_m-form-label-field.scss +0 -11
  71. package/styles/components/_o-page-loader.scss +34 -0
  72. package/styles/components/_o-pry-edit.scss +17 -16
  73. package/styles/components/_o-text-panel.scss +0 -2
  74. package/styles/main.scss +1 -0
  75. package/styles-theme/abstracts-theme/variables/_variables-decoration.scss +13 -0
  76. package/toolbox/components/dashboard-details/dashboard-details.component.d.ts +2 -2
  77. package/toolbox/toolbox.module.d.ts +2 -1
  78. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +2 -1

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.