@provoly/dashboard 0.12.0 → 0.12.2

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