@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.
- 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/assets/svgs/trash.svg +1 -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/lib/core/store/search/search.actions.mjs +3 -2
- package/esm2022/lib/core/store/search/search.reducer.mjs +6 -1
- package/esm2022/lib/dashboard/components/dashboard.component.mjs +16 -11
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
- package/esm2022/presentation/style/css.component.mjs +2 -2
- 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 +134 -26
- 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/esm2022/widgets/widget-map/component/widget-map.component.mjs +2 -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-presentation.mjs +4 -4
- package/fesm2022/provoly-dashboard-presentation.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 +183 -30
- 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-widgets-widget-map.mjs +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +37 -13
- 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/lib/core/store/search/search.actions.d.ts +7 -0
- package/lib/dashboard/components/dashboard.component.d.ts +2 -0
- package/package.json +19 -7
- package/presentation/style/_o-pry-new-presentation.scss +2 -1
- 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/_a-page-loader.scss +14 -0
- package/styles/components/_m-color-scheme.scss +20 -0
- package/styles/main.scss +3 -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;
|
|
@@ -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.
|
|
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",
|
|
@@ -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,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 *;
|
|
@@ -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
|
}
|