@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
@@ -14,10 +14,6 @@ export declare class ChipsSelectorComponent extends SubscriptionnerDirective {
14
14
  showSearchbar: boolean;
15
15
  set items(items: any[]);
16
16
  set usedItems(items: any[]);
17
- cancel: EventEmitter<any>;
18
- validated: EventEmitter<any>;
19
- previousTab: EventEmitter<any>;
20
- nextTab: EventEmitter<any>;
21
17
  itemsChanged: EventEmitter<any[]>;
22
18
  items$: BehaviorSubject<any[] | null>;
23
19
  usedItems$: BehaviorSubject<any[]>;
@@ -28,12 +24,11 @@ export declare class ChipsSelectorComponent extends SubscriptionnerDirective {
28
24
  };
29
25
  constructor(cdr: ChangeDetectorRef, i18n: PryI18nService);
30
26
  toggleItemSelection(item: any): void;
31
- isGeo(item: any): boolean;
32
27
  search($event: any): void;
33
28
  getItemValue(item: any): any;
34
29
  getItemLabel(item: any): any;
35
30
  areItemsEqual(item1: any, item2: any): boolean;
36
31
  isItemUsed(item: any, usedItems?: any[]): any;
37
32
  static ɵfac: i0.ɵɵFactoryDeclaration<ChipsSelectorComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<ChipsSelectorComponent, "pry-chips-selector", never, { "bindValue": { "alias": "bindValue"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "translationStringBase": { "alias": "translationStringBase"; "required": false; }; "itemTranslationStringBase": { "alias": "itemTranslationStringBase"; "required": false; }; "showActionButtons": { "alias": "showActionButtons"; "required": false; }; "showSearchbar": { "alias": "showSearchbar"; "required": false; }; "items": { "alias": "items"; "required": false; }; "usedItems": { "alias": "usedItems"; "required": false; }; }, { "cancel": "cancel"; "validated": "validated"; "previousTab": "previousTab"; "nextTab": "nextTab"; "itemsChanged": "itemsChanged"; }, never, never, false, never>;
33
+ static ɵcmp: i0.ɵɵComponentDeclaration<ChipsSelectorComponent, "pry-chips-selector", never, { "bindValue": { "alias": "bindValue"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "translationStringBase": { "alias": "translationStringBase"; "required": false; }; "itemTranslationStringBase": { "alias": "itemTranslationStringBase"; "required": false; }; "showActionButtons": { "alias": "showActionButtons"; "required": false; }; "showSearchbar": { "alias": "showSearchbar"; "required": false; }; "items": { "alias": "items"; "required": false; }; "usedItems": { "alias": "usedItems"; "required": false; }; }, { "itemsChanged": "itemsChanged"; }, never, never, false, never>;
39
34
  }
@@ -0,0 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./chips-selector.component";
3
+ import * as i2 from "../icon/icon.module";
4
+ import * as i3 from "../../i18n/i18n.module";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "@angular/forms";
7
+ export declare class PryChipsSelectorModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<PryChipsSelectorModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PryChipsSelectorModule, [typeof i1.ChipsSelectorComponent], [typeof i2.PryIconModule, typeof i3.PryI18nModule, typeof i4.AsyncPipe, typeof i5.FormsModule], [typeof i1.ChipsSelectorComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<PryChipsSelectorModule>;
11
+ }
@@ -3,7 +3,7 @@ import { FocusOrigin } from '@angular/cdk/a11y';
3
3
  export declare class SelectA11yService {
4
4
  protected toggle: (...args: any[]) => void;
5
5
  setToggle(toggleCallback: (...args: any[]) => void): void;
6
- onFocusChange(origin: FocusOrigin, autocomplete: boolean, toggleFocus: () => void, focusSelect: () => void): void;
6
+ onFocusChange(origin: FocusOrigin, autocomplete: boolean, toggleFocus: () => void, focusInput: () => void): void;
7
7
  onKeydownSelect(event: KeyboardEvent, autocomplete: boolean): void;
8
8
  onKeydownAutocompleteInput(event: KeyboardEvent, open: boolean, searchValue: string, optionsModalRef?: EmbeddedViewRef<any>): void;
9
9
  onKeydownOption(event: KeyboardEvent, optionDivRef: HTMLDivElement, first: boolean, last: boolean, autocomplete: boolean, selectElement: HTMLDivElement, select: () => void): void;
@@ -73,7 +73,8 @@ export declare class PrySelectComponent extends SubscriptionnerDirective impleme
73
73
  private inhibition;
74
74
  handleClick(): void;
75
75
  toggleFocus(): void;
76
- focusSelect(): void;
76
+ returnFocus(): void;
77
+ focusInput(): void;
77
78
  private getOverlayConfig;
78
79
  get _elementRef(): HTMLDivElement;
79
80
  onFocusChange: (origin: FocusOrigin) => void;
@@ -7,11 +7,10 @@ import * as i5 from "@angular/common";
7
7
  import * as i6 from "@angular/forms";
8
8
  import * as i7 from "../select/select.module";
9
9
  import * as i8 from "../../i18n/i18n.module";
10
- import * as i9 from "../../core.module";
11
- import * as i10 from "../../../dashboard/dashboard.module";
12
- import * as i11 from "../icon/icon.module";
10
+ import * as i9 from "../icon/icon.module";
11
+ import * as i10 from "../chips-selector/chips-selector.module";
13
12
  export declare class PryShareModule {
14
13
  static ɵfac: i0.ɵɵFactoryDeclaration<PryShareModule, never>;
15
- static ɵmod: i0.ɵɵNgModuleDeclaration<PryShareModule, [typeof i1.PryShareComponent, typeof i2.PryGroupShareComponent, typeof i3.PryAccessRightsShareComponent, typeof i4.PryAccessRightsShareModalComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.PrySelectModule, typeof i8.PryI18nModule, typeof i9.PryCoreModule, typeof i10.PryDashboardModule, typeof i11.PryIconModule], [typeof i1.PryShareComponent, typeof i2.PryGroupShareComponent, typeof i3.PryAccessRightsShareComponent, typeof i4.PryAccessRightsShareModalComponent]>;
14
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PryShareModule, [typeof i1.PryShareComponent, typeof i2.PryGroupShareComponent, typeof i3.PryAccessRightsShareComponent, typeof i4.PryAccessRightsShareModalComponent], [typeof i5.CommonModule, typeof i6.FormsModule, typeof i7.PrySelectModule, typeof i8.PryI18nModule, typeof i9.PryIconModule, typeof i10.PryChipsSelectorModule], [typeof i1.PryShareComponent, typeof i2.PryGroupShareComponent, typeof i3.PryAccessRightsShareComponent, typeof i4.PryAccessRightsShareModalComponent]>;
16
15
  static ɵinj: i0.ɵɵInjectorDeclaration<PryShareModule>;
17
16
  }
@@ -1,35 +1,34 @@
1
1
  import { ModuleWithProviders, Provider } from '@angular/core';
2
2
  import { PryI18nService } from './i18n/i18n.service';
3
3
  import * as i0 from "@angular/core";
4
- import * as i1 from "./components/translate-id/translate-id.pipe";
5
- import * as i2 from "./components/translate-item-to-symbol/translate-item-to-symbol.pipe";
6
- import * as i3 from "./components/get-secured-image/get-secured-image.pipe";
4
+ import * as i1 from "./pipes/translate-id/translate-id.pipe";
5
+ import * as i2 from "./pipes/translate-item-to-symbol/translate-item-to-symbol.pipe";
6
+ import * as i3 from "./pipes/get-secured-image/get-secured-image.pipe";
7
7
  import * as i4 from "./components/base-layout/base-layout.component";
8
8
  import * as i5 from "./components/base-menu/base-menu.component";
9
9
  import * as i6 from "./components/base-toolbox/base-toolbox.component";
10
- import * as i7 from "./components/chips-selector/chips-selector.component";
11
- import * as i8 from "./components/nq-color-selector/nq-color-selector.component";
12
- import * as i9 from "./access/access.directive";
13
- import * as i10 from "./components/upload/upload.component";
14
- import * as i11 from "./components/select-image/select-image.component";
15
- import * as i12 from "./components/accordion/accordion.component";
16
- import * as i13 from "./components/accordion/accordion-item/accordion-item.component";
17
- import * as i14 from "./components/tabs/tab-group.component";
18
- import * as i15 from "./components/tabs/tab.component";
19
- import * as i16 from "./components/ellipsis.directive";
20
- import * as i17 from "./components/base-toolbox-action/base-toolbox-action.component";
21
- import * as i18 from "@angular/common";
22
- import * as i19 from "@angular/router";
23
- import * as i20 from "@angular/common/http";
24
- import * as i21 from "@ngrx/store";
25
- import * as i22 from "@ngrx/effects";
26
- import * as i23 from "./components/icon/icon.module";
27
- import * as i24 from "@angular/cdk/overlay";
28
- import * as i25 from "./components/overlay/overlay.module";
29
- import * as i26 from "./i18n/i18n.module";
30
- import * as i27 from "./components/modal-status/modal-status.module";
31
- import * as i28 from "@angular/cdk/accordion";
32
- import * as i29 from "@angular/forms";
10
+ import * as i7 from "./components/nq-color-selector/nq-color-selector.component";
11
+ import * as i8 from "./access/access.directive";
12
+ import * as i9 from "./components/upload/upload.component";
13
+ import * as i10 from "./components/select-image/select-image.component";
14
+ import * as i11 from "./components/accordion/accordion.component";
15
+ import * as i12 from "./components/accordion/accordion-item/accordion-item.component";
16
+ import * as i13 from "./components/tabs/tab-group.component";
17
+ import * as i14 from "./components/tabs/tab.component";
18
+ import * as i15 from "./components/ellipsis.directive";
19
+ import * as i16 from "./components/base-toolbox-action/base-toolbox-action.component";
20
+ import * as i17 from "@angular/common";
21
+ import * as i18 from "@angular/router";
22
+ import * as i19 from "@angular/common/http";
23
+ import * as i20 from "@ngrx/store";
24
+ import * as i21 from "@ngrx/effects";
25
+ import * as i22 from "./components/icon/icon.module";
26
+ import * as i23 from "@angular/cdk/overlay";
27
+ import * as i24 from "./components/overlay/overlay.module";
28
+ import * as i25 from "./i18n/i18n.module";
29
+ import * as i26 from "./components/modal-status/modal-status.module";
30
+ import * as i27 from "@angular/cdk/accordion";
31
+ import * as i28 from "@angular/forms";
33
32
  export declare class PryCoreModule {
34
33
  private pryTranslateService;
35
34
  constructor(pryTranslateService: PryI18nService);
@@ -39,6 +38,6 @@ export declare class PryCoreModule {
39
38
  geoAuthProvider?: Provider;
40
39
  }): ModuleWithProviders<PryCoreModule>;
41
40
  static ɵfac: i0.ɵɵFactoryDeclaration<PryCoreModule, never>;
42
- static ɵmod: i0.ɵɵNgModuleDeclaration<PryCoreModule, [typeof i1.TranslateIdPipe, typeof i2.TranslateItemToSymbolPipe, typeof i3.GetSecuredImagePipe, typeof i4.BaseLayoutComponent, typeof i5.BaseMenuComponent, typeof i6.BaseToolboxComponent, typeof i7.ChipsSelectorComponent, typeof i8.PryNqColorSelectorComponent, typeof i9.PryAccessDirective, typeof i10.PryUploadComponent, typeof i11.PrySelectImageComponent, typeof i12.AccordionComponent, typeof i13.AccordionItemComponent, typeof i14.TabGroupComponent, typeof i15.TabComponent, typeof i16.EllipsisDirective, typeof i17.BaseToolboxActionComponent], [typeof i18.CommonModule, typeof i19.RouterModule, typeof i20.HttpClientModule, typeof i21.StoreFeatureModule, typeof i21.StoreFeatureModule, typeof i21.StoreFeatureModule, typeof i21.StoreFeatureModule, typeof i21.StoreFeatureModule, typeof i21.StoreFeatureModule, typeof i21.StoreFeatureModule, typeof i21.StoreFeatureModule, typeof i21.StoreFeatureModule, typeof i22.EffectsFeatureModule, typeof i22.EffectsFeatureModule, typeof i22.EffectsFeatureModule, typeof i22.EffectsFeatureModule, typeof i22.EffectsFeatureModule, typeof i22.EffectsFeatureModule, typeof i22.EffectsFeatureModule, typeof i22.EffectsFeatureModule, typeof i22.EffectsFeatureModule, typeof i23.PryIconModule, typeof i24.OverlayModule, typeof i25.PryOverlayModule, typeof i26.PryI18nModule, typeof i27.PryModalStatusModule, typeof i28.CdkAccordionModule, typeof i29.FormsModule], [typeof i1.TranslateIdPipe, typeof i2.TranslateItemToSymbolPipe, typeof i3.GetSecuredImagePipe, typeof i4.BaseLayoutComponent, typeof i5.BaseMenuComponent, typeof i6.BaseToolboxComponent, typeof i7.ChipsSelectorComponent, typeof i8.PryNqColorSelectorComponent, typeof i9.PryAccessDirective, typeof i10.PryUploadComponent, typeof i11.PrySelectImageComponent, typeof i12.AccordionComponent, typeof i13.AccordionItemComponent, typeof i14.TabGroupComponent, typeof i15.TabComponent, typeof i16.EllipsisDirective]>;
41
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PryCoreModule, [typeof i1.TranslateIdPipe, typeof i2.TranslateItemToSymbolPipe, typeof i3.GetSecuredImagePipe, typeof i4.BaseLayoutComponent, typeof i5.BaseMenuComponent, typeof i6.BaseToolboxComponent, typeof i7.PryNqColorSelectorComponent, typeof i8.PryAccessDirective, typeof i9.PryUploadComponent, typeof i10.PrySelectImageComponent, typeof i11.AccordionComponent, typeof i12.AccordionItemComponent, typeof i13.TabGroupComponent, typeof i14.TabComponent, typeof i15.EllipsisDirective, typeof i16.BaseToolboxActionComponent], [typeof i17.CommonModule, typeof i18.RouterModule, typeof i19.HttpClientModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i20.StoreFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i21.EffectsFeatureModule, typeof i22.PryIconModule, typeof i23.OverlayModule, typeof i24.PryOverlayModule, typeof i25.PryI18nModule, typeof i26.PryModalStatusModule, typeof i27.CdkAccordionModule, typeof i28.FormsModule], [typeof i1.TranslateIdPipe, typeof i2.TranslateItemToSymbolPipe, typeof i3.GetSecuredImagePipe, typeof i4.BaseLayoutComponent, typeof i5.BaseMenuComponent, typeof i6.BaseToolboxComponent, typeof i7.PryNqColorSelectorComponent, typeof i8.PryAccessDirective, typeof i9.PryUploadComponent, typeof i10.PrySelectImageComponent, typeof i11.AccordionComponent, typeof i12.AccordionItemComponent, typeof i13.TabGroupComponent, typeof i14.TabComponent, typeof i15.EllipsisDirective]>;
43
42
  static ɵinj: i0.ɵɵInjectorDeclaration<PryCoreModule>;
44
43
  }
@@ -301,11 +301,11 @@ export declare const enTranslations: {
301
301
  share: {
302
302
  private: string;
303
303
  public: string;
304
- restricted: string;
304
+ groups: string;
305
305
  type: string;
306
306
  users: string;
307
307
  noGroups: string;
308
- groups: {
308
+ groupLabels: {
309
309
  ALL: string;
310
310
  AUTHENTICATED: string;
311
311
  };
@@ -334,13 +334,6 @@ export declare const enTranslations: {
334
334
  components: {
335
335
  searchData: string;
336
336
  chipsSelector: {
337
- datasource: {
338
- select: string;
339
- selection: string;
340
- selectItem: string;
341
- unselectItem: string;
342
- noItemSelected: string;
343
- };
344
337
  share: {
345
338
  select: string;
346
339
  selection: string;
@@ -349,6 +342,13 @@ export declare const enTranslations: {
349
342
  noItemSelected: string;
350
343
  };
351
344
  };
345
+ datasourceSelector: {
346
+ select: string;
347
+ selection: string;
348
+ selectItem: string;
349
+ unselectItem: string;
350
+ noItemSelected: string;
351
+ };
352
352
  };
353
353
  errors: {
354
354
  default: string;
@@ -303,10 +303,10 @@ export declare const frTranslations: {
303
303
  share: {
304
304
  private: string;
305
305
  public: string;
306
- restricted: string;
306
+ groups: string;
307
307
  type: string;
308
308
  users: string;
309
- groups: {
309
+ groupLabels: {
310
310
  ALL: string;
311
311
  AUTHENTICATED: string;
312
312
  };
@@ -336,13 +336,6 @@ export declare const frTranslations: {
336
336
  components: {
337
337
  searchData: string;
338
338
  chipsSelector: {
339
- datasource: {
340
- select: string;
341
- selection: string;
342
- selectItem: string;
343
- unselectItem: string;
344
- noItemSelected: string;
345
- };
346
339
  share: {
347
340
  select: string;
348
341
  selection: string;
@@ -351,6 +344,13 @@ export declare const frTranslations: {
351
344
  noItemSelected: string;
352
345
  };
353
346
  };
347
+ datasourceSelector: {
348
+ select: string;
349
+ selection: string;
350
+ selectItem: string;
351
+ unselectItem: string;
352
+ noItemSelected: string;
353
+ };
354
354
  };
355
355
  errors: {
356
356
  default: string;
@@ -1,7 +1,8 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./sinceDate.pipe";
2
+ import * as i1 from "./since-date.pipe";
3
+ import * as i2 from "../../i18n/i18n.module";
3
4
  export declare class PrySinceDateModule {
4
5
  static ɵfac: i0.ɵɵFactoryDeclaration<PrySinceDateModule, never>;
5
- static ɵmod: i0.ɵɵNgModuleDeclaration<PrySinceDateModule, [typeof i1.PrySinceDatePipe], never, [typeof i1.PrySinceDatePipe]>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PrySinceDateModule, [typeof i1.SinceDatePipe], [typeof i2.PryI18nModule], [typeof i1.SinceDatePipe]>;
6
7
  static ɵinj: i0.ɵɵInjectorDeclaration<PrySinceDateModule>;
7
8
  }
@@ -1,13 +1,13 @@
1
1
  import { PipeTransform } from '@angular/core';
2
- import { PryI18nService } from '@provoly/dashboard';
2
+ import { PryI18nService } from '../../i18n/i18n.service';
3
3
  import * as i0 from "@angular/core";
4
- export declare class PrySinceDatePipe implements PipeTransform {
4
+ export declare class SinceDatePipe implements PipeTransform {
5
5
  private translateService;
6
6
  private _now?;
7
7
  constructor(translateService: PryI18nService);
8
8
  transform(value: string, ...args: any[]): string;
9
9
  getDayDiff(startDate: Date, endDate: Date): number;
10
10
  useNow(date?: Date): this;
11
- static ɵfac: i0.ɵɵFactoryDeclaration<PrySinceDatePipe, never>;
12
- static ɵpipe: i0.ɵɵPipeDeclaration<PrySinceDatePipe, "sinceDate", false>;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<SinceDatePipe, never>;
12
+ static ɵpipe: i0.ɵɵPipeDeclaration<SinceDatePipe, "sinceDate", false>;
13
13
  }
@@ -3,10 +3,8 @@ import { SafeUrl } from '@angular/platform-browser';
3
3
  import { Store } from '@ngrx/store';
4
4
  import { Observable } from 'rxjs';
5
5
  import { PryI18nService } from '../../i18n/i18n.service';
6
- import { NamedQuery } from '../../store/data-source/data-source.model';
7
6
  import { SymbolService } from '../../symbol/symbol.service';
8
7
  import * as i0 from "@angular/core";
9
- export declare const UNKNOWN_DATASOURCE: (id: string) => NamedQuery;
10
8
  export declare class TranslateIdPipe implements PipeTransform {
11
9
  private store;
12
10
  private translateService;
@@ -48,9 +48,11 @@ export * from './store/aggregation/base-aggregation.service';
48
48
  export * from './store/aggregation/backend-aggregation.service';
49
49
  export * from './store/aggregation/frontend-aggregation/frontend-aggregation.service';
50
50
  export * from './components/nq-color-selector/nq-color-selector.component';
51
- export * from './components/translate-id/translate-id.pipe';
52
- export * from './components/translate-item-to-symbol/translate-item-to-symbol.pipe';
53
- export * from './components/get-secured-image/get-secured-image.pipe';
51
+ export * from './pipes/translate-id/translate-id.pipe';
52
+ export * from './pipes/translate-item-to-symbol/translate-item-to-symbol.pipe';
53
+ export * from './pipes/get-secured-image/get-secured-image.pipe';
54
+ export * from './pipes/since-date/since-date.pipe';
55
+ export * from './pipes/since-date/since-date.module';
54
56
  export * from './components/accordion/accordion.component';
55
57
  export * from './components/accordion/accordion-item/accordion-item.component';
56
58
  export * from './components/base-layout/base-layout.component';
@@ -126,3 +128,4 @@ export * from './components/about/pry-about.module';
126
128
  export * from './components/about/about.component';
127
129
  export * from './components/ellipsis.directive';
128
130
  export * from './components/chips-selector/chips-selector.component';
131
+ export * from './components/chips-selector/chips-selector.module';
@@ -1,8 +1,11 @@
1
1
  import { MonoClassSearchPayload } from '../../model/search-mono-class.model';
2
2
  import { FullTextSearchPayload, MultiClassSearchPayload } from '../../model/search-multi-class.model';
3
3
  import { NamedQueryTypes } from './named-query-types.model';
4
- import { Dataset, NamedQuery } from './data-source.model';
4
+ import { Dataset, DataSource, NamedQuery } from './data-source.model';
5
+ export declare const UNKNOWN_DATASOURCE: (id: string) => NamedQuery;
5
6
  export declare class DatasourceUtils {
6
7
  static getTypeFromPayload(payload: MonoClassSearchPayload | MultiClassSearchPayload | FullTextSearchPayload | undefined): NamedQueryTypes | undefined;
7
8
  static isGeo(ds: NamedQuery | Dataset): boolean;
9
+ static getAllDatasourcesWithUnknowns(allDatasources: DataSource[], widgetDatasources: string[] | string): DataSource[];
10
+ static getDatasourceArray(datasource?: string | string[]): string[];
8
11
  }
@@ -0,0 +1,24 @@
1
+ import { AfterContentInit, EventEmitter } from '@angular/core';
2
+ import { DataSource, DatasetVersion } from '../../../../../core/store/data-source/data-source.model';
3
+ import { Observable } from 'rxjs';
4
+ import { Store } from '@ngrx/store';
5
+ import * as i0 from "@angular/core";
6
+ export declare class PryDatasourceCardComponent implements AfterContentInit {
7
+ private store;
8
+ datasource: DataSource;
9
+ showFooter: boolean;
10
+ isSelectable: boolean;
11
+ isSelected: boolean;
12
+ clicked: EventEmitter<{
13
+ datasource: DataSource;
14
+ isSelected: boolean;
15
+ }>;
16
+ datasetVersions$: Observable<DatasetVersion[]>;
17
+ activeVersion$: Observable<string | undefined>;
18
+ constructor(store: Store);
19
+ ngAfterContentInit(): void;
20
+ truncateDescription(description: string | undefined, maxLength: number): string;
21
+ onClick(): void;
22
+ static ɵfac: i0.ɵɵFactoryDeclaration<PryDatasourceCardComponent, never>;
23
+ static ɵcmp: i0.ɵɵComponentDeclaration<PryDatasourceCardComponent, "pry-datasource-card", never, { "datasource": { "alias": "datasource"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "isSelectable": { "alias": "isSelectable"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; }, { "clicked": "clicked"; }, never, never, false, never>;
24
+ }
@@ -0,0 +1,35 @@
1
+ import { BehaviorSubject, Observable } from 'rxjs';
2
+ import { EventEmitter, OnInit } from '@angular/core';
3
+ import { Store } from '@ngrx/store';
4
+ import { Dataset, DataSource } from '../../../../../core/store/data-source/data-source.model';
5
+ import { Category } from '../../../../../core/store/category/category.interface';
6
+ import { SubscriptionnerDirective } from '../../../subscriptionner.directive';
7
+ import * as i0 from "@angular/core";
8
+ export declare class PryDatasourceListComponent extends SubscriptionnerDirective implements OnInit {
9
+ protected store: Store<any>;
10
+ datasources$: Observable<DataSource[]>;
11
+ datasets$: Observable<Dataset[]>;
12
+ search$: BehaviorSubject<string>;
13
+ categories$: Observable<Category[]>;
14
+ selectedCategories: never[];
15
+ selectedCategories$: BehaviorSubject<Category[]>;
16
+ filteredDatasources$: Observable<(DataSource & {
17
+ isSelected?: boolean;
18
+ })[]>;
19
+ selectedDatasources$: BehaviorSubject<string[]>;
20
+ _mode$: BehaviorSubject<string>;
21
+ set mode(mode: 'list' | 'selector');
22
+ set selectedDatasources(datasourceIds: string[]);
23
+ consultedDataset: EventEmitter<Dataset>;
24
+ datasourceSelected: EventEmitter<string[]>;
25
+ constructor(store: Store<any>);
26
+ ngOnInit(): void;
27
+ search(datasets: DataSource[], search: string, categories: Category[]): DataSource[];
28
+ doesDatasourceMatchCategoryFilter(datasource: DataSource, selectedCategories: Category[]): boolean;
29
+ onDatasourceClick({ isSelected, datasource }: {
30
+ isSelected: boolean;
31
+ datasource: DataSource;
32
+ }): void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<PryDatasourceListComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<PryDatasourceListComponent, "pry-datasource-list", never, { "mode": { "alias": "mode"; "required": false; }; "selectedDatasources": { "alias": "selectedDatasources"; "required": false; }; }, { "consultedDataset": "consultedDataset"; "datasourceSelected": "datasourceSelected"; }, never, never, false, never>;
35
+ }
@@ -1,20 +1,28 @@
1
- import { ChangeDetectorRef } from '@angular/core';
1
+ import { EventEmitter } from '@angular/core';
2
2
  import { Store } from '@ngrx/store';
3
3
  import { BehaviorSubject, Observable } from 'rxjs';
4
- import { NamedQuery } from '../../../../core/store/data-source/data-source.model';
5
- import { ChipsSelectorComponent } from '../../../../core/components/chips-selector/chips-selector.component';
4
+ import { DataSource } from '../../../../core/store/data-source/data-source.model';
6
5
  import { WidgetManifest } from '../../../../core/model/manifest.interface';
7
6
  import { SubscriptionnerDirective } from '../../subscriptionner.directive';
8
- import { PryI18nService } from '../../../../core/i18n/i18n.service';
9
7
  import * as i0 from "@angular/core";
10
- export declare class DatasourceSelectorComponent extends ChipsSelectorComponent implements SubscriptionnerDirective {
8
+ export declare class DatasourceSelectorComponent extends SubscriptionnerDirective {
11
9
  private store;
12
- _usedItems$: BehaviorSubject<any[]>;
13
- usedDatasources$: Observable<NamedQuery[]>;
14
- set usedItems(items: any[]);
15
- set manifest(manifest: WidgetManifest | null);
10
+ datasources$: Observable<DataSource[]>;
16
11
  manifest$: BehaviorSubject<WidgetManifest | null>;
17
- constructor(store: Store, cdr: ChangeDetectorRef, i18n: PryI18nService);
12
+ selectedDatasources$: Observable<DataSource[]>;
13
+ selectedIds$: BehaviorSubject<string[]>;
14
+ showButtons: boolean;
15
+ showTitle: boolean;
16
+ set manifest(manifest: WidgetManifest | null);
17
+ previousTab: EventEmitter<any>;
18
+ nextTab: EventEmitter<any>;
19
+ cancel: EventEmitter<any>;
20
+ validated: EventEmitter<any>;
21
+ itemsChanged: EventEmitter<string[]>;
22
+ constructor(store: Store);
23
+ isGeo(item: DataSource): boolean;
24
+ toggleSelection(id: string): void;
25
+ updateDatasourceList(ids: string[]): void;
18
26
  static ɵfac: i0.ɵɵFactoryDeclaration<DatasourceSelectorComponent, never>;
19
- static ɵcmp: i0.ɵɵComponentDeclaration<DatasourceSelectorComponent, "pry-datasource-selector", never, { "usedItems": { "alias": "usedItems"; "required": false; }; "manifest": { "alias": "manifest"; "required": false; }; }, {}, never, never, false, never>;
27
+ static ɵcmp: i0.ɵɵComponentDeclaration<DatasourceSelectorComponent, "pry-datasource-selector", never, { "showButtons": { "alias": "showButtons"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "manifest": { "alias": "manifest"; "required": false; }; }, { "previousTab": "previousTab"; "nextTab": "nextTab"; "cancel": "cancel"; "validated": "validated"; "itemsChanged": "itemsChanged"; }, never, never, false, never>;
20
28
  }
@@ -99,7 +99,7 @@ export declare class PryWidgetHeaderComponent extends SubscriptionnerDirective i
99
99
  focusValidation(): void;
100
100
  focusInputCatalog(): void;
101
101
  disableValidation(): void;
102
- datasourcesChanged($event: DataSource[]): void;
102
+ datasourcesChanged($event: string[]): void;
103
103
  isGeo(ds: NamedQuery | Dataset): boolean;
104
104
  placesManifest(): void;
105
105
  ngOnDestroy(): void;
@@ -2,6 +2,8 @@ export * from './base-widget.component';
2
2
  export * from './data-widget.component';
3
3
  export * from './header/widget-header.component';
4
4
  export * from './datasource-selector/datasource-selector.component';
5
+ export * from './datasource-selector/datasource-card/datasource-card.component';
6
+ export * from './datasource-selector/datasource-list/datasource-list.component';
5
7
  export * from './header/resultset-size.pipe';
6
8
  export * from './widget-instanciator/widget-factory.service';
7
9
  export * from './widget-instanciator/widget-instanciator.component';
@@ -24,20 +24,23 @@ import * as i16 from "./filter/base-filter.component";
24
24
  import * as i17 from "./filter/components/filter-instanciator/filter-instanciator.component";
25
25
  import * as i18 from "./filter/components/filter-group/filter-group.component";
26
26
  import * as i19 from "./components/widgets/datasource-selector/datasource-selector.component";
27
- import * as i20 from "./filter/style/css.component";
28
- import * as i21 from "@angular/common";
29
- import * as i22 from "@angular/forms";
30
- import * as i23 from "../core/components/select/select.module";
31
- import * as i24 from "../core/components/icon/icon.module";
32
- import * as i25 from "@angular/cdk/overlay";
33
- import * as i26 from "../core/core.module";
34
- import * as i27 from "@provoly/dashboard/components/checkbox";
35
- import * as i28 from "../core/components/toggle/toggle.module";
36
- import * as i29 from "../core/components/overlay/overlay.module";
37
- import * as i30 from "@ngrx/store";
38
- import * as i31 from "@ngrx/effects";
39
- import * as i32 from "../core/components/date-picker/date-picker.module";
40
- import * as i33 from "../core/i18n/i18n.module";
27
+ import * as i20 from "./components/widgets/datasource-selector/datasource-card/datasource-card.component";
28
+ import * as i21 from "./components/widgets/datasource-selector/datasource-list/datasource-list.component";
29
+ import * as i22 from "./filter/style/css.component";
30
+ import * as i23 from "@angular/common";
31
+ import * as i24 from "@angular/forms";
32
+ import * as i25 from "../core/components/select/select.module";
33
+ import * as i26 from "../core/components/icon/icon.module";
34
+ import * as i27 from "@angular/cdk/overlay";
35
+ import * as i28 from "../core/core.module";
36
+ import * as i29 from "@provoly/dashboard/components/checkbox";
37
+ import * as i30 from "../core/components/toggle/toggle.module";
38
+ import * as i31 from "../core/components/overlay/overlay.module";
39
+ import * as i32 from "@ngrx/store";
40
+ import * as i33 from "@ngrx/effects";
41
+ import * as i34 from "../core/components/date-picker/date-picker.module";
42
+ import * as i35 from "../core/i18n/i18n.module";
43
+ import * as i36 from "../core/pipes/since-date/since-date.module";
41
44
  export declare class PryDashboardModule {
42
45
  static forRoot(widgetReference: {
43
46
  [key: string]: WidgetDefinition;
@@ -54,6 +57,6 @@ export declare class PryDashboardModule {
54
57
  }, additionalGridLayouts?: AutomaticGridLayoutDefinition[]): ModuleWithProviders<PryDashboardModule>;
55
58
  constructor(store: Store);
56
59
  static ɵfac: i0.ɵɵFactoryDeclaration<PryDashboardModule, never>;
57
- static ɵmod: i0.ɵɵNgModuleDeclaration<PryDashboardModule, [typeof i1.DashboardComponent, typeof i2.WidgetInstanciatorComponent, typeof i3.WidgetPlaceholderComponent, typeof i4.SettingsComponent, typeof i5.ManifestsComponent, typeof i6.MetadataComponent, typeof i7.ContextMenuComponent, typeof i8.DataWidgetComponent, typeof i9.BaseWidgetComponent, typeof i10.PryWidgetHeaderComponent, typeof i11.PryObjectEditionComponent, typeof i12.VizualizeRawComponent, typeof i13.ResultSetSizePipe, typeof i14.DefaultTooltipComponent, typeof i15.BaseTooltipComponent, typeof i16.BaseFilterComponent, typeof i17.FilterInstanciatorComponent, typeof i18.FilterGroupComponent, typeof i19.DatasourceSelectorComponent, typeof i20.PryFilterGroupCssComponent], [typeof i21.CommonModule, typeof i22.FormsModule, typeof i23.PrySelectModule, typeof i24.PryIconModule, typeof i25.OverlayModule, typeof i26.PryCoreModule, typeof i27.PryCheckboxModule, typeof i28.PryToggleModule, typeof i29.PryOverlayModule, typeof i30.StoreFeatureModule, typeof i31.EffectsFeatureModule, typeof i32.PryDatePickerModule, typeof i33.PryI18nModule], [typeof i1.DashboardComponent, typeof i2.WidgetInstanciatorComponent, typeof i3.WidgetPlaceholderComponent, typeof i4.SettingsComponent, typeof i5.ManifestsComponent, typeof i6.MetadataComponent, typeof i7.ContextMenuComponent, typeof i8.DataWidgetComponent, typeof i9.BaseWidgetComponent, typeof i10.PryWidgetHeaderComponent, typeof i11.PryObjectEditionComponent, typeof i12.VizualizeRawComponent, typeof i13.ResultSetSizePipe, typeof i14.DefaultTooltipComponent, typeof i15.BaseTooltipComponent, typeof i16.BaseFilterComponent, typeof i17.FilterInstanciatorComponent, typeof i18.FilterGroupComponent, typeof i19.DatasourceSelectorComponent]>;
60
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PryDashboardModule, [typeof i1.DashboardComponent, typeof i2.WidgetInstanciatorComponent, typeof i3.WidgetPlaceholderComponent, typeof i4.SettingsComponent, typeof i5.ManifestsComponent, typeof i6.MetadataComponent, typeof i7.ContextMenuComponent, typeof i8.DataWidgetComponent, typeof i9.BaseWidgetComponent, typeof i10.PryWidgetHeaderComponent, typeof i11.PryObjectEditionComponent, typeof i12.VizualizeRawComponent, typeof i13.ResultSetSizePipe, typeof i14.DefaultTooltipComponent, typeof i15.BaseTooltipComponent, typeof i16.BaseFilterComponent, typeof i17.FilterInstanciatorComponent, typeof i18.FilterGroupComponent, typeof i19.DatasourceSelectorComponent, typeof i20.PryDatasourceCardComponent, typeof i21.PryDatasourceListComponent, typeof i22.PryFilterGroupCssComponent], [typeof i23.CommonModule, typeof i24.FormsModule, typeof i25.PrySelectModule, typeof i26.PryIconModule, typeof i27.OverlayModule, typeof i28.PryCoreModule, typeof i29.PryCheckboxModule, typeof i30.PryToggleModule, typeof i31.PryOverlayModule, typeof i32.StoreFeatureModule, typeof i33.EffectsFeatureModule, typeof i34.PryDatePickerModule, typeof i35.PryI18nModule, typeof i36.PrySinceDateModule], [typeof i1.DashboardComponent, typeof i2.WidgetInstanciatorComponent, typeof i3.WidgetPlaceholderComponent, typeof i4.SettingsComponent, typeof i5.ManifestsComponent, typeof i6.MetadataComponent, typeof i7.ContextMenuComponent, typeof i8.DataWidgetComponent, typeof i9.BaseWidgetComponent, typeof i10.PryWidgetHeaderComponent, typeof i11.PryObjectEditionComponent, typeof i12.VizualizeRawComponent, typeof i13.ResultSetSizePipe, typeof i14.DefaultTooltipComponent, typeof i15.BaseTooltipComponent, typeof i16.BaseFilterComponent, typeof i17.FilterInstanciatorComponent, typeof i18.FilterGroupComponent, typeof i19.DatasourceSelectorComponent, typeof i20.PryDatasourceCardComponent, typeof i21.PryDatasourceListComponent]>;
58
61
  static ɵinj: i0.ɵɵInjectorDeclaration<PryDashboardModule>;
59
62
  }
@@ -199,6 +199,14 @@ export declare class DashboardEffects {
199
199
  manifestId?: string | undefined;
200
200
  selectedIds: string[];
201
201
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest">> & import("@ngrx/effects").CreateEffectMetadata;
202
+ moveWidget$: import("rxjs").Observable<{
203
+ tenants?: string[] | undefined;
204
+ manifest: GlobalManifest;
205
+ resultSets?: import("@provoly/dashboard").ResultSets | undefined;
206
+ joining?: boolean | undefined;
207
+ manifestId?: string | undefined;
208
+ selectedIds: string[];
209
+ } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) updating manifest">> & import("@ngrx/effects").CreateEffectMetadata;
202
210
  multiSnackBar$: import("rxjs").Observable<{
203
211
  message: import("@provoly/dashboard").PrySnackMessage;
204
212
  } & import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) display snack message">> & import("@ngrx/effects").CreateEffectMetadata;