@provoly/dashboard 1.2.9 → 1.2.11

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/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/select-a11y.service.mjs +5 -4
  15. package/esm2022/lib/core/components/select/select.component.mjs +8 -5
  16. package/esm2022/lib/core/components/select-image/select-image.component.mjs +1 -1
  17. package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +3 -3
  18. package/esm2022/lib/core/components/share/share.module.mjs +8 -12
  19. package/esm2022/lib/core/components/share/share.utils.mjs +4 -4
  20. package/esm2022/lib/core/core.module.mjs +4 -8
  21. package/esm2022/lib/core/i18n/en.translations.mjs +10 -10
  22. package/esm2022/lib/core/i18n/fr.translations.mjs +10 -10
  23. package/esm2022/lib/core/pipes/get-secured-image/get-secured-image.pipe.mjs +21 -0
  24. package/esm2022/lib/core/pipes/since-date/since-date.module.mjs +18 -0
  25. package/esm2022/lib/core/pipes/since-date/since-date.pipe.mjs +55 -0
  26. package/esm2022/lib/core/pipes/translate-id/translate-id.pipe.mjs +108 -0
  27. package/esm2022/lib/core/pipes/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +21 -0
  28. package/esm2022/lib/core/public-api.mjs +7 -4
  29. package/esm2022/lib/core/store/data-source/datasource-utils.mjs +22 -1
  30. package/esm2022/lib/dashboard/components/widgets/data-widget.component.mjs +2 -2
  31. package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-card/datasource-card.component.mjs +60 -0
  32. package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-list/datasource-list.component.mjs +95 -0
  33. package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.mjs +53 -48
  34. package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +6 -7
  35. package/esm2022/lib/dashboard/components/widgets/public-api.mjs +3 -1
  36. package/esm2022/lib/dashboard/dashboard.module.mjs +19 -7
  37. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +73 -3
  38. package/esm2022/lib/dashboard/store/dashboard.reducers.mjs +2 -45
  39. package/esm2022/lib/dashboard/tooltip/components/default/default.tooltip.component.mjs +2 -2
  40. package/esm2022/pipeline/components/pipeline-details/pipeline-details.component.mjs +2 -3
  41. package/esm2022/pipeline/components/pipeline-list/pipeline-list.component.mjs +2 -3
  42. package/esm2022/pipeline/pipeline.module.mjs +8 -9
  43. package/esm2022/presentation/components/presentation.component.mjs +2 -3
  44. package/esm2022/presentation/presentation.module.mjs +8 -9
  45. package/esm2022/restitution/components/restitution/restitution.component.mjs +4 -4
  46. package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +2 -3
  47. package/esm2022/restitution/restitution.module.mjs +2 -3
  48. package/esm2022/restitution/style/css.component.mjs +2 -2
  49. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +2 -2
  50. package/fesm2022/provoly-dashboard-admin.mjs +0 -4
  51. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  52. package/fesm2022/provoly-dashboard-dataset.mjs +30 -87
  53. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  54. package/fesm2022/provoly-dashboard-pipeline.mjs +17 -19
  55. package/fesm2022/provoly-dashboard-pipeline.mjs.map +1 -1
  56. package/fesm2022/provoly-dashboard-presentation.mjs +8 -10
  57. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  58. package/fesm2022/provoly-dashboard-restitution.mjs +7 -9
  59. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  60. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -1
  61. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  62. package/fesm2022/provoly-dashboard.mjs +3535 -3296
  63. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  64. package/lib/core/components/chips-selector/chips-selector.component.d.ts +1 -6
  65. package/lib/core/components/chips-selector/chips-selector.module.d.ts +11 -0
  66. package/lib/core/components/select/select-a11y.service.d.ts +1 -1
  67. package/lib/core/components/select/select.component.d.ts +2 -1
  68. package/lib/core/components/share/share.module.d.ts +3 -4
  69. package/lib/core/core.module.d.ts +26 -27
  70. package/lib/core/i18n/en.translations.d.ts +9 -9
  71. package/lib/core/i18n/fr.translations.d.ts +9 -9
  72. package/{components/sinceDate/sinceDate.module.d.ts → lib/core/pipes/since-date/since-date.module.d.ts} +3 -2
  73. package/{components/sinceDate/sinceDate.pipe.d.ts → lib/core/pipes/since-date/since-date.pipe.d.ts} +4 -4
  74. package/lib/core/{components → pipes}/translate-id/translate-id.pipe.d.ts +0 -2
  75. package/lib/core/public-api.d.ts +6 -3
  76. package/lib/core/store/data-source/datasource-utils.d.ts +4 -1
  77. package/lib/dashboard/components/widgets/datasource-selector/datasource-card/datasource-card.component.d.ts +24 -0
  78. package/lib/dashboard/components/widgets/datasource-selector/datasource-list/datasource-list.component.d.ts +35 -0
  79. package/lib/dashboard/components/widgets/datasource-selector/datasource-selector.component.d.ts +19 -11
  80. package/lib/dashboard/components/widgets/header/widget-header.component.d.ts +1 -1
  81. package/lib/dashboard/components/widgets/public-api.d.ts +2 -0
  82. package/lib/dashboard/dashboard.module.d.ts +18 -15
  83. package/lib/dashboard/store/dashboard.effects.d.ts +8 -0
  84. package/package.json +37 -43
  85. package/pipeline/pipeline.module.d.ts +3 -4
  86. package/presentation/presentation.module.d.ts +7 -8
  87. package/restitution/components/restitution/restitution.component.d.ts +1 -1
  88. package/restitution/restitution.module.d.ts +1 -2
  89. package/restitution/style/_o-restitution.scss +4 -0
  90. package/styles/components/_a-chip.scss +44 -0
  91. package/styles/components/_o-datasource-selector.scss +192 -0
  92. package/styles/components/_o-widget.scss +1 -1
  93. package/styles/main.scss +1 -0
  94. package/styles-theme/main-theme.scss +0 -3
  95. package/components/sinceDate/index.d.ts +0 -5
  96. package/components/sinceDate/public-api.d.ts +0 -2
  97. package/dataset/components/dataset-card/dataset-card.component.d.ts +0 -18
  98. package/dataset/style/_o-pry-dataset-card.scss +0 -93
  99. package/esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs +0 -5
  100. package/esm2022/components/sinceDate/public-api.mjs +0 -3
  101. package/esm2022/components/sinceDate/sinceDate.module.mjs +0 -16
  102. package/esm2022/components/sinceDate/sinceDate.pipe.mjs +0 -55
  103. package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +0 -41
  104. package/esm2022/lib/core/components/get-secured-image/get-secured-image.pipe.mjs +0 -21
  105. package/esm2022/lib/core/components/translate-id/translate-id.pipe.mjs +0 -114
  106. package/esm2022/lib/core/components/translate-item-to-symbol/translate-item-to-symbol.pipe.mjs +0 -23
  107. package/fesm2022/provoly-dashboard-components-sinceDate.mjs +0 -75
  108. package/fesm2022/provoly-dashboard-components-sinceDate.mjs.map +0 -1
  109. package/styles-theme/components-theme/_a-chip.theme.scss +0 -32
  110. package/styles-theme/components-theme/_o-pry-dataset-card.theme.scss +0 -26
  111. package/styles-theme/components-theme/_o-pry-dataset.theme.scss +0 -4
  112. /package/lib/core/{components → pipes}/get-secured-image/get-secured-image.pipe.d.ts +0 -0
  113. /package/lib/core/{components → pipes}/translate-item-to-symbol/translate-item-to-symbol.pipe.d.ts +0 -0
