@provoly/dashboard 0.18.1 → 0.18.3

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 (81) 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/components/color-picker/color-picker.component.d.ts +58 -0
  5. package/components/color-picker/color-picker.module.d.ts +9 -0
  6. package/components/color-picker/index.d.ts +5 -0
  7. package/components/color-picker/public-api.d.ts +2 -0
  8. package/components/scheme-picker/index.d.ts +5 -0
  9. package/components/scheme-picker/public-api.d.ts +3 -0
  10. package/components/scheme-picker/scheme-picker.component.d.ts +34 -0
  11. package/components/scheme-picker/scheme-picker.module.d.ts +11 -0
  12. package/components/scheme-picker/scheme.service.d.ts +12 -0
  13. package/dataset/components/dataset-card/dataset-card.component.d.ts +11 -3
  14. package/dataset/i18n/en.translations.d.ts +1 -0
  15. package/dataset/i18n/fr.translations.d.ts +1 -0
  16. package/dataset/style/_o-pry-dataset-card.scss +16 -1
  17. package/dataset/style/_o-pry-dataset.scss +18 -3
  18. package/esm2022/admin/components/admin-dataset/shared/admin-form-dataset/admin-form-dataset.component.mjs +7 -5
  19. package/esm2022/components/color-picker/color-picker.component.mjs +314 -0
  20. package/esm2022/components/color-picker/color-picker.module.mjs +20 -0
  21. package/esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs +5 -0
  22. package/esm2022/components/color-picker/public-api.mjs +3 -0
  23. package/esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs +5 -0
  24. package/esm2022/components/scheme-picker/public-api.mjs +4 -0
  25. package/esm2022/components/scheme-picker/scheme-picker.component.mjs +104 -0
  26. package/esm2022/components/scheme-picker/scheme-picker.module.mjs +22 -0
  27. package/esm2022/components/scheme-picker/scheme.service.mjs +47 -0
  28. package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +26 -9
  29. package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -3
  30. package/esm2022/dataset/components/dataset.component.mjs +3 -3
  31. package/esm2022/dataset/i18n/en.translations.mjs +2 -1
  32. package/esm2022/dataset/i18n/fr.translations.mjs +2 -1
  33. package/esm2022/dataset/style/css.component.mjs +2 -2
  34. package/esm2022/lib/core/i18n/en.translations.mjs +6 -2
  35. package/esm2022/lib/core/i18n/fr.translations.mjs +6 -2
  36. package/esm2022/lib/core/model/widget-aggregated-chart-manifest.interface.mjs +1 -1
  37. package/esm2022/lib/core/model/widget-chart-manifest.interface.mjs +2 -1
  38. package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +4 -1
  39. package/esm2022/lib/core/store/data-source/data-source.model.mjs +1 -1
  40. package/esm2022/restitution/components/restitution/restitution.component.mjs +11 -20
  41. package/esm2022/restitution/model/restitution.model.mjs +1 -1
  42. package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +149 -31
  43. package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +19 -2
  44. package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +19 -2
  45. package/esm2022/widgets/widget-aggregated-chart/widget-aggregated-chart.module.mjs +16 -5
  46. package/esm2022/widgets/widget-chart/i18n/en.translations.mjs +3 -2
  47. package/esm2022/widgets/widget-chart/i18n/fr.translations.mjs +3 -2
  48. package/fesm2022/provoly-dashboard-admin.mjs +6 -4
  49. package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
  50. package/fesm2022/provoly-dashboard-components-color-picker.mjs +337 -0
  51. package/fesm2022/provoly-dashboard-components-color-picker.mjs.map +1 -0
  52. package/fesm2022/provoly-dashboard-components-scheme-picker.mjs +171 -0
  53. package/fesm2022/provoly-dashboard-components-scheme-picker.mjs.map +1 -0
  54. package/fesm2022/provoly-dashboard-dataset.mjs +29 -14
  55. package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
  56. package/fesm2022/provoly-dashboard-restitution.mjs +10 -19
  57. package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
  58. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +198 -35
  59. package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
  60. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +4 -2
  61. package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
  62. package/fesm2022/provoly-dashboard.mjs +16 -2
  63. package/fesm2022/provoly-dashboard.mjs.map +1 -1
  64. package/lib/core/i18n/en.translations.d.ts +4 -0
  65. package/lib/core/i18n/fr.translations.d.ts +4 -0
  66. package/lib/core/model/widget-aggregated-chart-manifest.interface.d.ts +7 -0
  67. package/lib/core/model/widget-chart-manifest.interface.d.ts +1 -0
  68. package/lib/core/store/data-source/data-source.model.d.ts +0 -2
  69. package/package.json +47 -35
  70. package/restitution/components/restitution/restitution.component.d.ts +0 -2
  71. package/restitution/model/restitution.model.d.ts +1 -1
  72. package/styles/components/_a-color-picker.scss +62 -0
  73. package/styles/components/_m-color-scheme.scss +20 -0
  74. package/styles/main.scss +2 -0
  75. package/styles-theme/components-theme/_o-pry-admin-classes-customize.theme.scss +4 -0
  76. package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +18 -5
  77. package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +17 -0
  78. package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +17 -0
  79. package/widgets/widget-aggregated-chart/widget-aggregated-chart.module.d.ts +3 -1
  80. package/widgets/widget-chart/i18n/en.translations.d.ts +1 -0
  81. 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "0.18.1",
