@provoly/dashboard 0.18.2 → 0.18.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 (96) hide show
  1. package/assets/svgs/clear_filter.svg +12 -0
  2. package/assets/svgs/refresh_data.svg +15 -0
  3. package/assets/svgs/refresh_filter.svg +13 -0
  4. package/assets/svgs/trash.svg +1 -0
  5. package/components/color-picker/color-picker.component.d.ts +58 -0
  6. package/components/color-picker/color-picker.module.d.ts +9 -0
  7. package/components/color-picker/index.d.ts +5 -0
  8. package/components/color-picker/public-api.d.ts +2 -0
  9. package/components/scheme-picker/index.d.ts +5 -0
  10. package/components/scheme-picker/public-api.d.ts +3 -0
  11. package/components/scheme-picker/scheme-picker.component.d.ts +34 -0
  12. package/components/scheme-picker/scheme-picker.module.d.ts +11 -0
  13. package/components/scheme-picker/scheme.service.d.ts +12 -0
  14. package/dataset/components/dataset-card/dataset-card.component.d.ts +11 -3
  15. package/dataset/i18n/en.translations.d.ts +1 -0
  16. package/dataset/i18n/fr.translations.d.ts +1 -0
  17. package/dataset/style/_o-pry-dataset-card.scss +16 -1
  18. package/dataset/style/_o-pry-dataset.scss +18 -3
  19. package/esm2022/admin/components/admin-dataset/shared/admin-form-dataset/admin-form-dataset.component.mjs +7 -5
  20. package/esm2022/components/color-picker/color-picker.component.mjs +314 -0
  21. package/esm2022/components/color-picker/color-picker.module.mjs +20 -0
  22. package/esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs +5 -0
  23. package/esm2022/components/color-picker/public-api.mjs +3 -0
  24. package/esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs +5 -0
  25. package/esm2022/components/scheme-picker/public-api.mjs +4 -0
  26. package/esm2022/components/scheme-picker/scheme-picker.component.mjs +104 -0
  27. package/esm2022/components/scheme-picker/scheme-picker.module.mjs +22 -0
  28. package/esm2022/components/scheme-picker/scheme.service.mjs +47 -0
  29. package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +26 -9
  30. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -3
  31. package/esm2022/dataset/components/dataset.component.mjs +3 -3
  32. package/esm2022/dataset/i18n/en.translations.mjs +2 -1
  33. package/esm2022/dataset/i18n/fr.translations.mjs +2 -1
  34. package/esm2022/dataset/style/css.component.mjs +2 -2
  35. package/esm2022/lib/core/i18n/en.translations.mjs +6 -2
  36. package/esm2022/lib/core/i18n/fr.translations.mjs +6 -2
  37. package/esm2022/lib/core/model/widget-aggregated-chart-manifest.interface.mjs +1 -1
  38. package/esm2022/lib/core/model/widget-chart-manifest.interface.mjs +2 -1
  39. package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +4 -1
  40. package/esm2022/lib/core/store/data-source/data-source.model.mjs +1 -1
  41. package/esm2022/lib/core/store/search/search.actions.mjs +3 -2
  42. package/esm2022/lib/core/store/search/search.reducer.mjs +6 -1
  43. package/esm2022/lib/dashboard/components/dashboard.component.mjs +16 -11
  44. package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
  45. package/esm2022/presentation/style/css.component.mjs +2 -2
  46. package/esm2022/restitution/components/restitution/restitution.component.mjs +11 -20
  47. package/esm2022/restitution/model/restitution.model.mjs +1 -1
  48. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +134 -26
  49. package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +19 -2
  50. package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +19 -2
  51. package/esm2022/widgets/widget-aggregated-chart/widget-aggregated-chart.module.mjs +16 -5
  52. package/esm2022/widgets/widget-chart/i18n/en.translations.mjs +3 -2
  53. package/esm2022/widgets/widget-chart/i18n/fr.translations.mjs +3 -2
  54. package/esm2022/widgets/widget-map/component/widget-map.component.mjs +2 -2
  55. package/fesm2022/provoly-dashboard-admin.mjs +6 -4
  56. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  57. package/fesm2022/provoly-dashboard-components-color-picker.mjs +337 -0
  58. package/fesm2022/provoly-dashboard-components-color-picker.mjs.map +1 -0
  59. package/fesm2022/provoly-dashboard-components-scheme-picker.mjs +171 -0
  60. package/fesm2022/provoly-dashboard-components-scheme-picker.mjs.map +1 -0
  61. package/fesm2022/provoly-dashboard-dataset.mjs +29 -14
  62. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  63. package/fesm2022/provoly-dashboard-presentation.mjs +4 -4
  64. package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
  65. package/fesm2022/provoly-dashboard-restitution.mjs +10 -19
  66. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  67. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +183 -30
  68. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  69. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +4 -2
  70. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
  71. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -1
  72. package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
  73. package/fesm2022/provoly-dashboard.mjs +37 -13
  74. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  75. package/lib/core/i18n/en.translations.d.ts +4 -0
  76. package/lib/core/i18n/fr.translations.d.ts +4 -0
  77. package/lib/core/model/widget-aggregated-chart-manifest.interface.d.ts +7 -0
  78. package/lib/core/model/widget-chart-manifest.interface.d.ts +1 -0
  79. package/lib/core/store/data-source/data-source.model.d.ts +0 -2
  80. package/lib/core/store/search/search.actions.d.ts +7 -0
  81. package/lib/dashboard/components/dashboard.component.d.ts +2 -0
  82. package/package.json +19 -7
  83. package/presentation/style/_o-pry-new-presentation.scss +2 -1
  84. package/restitution/components/restitution/restitution.component.d.ts +0 -2
  85. package/restitution/model/restitution.model.d.ts +1 -1
  86. package/styles/components/_a-color-picker.scss +62 -0
  87. package/styles/components/_a-page-loader.scss +14 -0
  88. package/styles/components/_m-color-scheme.scss +20 -0
  89. package/styles/main.scss +3 -0
  90. package/styles-theme/components-theme/_o-pry-admin-classes-customize.theme.scss +4 -0
  91. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +17 -5
  92. package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +17 -0
  93. package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +17 -0
  94. package/widgets/widget-aggregated-chart/widget-aggregated-chart.module.d.ts +3 -1
  95. package/widgets/widget-chart/i18n/en.translations.d.ts +1 -0
  96. package/widgets/widget-chart/i18n/fr.translations.d.ts +1 -0
