@provoly/dashboard 0.20.2 → 0.20.4

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 (203) hide show
  1. package/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.d.ts +5 -2
  2. package/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.d.ts +1 -1
  3. package/admin/i18n/en.translations.d.ts +1 -0
  4. package/admin/i18n/fr.translations.d.ts +1 -0
  5. package/components/metadata-editor/style/_o-metadata-editor.scss +0 -5
  6. package/dataset/style/_o-pry-dataset-card.scss +5 -37
  7. package/esm2022/admin/components/admin-abac-rules/admin-abac-rules-form/admin-abac-rules-form.component.mjs +3 -3
  8. package/esm2022/admin/components/admin-abac-rules/components/attribute-condition/attribute-condition.component.mjs +3 -3
  9. package/esm2022/admin/components/admin-abac-rules/components/metadata-condition/metadata-condition.component.mjs +3 -3
  10. package/esm2022/admin/components/admin-classes/admin-classes-customize/admin-classes-customize.component.mjs +5 -5
  11. package/esm2022/admin/components/admin-classes/admin-classes-customize/symbol/admin-classes-customize-symbol.component.mjs +3 -3
  12. package/esm2022/admin/components/admin-classes/admin-classes-customize/tooltip/admin-classes-customize-tooltip.component.mjs +5 -5
  13. package/esm2022/admin/components/admin-classes/admin-classes-form/admin-classes-form.component.mjs +3 -3
  14. package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-form/admin-attributes-form.component.mjs +42 -12
  15. package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-new/admin-attributes-new.component.mjs +1 -1
  16. package/esm2022/admin/components/admin-classes/admin-classes-view/admin-attributes-select/admin-attributes-select.component.mjs +3 -3
  17. package/esm2022/admin/components/admin-classes/admin-classes-view/admin-classes-view.component.mjs +3 -3
  18. package/esm2022/admin/components/admin-dataset/shared/admin-form-dataset/admin-form-dataset.component.mjs +3 -3
  19. package/esm2022/admin/components/admin-environment/admin-environment-form/admin-environment-form.component.mjs +3 -3
  20. package/esm2022/admin/components/admin-fields/admin-fields-form/admin-fields-form.component.mjs +3 -3
  21. package/esm2022/admin/components/admin-fields/admin-fields-select/admin-fields-select.component.mjs +2 -2
  22. package/esm2022/admin/components/admin-links/admin-links-new/admin-links-new.component.mjs +3 -3
  23. package/esm2022/admin/components/admin-metadata/shared/form-metadata/form-metadata.component.mjs +3 -3
  24. package/esm2022/admin/components/admin-metadata-rules/shared/admin-form-metadata-rules/admin-form-metadata-rules.component.mjs +3 -3
  25. package/esm2022/admin/i18n/en.translations.mjs +3 -2
  26. package/esm2022/admin/i18n/fr.translations.mjs +3 -2
  27. package/esm2022/components/metadata-editor/metadata-editor.component.mjs +3 -3
  28. package/esm2022/components/metadata-editor/style/css.component.mjs +2 -2
  29. package/esm2022/components/scheme-picker/scheme-picker.component.mjs +3 -3
  30. package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +5 -5
  31. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +1 -2
  32. package/esm2022/dataset/i18n/fr.translations.mjs +2 -2
  33. package/esm2022/dataset/style/css.component.mjs +2 -2
  34. package/esm2022/filters/autocomplete/autocomplete.component.mjs +13 -6
  35. package/esm2022/filters/autocomplete/autocomplete.module.mjs +5 -5
  36. package/esm2022/filters/autocomplete/style/css.component.mjs +2 -2
  37. package/esm2022/filters/list/list-filter.component.mjs +1 -1
  38. package/esm2022/import/components/import.component.mjs +3 -3
  39. package/esm2022/lib/core/components/ellipsis.directive.mjs +31 -0
  40. package/esm2022/lib/core/components/select/select.component.mjs +163 -38
  41. package/esm2022/lib/core/components/select/select.module.mjs +4 -5
  42. package/esm2022/lib/core/components/share/share.component.mjs +3 -3
  43. package/esm2022/lib/core/components/translate-id/translate-id.pipe.mjs +7 -8
  44. package/esm2022/lib/core/core.module.mjs +8 -4
  45. package/esm2022/lib/core/i18n/en.translations.mjs +7 -5
  46. package/esm2022/lib/core/i18n/fr.translations.mjs +8 -5
  47. package/esm2022/lib/core/model/admin-api.model.mjs +1 -1
  48. package/esm2022/lib/core/model/display-options.interface.mjs +18 -4
  49. package/esm2022/lib/core/model/filter.interface.mjs +1 -1
  50. package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
  51. package/esm2022/lib/core/public-api.mjs +2 -1
  52. package/esm2022/lib/core/store/class/class.interface.mjs +1 -1
  53. package/esm2022/lib/core/store/class/class.selectors.mjs +6 -2
  54. package/esm2022/lib/core/store/search/search.service.mjs +1 -1
  55. package/esm2022/lib/core/toolbox/toolbox-manifest.service.mjs +1 -4
  56. package/esm2022/lib/dashboard/components/context-menu/object-edition/object-edition.component.mjs +28 -28
  57. package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +6 -15
  58. package/esm2022/lib/dashboard/components/widgets/settings/settings.component.mjs +3 -3
  59. package/esm2022/lib/dashboard/filter/components/filter-group/filter-group.component.mjs +3 -3
  60. package/esm2022/lib/dashboard/filter/style/css.component.mjs +2 -2
  61. package/esm2022/lib/dashboard/item-utils.mjs +7 -7
  62. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +1 -4
  63. package/esm2022/pipeline/store/pipeline.actions.mjs +1 -1
  64. package/esm2022/pipeline-components/filter/component/filter.component.mjs +4 -4
  65. package/esm2022/pipeline-components/input-datasource/component/input-datasource.component.mjs +3 -3
  66. package/esm2022/pipeline-components/output-dataset/component/output-dataset.component.mjs +3 -3
  67. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
  68. package/esm2022/presentation/components/presentation.component.mjs +3 -3
  69. package/esm2022/presentation/i18n/fr.translations.mjs +9 -9
  70. package/esm2022/presentation/style/css.component.mjs +2 -2
  71. package/esm2022/restitution/components/restitution/restitution.component.mjs +23 -22
  72. package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +13 -6
  73. package/esm2022/restitution/i18n/en.translations.mjs +2 -2
  74. package/esm2022/restitution/i18n/fr.translations.mjs +4 -4
  75. package/esm2022/restitution/style/css.component.mjs +2 -2
  76. package/esm2022/search/search-mono-class/components/search-condition/search-condition.component.mjs +3 -3
  77. package/esm2022/search/search-mono-class/components/search-mono-class/search-mono-class.component.mjs +3 -3
  78. package/esm2022/search/search-mono-class/components/search-order/search-order.component.mjs +3 -3
  79. package/esm2022/search/search-multi-class/components/multi-class-condition/multi-class-condition.component.mjs +3 -3
  80. package/esm2022/supervision/components/supervision-integration-errors/supervision-integration-errors.component.mjs +3 -3
  81. package/esm2022/toolbox/components/automate-refresh/automate-refresh.component.mjs +3 -3
  82. package/esm2022/toolbox/components/clear-view/clear-view.component.mjs +3 -3
  83. package/esm2022/toolbox/components/drag-widgets/drag-widgets.component.mjs +3 -3
  84. package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +6 -6
  85. package/esm2022/toolbox/components/launch-tab/launch-tab.component.mjs +3 -3
  86. package/esm2022/toolbox/components/named-query/named-query.component.mjs +3 -3
  87. package/esm2022/toolbox/components/refresh-datasets/refresh-datasets.component.mjs +3 -3
  88. package/esm2022/toolbox/components/save-view/save-view.component.mjs +3 -3
  89. package/esm2022/toolbox/components/select-grid-layout/select-grid-layout.component.mjs +3 -3
  90. package/esm2022/toolbox/components/toolbox.component.mjs +4 -3
  91. package/esm2022/tooltips/attribute/attribute-tooltip.component.mjs +8 -2
  92. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +8 -7
  93. package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +12 -13
  94. package/esm2022/widgets/widget-graph/component/widget-graph.component.mjs +3 -3
  95. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +13 -7
  96. package/esm2022/widgets/widget-map/i18n/en.translations.mjs +3 -2
  97. package/esm2022/widgets/widget-map/i18n/fr.translations.mjs +3 -2
  98. package/esm2022/widgets/widget-map/pipe/widget-map-geometry-fields-for.pipe.mjs +3 -3
  99. package/esm2022/widgets/widget-map/style/css.component.mjs +2 -2
  100. package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +2 -2
  101. package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +6 -6
  102. package/esm2022/widgets/widget-table/component/widget-table.component.mjs +8 -8
  103. package/esm2022/widgets/widget-table/get-value/get-value.pipe.mjs +2 -2
  104. package/esm2022/widgets/widget-tile/component/widget-tile.component.mjs +3 -3
  105. package/fesm2022/provoly-dashboard-admin.mjs +80 -48
  106. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  107. package/fesm2022/provoly-dashboard-components-metadata-editor.mjs +4 -4
  108. package/fesm2022/provoly-dashboard-components-metadata-editor.mjs.map +1 -1
  109. package/fesm2022/provoly-dashboard-components-scheme-picker.mjs +2 -2
  110. package/fesm2022/provoly-dashboard-components-scheme-picker.mjs.map +1 -1
  111. package/fesm2022/provoly-dashboard-dataset.mjs +5 -6
  112. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  113. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +18 -11
  114. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
  115. package/fesm2022/provoly-dashboard-filters-list.mjs +1 -1
  116. package/fesm2022/provoly-dashboard-filters-list.mjs.map +1 -1
  117. package/fesm2022/provoly-dashboard-import.mjs +2 -2
  118. package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
  119. package/fesm2022/provoly-dashboard-pipeline-components-filter.mjs +3 -3
  120. package/fesm2022/provoly-dashboard-pipeline-components-filter.mjs.map +1 -1
  121. package/fesm2022/provoly-dashboard-pipeline-components-input-datasource.mjs +2 -2
  122. package/fesm2022/provoly-dashboard-pipeline-components-input-datasource.mjs.map +1 -1
  123. package/fesm2022/provoly-dashboard-pipeline-components-output-dataset.mjs +2 -2
  124. package/fesm2022/provoly-dashboard-pipeline-components-output-dataset.mjs.map +1 -1
  125. package/fesm2022/provoly-dashboard-pipeline.mjs.map +1 -1
  126. package/fesm2022/provoly-dashboard-presentation.mjs +14 -14
  127. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  128. package/fesm2022/provoly-dashboard-restitution.mjs +39 -31
  129. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  130. package/fesm2022/provoly-dashboard-search.mjs +8 -8
  131. package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
  132. package/fesm2022/provoly-dashboard-supervision.mjs +2 -2
  133. package/fesm2022/provoly-dashboard-supervision.mjs.map +1 -1
  134. package/fesm2022/provoly-dashboard-toolbox.mjs +24 -23
  135. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  136. package/fesm2022/provoly-dashboard-tooltips-attribute.mjs +7 -1
  137. package/fesm2022/provoly-dashboard-tooltips-attribute.mjs.map +1 -1
  138. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +7 -6
  139. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  140. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +11 -12
  141. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
  142. package/fesm2022/provoly-dashboard-widgets-widget-graph.mjs +2 -2
  143. package/fesm2022/provoly-dashboard-widgets-widget-graph.mjs.map +1 -1
  144. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +26 -18
  145. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  146. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs +8 -8
  147. package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
  148. package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs +2 -2
  149. package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs.map +1 -1
  150. package/fesm2022/provoly-dashboard.mjs +281 -122
  151. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  152. package/filters/autocomplete/autocomplete.component.d.ts +1 -0
  153. package/filters/autocomplete/autocomplete.module.d.ts +1 -1
  154. package/filters/autocomplete/style/_m-autocomplete.scss +16 -3
  155. package/lib/core/components/ellipsis.directive.d.ts +11 -0
  156. package/lib/core/components/select/select.component.d.ts +39 -19
  157. package/lib/core/components/select/select.module.d.ts +4 -5
  158. package/lib/core/components/translate-id/translate-id.pipe.d.ts +1 -3
  159. package/lib/core/core.module.d.ts +15 -14
  160. package/lib/core/i18n/en.translations.d.ts +4 -2
  161. package/lib/core/i18n/fr.translations.d.ts +5 -2
  162. package/lib/core/model/admin-api.model.d.ts +1 -0
  163. package/lib/core/model/display-options.interface.d.ts +11 -0
  164. package/lib/core/model/filter.interface.d.ts +1 -1
  165. package/lib/core/model/manifest.interface.d.ts +1 -5
  166. package/lib/core/public-api.d.ts +1 -0
  167. package/lib/core/store/class/class.interface.d.ts +1 -0
  168. package/lib/core/store/class/class.selectors.d.ts +105 -5
  169. package/lib/core/store/search/search.service.d.ts +1 -1
  170. package/lib/dashboard/components/widgets/header/widget-header.component.d.ts +2 -5
  171. package/lib/dashboard/filter/style/_o-pry-filter-group.scss +0 -11
  172. package/lib/dashboard/store/dashboard.effects.d.ts +0 -1
  173. package/lib/dashboard/store/dashboard.selectors.d.ts +0 -9
  174. package/package.json +7 -8
  175. package/pipeline/store/pipeline.actions.d.ts +1 -1
  176. package/presentation/style/_o-pry-new-presentation.scss +0 -7
  177. package/presentation/style/_o-pry-presentation.scss +20 -55
  178. package/restitution/components/restitution-catalog/restitution-catalog.component.d.ts +1 -1
  179. package/restitution/i18n/en.translations.d.ts +1 -1
  180. package/restitution/i18n/fr.translations.d.ts +3 -3
  181. package/schematics/migration.json +6 -1
  182. package/schematics/ng-update/version-0-20/index.d.ts +2 -0
  183. package/schematics/ng-update/version-0-20/index.js +19 -0
  184. package/schematics/ng-update/version-0-20/index.js.map +1 -0
  185. package/styles/components/_a-pry-select.scss +34 -10
  186. package/styles/components/_a-tooltip.scss +2 -2
  187. package/styles/components/_m-filter.scss +11 -20
  188. package/styles/components/_o-dashboard.scss +4 -0
  189. package/styles/components/_o-draggable-menu.scss +1 -1
  190. package/styles/components/_o-widget.scss +2 -2
  191. package/styles/main.scss +0 -1
  192. package/styles-theme/abstracts-theme/variables/_variables-typo.scss +9 -0
  193. package/styles-theme/components-theme/_a-pry-select.theme.scss +23 -96
  194. package/styles-theme/components-theme/_a-tooltip.theme.scss +2 -2
  195. package/styles-theme/components-theme/_o-pry-composed-condition.theme.scss +0 -12
  196. package/toolbox/components/filter-settings/filter-settings.component.d.ts +2 -2
  197. package/toolbox/components/toolbox.component.d.ts +1 -0
  198. package/tooltips/attribute/attribute-tooltip.component.d.ts +1 -0
  199. package/widgets/widget-chart/component/widget-chart.component.d.ts +0 -1
  200. package/widgets/widget-map/component/widget-map.component.d.ts +2 -0
  201. package/widgets/widget-map/i18n/en.translations.d.ts +1 -0
  202. package/widgets/widget-map/i18n/fr.translations.d.ts +1 -0
  203. package/widgets/widget-map/style/_o-layer-legend.scss +21 -0