@@ -27,7 +27,6 @@ import { distinctUntilChanged, map as map$1, filter as filter$1, mergeMap as mer
27
27
  import { TemplatePortal } from '@angular/cdk/portal';
28
28
  import { concatLatestFrom as concatLatestFrom$1 } from '@ngrx/operators';
29
29
  import * as i1$1 from '@angular/common/http';
30
- import { PrySinceDateModule } from '@provoly/dashboard/components/sinceDate';
31
30
  import { PryDatasetModule } from '@provoly/dashboard/dataset';
32
31
 
33
32
  const AdminActions = {
@@ -7044,7 +7043,6 @@ class PryAdminModule {
7044
7043
  DragDropModule,
7045
7044
  PryI18nModule,
7046
7045
  PryExpandPanelModule,
7047
- PrySinceDateModule,
7048
7046
  PryDatasetModule,
7049
7047
  PryShareModule] }); }
7050
7048
  static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryAdminModule, providers: [DatePipe], imports: [CommonModule,
@@ -7086,7 +7084,6 @@ class PryAdminModule {
7086
7084
  DragDropModule,
7087
7085
  PryI18nModule,
7088
7086
  PryExpandPanelModule,
7089
- PrySinceDateModule,
7090
7087
  PryDatasetModule,
7091
7088
  PryShareModule] }); }
7092
7089
  }
@@ -7210,7 +7207,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
7210
7207
  DragDropModule,
7211
7208
  PryI18nModule,
7212
7209
  PryExpandPanelModule,
7213
- PrySinceDateModule,
7214
7210
  PryDatasetModule,
7215
7211
  PryShareModule
7216
7212
  ]