@provoly/dashboard 0.22.2 → 0.22.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 (50) hide show
  1. package/assets/svgs/contract-left.svg +1 -0
  2. package/assets/svgs/expand-right.svg +1 -0
  3. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +1 -1
  4. package/esm2022/filters/autocomplete/autocomplete.component.mjs +6 -4
  5. package/esm2022/lib/core/components/select/select-a11y.service.mjs +7 -5
  6. package/esm2022/lib/core/components/select/select.component.mjs +7 -7
  7. package/esm2022/lib/core/model/widget-aggregated-chart-manifest.interface.mjs +1 -1
  8. package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +5 -2
  9. package/esm2022/lib/dashboard/components/dashboard.component.mjs +32 -6
  10. package/esm2022/lib/dashboard/components/solve-collisions.function.mjs +14 -23
  11. package/esm2022/lib/dashboard/components/widgets/header/widget-header.component.mjs +36 -28
  12. package/esm2022/lib/dashboard/components/widgets/widget-filler/widget-filler.component.mjs +28 -3
  13. package/esm2022/lib/dashboard/resultset-utils.mjs +3 -3
  14. package/esm2022/lib/dashboard/store/dashboard.effects.mjs +2 -2
  15. package/esm2022/lib/dashboard/store/title.service.mjs +2 -2
  16. package/esm2022/toolbox/components/select-grid-layout/select-grid-layout.component.mjs +3 -3
  17. package/esm2022/toolbox/components/share/share.component.mjs +2 -2
  18. package/esm2022/toolbox/components/toolbox.component.mjs +10 -5
  19. package/esm2022/toolbox/toolbox.model.mjs +23 -12
  20. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +17 -7
  21. package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +2 -1
  22. package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +2 -1
  23. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +2 -2
  24. package/fesm2022/provoly-dashboard-dataset.mjs +1 -1
  25. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  26. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +5 -3
  27. package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
  28. package/fesm2022/provoly-dashboard-toolbox.mjs +34 -18
  29. package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
  30. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +18 -6
  31. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  32. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -1
  33. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  34. package/fesm2022/provoly-dashboard.mjs +119 -66
  35. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  36. package/filters/autocomplete/autocomplete.component.d.ts +2 -1
  37. package/lib/core/components/select/select-a11y.service.d.ts +1 -1
  38. package/lib/core/components/select/select.component.d.ts +1 -1
  39. package/lib/core/model/widget-aggregated-chart-manifest.interface.d.ts +1 -0
  40. package/lib/dashboard/components/dashboard.component.d.ts +4 -1
  41. package/lib/dashboard/components/widgets/header/widget-header.component.d.ts +2 -2
  42. package/lib/dashboard/components/widgets/widget-filler/widget-filler.component.d.ts +1 -0
  43. package/package.json +49 -49
  44. package/styles/components/_o-dashboard.scss +25 -0
  45. package/styles/components/_o-modal.scss +6 -0
  46. package/toolbox/components/toolbox.component.d.ts +1 -1
  47. package/toolbox/toolbox.model.d.ts +1 -0
  48. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +2 -0
  49. package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +1 -0
  50. package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +1 -0
@@ -1,13 +1,14 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { Store } from '@ngrx/store';
3
3
  import { BaseFilterComponent, SearchService } from '@provoly/dashboard';