@@ -7,6 +7,7 @@ export declare class AutocompleteComponent extends BaseFilterComponent implement
7
7
  private searchService;
8
8
  search$: BehaviorSubject<string>;
9
9
  autocomplete$?: Observable<string[]>;
10
+ loader: boolean;
10
11
  constructor(store: Store, searchService: SearchService);
11
12
  ngOnInit(): void;
12
13
  setFilter(value: string): void;
@@ -9,6 +9,6 @@ import * as i5 from "@provoly/dashboard";
9
9
  export declare class PryAutocompleteModule extends BaseFilterModule {
10
10
  getComponent(): Type<BaseFilterComponent>;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<PryAutocompleteModule, never>;
12
- static ɵmod: i0.ɵɵNgModuleDeclaration<PryAutocompleteModule, [typeof i1.AutocompleteComponent, typeof i2.PryAutocompleteCssComponent], [typeof i3.CommonModule, typeof i4.ReactiveFormsModule, typeof i4.FormsModule, typeof i5.PrySelectModule], [typeof i1.AutocompleteComponent]>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PryAutocompleteModule, [typeof i1.AutocompleteComponent, typeof i2.PryAutocompleteCssComponent], [typeof i3.CommonModule, typeof i4.ReactiveFormsModule, typeof i4.FormsModule, typeof i5.PrySelectModule, typeof i5.PryIconModule, typeof i5.PryI18nModule], [typeof i1.AutocompleteComponent]>;
13
13
  static ɵinj: i0.ɵɵInjectorDeclaration<PryAutocompleteModule>;
14
14
  }
