@provoly/dashboard 0.11.9 → 0.12.1

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 (127) hide show
  1. package/dataset/i18n/en.translations.d.ts +3 -1
  2. package/dataset/i18n/fr.translations.d.ts +1 -0
  3. package/dataset/style/_o-pry-dataset.scss +2 -7
  4. package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +3 -3
  5. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -3
  6. package/esm2022/dataset/components/dataset.component.mjs +3 -2
  7. package/esm2022/dataset/i18n/en.translations.mjs +4 -2
  8. package/esm2022/dataset/i18n/fr.translations.mjs +3 -2
  9. package/esm2022/dataset/style/css.component.mjs +2 -2
  10. package/esm2022/filters/date/date-filter.component.mjs +24 -8
  11. package/esm2022/filters/date/date-filter.module.mjs +7 -8
  12. package/esm2022/filters/date/public-api.mjs +1 -2
  13. package/esm2022/filters/number/number-filter.component.mjs +5 -4
  14. package/esm2022/filters/number/number-filter.module.mjs +5 -5
  15. package/esm2022/filters/text/text-filter.component.mjs +5 -4
  16. package/esm2022/filters/text/text-filter.module.mjs +5 -5
  17. package/esm2022/lib/core/components/modal-status/modal-status.component.mjs +40 -0
  18. package/esm2022/lib/core/components/modal-status/modal-status.module.mjs +28 -0
  19. package/esm2022/lib/core/core.module.mjs +6 -11
  20. package/esm2022/lib/core/i18n/en.translations.mjs +4 -1
  21. package/esm2022/lib/core/i18n/fr.translations.mjs +4 -1
  22. package/esm2022/lib/core/model/dataset.interface.mjs +1 -1
  23. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  24. package/esm2022/lib/core/public-api.mjs +3 -4
  25. package/esm2022/lib/core/store/data-source/data-source.actions.mjs +5 -5
  26. package/esm2022/lib/core/store/data-source/data-source.effects.mjs +2 -2
  27. package/esm2022/lib/core/store/data-source/data-source.reducer.mjs +7 -7
  28. package/esm2022/lib/core/store/data-source/data-source.selectors.mjs +3 -3
  29. package/esm2022/lib/core/store/data-source/data-source.service.mjs +3 -3
  30. package/esm2022/lib/dashboard/store/manifest.service.mjs +10 -7
  31. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +8 -8
  32. package/esm2022/presentation/components/presentation.component.mjs +4 -4
  33. package/esm2022/presentation/components/title-presentation/title-presentation.component.mjs +33 -0
  34. package/esm2022/presentation/presentation.module.mjs +28 -11
  35. package/esm2022/presentation/public-api.mjs +2 -1
  36. package/esm2022/presentation/style/css.component.mjs +2 -2
  37. package/esm2022/restitution/components/restitution-list/restitution-list.component.mjs +15 -9
  38. package/esm2022/restitution/i18n/fr.translations.mjs +2 -2
  39. package/esm2022/restitution/style/css.component.mjs +2 -2
  40. package/esm2022/search/search-home/search-home.component.mjs +3 -3
  41. package/esm2022/toolbox/components/automate-refresh/automate-refresh.component.mjs +104 -0
  42. package/esm2022/toolbox/components/clear-view/clear-view.component.mjs +8 -10
  43. package/esm2022/toolbox/components/drag-widgets/drag-widgets.component.mjs +8 -10
  44. package/esm2022/toolbox/components/edit-mode-toggle/edit-mode-toggle.component.mjs +7 -9
  45. package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +7 -7
  46. package/esm2022/toolbox/components/launch-tab/launch-tab.component.mjs +8 -10
  47. package/esm2022/toolbox/components/refresh-datasets/refresh-datasets.component.mjs +38 -0
  48. package/esm2022/toolbox/components/save-view/save-view.component.mjs +9 -12
  49. package/esm2022/toolbox/components/select-grid-layout/select-grid-layout.component.mjs +9 -12
  50. package/esm2022/toolbox/components/toolbox-action/toolbox-action.component.mjs +26 -0
  51. package/esm2022/toolbox/components/toolbox-action-instanciator/toolbox-action-instanciator.component.mjs +44 -0
  52. package/esm2022/toolbox/components/toolbox.component.mjs +40 -12
  53. package/esm2022/toolbox/public-api.mjs +6 -1
  54. package/esm2022/toolbox/style/css.component.mjs +3 -3
  55. package/esm2022/toolbox/toolbox.model.mjs +59 -0
  56. package/esm2022/toolbox/toolbox.module.mjs +22 -6
  57. package/fesm2022/provoly-dashboard-dataset.mjs +12 -8
  58. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  59. package/fesm2022/provoly-dashboard-filters-date.mjs +31 -23
  60. package/fesm2022/provoly-dashboard-filters-date.mjs.map +1 -1
  61. package/fesm2022/provoly-dashboard-filters-number.mjs +8 -7
  62. package/fesm2022/provoly-dashboard-filters-number.mjs.map +1 -1
  63. package/fesm2022/provoly-dashboard-filters-text.mjs +8 -7
  64. package/fesm2022/provoly-dashboard-filters-text.mjs.map +1 -1
  65. package/fesm2022/provoly-dashboard-presentation.mjs +66 -25
  66. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  67. package/fesm2022/provoly-dashboard-restitution.mjs +17 -11
  68. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  69. package/fesm2022/provoly-dashboard-search.mjs +2 -2
  70. package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
  71. package/fesm2022/provoly-dashboard-toolbox.mjs +328 -69
  72. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  73. package/fesm2022/provoly-dashboard.mjs +177 -184
  74. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  75. package/filters/date/date-filter.component.d.ts +1 -0
  76. package/filters/date/date-filter.module.d.ts +5 -6
  77. package/filters/date/public-api.d.ts +0 -1
  78. package/filters/number/number-filter.module.d.ts +1 -1
  79. package/filters/text/text-filter.module.d.ts +1 -1
  80. package/lib/core/components/{modalStatus/modalStatus.component.d.ts → modal-status/modal-status.component.d.ts} +10 -3
  81. package/lib/core/components/{modalStatus/modalStatus.module.d.ts → modal-status/modal-status.module.d.ts} +1 -1
  82. package/lib/core/core.module.d.ts +11 -12
  83. package/lib/core/i18n/en.translations.d.ts +3 -0
  84. package/lib/core/i18n/fr.translations.d.ts +3 -0
  85. package/lib/core/model/dataset.interface.d.ts +11 -4
  86. package/lib/core/model/manifest.interface.d.ts +1 -0
  87. package/lib/core/public-api.d.ts +2 -3
  88. package/lib/core/store/data-source/data-source.actions.d.ts +10 -10
  89. package/lib/core/store/data-source/data-source.effects.d.ts +4 -4
  90. package/lib/core/store/data-source/data-source.reducer.d.ts +2 -2
  91. package/lib/core/store/data-source/data-source.selectors.d.ts +1 -1
  92. package/lib/core/store/data-source/data-source.service.d.ts +2 -2
  93. package/lib/dashboard/store/manifest.service.d.ts +1 -0
  94. package/package.json +1 -1
  95. package/{lib/core → presentation}/components/title-presentation/title-presentation.component.d.ts +3 -2
  96. package/presentation/presentation.module.d.ts +4 -3
  97. package/presentation/public-api.d.ts +1 -0
  98. package/presentation/style/_o-pry-presentation.scss +42 -1
  99. package/restitution/components/restitution-list/restitution-list.component.d.ts +5 -5
  100. package/styles/components/_m-actions-list.scss +1 -0
  101. package/styles/components/_m-filter.scss +43 -0
  102. package/styles-theme/components-theme/_m-filter.theme.scss +12 -0
  103. package/styles-theme/main-theme.scss +2 -0
  104. package/toolbox/components/automate-refresh/automate-refresh.component.d.ts +29 -0
  105. package/toolbox/components/clear-view/clear-view.component.d.ts +3 -4
  106. package/toolbox/components/drag-widgets/drag-widgets.component.d.ts +3 -4
  107. package/toolbox/components/edit-mode-toggle/edit-mode-toggle.component.d.ts +3 -4
  108. package/toolbox/components/filter-settings/filter-settings.component.d.ts +3 -3
  109. package/toolbox/components/launch-tab/launch-tab.component.d.ts +3 -4
  110. package/toolbox/components/refresh-datasets/refresh-datasets.component.d.ts +14 -0
  111. package/toolbox/components/save-view/save-view.component.d.ts +4 -5
  112. package/toolbox/components/select-grid-layout/select-grid-layout.component.d.ts +4 -5
  113. package/toolbox/components/toolbox-action/toolbox-action.component.d.ts +12 -0
  114. package/toolbox/components/toolbox-action-instanciator/toolbox-action-instanciator.component.d.ts +17 -0
  115. package/toolbox/components/toolbox.component.d.ts +18 -3
  116. package/toolbox/public-api.d.ts +5 -0
  117. package/toolbox/style/_o-automate-refresh.scss +24 -0
  118. package/toolbox/style/_o-toolbox.scss +30 -0
  119. package/toolbox/style/css.component.d.ts +1 -1
  120. package/toolbox/toolbox.model.d.ts +10 -0
  121. package/toolbox/toolbox.module.d.ts +22 -18
  122. package/esm2022/filters/date/style/css.component.mjs +0 -11
  123. package/esm2022/lib/core/components/modalStatus/modalStatus.component.mjs +0 -35
  124. package/esm2022/lib/core/components/modalStatus/modalStatus.module.mjs +0 -28
  125. package/esm2022/lib/core/components/title-presentation/title-presentation.component.mjs +0 -26
  126. package/filters/date/style/_m-date.scss +0 -6
  127. package/filters/date/style/css.component.d.ts +0 -5

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.