3
+ "version": "0.18.3",
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
- "./dataset": {
89
- "types": "./dataset/index.d.ts",
90
- "esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
91
- "esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
92
- "default": "./fesm2022/provoly-dashboard-dataset.mjs"
93
- },
94
88
  "./import": {
95
89
  "types": "./import/index.d.ts",
96
90
  "esm2022": "./esm2022/import/provoly-dashboard-import.mjs",
97
91
  "esm": "./esm2022/import/provoly-dashboard-import.mjs",
98
92
  "default": "./fesm2022/provoly-dashboard-import.mjs"
99
93
  },
94
+ "./dataset": {
95
+ "types": "./dataset/index.d.ts",
96
+ "esm2022": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
97
+ "esm": "./esm2022/dataset/provoly-dashboard-dataset.mjs",
98
+ "default": "./fesm2022/provoly-dashboard-dataset.mjs"
99
+ },
100
100
  "./notification": {
101
101
  "types": "./notification/index.d.ts",
102
102
  "esm2022": "./esm2022/notification/provoly-dashboard-notification.mjs",
@@ -139,29 +139,11 @@
139
139
  "esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
140
140
  "default": "./fesm2022/provoly-dashboard-toolbox.mjs"
141
141
  },
142
- "./filters/date": {
143
- "types": "./filters/date/index.d.ts",
144
- "esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
145
- "esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
146
- "default": "./fesm2022/provoly-dashboard-filters-date.mjs"
147
- },
148
- "./filters/list": {
149
- "types": "./filters/list/index.d.ts",
150
- "esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
151
- "esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
152
- "default": "./fesm2022/provoly-dashboard-filters-list.mjs"
153
- },
154
- "./filters/number": {
155
- "types": "./filters/number/index.d.ts",
156
- "esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
157
- "esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
158
- "default": "./fesm2022/provoly-dashboard-filters-number.mjs"
159
- },
160
- "./filters/text": {
161
- "types": "./filters/text/index.d.ts",
162
- "esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
163
- "esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
164
- "default": "./fesm2022/provoly-dashboard-filters-text.mjs"
142
+ "./components/card": {
143
+ "types": "./components/card/index.d.ts",
144
+ "esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
145
+ "esm": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
146
+ "default": "./fesm2022/provoly-dashboard-components-card.mjs"
165
147
  },
166
148
  "./components/checkbox": {
167
149
  "types": "./components/checkbox/index.d.ts",
@@ -169,11 +151,11 @@
169
151
  "esm": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
170
152
  "default": "./fesm2022/provoly-dashboard-components-checkbox.mjs"
171
153
  },
172
- "./components/card": {
173
- "types": "./components/card/index.d.ts",
174
- "esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
175
- "esm": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
176
- "default": "./fesm2022/provoly-dashboard-components-card.mjs"
154
+ "./components/color-picker": {
155
+ "types": "./components/color-picker/index.d.ts",
156
+ "esm2022": "./esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs",
157
+ "esm": "./esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs",
158
+ "default": "./fesm2022/provoly-dashboard-components-color-picker.mjs"
177
159
  },
178
160
  "./components/expand-panel": {
179
161
  "types": "./components/expand-panel/index.d.ts",
@@ -193,6 +175,12 @@
193
175
  "esm": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
194
176
  "default": "./fesm2022/provoly-dashboard-components-metadata-editor.mjs"
195
177
  },
178
+ "./components/scheme-picker": {
179
+ "types": "./components/scheme-picker/index.d.ts",
180
+ "esm2022": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
181
+ "esm": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
182
+ "default": "./fesm2022/provoly-dashboard-components-scheme-picker.mjs"
183
+ },
196
184
  "./components/sinceDate": {
197
185
  "types": "./components/sinceDate/index.d.ts",
198
186
  "esm2022": "./esm2022/components/sinceDate/provoly-dashboard-components-sinceDate.mjs",
@@ -205,6 +193,30 @@
205
193
  "esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
206
194
  "default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
207
195
  },
196
+ "./filters/date": {
197
+ "types": "./filters/date/index.d.ts",
198
+ "esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
199
+ "esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
200
+ "default": "./fesm2022/provoly-dashboard-filters-date.mjs"
201
+ },
202
+ "./filters/list": {
203
+ "types": "./filters/list/index.d.ts",
204
+ "esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
205
+ "esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
206
+ "default": "./fesm2022/provoly-dashboard-filters-list.mjs"
207
+ },
208
+ "./filters/number": {
209
+ "types": "./filters/number/index.d.ts",
210
+ "esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
211
+ "esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
212
+ "default": "./fesm2022/provoly-dashboard-filters-number.mjs"
213
+ },
214
+ "./filters/text": {
215
+ "types": "./filters/text/index.d.ts",
216
+ "esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
217
+ "esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
218
+ "default": "./fesm2022/provoly-dashboard-filters-text.mjs"
219
+ },
208
220
  "./pipeline-components/filter": {
209
221
  "types": "./pipeline-components/filter/index.d.ts",
210
222
  "esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
@@ -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,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,7 @@
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 *;
21
22
 
22
23
  /* Atoms lib */
23
24
  @use 'components/a-pry-select' as *;
@@ -43,6 +44,7 @@
43
44
  @use 'components/m-toolbox' as *;
44
45
  @use 'components/m-tooltip' as *;
45
46
  @use 'components/m-pry-overlay' as *;
47
+ @use 'components/m-color-scheme' as *;
46
48
 
47
49
  /* Organisms */
48
50
  @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,14 +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
- constructor(store: Store<any>, translateService: PryI18nService, el: ElementRef, aggregationService: PryAggregationService);
73
+ allowedClasses$: Observable<Class[]>;
74
+ colors: any;
75
+ constructor(store: Store<any>, translateService: PryI18nService, el: ElementRef, aggregationService: PryAggregationService, schemeService: PrySchemeService);
67
76
  ngAfterViewInit(): void;
68
77
  translateToVegaType(type?: FieldType, name?: string): VegaType;
69
78
  static minTick(type: FieldType): {
@@ -98,9 +107,13 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
98
107
  } | {
99
108
  tickCount?: undefined;
100
109
  };
101
- scheme(): any;
102
110
  toggleStacked($event: any): void;
111
+ toggleSort($event: any): void;
112
+ changeSortAttribute($event: any): void;
113
+ changeSortDirection($event: any): void;
103
114
  toImage(): Promise<string>;
115
+ changeCircleColorScheme($event: any): void;
116
+ changeBaseColor($event: any): void;
104
117
  static ɵfac: i0.ɵɵFactoryDeclaration<WidgetAggregatedChartComponent, never>;
105
118
  static ɵcmp: i0.ɵɵComponentDeclaration<WidgetAggregatedChartComponent, "pry-widget-aggregated-chart", never, {}, {}, never, never, false, never>;
106
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;