@@ -1,7 +1,20 @@
1
1
  @use '../../../styles/abstracts/index' as *;
2
2
 
3
- .m-form-label-field {
4
- &.-list {
5
- margin-bottom: 0;
3
+ pry-autocomplete {
4
+ .m-filter__input-wrapper {
5
+ height: toRem(30);
6
+ padding-left: 0;
7
+ }
8
+
9
+ .a-pry-select {
10
+ border: none;
11
+ padding: 0;
12
+ outline: none;
13
+
14
+ &:focus-within {
15
+ outline: 0;
16
+ border-radius: 0;
17
+ box-shadow: none;
18
+ }
6
19
  }
7
20
  }
@@ -0,0 +1,11 @@
1
+ import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class EllipsisDirective implements AfterViewInit {
4
+ private elementRef;
5
+ private renderer;
6
+ textElementSelector: string;
7
+ constructor(elementRef: ElementRef, renderer: Renderer2);
8
+ ngAfterViewInit(): void;
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<EllipsisDirective, never>;
10
+ static ɵdir: i0.ɵɵDirectiveDeclaration<EllipsisDirective, "[ellipsis]", never, { "textElementSelector": { "alias": "textElementSelector"; "required": false; }; }, {}, never, never, false, never>;
11
+ }
@@ -1,42 +1,62 @@
1
- import { ChangeDetectorRef, TemplateRef } from '@angular/core';
1
+ import { ChangeDetectorRef, ElementRef, EventEmitter, TemplateRef, ViewContainerRef } from '@angular/core';
2
2
  import { ControlValueAccessor } from '@angular/forms';
3
+ import { BehaviorSubject, Observable } from 'rxjs';
4
+ import { Overlay, OverlayRef } from '@angular/cdk/overlay';
3
5
  import * as i0 from "@angular/core";
4
6
  export declare class PrySelectComponent implements ControlValueAccessor {
5
7
  private _cd;
8
+ private overlay;
9
+ private viewContainerRef;
6
10
  id: number;
7
- labelTranslate: boolean;
8
- baseTranslate: string;
9
- translationFn?: (...args: any[]) => any;
10
- translationFnArgs: any[];
11
+ _items$: BehaviorSubject<any[]>;
12
+ matchingItems$: Observable<any>;
13
+ open: boolean;
14
+ activeDescendant: number;
15
+ valueItems$: Observable<any>;
16
+ value$: BehaviorSubject<any>;
17
+ searchSelected$: BehaviorSubject<boolean>;
18
+ set items(items: any[] | null | undefined);
11
19
  clearable: boolean;
12
20
  multiple: boolean;
13
- multipleClearRight: boolean;
14
21
  closeOnSelect: boolean;
15
22
  placeholder?: string;
16
23
  isForm: boolean;
17
24
  required?: any;
18
25
  name?: any;
19
26
  readonly: boolean;
20
- get disabled(): boolean;
21
- items: any[] | null;
22
- itemsAsOption: boolean;
23
- bindData: boolean;
24
- bindValue: any;
25
- bindLabel: any;
26
- bindIcon: any;
27
- iconSize: number[];
28
- templateLabel?: TemplateRef<any>;
29
- templateOption?: TemplateRef<any>;
30
27
  autocomplete: boolean;
31
- value: any;
28
+ bindValue: string | undefined;
29
+ bindLabel: string | undefined;
30
+ iconSize: number[];
31
+ bindIcon: any;
32
+ template?: TemplateRef<any>;
33
+ i18nPrefix: string | null;
34
+ searched: EventEmitter<string>;
35
+ cleared: EventEmitter<void>;
36
+ search$: BehaviorSubject<string>;
37
+ get disabled(): boolean;
38
+ overlayRef?: OverlayRef;
39
+ optionsModal: TemplateRef<any>;
40
+ selectElement: ElementRef<HTMLDivElement>;
41
+ elementRef: HTMLDivElement;
32
42
  private _onChange;
33
43
  private _onTouched;
34
44
  private _disabled;
35
- constructor(_cd: ChangeDetectorRef);
45
+ focused: boolean;
46
+ modalWidth: number;
47
+ get modalId(): string;
48
+ constructor(_cd: ChangeDetectorRef, overlay: Overlay, viewContainerRef: ViewContainerRef);
36
49
  registerOnChange(fn: any): void;
37
50
  registerOnTouched(fn: any): void;
38
51
  setDisabledState(isDisabled: boolean): void;
39
52
  writeValue(obj: any): void;
53
+ clear($event: Event, item: any): void;
54
+ clearAll($event: Event): void;
55
+ search($event: string): void;
56
+ select($event: Event, item: any, index: number): void;
57
+ toggle(force?: boolean): void;
58
+ private getOverlayConfig;
59
+ get _elementRef(): HTMLDivElement;
40
60
  static ɵfac: i0.ɵɵFactoryDeclaration<PrySelectComponent, never>;
41
- static ɵcmp: i0.ɵɵComponentDeclaration<PrySelectComponent, "pry-select", never, { "labelTranslate": { "alias": "labelTranslate"; "required": false; }; "baseTranslate": { "alias": "baseTranslate"; "required": false; }; "translationFn": { "alias": "translationFn"; "required": false; }; "translationFnArgs": { "alias": "translationFnArgs"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "multipleClearRight": { "alias": "multipleClearRight"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "isForm": { "alias": "isForm"; "required": false; }; "required": { "alias": "required"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "items": { "alias": "items"; "required": false; }; "itemsAsOption": { "alias": "itemsAsOption"; "required": false; }; "bindData": { "alias": "bindData"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindIcon": { "alias": "bindIcon"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "templateLabel": { "alias": "templateLabel"; "required": false; }; "templateOption": { "alias": "templateOption"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; }, {}, never, never, false, never>;
61
+ static ɵcmp: i0.ɵɵComponentDeclaration<PrySelectComponent, "pry-select", never, { "items": { "alias": "items"; "required": false; }; "clearable": { "alias": "clearable"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "closeOnSelect": { "alias": "closeOnSelect"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "isForm": { "alias": "isForm"; "required": false; }; "required": { "alias": "required"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "bindIcon": { "alias": "bindIcon"; "required": false; }; "template": { "alias": "template"; "required": false; }; "i18nPrefix": { "alias": "i18nPrefix"; "required": false; }; "elementRef": { "alias": "elementRef"; "required": false; }; }, { "searched": "searched"; "cleared": "cleared"; }, never, never, false, never>;
42
62
  }
@@ -1,12 +1,11 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./select.component";
3
3
  import * as i2 from "@angular/common";
4
- import * as i3 from "@ng-select/ng-select";
5
- import * as i4 from "@angular/forms";
6
- import * as i5 from "../icon/icon.module";
7
- import * as i6 from "../../i18n/i18n.module";
4
+ import * as i3 from "@angular/forms";
5
+ import * as i4 from "../icon/icon.module";
6
+ import * as i5 from "../../i18n/i18n.module";
8
7
  export declare class PrySelectModule {
9
8
  static ɵfac: i0.ɵɵFactoryDeclaration<PrySelectModule, never>;
10
- static ɵmod: i0.ɵɵNgModuleDeclaration<PrySelectModule, [typeof i1.PrySelectComponent], [typeof i2.CommonModule, typeof i3.NgSelectModule, typeof i4.FormsModule, typeof i5.PryIconModule, typeof i6.PryI18nModule], [typeof i1.PrySelectComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<PrySelectModule, [typeof i1.PrySelectComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.PryIconModule, typeof i5.PryI18nModule], [typeof i1.PrySelectComponent]>;
11
10
  static ɵinj: i0.ɵɵInjectorDeclaration<PrySelectModule>;
12
11
  }
@@ -4,16 +4,14 @@ import { Store } from '@ngrx/store';
4
4
  import { Observable } from 'rxjs';
5
5
  import { PryI18nService } from '../../i18n/i18n.service';
6
6
  import { NamedQuery } from '../../store/data-source/data-source.model';
7
- import { ImageService } from '../../store/image/image.service';
8
7
  import { SymbolService } from '../../symbol/symbol.service';
9
8
  import * as i0 from "@angular/core";
10
9
  export declare const UNKNOWN_DATASOURCE: (id: string) => NamedQuery;
11
10
  export declare class TranslateIdPipe implements PipeTransform {
12
11
  private store;
13
12
  private translateService;
14
- private imageService;
15
13
  private symbolService;
16
- constructor(store: Store<any>, translateService: PryI18nService, imageService: ImageService, symbolService: SymbolService);
14
+ constructor(store: Store<any>, translateService: PryI18nService, symbolService: SymbolService);
17
15
  transform(value: string | string[], ...args: unknown[]): Observable<string | string[] | SafeUrl | null>;
18
16
  static ɵfac: i0.ɵɵFactoryDeclaration<TranslateIdPipe, never>;
19
17
  static ɵpipe: i0.ɵɵPipeDeclaration<TranslateIdPipe, "translateId", false>;
@@ -15,19 +15,20 @@ import * as i11 from "./components/accordion/accordion.component";
15
15
  import * as i12 from "./components/accordion/accordion-item/accordion-item.component";
16
16
  import * as i13 from "./components/tabs/tab-group.component";
17
17
  import * as i14 from "./components/tabs/tab.component";
18
- import * as i15 from "./components/base-toolbox-action/base-toolbox-action.component";
19
- import * as i16 from "@angular/common";
20
- import * as i17 from "@angular/router";
21
- import * as i18 from "@angular/common/http";
22
- import * as i19 from "@ngrx/store";
23
- import * as i20 from "@ngrx/effects";
24
- import * as i21 from "./components/icon/icon.module";
25
- import * as i22 from "@angular/cdk/overlay";
26
- import * as i23 from "./components/overlay/overlay.module";
27
- import * as i24 from "./i18n/i18n.module";
28
- import * as i25 from "./components/modal-status/modal-status.module";
29
- import * as i26 from "@angular/cdk/accordion";
30
- import * as i27 from "@angular/forms";
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";
31
32
  export declare class PryCoreModule {
32
33
  private pryTranslateService;
33
34
  constructor(pryTranslateService: PryI18nService);
@@ -37,6 +38,6 @@ export declare class PryCoreModule {
37
38
  geoAuthProvider?: Provider;
38
39
  }): ModuleWithProviders<PryCoreModule>;
39
40
  static ɵfac: i0.ɵɵFactoryDeclaration<PryCoreModule, never>;
40
- 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.BaseToolboxActionComponent], [typeof i16.CommonModule, typeof i17.RouterModule, typeof i18.HttpClientModule, typeof i19.StoreFeatureModule, typeof i19.StoreFeatureModule, typeof i19.StoreFeatureModule, typeof i19.StoreFeatureModule, typeof i19.StoreFeatureModule, typeof i19.StoreFeatureModule, typeof i19.StoreFeatureModule, typeof i19.StoreFeatureModule, typeof i19.StoreFeatureModule, typeof i20.EffectsFeatureModule, typeof i20.EffectsFeatureModule, typeof i20.EffectsFeatureModule, typeof i20.EffectsFeatureModule, typeof i20.EffectsFeatureModule, typeof i20.EffectsFeatureModule, typeof i20.EffectsFeatureModule, typeof i20.EffectsFeatureModule, typeof i20.EffectsFeatureModule, typeof i21.PryIconModule, typeof i22.OverlayModule, typeof i23.PryOverlayModule, typeof i24.PryI18nModule, typeof i25.PryModalStatusModule, typeof i26.CdkAccordionModule, typeof i27.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]>;
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]>;
41
42
  static ɵinj: i0.ɵɵInjectorDeclaration<PryCoreModule>;
42
43
  }
@@ -1,5 +1,8 @@
1
1
  export declare const enTranslations: {
2
2
  '@pry': {
3
+ select: {
4
+ label: string;
5
+ };
3
6
  about: {
4
7
  front: string;
5
8
  ref: string;
@@ -26,7 +29,6 @@ export declare const enTranslations: {
26
29
  defineCatalog: string;
27
30
  buttonChoice: string;
28
31
  tooltip: {
29
- openParameter: string;
30
32
  params: string;
31
33
  readSearch: string;
32
34
  deleteWidget: string;
@@ -114,7 +116,6 @@ export declare const enTranslations: {
114
116
  detail: string;
115
117
  chart: string;
116
118
  resultSet: string;
117
- saveView: string;
118
119
  rename: string;
119
120
  restore: string;
120
121
  save: string;
@@ -335,6 +336,7 @@ export declare const enTranslations: {
335
336
  values: string;
336
337
  validate: string;
337
338
  limit: string;
339
+ dateRange: string;
338
340
  };
339
341
  attributes: {
340
342
  datasource: string;
@@ -1,5 +1,8 @@
1
1
  export declare const frTranslations: {
2
2
  '@pry': {
3
+ select: {
4
+ label: string;
5
+ };
3
6
  about: {
4
7
  front: string;
5
8
  ref: string;
@@ -26,7 +29,6 @@ export declare const frTranslations: {
26
29
  defineCatalog: string;
27
30
  buttonChoice: string;
28
31
  tooltip: {
29
- openParameter: string;
30
32
  params: string;
31
33
  readSearch: string;
32
34
  deleteWidget: string;
@@ -114,10 +116,10 @@ export declare const frTranslations: {
114
116
  detail: string;
115
117
  chart: string;
116
118
  resultSet: string;
117
- saveView: string;
118
119
  rename: string;
119
120
  restore: string;
120
121
  save: string;
122
+ share: string;
121
123
  drag: string;
122
124
  dragIndication: string;
123
125
  barchart: string;
@@ -335,6 +337,7 @@ export declare const frTranslations: {
335
337
  values: string;
336
338
  validate: string;
337
339
  limit: string;
340
+ dateRange: string;
338
341
  };
339
342
  attributes: {
340
343
  datasource: string;
@@ -49,6 +49,7 @@ export declare const DEFAULT_CATEGORY_UUID = "cf666d66-838f-4d92-a4d2-a315df21fa
49
49
  export interface AttributeExtended {
50
50
  id: string;
51
51
  name: string;
52
+ technicalName: string;
52
53
  field: string;
53
54
  fieldName: string;
54
55
  category?: string;
@@ -5,6 +5,8 @@ export interface DisplayOptions {
5
5
  catalog: boolean;
6
6
  useFilters: boolean;
7
7
  toolbox: ToolboxDisplayOptions;
8
+ edit_toggle: boolean;
9
+ widgetContextMenu: boolean | WidgetContextMenuDisplayOptions;
8
10
  }
9
11
  export interface ToolboxDisplayOptions {
10
12
  save_view: boolean;
@@ -16,5 +18,14 @@ export interface ToolboxDisplayOptions {
16
18
  refresh_datasets: boolean;
17
19
  automate_refresh: boolean;
18
20
  }
21
+ export interface WidgetContextMenuDisplayOptions {
22
+ datasourceSelection: boolean;
23
+ parameters: boolean;
24
+ window: boolean;
25
+ maximize: boolean;
26
+ addToCatalog: boolean;
27
+ delete: boolean;
28
+ changeSpot: boolean;
29
+ }
19
30
  export declare const BASE_DISPLAY_OPTIONS: DisplayOptions;
20
31
  export declare function getDisplayOptions(mode?: ViewMode): DisplayOptions;
@@ -4,7 +4,7 @@ export interface Filter {
4
4
  type: string;
5
5
  attributes: {
6
6
  id: string;
7
- name: string;
7
+ technicalName: string;
8
8
  label: string;
9
9
  datasource: string;
10
10
  }[];
@@ -65,7 +65,6 @@ export interface GlobalManifest {
65
65
  refreshRates?: {
66
66
  [key: string]: number;
67
67
  };
68
- locked?: boolean;
69
68
  filters?: Filter[];
70
69
  }
71
70
  export interface WidgetManifest {
@@ -74,10 +73,7 @@ export interface WidgetManifest {
74
73
  layout: WidgetLayout;
75
74
  options?: WidgetOptions;
76
75
  datasource?: string | string[];
77
- header?: boolean | {
78
- [key: string]: boolean;
79
- };
80
- locked?: boolean;
76
+ header?: boolean;
81
77
  cover?: boolean;
82
78
  contextMenu?: boolean;
83
79
  }
@@ -119,3 +119,4 @@ export * from './i18n/deep-merge.function';
119
119
  export * from './errors/http-error-interceptor.service';
120
120
  export * from './components/about/pry-about.module';
121
121
  export * from './components/about/about.component';
122
+ export * from './components/ellipsis.directive';
@@ -8,6 +8,7 @@ export interface Class {
8
8
  export interface Attribute {
9
9
  id: string;
10
10
  name: string;
11
+ technicalName: string;
11
12
  field: string;
12
13
  category?: string;
13
14
  multiValued: boolean;
@@ -3,12 +3,112 @@ import * as fromClass from './class.reducer';
3
3
  export declare const ClassSelectors: {
4
4
  feature: import("@ngrx/store").MemoizedSelector<object, fromClass.ClassState, import("@ngrx/store").DefaultProjectorFn<fromClass.ClassState>>;
5
5
  entities: import("@ngrx/store").MemoizedSelector<object, import("@ngrx/entity").Dictionary<Class>, (s1: fromClass.ClassState) => import("@ngrx/entity").Dictionary<Class>>;
6
- classes: import("@ngrx/store").MemoizedSelector<object, Class[], (s1: fromClass.ClassState) => Class[]>;
6
+ classes: import("@ngrx/store").MemoizedSelector<object, {
7
+ attributes: {
8
+ technicalName: string;
9
+ id: string;
10
+ name: string;
11
+ field: string;
12
+ category?: string | undefined;
13
+ multiValued: boolean;
14
+ }[];
15
+ id: string;
16
+ name: string;
17
+ icon?: string | undefined;
18
+ storage?: string | undefined;
19
+ }[], (s1: Class[]) => {
20
+ attributes: {
21
+ technicalName: string;
22
+ id: string;
23
+ name: string;
24
+ field: string;
25
+ category?: string | undefined;
26
+ multiValued: boolean;
27
+ }[];
28
+ id: string;
29
+ name: string;
30
+ icon?: string | undefined;
31
+ storage?: string | undefined;
32
+ }[]>;
7
33
  classById: (id: string) => any;
8
- classByAttributeId: (attribute: string) => import("@ngrx/store").MemoizedSelector<object, Class | undefined, (s1: Class[]) => Class | undefined>;
9
- attributesByFieldId: (field: string) => import("@ngrx/store").MemoizedSelector<object, import("./class.interface").Attribute[], (s1: Class[]) => import("./class.interface").Attribute[]>;
10
- allAttributes: import("@ngrx/store").MemoizedSelector<object, import("./class.interface").Attribute[], (s1: Class[]) => import("./class.interface").Attribute[]>;
34
+ classByAttributeId: (attribute: string) => import("@ngrx/store").MemoizedSelector<object, Class | undefined, (s1: {
35
+ attributes: {
36
+ technicalName: string;
37
+ id: string;
38
+ name: string;
39
+ field: string;
40
+ category?: string | undefined;
41
+ multiValued: boolean;
42
+ }[];
43
+ id: string;
44
+ name: string;
45
+ icon?: string | undefined;
46
+ storage?: string | undefined;
47
+ }[]) => Class | undefined>;
48
+ attributesByFieldId: (field: string) => import("@ngrx/store").MemoizedSelector<object, import("./class.interface").Attribute[], (s1: {
49
+ attributes: {
50
+ technicalName: string;
51
+ id: string;
52
+ name: string;
53
+ field: string;
54
+ category?: string | undefined;
55
+ multiValued: boolean;
56
+ }[];
57
+ id: string;
58
+ name: string;
59
+ icon?: string | undefined;
60
+ storage?: string | undefined;
61
+ }[]) => import("./class.interface").Attribute[]>;
62
+ allAttributes: import("@ngrx/store").MemoizedSelector<object, {
63
+ technicalName: string;
64
+ id: string;
65
+ name: string;
66
+ field: string;
67
+ category?: string | undefined;
68
+ multiValued: boolean;
69
+ }[], (s1: {
70
+ attributes: {
71
+ technicalName: string;
72
+ id: string;
73
+ name: string;
74
+ field: string;
75
+ category?: string | undefined;
76
+ multiValued: boolean;
77
+ }[];
78
+ id: string;
79
+ name: string;
80
+ icon?: string | undefined;
81
+ storage?: string | undefined;
82
+ }[]) => {
83
+ technicalName: string;
84
+ id: string;
85
+ name: string;
86
+ field: string;
87
+ category?: string | undefined;
88
+ multiValued: boolean;
89
+ }[]>;
11
90
  classDatas: import("@ngrx/store").MemoizedSelector<object, import("./class.interface").BusinessData[], (s1: fromClass.ClassState) => import("./class.interface").BusinessData[]>;
12
91
  datasetCounts: import("@ngrx/store").MemoizedSelector<object, import("@provoly/dashboard").DatasetCount[], (s1: fromClass.ClassState) => import("@provoly/dashboard").DatasetCount[]>;
13
- getAttributeById: (id: string) => import("@ngrx/store").MemoizedSelector<object, import("./class.interface").Attribute[], (s1: import("./class.interface").Attribute[]) => import("./class.interface").Attribute[]>;
92
+ getAttributeById: (id: string) => import("@ngrx/store").MemoizedSelector<object, {
93
+ technicalName: string;
94
+ id: string;
95
+ name: string;
96
+ field: string;
97
+ category?: string | undefined;
98
+ multiValued: boolean;
99
+ }[], (s1: {
100
+ technicalName: string;
101
+ id: string;
102
+ name: string;
103
+ field: string;
104
+ category?: string | undefined;
105
+ multiValued: boolean;
106
+ }[]) => {
107
+ technicalName: string;
108
+ id: string;
109
+ name: string;
110
+ field: string;
111
+ category?: string | undefined;
112
+ multiValued: boolean;
113
+ }[]>;
14
114
  };
@@ -42,7 +42,7 @@ export declare class SearchService {
42
42
  applyTransformations(id: string, rs: ResultSet): ResultSet;
43
43
  autocomplete(attributes: {
44
44
  id: string;
45
- name: string;
45
+ technicalName: string;
46
46
  label: string;
47
47
  datasource: string;
48
48
  }[] | undefined, search?: string, limit?: number): Observable<string[]>;
@@ -8,6 +8,7 @@ import { Dataset, DataSource, NamedQuery } from '../../../../core/store/data-sou
8
8
  import { LibraryTypes } from '../../../../core/store/image/image.service';
9
9
  import { ToolboxMenuService } from '../../../../core/toolbox/toolbox-menu.service';
10
10
  import { SubscriptionnerDirective } from '../../subscriptionner.directive';
11
+ import { WidgetContextMenuDisplayOptions } from '../../../../core/model/display-options.interface';
11
12
  import * as i0 from "@angular/core";
12
13
  export declare const WIDGET_HEADER_HEIGHT = 30;
13
14
  export type HeaderAction = {
@@ -56,7 +57,7 @@ export declare class PryWidgetHeaderComponent extends SubscriptionnerDirective i
56
57
  catalogInfo: Widget;
57
58
  set datasourceIds(datasourceIds: string[]);
58
59
  set widgetIndex(widgetIndex: number);
59
- lockedView$: Observable<boolean>;
60
+ displayContextMenu$: Observable<boolean | WidgetContextMenuDisplayOptions>;
60
61
  targetIndexes$: Observable<number[]>;
61
62
  _widgetIndex$: BehaviorSubject<number>;
62
63
  _widgetIndex: number;
@@ -90,10 +91,6 @@ export declare class PryWidgetHeaderComponent extends SubscriptionnerDirective i
90
91
  confirmCatalog(): void;
91
92
  executeAction(options: HeaderAction): void;
92
93
  isActionDisabled(option: HeaderAction): boolean;
93
- displayOption(headerOptions: any, parameters: string): boolean;
94
- displaySettings(headerOptions: {
95
- [p: string]: boolean;
96
- } | {} | undefined): boolean;
97
94
  toggleChangeSpot(): void;
98
95
  moveToPlace(place: WidgetManifest): void;
99
96
  focusCrossElement(): void;
@@ -18,17 +18,6 @@
18
18
  padding: toRem(4) 0;
19
19
  overflow-x: auto;
20
20
  overflow-y: hidden;
21
-
22
- &:has(ng-dropdown-panel.ng-dropdown-panel) {
23
- padding-bottom: 350px; // max ng-select dropdown length
24
- background-clip: content-box, padding-box;
25
- overflow-x: hidden;
26
- }
27
-
28
- &--ng-select-open {
29
- padding-bottom: 350px; // max ng-select dropdown length
30
- background-clip: content-box, padding-box;
31
- }
32
21
  }
33
22
 
34
23
  &__filter-actions {
@@ -148,7 +148,6 @@ export declare class DashboardEffects {
148
148
  refreshRates?: {
149
149
  [key: string]: number;
150
150
  } | undefined;
151
- locked?: boolean | undefined;
152
151
  filters?: import("@provoly/dashboard").Filter[] | undefined;
153
152
  }]> & import("@ngrx/effects").CreateEffectMetadata;
154
153
  saveManifest$: import("rxjs").Observable<import("@ngrx/store/src/models").TypedAction<"[Dashboard] (bus) fetching available manifests"> | ({
@@ -31,7 +31,6 @@ export declare const DashboardSelectors: {
31
31
  refreshRates?: {
32
32
  [key: string]: number;
33
33
  } | undefined;
34
- locked?: boolean | undefined;
35
34
  filters?: Filter[] | undefined;
36
35
  }, (s1: {
37
36
  sender: string;
@@ -46,7 +45,6 @@ export declare const DashboardSelectors: {
46
45
  refreshRates?: {
47
46
  [key: string]: number;
48
47
  } | undefined;
49
- locked?: boolean | undefined;
50
48
  filters?: Filter[] | undefined;
51
49
  }>;
52
50
  manifestDatasources: MemoizedSelector<object, {
@@ -57,7 +55,6 @@ export declare const DashboardSelectors: {
57
55
  refreshRates?: {
58
56
  [key: string]: number;
59
57
  } | undefined;
60
- locked?: boolean | undefined;
61
58
  filters?: Filter[] | undefined;
62
59
  }) => {
63
60
  datasetId: string;
@@ -70,7 +67,6 @@ export declare const DashboardSelectors: {
70
67
  refreshRates?: {
71
68
  [key: string]: number;
72
69
  } | undefined;
73
- locked?: boolean | undefined;
74
70
  filters?: Filter[] | undefined;
75
71
  }) => {
76
72
  [key: string]: number;
@@ -80,7 +76,6 @@ export declare const DashboardSelectors: {
80
76
  refreshRates?: {
81
77
  [key: string]: number;
82
78
  } | undefined;
83
- locked?: boolean | undefined;
84
79
  filters?: Filter[] | undefined;
85
80
  }, s2: number) => DashboardManifest>;
86
81
  widgetManifest: (index: number) => MemoizedSelector<DashboardManifest, WidgetManifest, import("@ngrx/store").DefaultProjectorFn<WidgetManifest>>;
@@ -150,7 +145,6 @@ export declare const DashboardSelectors: {
150
145
  refreshRates?: {
151
146
  [key: string]: number;
152
147
  } | undefined;
153
- locked?: boolean | undefined;
154
148
  filters?: Filter[] | undefined;
155
149
  }) => {
156
150
  [key: string]: {
@@ -270,7 +264,6 @@ export declare const DashboardSelectors: {
270
264
  refreshRates?: {
271
265
  [key: string]: number;
272
266
  } | undefined;
273
- locked?: boolean | undefined;
274
267
  filters?: Filter[] | undefined;
275
268
  }, (s1: {
276
269
  sender: string;
@@ -285,7 +278,6 @@ export declare const DashboardSelectors: {
285
278
  refreshRates?: {
286
279
  [key: string]: number;
287
280
  } | undefined;
288
- locked?: boolean | undefined;
289
281
  filters?: Filter[] | undefined;
290
282
  }>;
291
283
  loading: MemoizedSelector<object, boolean, (s1: {
@@ -335,7 +327,6 @@ export declare const DashboardSelectors: {
335
327
  refreshRates?: {
336
328
  [key: string]: number;
337
329
  } | undefined;
338
- locked?: boolean | undefined;
339
330
  filters?: Filter[] | undefined;
340
331
  }) => boolean>;
341
332
  isCurrentPresentationOwner: MemoizedSelector<object, boolean, (s1: {