4
- import { BehaviorSubject, Observable } from 'rxjs';
4
+ import { BehaviorSubject, Observable, Subject } from 'rxjs';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class AutocompleteComponent extends BaseFilterComponent implements OnInit, OnDestroy {
7
7
  private searchService;
8
8
  search$: BehaviorSubject<string>;
9
9
  autocomplete$?: Observable<string[]>;
10
10
  loader: boolean;
11
+ inhibateInitCall$: Subject<void>;
11
12
  constructor(store: Store, searchService: SearchService);
12
13
  ngOnInit(): void;
13
14
  setFilter(value: string): void;
@@ -7,5 +7,5 @@ export declare class SelectA11yService {
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;
10
- focusInitialSelection(optionsModalRef?: EmbeddedViewRef<any>): void;
10
+ focusInitialSelection(autocomplete: boolean, optionsModalRef?: EmbeddedViewRef<any>): void;
11
11
  }
@@ -63,7 +63,7 @@ export declare class PrySelectComponent extends SubscriptionnerDirective impleme
63
63
  clear($event: Event, item: any): void;
64
64
  clearAll($event: Event): void;
65
65
  search($event: string): void;
66
- select($event: Event, item: any, index: number, forceClose?: boolean): void;
66
+ select($event: Event, item: any, index: number): void;
67
67
  toggle(force?: boolean): void;
68
68
  handleClick(): void;
69
69
  toggleFocus(): void;
@@ -61,6 +61,7 @@ export interface ChartAggregatedWidgetOptions {
61
61
  stacked?: boolean;
62
62
  legend?: boolean;
63
63
  sort?: Sort;
64
+ limitItems?: number;
64
65
  };
65
66
  additionalSpec?: any;
66
67
  circleColorScheme?: string;
@@ -30,8 +30,10 @@ export declare class DashboardComponent extends SubscriptionnerDirective impleme
30
30
  instanciators?: QueryList<WidgetInstanciatorComponent>;
31
31
  dataFetching$: Observable<string[]>;
32
32
  params: DashboardCellParams;
33
+ forceModeEdition$: BehaviorSubject<boolean | undefined>;
33
34
  get widgetsInstances(): any[];
34
35
  set staticDashboard(window: DashboardManifest);
36
+ set forceModeEdition(mode: boolean);
35
37
  CloseOnDragOut: boolean;
36
38
  displayOptions?: DisplayOptions;
37
39
  noBackground: boolean;
@@ -101,6 +103,7 @@ export declare class DashboardComponent extends SubscriptionnerDirective impleme
101
103
  confirmRemove(): void;
102
104
  cancelRemoveConfirm(): void;
103
105
  trackWidgets(index: number, widgetManifest: WidgetManifest): string;
106
+ changeSize(direction: string, offset: number): void;
104
107
  static ɵfac: i0.ɵɵFactoryDeclaration<DashboardComponent, never>;
105
- static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "pry-dashboard", never, { "staticDashboard": { "alias": "staticDashboard"; "required": false; }; "CloseOnDragOut": { "alias": "CloseOnDragOut"; "required": false; }; "displayOptions": { "alias": "displayOptions"; "required": false; }; "noBackground": { "alias": "noBackground"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; }, { "rowHeight": "rowHeight"; "rows": "rows"; }, never, never, false, never>;
108
+ static ɵcmp: i0.ɵɵComponentDeclaration<DashboardComponent, "pry-dashboard", never, { "staticDashboard": { "alias": "staticDashboard"; "required": false; }; "forceModeEdition": { "alias": "forceModeEdition"; "required": false; }; "CloseOnDragOut": { "alias": "CloseOnDragOut"; "required": false; }; "displayOptions": { "alias": "displayOptions"; "required": false; }; "noBackground": { "alias": "noBackground"; "required": false; }; "breakpoint": { "alias": "breakpoint"; "required": false; }; }, { "rowHeight": "rowHeight"; "rows": "rows"; }, never, never, false, never>;
106
109
  }
@@ -42,6 +42,7 @@ export declare class PryWidgetHeaderComponent extends SubscriptionnerDirective i
42
42
  selectedItem?: Element | null;
43
43
  usedDatasources$: Observable<DataSource[]>;
44
44
  openSub?: Subscription;
45
+ targetManifest?: DashboardManifest;
45
46
  set manifest(manifest: WidgetManifest | null);
46
47
  set openData$(open$: Observable<void> | Subject<void>);
47
48
  additionalOptions: HeaderAction[] | null;
@@ -92,14 +93,13 @@ export declare class PryWidgetHeaderComponent extends SubscriptionnerDirective i
92
93
  executeAction(options: HeaderAction): void;
93
94
  isActionDisabled(option: HeaderAction): boolean;
94
95
  toggleChangeSpot(): void;
95
- moveToPlace(place: WidgetManifest): void;
96
96
  focusCrossElement(): void;
97
97
  focusValidation(): void;
98
98
  focusInputCatalog(): void;
99
99
  disableValidation(): void;
100
100
  datasourcesChanged($event: DataSource[]): void;
101
101
  isGeo(ds: NamedQuery | Dataset): boolean;
102
- protected readonly DEFAULT_ICON_URL = "/assets/svgs/default.svg";
102
+ placesManifest(): void;
103
103
  ngOnDestroy(): void;
104
104
  static ɵfac: i0.ɵɵFactoryDeclaration<PryWidgetHeaderComponent, never>;
105
105
  static ɵcmp: i0.ɵɵComponentDeclaration<PryWidgetHeaderComponent, "pry-widget-header", never, { "manifest": { "alias": "manifest"; "required": false; }; "openData$": { "alias": "openData$"; "required": false; }; "additionalOptions": { "alias": "additionalOptions"; "required": false; }; "headerOptions": { "alias": "headerOptions"; "required": false; }; "displayCount": { "alias": "displayCount"; "required": false; }; "datasourceIds": { "alias": "datasourceIds"; "required": false; }; "widgetIndex": { "alias": "widgetIndex"; "required": false; }; }, { "manifestModified": "manifestModified"; }, never, ["*"], false, never>;
@@ -5,6 +5,7 @@ import * as i0 from "@angular/core";
5
5
  export declare class WidgetFillerComponent extends BaseWidgetComponent {
6
6
  constructor(store: Store<any>, el: ElementRef);
7
7
  get index(): any;
8
+ moveToPlace(): void;
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetFillerComponent, never>;
9
10
  static ɵcmp: i0.ɵɵComponentDeclaration<WidgetFillerComponent, "pry-widget-filler", never, {}, {}, never, never, false, never>;
10
11
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "0.22.2",
3
+ "version": "0.22.4",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "14.x || 15.x || 16.x",
@@ -108,18 +108,18 @@
108
108
  "esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
109
109
  "default": "./fesm2022/provoly-dashboard-pipeline.mjs"
110
110
  },
111
- "./presentation": {
112
- "types": "./presentation/index.d.ts",
113
- "esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
114
- "esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
115
- "default": "./fesm2022/provoly-dashboard-presentation.mjs"
116
- },
117
111
  "./restitution": {
118
112
  "types": "./restitution/index.d.ts",
119
113
  "esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
120
114
  "esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
121
115
  "default": "./fesm2022/provoly-dashboard-restitution.mjs"
122
116
  },
117
+ "./presentation": {
118
+ "types": "./presentation/index.d.ts",
119
+ "esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
120
+ "esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
121
+ "default": "./fesm2022/provoly-dashboard-presentation.mjs"
122
+ },
123
123
  "./search": {
124
124
  "types": "./search/index.d.ts",
125
125
  "esm2022": "./esm2022/search/provoly-dashboard-search.mjs",
@@ -132,36 +132,6 @@
132
132
  "esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
133
133
  "default": "./fesm2022/provoly-dashboard-toolbox.mjs"
134
134
  },
135
- "./filters/autocomplete": {
136
- "types": "./filters/autocomplete/index.d.ts",
137
- "esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
138
- "esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
139
- "default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
140
- },
141
- "./filters/date": {
142
- "types": "./filters/date/index.d.ts",
143
- "esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
144
- "esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
145
- "default": "./fesm2022/provoly-dashboard-filters-date.mjs"
146
- },
147
- "./filters/list": {
148
- "types": "./filters/list/index.d.ts",
149
- "esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
150
- "esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
151
- "default": "./fesm2022/provoly-dashboard-filters-list.mjs"
152
- },
153
- "./filters/number": {
154
- "types": "./filters/number/index.d.ts",
155
- "esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
156
- "esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
157
- "default": "./fesm2022/provoly-dashboard-filters-number.mjs"
158
- },
159
- "./filters/text": {
160
- "types": "./filters/text/index.d.ts",
161
- "esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
162
- "esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
163
- "default": "./fesm2022/provoly-dashboard-filters-text.mjs"
164
- },
165
135
  "./components/card": {
166
136
  "types": "./components/card/index.d.ts",
167
137
  "esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
@@ -216,6 +186,36 @@
216
186
  "esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
217
187
  "default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
218
188
  },
189
+ "./filters/autocomplete": {
190
+ "types": "./filters/autocomplete/index.d.ts",
191
+ "esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
192
+ "esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
193
+ "default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
194
+ },
195
+ "./filters/date": {
196
+ "types": "./filters/date/index.d.ts",
197
+ "esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
198
+ "esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
199
+ "default": "./fesm2022/provoly-dashboard-filters-date.mjs"
200
+ },
201
+ "./filters/list": {
202
+ "types": "./filters/list/index.d.ts",
203
+ "esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
204
+ "esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
205
+ "default": "./fesm2022/provoly-dashboard-filters-list.mjs"
206
+ },
207
+ "./filters/number": {
208
+ "types": "./filters/number/index.d.ts",
209
+ "esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
210
+ "esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
211
+ "default": "./fesm2022/provoly-dashboard-filters-number.mjs"
212
+ },
213
+ "./filters/text": {
214
+ "types": "./filters/text/index.d.ts",
215
+ "esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
216
+ "esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
217
+ "default": "./fesm2022/provoly-dashboard-filters-text.mjs"
218
+ },
219
219
  "./pipeline-components/filter": {
220
220
  "types": "./pipeline-components/filter/index.d.ts",
221
221
  "esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
@@ -234,18 +234,18 @@
234
234
  "esm": "./esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs",
235
235
  "default": "./fesm2022/provoly-dashboard-pipeline-components-noop.mjs"
236
236
  },
237
- "./pipeline-components/subgraph": {
238
- "types": "./pipeline-components/subgraph/index.d.ts",
239
- "esm2022": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
240
- "esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
241
- "default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
242
- },
243
237
  "./pipeline-components/output-dataset": {
244
238
  "types": "./pipeline-components/output-dataset/index.d.ts",
245
239
  "esm2022": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
246
240
  "esm": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
247
241
  "default": "./fesm2022/provoly-dashboard-pipeline-components-output-dataset.mjs"
248
242
  },
243
+ "./pipeline-components/subgraph": {
244
+ "types": "./pipeline-components/subgraph/index.d.ts",
245
+ "esm2022": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
246
+ "esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
247
+ "default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
248
+ },
249
249
  "./tooltips/attribute": {
250
250
  "types": "./tooltips/attribute/index.d.ts",
251
251
  "esm2022": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
@@ -300,18 +300,18 @@
300
300
  "esm": "./esm2022/widgets/widget-map/provoly-dashboard-widgets-widget-map.mjs",
301
301
  "default": "./fesm2022/provoly-dashboard-widgets-widget-map.mjs"
302
302
  },
303
- "./widgets/widget-table": {
304
- "types": "./widgets/widget-table/index.d.ts",
305
- "esm2022": "./esm2022/widgets/widget-table/provoly-dashboard-widgets-widget-table.mjs",
306
- "esm": "./esm2022/widgets/widget-table/provoly-dashboard-widgets-widget-table.mjs",
307
- "default": "./fesm2022/provoly-dashboard-widgets-widget-table.mjs"
308
- },
309
303
  "./widgets/widget-template": {
310
304
  "types": "./widgets/widget-template/index.d.ts",
311
305
  "esm2022": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
312
306
  "esm": "./esm2022/widgets/widget-template/provoly-dashboard-widgets-widget-template.mjs",
313
307
  "default": "./fesm2022/provoly-dashboard-widgets-widget-template.mjs"
314
308
  },
309
+ "./widgets/widget-table": {
310
+ "types": "./widgets/widget-table/index.d.ts",
311
+ "esm2022": "./esm2022/widgets/widget-table/provoly-dashboard-widgets-widget-table.mjs",
312
+ "esm": "./esm2022/widgets/widget-table/provoly-dashboard-widgets-widget-table.mjs",
313
+ "default": "./fesm2022/provoly-dashboard-widgets-widget-table.mjs"
314
+ },
315
315
  "./widgets/widget-tile": {
316
316
  "types": "./widgets/widget-tile/index.d.ts",
317
317
  "esm2022": "./esm2022/widgets/widget-tile/provoly-dashboard-widgets-widget-tile.mjs",
@@ -8,6 +8,26 @@
8
8
  height: 100%;
9
9
  }
10
10
 
11
+ .o-dashboard-add {
12
+ position: absolute;
13
+ display: flex;
14
+ justify-content: space-evenly;
15
+ z-index: 2;
16
+
17
+ &.-cols {
18
+ transform: translateY(-50%);
19
+ }
20
+
21
+ &.-rows {
22
+ flex-direction: column;
23
+ transform: translateX(-50%);
24
+
25
+ pry-icon span {
26
+ transform: rotate(90deg);
27
+ }
28
+ }
29
+ }
30
+
11
31
  .o-dashboard-widget {
12
32
  position: relative;
13
33
  z-index: 1;
@@ -148,6 +168,11 @@
148
168
  }
149
169
  }
