@provoly/dashboard 0.18.2 → 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.
- package/assets/svgs/clear_filter.svg +12 -0
- package/assets/svgs/refresh_data.svg +15 -0
- package/assets/svgs/refresh_filter.svg +13 -0
- package/components/color-picker/color-picker.component.d.ts +58 -0
- package/components/color-picker/color-picker.module.d.ts +9 -0
- package/components/color-picker/index.d.ts +5 -0
- package/components/color-picker/public-api.d.ts +2 -0
- package/components/scheme-picker/index.d.ts +5 -0
- package/components/scheme-picker/public-api.d.ts +3 -0
- package/components/scheme-picker/scheme-picker.component.d.ts +34 -0
- package/components/scheme-picker/scheme-picker.module.d.ts +11 -0
- package/components/scheme-picker/scheme.service.d.ts +12 -0
- package/dataset/components/dataset-card/dataset-card.component.d.ts +11 -3
- package/dataset/i18n/en.translations.d.ts +1 -0
- package/dataset/i18n/fr.translations.d.ts +1 -0
- package/dataset/style/_o-pry-dataset-card.scss +16 -1
- package/dataset/style/_o-pry-dataset.scss +18 -3
- package/esm2022/admin/components/admin-dataset/shared/admin-form-dataset/admin-form-dataset.component.mjs +7 -5
- package/esm2022/components/color-picker/color-picker.component.mjs +314 -0
- package/esm2022/components/color-picker/color-picker.module.mjs +20 -0
- package/esm2022/components/color-picker/provoly-dashboard-components-color-picker.mjs +5 -0
- package/esm2022/components/color-picker/public-api.mjs +3 -0
- package/esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs +5 -0
- package/esm2022/components/scheme-picker/public-api.mjs +4 -0
- package/esm2022/components/scheme-picker/scheme-picker.component.mjs +104 -0
- package/esm2022/components/scheme-picker/scheme-picker.module.mjs +22 -0
- package/esm2022/components/scheme-picker/scheme.service.mjs +47 -0
- package/esm2022/dataset/components/dataset-card/dataset-card.component.mjs +26 -9
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -3
- package/esm2022/dataset/components/dataset.component.mjs +3 -3
- package/esm2022/dataset/i18n/en.translations.mjs +2 -1
- package/esm2022/dataset/i18n/fr.translations.mjs +2 -1
- package/esm2022/dataset/style/css.component.mjs +2 -2
- package/esm2022/lib/core/i18n/en.translations.mjs +6 -2
- package/esm2022/lib/core/i18n/fr.translations.mjs +6 -2
- package/esm2022/lib/core/model/widget-aggregated-chart-manifest.interface.mjs +1 -1
- package/esm2022/lib/core/model/widget-chart-manifest.interface.mjs +2 -1
- package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +4 -1
- package/esm2022/lib/core/store/data-source/data-source.model.mjs +1 -1
- package/esm2022/restitution/components/restitution/restitution.component.mjs +11 -20
- package/esm2022/restitution/model/restitution.model.mjs +1 -1
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +130 -24
- package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +19 -2
- package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +19 -2
- package/esm2022/widgets/widget-aggregated-chart/widget-aggregated-chart.module.mjs +16 -5
- package/esm2022/widgets/widget-chart/i18n/en.translations.mjs +3 -2
- package/esm2022/widgets/widget-chart/i18n/fr.translations.mjs +3 -2
- package/fesm2022/provoly-dashboard-admin.mjs +6 -4
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-components-color-picker.mjs +337 -0
- package/fesm2022/provoly-dashboard-components-color-picker.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-components-scheme-picker.mjs +171 -0
- package/fesm2022/provoly-dashboard-components-scheme-picker.mjs.map +1 -0
- package/fesm2022/provoly-dashboard-dataset.mjs +29 -14
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +10 -19
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +179 -28
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +4 -2
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +16 -2
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/i18n/en.translations.d.ts +4 -0
- package/lib/core/i18n/fr.translations.d.ts +4 -0
- package/lib/core/model/widget-aggregated-chart-manifest.interface.d.ts +7 -0
- package/lib/core/model/widget-chart-manifest.interface.d.ts +1 -0
- package/lib/core/store/data-source/data-source.model.d.ts +0 -2
- package/package.json +37 -25
- package/restitution/components/restitution/restitution.component.d.ts +0 -2
- package/restitution/model/restitution.model.d.ts +1 -1
- package/styles/components/_a-color-picker.scss +62 -0
- package/styles/components/_m-color-scheme.scss +20 -0
- package/styles/main.scss +2 -0
- package/styles-theme/components-theme/_o-pry-admin-classes-customize.theme.scss +4 -0
- package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +17 -5
- package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +17 -0
- package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +17 -0
- package/widgets/widget-aggregated-chart/widget-aggregated-chart.module.d.ts +3 -1
- package/widgets/widget-chart/i18n/en.translations.d.ts +1 -0
- package/widgets/widget-chart/i18n/fr.translations.d.ts +1 -0
|
@@ -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
|
}
|
|
@@ -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.
|
|
3
|
+
"version": "0.18.3",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "14.x || 15.x || 16.x",
|
|
@@ -139,30 +139,6 @@
|
|
|
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"
|
|
165
|
-
},
|
|
166
142
|
"./components/card": {
|
|
167
143
|
"types": "./components/card/index.d.ts",
|
|
168
144
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -175,6 +151,12 @@
|
|
|
175
151
|
"esm": "./esm2022/components/checkbox/provoly-dashboard-components-checkbox.mjs",
|
|
176
152
|
"default": "./fesm2022/provoly-dashboard-components-checkbox.mjs"
|
|
177
153
|
},
|
|
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"
|
|
159
|
+
},
|
|
178
160
|
"./components/expand-panel": {
|
|
179
161
|
"types": "./components/expand-panel/index.d.ts",
|
|
180
162
|
"esm2022": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
@@ -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: {
|
|
@@ -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 *;
|
|
@@ -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
|
-
|
|
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
|
}
|