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