150
170
 
171
+ .filler-backdrop {
172
+ width: 100%;
173
+ height: 100%;
174
+ }
175
+
151
176
  .a-indicator-block {
152
177
  position: relative;
153
178
  height: 100%;
@@ -38,6 +38,12 @@
38
38
  flex-direction: column;
39
39
  flex: 1 auto;
40
40
 
41
+ &.-place {
42
+ pry-dashboard {
43
+ height: toRem(200px);
44
+ }
45
+ }
46
+
41
47
  &__top {
42
48
  display: flex;
43
49
  margin-bottom: toRem(25);
@@ -12,7 +12,6 @@ export declare class ToolboxComponent implements OnInit {
12
12
  order: number;
13
13
  }[]>;
14
14
  displayLabels: boolean;
15
- hasInitialPresentation$: Observable<boolean>;
16
15
  isManualMode$: Observable<boolean>;
17
16
  allActions$: Observable<ToolboxAction[]>;
18
17
  mainActions$: Observable<ToolboxAction[]>;
@@ -21,6 +20,7 @@ export declare class ToolboxComponent implements OnInit {
21
20
  isDropdownOpen: boolean;
22
21
  actionsAvailable$: Observable<DisplayOptions | undefined>;
23
22
  showEditToggle$: Observable<boolean>;
23
+ private presentation$;
24
24
  set actions(actions: ToolboxAction[]);
25
25
  set dropdownActions(dropdownActions: {
26
26
  name: string;
@@ -6,5 +6,6 @@ export interface ToolboxAction {
6
6
  component: Type<ToolboxActionComponent>;
7
7
  access: PryAccessCheck;
8
8
  visible: boolean;
9
+ needsOwner: boolean;
9
10
  }
10
11
  export declare const ACTIONS: ToolboxAction[];
@@ -74,6 +74,7 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
74
74
  noAggregationData$: Observable<boolean>;
75
75
  allowedClasses$: Observable<Class[]>;
76
76
  colors: any;
77
+ DEFAULT_ITEM_LIMIT: number;
77
78
  constructor(store: Store<any>, translateService: PryI18nService, el: ElementRef, aggregationService: PryAggregationService, schemeService: PrySchemeService);
78
79
  ngAfterViewInit(): void;
79
80
  translateToVegaType(type?: FieldType, name?: string): VegaType;
@@ -122,6 +123,7 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
122
123
  toggleSort($event: any): void;
123
124
  changeSortValue($event: 'key' | 'value'): void;
124
125
  changeSortDirection($event: 'asc' | 'desc'): void;
126
+ toggleLimitItems(): void;
125
127
  toImage(): Promise<string>;
126
128
  changeCircleColorScheme($event: any): void;
127
129
  changeBaseColor($event: any): void;
@@ -53,6 +53,7 @@ export declare const enTranslations: {
53
53
  dataLabel: string;
54
54
  origin: string;
55
55
  limit: string;
56
+ limitMaxNb: string;
56
57
  asc: string;
57
58
  desc: string;
58
59
  timeInterval: string;
@@ -52,6 +52,7 @@ export declare const frTranslations: {
52
52
  dataLabel: string;
53
53
  origin: string;
54
54
  limit: string;
55
+ limitMaxNb: string;
55
56
  asc: string;
56
57
  desc: string;
57
58
  timeInterval: string;