@@ -51,6 +51,10 @@ export declare const enTranslations: {
51
51
  modalTitle: string;
52
52
  itemId: string;
53
53
  class: string;
54
+ colorScheme: string;
55
+ custom: string;
56
+ addColor: string;
57
+ removeColor: string;
54
58
  };
55
59
  view: {
56
60
  name: string;
@@ -51,6 +51,10 @@ export declare const frTranslations: {
51
51
  modalTitle: string;
52
52
  itemId: string;
53
53
  class: string;
54
+ colorScheme: string;
55
+ custom: string;
56
+ addColor: string;
57
+ removeColor: string;
54
58
  };
55
59
  view: {
56
60
  name: string;
@@ -32,6 +32,10 @@ export interface TimeLimit {
32
32
  interval: 'second' | 'minute' | 'hour' | 'day' | 'week' | 'quarter' | 'year';
33
33
  isTimeLimit: true;
34
34
  }
35
+ export interface Sort {
36
+ attribute: string;
37
+ direction: 'asc' | 'desc';
38
+ }
35
39
  export interface ChartAggregatedWidgetOptions {
36
40
  abscissa: {
37
41
  label: string;
@@ -56,6 +60,9 @@ export interface ChartAggregatedWidgetOptions {
56
60
  type: GraphType;
57
61
  stacked?: boolean;
58
62
  legend?: boolean;
63
+ sort?: Sort;
59
64
  };
60
65
  additionalSpec?: any;
66
+ circleColorScheme?: string;
67
+ baseColor?: string;
61
68
  }
@@ -55,6 +55,7 @@ export declare enum VegaType {
55
55
  NOMINAL = "nominal"
56
56
  }
57
57
  export declare enum VegaColorType {
58
+ PROVOLY = "Provoly",
58
59
  ACCENT = "accent",
59
60
  SET2 = "set2",
60
61
  DARK2 = "dark2",
@@ -22,10 +22,8 @@ export interface DescriptionQuery {
22
22
  export interface Dataset extends DescriptionQuery {
23
23
  sourceType: 'dataset';
24
24
  id: string;
25
- name: string;
26
25
  oClass: string;
27
26
  type: PryDatasetType;
28
- metadata: MetadataValue[];
29
27
  }
30
28
  export interface DatasetVersion {
31
29
  id: string;
@@ -30,4 +30,11 @@ export declare const SearchActions: {
30
30
  error: any;
31
31
  id?: string | undefined;
32
32
  } & import("@ngrx/store/src/models").TypedAction<"[Search Api] (bus) Search Failure">>;
33
+ setSearchLoading: import("@ngrx/store").ActionCreator<"[Search Api] (bus) set Search loading datasource status", (props: {
34
+ datasources: string[];
35
+ start: boolean;
36
+ }) => {
37
+ datasources: string[];
38
+ start: boolean;
39
+ } & import("@ngrx/store/src/models").TypedAction<"[Search Api] (bus) set Search loading datasource status">>;
33
40
  };
@@ -28,6 +28,8 @@ export declare class DashboardComponent extends SubscriptionnerDirective impleme
28
28
  nonFillerWidgets$: Observable<number>;
29
29
  loading$: Observable<boolean>;
30
30
  instanciators?: QueryList<WidgetInstanciatorComponent>;
31
+ dataFetching$: Observable<string[]>;
32
+ params: DashboardCellParams;
31
33
  get widgetsInstances(): any[];
32
34
  set staticDashboard(window: DashboardManifest);
33
35
  CloseOnDragOut: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "0.18.2",
3
+ "version": "0.18.4",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@angular/cdk": "14.x || 15.x || 16.x",
@@ -85,18 +85,18 @@
85
85
  "esm": "./esm2022/admin/provoly-dashboard-admin.mjs",
86
86
  "default": "./fesm2022/provoly-dashboard-admin.mjs"
87
87
  },
88
- "./import": {
89
- "types": "./import/index.d.ts",
90
- "esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
91
- "esm": "./esm2022/import/provoly-dashboard-import.mjs",
92
- "default": "./fesm2022/provoly-dashboard-import.mjs"
93
- },
94
88
  "./dataset": {
95
89
  "types": "./dataset/index.d.ts",
96
90
  "esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
97
91
  "esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
98
92
  "default": "./fesm2022/provoly-dashboard-dataset.mjs"
99
93
  },
94
+ "./import": {
95
+ "types": "./import/index.d.ts",
96
+ "esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
97
+ "esm": "./esm2022/import/provoly-dashboard-import.mjs",
98
+ "default": "./fesm2022/provoly-dashboard-import.mjs"
99
+ },
100
100
  "./notification": {
101
101
  "types": "./notification/index.d.ts",
102
102
  "esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
@@ -175,6 +175,12 @@
175
175
  "esm": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
176
176
  "default": "./fesm2022/provoly-dashboard-components-checkbox.mjs"
177
177
  },
178
+ "./components/color-picker": {
179
+ "types": "./components/color-picker/index.d.ts",
180
+ "esm2022": "./esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs",
181
+ "esm": "./esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs",
182
+ "default": "./fesm2022/provoly-dashboard-components-color-picker.mjs"
183
+ },
178
184
  "./components/expand-panel": {
179
185
  "types": "./components/expand-panel/index.d.ts",
180
186
  "esm2022": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
@@ -193,6 +199,12 @@
193
199
  "esm": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
194
200
  "default": "./fesm2022/provoly-dashboard-components-metadata-editor.mjs"
195
201
  },
202
+ "./components/scheme-picker": {
203
+ "types": "./components/scheme-picker/index.d.ts",
204
+ "esm2022": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
205
+ "esm": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
206
+ "default": "./fesm2022/provoly-dashboard-components-scheme-picker.mjs"
207
+ },
196
208
  "./components/sinceDate": {
197
209
  "types": "./components/sinceDate/index.d.ts",
198
210
  "esm2022": "./esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs",
@@ -5,7 +5,8 @@ pry-add-edit-presentation {
5
5
  height: 100%;
6
6
  }
7
7
 
8
- .o-manifest-layout__content {
8
+ .o-manifest-layout__content--presentation {
9
+ width: 100%;
9
10
  display: flex;
10
11
  flex-direction: column;
11
12
  padding: 20px 20px;
@@ -41,8 +41,6 @@ export declare class PryRestitutionComponent extends SubscriptionnerDirective im
41
41
  cancel(stepper: PryStepperComponent): void;
42
42
  datasourcesChanged($event: DataSource[]): void;
43
43
  submit(stepper: PryStepperComponent): void;
44
- isSubmitDisabled(): boolean;
45
- noDataSourceSelected(): boolean;
46
44
  goNext(stepper: PryStepperComponent): void;
47
45
  prev(stepper: PryStepperComponent): void;
48
46
  updateManifest($event: {
@@ -1,6 +1,6 @@
1
1
  export interface RestitutionForm {
2
2
  selectedWidget: string;
3
- selectedDataSource: Array<string>;
3
+ selectedDataSources: string[];
4
4
  title: string;
5
5
  description: string;
6
6
  image?: string;
@@ -0,0 +1,62 @@
1
+ @use '../abstracts' as *;
2
+
3
+ .a-color-picker {
4
+ width: toRem(30);
5
+ height: toRem(30);
6
+ border-radius: toRem(15);
7
+ position: relative;
8
+
9
+ &__modal {
10
+ position: absolute;
11
+ bottom: 0;
12
+ left: 100%;
13
+ box-shadow: 0px 4px 4px rgba(17, 59, 110, 0.24);
14
+ z-index: 100;
15
+
16
+ &__backdrop {
17
+ display: grid;
18
+ grid-template-areas: "selector bar"
19
+ "input input";
20
+
21
+ &:before {
22
+ content: '';
23
+ position: fixed;
24
+ top: 0;
25
+ left: 0;
26
+ right: 0;
27
+ bottom: 0;
28
+ background-color: rgba(17, 59, 110, 0.12);
29
+ }
30
+ }
31
+
32
+ &__selector {
33
+ grid-area: selector;
34
+ z-index: 1;
35
+ width: 300px;
36
+ height: 300px;
37
+ }
38
+
39
+ &__bar {
40
+ grid-area: bar;
41
+ z-index: 1;
42
+ width: 40px;
43
+ height: 300px;
44
+ }
45
+
46
+ &__input {
47
+ grid-area: input;
48
+ z-index: 1;
49
+ display: flex;
50
+ align-items: center;
51
+ justify-items: center;
52
+ background-color: white;
53
+
54
+ input {
55
+ border: none;
56
+ width: 100%;
57
+ text-align: center;
58
+ outline: none;
59
+ }
60
+ }
61
+ }
62
+ }
@@ -0,0 +1,14 @@
1
+ .a-page-loader {
2
+ display: flex;
3
+ flex-direction: column;
4
+ align-items: center;
5
+ justify-content: center;
6
+
7
+ position: absolute;
8
+
9
+ z-index: 10000;
10
+
11
+ &.backdrop {
12
+ background-color: rgba(0, 0, 0, 0.5);
13
+ }
14
+ }
@@ -0,0 +1,20 @@
1
+ @use '../abstracts' as *;
2
+
3
+ .m-color-scheme {
4
+ &__display {
5
+ display: flex;
6
+ flex-direction: row;
7
+ flex-wrap: wrap;
8
+ gap: toRem(10);
9
+ padding: toRem(10);
10
+ align-items: center;
11
+
12
+ &__item {
13
+ display: flex;
14
+ flex-direction: column;
15
+ align-items: center;
16
+ justify-content: center;
17
+ gap: toRem(5);
18
+ }
19
+ }
20
+ }
package/styles/main.scss CHANGED
@@ -18,6 +18,8 @@
18
18
  @use 'components/a-toggle' as *;
19
19
  @use 'components/a-tooltip' as *;
20
20
  @use 'components/a-chips' as *;
21
+ @use 'components/a-color-picker' as *;
22
+ @use 'components/a-page-loader' as *;
21
23
 
22
24
  /* Atoms lib */
23
25
  @use 'components/a-pry-select' as *;
@@ -43,6 +45,7 @@
43
45
  @use 'components/m-toolbox' as *;
44
46
  @use 'components/m-tooltip' as *;
45
47
  @use 'components/m-pry-overlay' as *;
48
+ @use 'components/m-color-scheme' as *;
46
49
 
47
50
  /* Organisms */
48
51
  @use 'components/o-accordion' as *;
@@ -16,4 +16,8 @@
16
16
  .a-chips {
17
17
  color: themed($theme-map, 'color', 'accent', 'contrast', 600);
18
18
  background-color: themed($theme-map, 'color', 'accent', 600);
19
+
20
+ &.-not-found {
21
+ background-color: themed($theme-map, 'color', 'accent', 100);
22
+ }
19
23
  }
@@ -4,10 +4,12 @@ import { Attribute, ChartAggregatedWidgetOptions, Class, DataWidgetComponent, Fi
4
4
  import { BehaviorSubject, Observable, Subject } from 'rxjs';
5
5
  import { View } from 'vega';
6
6
  import { TopLevelSpec } from 'vega-lite';
7
+ import { PrySchemeService } from '@provoly/dashboard/components/scheme-picker';
7
8
  import * as i0 from "@angular/core";
8
9
  export declare class WidgetAggregatedChartComponent extends DataWidgetComponent implements AfterViewInit {
9
10
  private translateService;
10
11
  private aggregationService;
12
+ private schemeService;
11
13
  vega: ElementRef;
12
14
  options$: Observable<ChartAggregatedWidgetOptions>;
13
15
  optionsCopy$: BehaviorSubject<ChartAggregatedWidgetOptions | null>;
@@ -56,15 +58,21 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
56
58
  triggerOrdinateAttributes$: Subject<void>;
57
59
  copyAbscissaField?: Field;
58
60
  copyOrdinateField?: Field;
59
- schemes: {
60
- id: string;
61
- }[];
62
61
  noData$: Observable<boolean>;
63
62
  sortActive?: string | undefined;
64
63
  sortDirection?: string | undefined;
64
+ sortAttributes$: Observable<{
65
+ id?: string;
66
+ label?: string;
67
+ }[]>;
68
+ sortDirections: {
69
+ value: string;
70
+ label: string;
71
+ }[];
65
72
  noAggregationData$: Observable<boolean>;
66
73
  allowedClasses$: Observable<Class[]>;
67
- constructor(store: Store<any>, translateService: PryI18nService, el: ElementRef, aggregationService: PryAggregationService);
74
+ colors: any;
75
+ constructor(store: Store<any>, translateService: PryI18nService, el: ElementRef, aggregationService: PryAggregationService, schemeService: PrySchemeService);
68
76
  ngAfterViewInit(): void;
69
77
  translateToVegaType(type?: FieldType, name?: string): VegaType;
70
78
  static minTick(type: FieldType): {
@@ -99,9 +107,13 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
99
107
  } | {
100
108
  tickCount?: undefined;
101
109
  };
102
- scheme(): any;
103
110
  toggleStacked($event: any): void;
111
+ toggleSort($event: any): void;
112
+ changeSortAttribute($event: any): void;
113
+ changeSortDirection($event: any): void;
104
114
  toImage(): Promise<string>;
115
+ changeCircleColorScheme($event: any): void;
116
+ changeBaseColor($event: any): void;
105
117
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetAggregatedChartComponent, never>;
106
118
  static ɵcmp: i0.ɵɵComponentDeclaration<WidgetAggregatedChartComponent, "pry-widget-aggregated-chart", never, {}, {}, never, never, false, never>;
107
119
  }
@@ -83,6 +83,7 @@ export declare const enTranslations: {
83
83
  category20b: string;
84
84
  category20c: string;
85
85
  'KO/W/OK': string;
86
+ Provoly: string;
86
87
  };
87
88
  time: {
88
89
  second: string;
@@ -94,6 +95,22 @@ export declare const enTranslations: {
94
95
  quarter: string;
95
96
  year: string;
96
97
  };
98
+ color: string;
99
+ sort: {
100
+ title: string;
101
+ asc: {
102
+ quantitative: string;
103
+ nominal: string;
104
+ ordinal: string;
105
+ temporal: string;
106
+ };
107
+ desc: {
108
+ quantitative: string;
109
+ nominal: string;
110
+ ordinal: string;
111
+ temporal: string;
112
+ };
113
+ };
97
114
  };
98
115
  };
99
116
  message: {
@@ -82,6 +82,7 @@ export declare const frTranslations: {
82
82
  category20b: string;
83
83
  category20c: string;
84
84
  'KO/W/OK': string;
85
+ Provoly: string;
85
86
  };
86
87
  time: {
87
88
  second: string;
@@ -93,6 +94,22 @@ export declare const frTranslations: {
93
94
  quarter: string;
94
95
  year: string;
95
96
  };
97
+ color: string;
98
+ sort: {
99
+ title: string;
100
+ asc: {
101
+ quantitative: string;
102
+ ordinal: string;
103
+ nominal: string;
104
+ temporal: string;
105
+ };
106
+ desc: {
107
+ quantitative: string;
108
+ ordinal: string;
109
+ nominal: string;
110
+ temporal: string;
111
+ };
112
+ };
96
113
  };
97
114
  };
98
115
  message: {
@@ -8,11 +8,13 @@ import * as i4 from "@angular/forms";
8
8
  import * as i5 from "@angular/cdk/overlay";
9
9
  import * as i6 from "@provoly/dashboard";
10
10
  import * as i7 from "@provoly/dashboard/components/checkbox";
11
+ import * as i8 from "@provoly/dashboard/components/color-picker";
12
+ import * as i9 from "@provoly/dashboard/components/scheme-picker";
11
13
  export declare class WidgetAggregatedChartModule extends BaseWidgetModule {
12
14
  private pryTranslateService;
13
15
  constructor(pryTranslateService: PryI18nService);
14
16
  getComponent(): Type<BaseWidgetComponent>;
15
17
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetAggregatedChartModule, never>;
16
- static ɵmod: i0.ɵɵNgModuleDeclaration<WidgetAggregatedChartModule, [typeof i1.WidgetAggregatedChartComponent, typeof i2.PryWidgetAggregatedChartCssComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.OverlayModule, typeof i6.PryCoreModule, typeof i6.PryDashboardModule, typeof i6.PrySelectModule, typeof i6.PryIconModule, typeof i7.PryCheckboxModule, typeof i6.PryToggleModule, typeof i6.PryEditInputModule, typeof i6.PryI18nModule, typeof i6.PryRangeModule, typeof i6.PrySortModule], [typeof i1.WidgetAggregatedChartComponent]>;
18
+ static ɵmod: i0.ɵɵNgModuleDeclaration<WidgetAggregatedChartModule, [typeof i1.WidgetAggregatedChartComponent, typeof i2.PryWidgetAggregatedChartCssComponent], [typeof i3.CommonModule, typeof i4.FormsModule, typeof i5.OverlayModule, typeof i6.PryCoreModule, typeof i6.PryDashboardModule, typeof i6.PrySelectModule, typeof i6.PryIconModule, typeof i7.PryCheckboxModule, typeof i6.PryToggleModule, typeof i6.PryEditInputModule, typeof i6.PryI18nModule, typeof i6.PryRangeModule, typeof i6.PrySortModule, typeof i4.ReactiveFormsModule, typeof i8.PryColorPickerModule, typeof i9.PrySchemePickerModule], [typeof i1.WidgetAggregatedChartComponent]>;
17
19
  static ɵinj: i0.ɵɵInjectorDeclaration<WidgetAggregatedChartModule>;
18
20
  }
@@ -51,6 +51,7 @@ export declare const enTranslations: {
51
51
  category20b: string;
52
52
  category20c: string;
53
53
  'KO/W/OK': string;
54
+ Provoly: string;
54
55
  };
55
56
  dataLabel: string;
56
57
  origin: string;
@@ -51,6 +51,7 @@ export declare const frTranslations: {
51
51
  category20b: string;
52
52
  category20c: string;
53
53
  'KO/W/OK': string;
54
+ Provoly: string;
54
55
  };
55
56
  dataLabel: string;
56
57
  origin: string;