@provoly/dashboard 1.2.9 → 1.2.10

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 (102) hide show
  1. package/admin/admin.module.d.ts +2 -3
  2. package/dataset/components/dataset.component.d.ts +3 -11
  3. package/dataset/dataset.module.d.ts +7 -9
  4. package/dataset/public-api.d.ts +0 -1
  5. package/dataset/style/_o-pry-dataset.scss +3 -72
  6. package/esm2022/admin/admin.module.mjs +1 -5
  7. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -4
  8. package/esm2022/dataset/components/dataset.component.mjs +8 -33
  9. package/esm2022/dataset/dataset.module.mjs +9 -13
  10. package/esm2022/dataset/public-api.mjs +1 -2
  11. package/esm2022/dataset/style/css.component.mjs +3 -3
  12. package/esm2022/lib/core/components/chips-selector/chips-selector.component.mjs +7 -27
  13. package/esm2022/lib/core/components/chips-selector/chips-selector.module.mjs +21 -0
  14. package/esm2022/lib/core/components/select-image/select-image.component.mjs +1 -1
  15. package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +3 -3
  16. package/esm2022/lib/core/components/share/share.module.mjs +8 -12
  17. package/esm2022/lib/core/core.module.mjs +4 -8
  18. package/esm2022/lib/core/i18n/en.translations.mjs +8 -8
  19. package/esm2022/lib/core/i18n/fr.translations.mjs +9 -9
  20. package/esm2022/lib/core/pipes/get-secured-image/get-secured-image.pipe.mjs +21 -0
  21. package/esm2022/lib/core/pipes/since-date/since-date.module.mjs +18 -0
  22. package/esm2022/lib/core/pipes/since-date/since-date.pipe.mjs +55 -0
  23. package/esm2022/lib/core/pipes/translate-id/translate-id.pipe.mjs +108 -0
  24. package/esm2022/lib/core/pipes/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +23 -0
  25. package/esm2022/lib/core/public-api.mjs +7 -4
  26. package/esm2022/lib/core/store/data-source/datasource-utils.mjs +22 -1
  27. package/esm2022/lib/dashboard/components/widgets/data-widget.component.mjs +2 -2
  28. package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-card/datasource-card.component.mjs +60 -0
  29. package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-list/datasource-list.component.mjs +95 -0
  30. package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.mjs +53 -48
  31. package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +6 -7
  32. package/esm2022/lib/dashboard/components/widgets/public-api.mjs +3 -1
  33. package/esm2022/lib/dashboard/dashboard.module.mjs +19 -7
  34. package/esm2022/lib/dashboard/tooltip/components/default/default.tooltip.component.mjs +2 -2
  35. package/esm2022/pipeline/components/pipeline-details/pipeline-details.component.mjs +2 -3
  36. package/esm2022/pipeline/components/pipeline-list/pipeline-list.component.mjs +2 -3
  37. package/esm2022/pipeline/pipeline.module.mjs +8 -9
  38. package/esm2022/presentation/components/presentation.component.mjs +2 -3
  39. package/esm2022/presentation/presentation.module.mjs +8 -9
  40. package/esm2022/restitution/components/restitution/restitution.component.mjs +4 -4
  41. package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +2 -3
  42. package/esm2022/restitution/restitution.module.mjs +2 -3
  43. package/esm2022/restitution/style/css.component.mjs +2 -2
  44. package/fesm2022/provoly-dashboard-admin.mjs +0 -4
  45. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  46. package/fesm2022/provoly-dashboard-dataset.mjs +30 -87
  47. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  48. package/fesm2022/provoly-dashboard-pipeline.mjs +17 -19
  49. package/fesm2022/provoly-dashboard-pipeline.mjs.map +1 -1
  50. package/fesm2022/provoly-dashboard-presentation.mjs +8 -10
  51. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  52. package/fesm2022/provoly-dashboard-restitution.mjs +7 -9
  53. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  54. package/fesm2022/provoly-dashboard.mjs +3475 -3265
  55. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  56. package/lib/core/components/chips-selector/chips-selector.component.d.ts +1 -6
  57. package/lib/core/components/chips-selector/chips-selector.module.d.ts +11 -0
  58. package/lib/core/components/share/share.module.d.ts +3 -4
  59. package/lib/core/core.module.d.ts +26 -27
  60. package/lib/core/i18n/en.translations.d.ts +7 -7
  61. package/lib/core/i18n/fr.translations.d.ts +7 -7
  62. package/{components/sinceDate/sinceDate.module.d.ts → lib/core/pipes/since-date/since-date.module.d.ts} +3 -2
  63. package/{components/sinceDate/sinceDate.pipe.d.ts → lib/core/pipes/since-date/since-date.pipe.d.ts} +4 -4
  64. package/lib/core/{components → pipes}/translate-id/translate-id.pipe.d.ts +0 -2
  65. package/lib/core/public-api.d.ts +6 -3
  66. package/lib/core/store/data-source/datasource-utils.d.ts +4 -1
  67. package/lib/dashboard/components/widgets/datasource-selector/datasource-card/datasource-card.component.d.ts +24 -0
  68. package/lib/dashboard/components/widgets/datasource-selector/datasource-list/datasource-list.component.d.ts +35 -0
  69. package/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.d.ts +19 -11
  70. package/lib/dashboard/components/widgets/header/widget-header.component.d.ts +1 -1
  71. package/lib/dashboard/components/widgets/public-api.d.ts +2 -0
  72. package/lib/dashboard/dashboard.module.d.ts +18 -15
  73. package/package.json +43 -49
  74. package/pipeline/pipeline.module.d.ts +3 -4
  75. package/presentation/presentation.module.d.ts +7 -8
  76. package/restitution/components/restitution/restitution.component.d.ts +1 -1
  77. package/restitution/restitution.module.d.ts +1 -2
  78. package/restitution/style/_o-restitution.scss +4 -0
  79. package/styles/components/_a-chip.scss +44 -0
  80. package/styles/components/_o-datasource-selector.scss +192 -0
  81. package/styles/components/_o-widget.scss +1 -1
  82. package/styles/main.scss +1 -0
  83. package/styles-theme/main-theme.scss +0 -3
  84. package/components/sinceDate/index.d.ts +0 -5
  85. package/components/sinceDate/public-api.d.ts +0 -2
  86. package/dataset/components/dataset-card/dataset-card.component.d.ts +0 -18
  87. package/dataset/style/_o-pry-dataset-card.scss +0 -93
  88. package/esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs +0 -5
  89. package/esm2022/components/sinceDate/public-api.mjs +0 -3
  90. package/esm2022/components/sinceDate/sinceDate.module.mjs +0 -16
  91. package/esm2022/components/sinceDate/sinceDate.pipe.mjs +0 -55
  92. package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +0 -41
  93. package/esm2022/lib/core/components/get-secured-image/get-secured-image.pipe.mjs +0 -21
  94. package/esm2022/lib/core/components/translate-id/translate-id.pipe.mjs +0 -114
  95. package/esm2022/lib/core/components/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +0 -23
  96. package/fesm2022/provoly-dashboard-components-sinceDate.mjs +0 -75
  97. package/fesm2022/provoly-dashboard-components-sinceDate.mjs.map +0 -1
  98. package/styles-theme/components-theme/_a-chip.theme.scss +0 -32
  99. package/styles-theme/components-theme/_o-pry-dataset-card.theme.scss +0 -26
  100. package/styles-theme/components-theme/_o-pry-dataset.theme.scss +0 -4
  101. /package/lib/core/{components → pipes}/get-secured-image/get-secured-image.pipe.d.ts +0 -0
  102. /package/lib/core/{components → pipes}/translate-item-to-symbol/translate-item-to-symbol.pipe.d.ts +0 -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.