@provoly/dashboard 1.3.17 → 1.3.19
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/components/data-format/data-format.pipe.d.ts +0 -1
- package/esm2022/components/data-format/data-format.pipe.mjs +1 -21
- package/esm2022/filters/autocomplete/autocomplete.component.mjs +3 -3
- package/esm2022/import/components/list/import-list.component.mjs +2 -1
- package/esm2022/lib/core/components/select/select.component.mjs +4 -4
- package/esm2022/lib/core/i18n/en.translations.mjs +3 -2
- package/esm2022/lib/core/i18n/fr.translations.mjs +3 -2
- package/esm2022/lib/dashboard/components/widgets/datasource-selector/datasource-card/datasource-card.component.mjs +3 -3
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +7 -4
- package/esm2022/widgets/widget-aggregated-chart/i18n/en.translations.mjs +11 -1
- package/esm2022/widgets/widget-aggregated-chart/i18n/fr.translations.mjs +12 -2
- package/esm2022/widgets/widget-tile/component/widget-tile.component.mjs +7 -5
- package/esm2022/widgets/widget-tile/style/css.component.mjs +2 -2
- package/esm2022/widgets/widget-vega/component/widget-vega.component.mjs +3 -8
- package/fesm2022/provoly-dashboard-components-data-format.mjs +1 -21
- package/fesm2022/provoly-dashboard-components-data-format.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-filters-autocomplete.mjs +2 -2
- package/fesm2022/provoly-dashboard-filters-autocomplete.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-import.mjs +1 -0
- package/fesm2022/provoly-dashboard-import.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs +27 -4
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs +8 -6
- package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs +2 -7
- package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +9 -7
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/import/components/list/import-list.component.d.ts +2 -2
- package/lib/core/i18n/en.translations.d.ts +1 -0
- package/lib/core/i18n/fr.translations.d.ts +1 -0
- package/package.json +13 -13
- package/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.d.ts +2 -1
- package/widgets/widget-aggregated-chart/i18n/en.translations.d.ts +10 -0
- package/widgets/widget-aggregated-chart/i18n/fr.translations.d.ts +10 -0
- package/widgets/widget-tile/component/widget-tile.component.d.ts +2 -2
- package/widgets/widget-tile/style/_o-widget-tile.scss +4 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
2
|
import { Store } from '@ngrx/store';
|
|
3
3
|
import { Dataset, DatasetVersion, PryDialogService, PrySortChange, SubscriptionnerDirective } from '@provoly/dashboard';
|
|
4
4
|
import { Observable, Subject } from 'rxjs';
|
|
@@ -6,7 +6,7 @@ import * as i0 from "@angular/core";
|
|
|
6
6
|
export declare class PryImportListComponent extends SubscriptionnerDirective implements OnInit {
|
|
7
7
|
private store;
|
|
8
8
|
private dialog;
|
|
9
|
-
loadDataAction: WritableSignal<{
|
|
9
|
+
loadDataAction: import("@angular/core").WritableSignal<{
|
|
10
10
|
limit?: number | undefined;
|
|
11
11
|
offset?: number | undefined;
|
|
12
12
|
dataset?: string | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.19",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "16.x || 17.x",
|
|
@@ -114,18 +114,18 @@
|
|
|
114
114
|
"esm": "./esm2022/pipeline/provoly-dashboard-pipeline.mjs",
|
|
115
115
|
"default": "./fesm2022/provoly-dashboard-pipeline.mjs"
|
|
116
116
|
},
|
|
117
|
-
"./restitution": {
|
|
118
|
-
"types": "./restitution/index.d.ts",
|
|
119
|
-
"esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
120
|
-
"esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
121
|
-
"default": "./fesm2022/provoly-dashboard-restitution.mjs"
|
|
122
|
-
},
|
|
123
117
|
"./presentation": {
|
|
124
118
|
"types": "./presentation/index.d.ts",
|
|
125
119
|
"esm2022": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
126
120
|
"esm": "./esm2022/presentation/provoly-dashboard-presentation.mjs",
|
|
127
121
|
"default": "./fesm2022/provoly-dashboard-presentation.mjs"
|
|
128
122
|
},
|
|
123
|
+
"./restitution": {
|
|
124
|
+
"types": "./restitution/index.d.ts",
|
|
125
|
+
"esm2022": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
126
|
+
"esm": "./esm2022/restitution/provoly-dashboard-restitution.mjs",
|
|
127
|
+
"default": "./fesm2022/provoly-dashboard-restitution.mjs"
|
|
128
|
+
},
|
|
129
129
|
"./search": {
|
|
130
130
|
"types": "./search/index.d.ts",
|
|
131
131
|
"esm2022": "./esm2022/search/provoly-dashboard-search.mjs",
|
|
@@ -198,18 +198,18 @@
|
|
|
198
198
|
"esm": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
|
|
199
199
|
"default": "./fesm2022/provoly-dashboard-components-scheme-picker.mjs"
|
|
200
200
|
},
|
|
201
|
-
"./components/text-editor": {
|
|
202
|
-
"types": "./components/text-editor/index.d.ts",
|
|
203
|
-
"esm2022": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
204
|
-
"esm": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
205
|
-
"default": "./fesm2022/provoly-dashboard-components-text-editor.mjs"
|
|
206
|
-
},
|
|
207
201
|
"./components/stepper": {
|
|
208
202
|
"types": "./components/stepper/index.d.ts",
|
|
209
203
|
"esm2022": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
210
204
|
"esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
|
|
211
205
|
"default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
|
|
212
206
|
},
|
|
207
|
+
"./components/text-editor": {
|
|
208
|
+
"types": "./components/text-editor/index.d.ts",
|
|
209
|
+
"esm2022": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
210
|
+
"esm": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
211
|
+
"default": "./fesm2022/provoly-dashboard-components-text-editor.mjs"
|
|
212
|
+
},
|
|
213
213
|
"./filters/autocomplete": {
|
|
214
214
|
"types": "./filters/autocomplete/index.d.ts",
|
|
215
215
|
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
@@ -146,7 +146,7 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
|
|
|
146
146
|
isTimeInterval(abscissaInterval: string | number): boolean;
|
|
147
147
|
getLabelExpr(axis: 'x' | 'y', axisType: string, field?: Field): string;
|
|
148
148
|
getDataFormat(axisType: string, field?: Field): {
|
|
149
|
-
format:
|
|
149
|
+
format: any;
|
|
150
150
|
scale: {
|
|
151
151
|
type: string;
|
|
152
152
|
};
|
|
@@ -157,6 +157,7 @@ export declare class WidgetAggregatedChartComponent extends DataWidgetComponent
|
|
|
157
157
|
format?: undefined;
|
|
158
158
|
scale?: undefined;
|
|
159
159
|
};
|
|
160
|
+
getLocaleFormat(type: string | undefined): any;
|
|
160
161
|
static ɵfac: i0.ɵɵFactoryDeclaration<WidgetAggregatedChartComponent, never>;
|
|
161
162
|
static ɵcmp: i0.ɵɵComponentDeclaration<WidgetAggregatedChartComponent, "pry-widget-aggregated-chart", never, {}, {}, never, never, false, never>;
|
|
162
163
|
}
|
|
@@ -18,6 +18,16 @@ export declare const enTranslations: {
|
|
|
18
18
|
months: string[];
|
|
19
19
|
shortMonths: string[];
|
|
20
20
|
};
|
|
21
|
+
specializedLocale: {
|
|
22
|
+
default: string;
|
|
23
|
+
DATETIME: string;
|
|
24
|
+
DATE: string;
|
|
25
|
+
MONTH_YEAR: string;
|
|
26
|
+
DAY_MONTH: string;
|
|
27
|
+
YEAR: string;
|
|
28
|
+
MONTH: string;
|
|
29
|
+
DAY: string;
|
|
30
|
+
};
|
|
21
31
|
operation: {
|
|
22
32
|
none: string;
|
|
23
33
|
count: string;
|
|
@@ -18,6 +18,16 @@ export declare const frTranslations: {
|
|
|
18
18
|
months: string[];
|
|
19
19
|
shortMonths: string[];
|
|
20
20
|
};
|
|
21
|
+
specializedLocale: {
|
|
22
|
+
default: string;
|
|
23
|
+
DATETIME: string;
|
|
24
|
+
DATE: string;
|
|
25
|
+
MONTH_YEAR: string;
|
|
26
|
+
DAY_MONTH: string;
|
|
27
|
+
YEAR: string;
|
|
28
|
+
MONTH: string;
|
|
29
|
+
DAY: string;
|
|
30
|
+
};
|
|
21
31
|
operation: {
|
|
22
32
|
none: string;
|
|
23
33
|
count: string;
|
|
@@ -7,7 +7,7 @@ export declare class WidgetTileComponent extends DataWidgetComponent {
|
|
|
7
7
|
options$: Observable<TileWidgetOptions>;
|
|
8
8
|
items$: Observable<Item[]>;
|
|
9
9
|
selectedIds$: Observable<any>;
|
|
10
|
-
maps:
|
|
10
|
+
maps: (undefined | ResultSet)[];
|
|
11
11
|
mapManifest: {
|
|
12
12
|
type: string;
|
|
13
13
|
header: boolean;
|
|
@@ -41,7 +41,7 @@ export declare class WidgetTileComponent extends DataWidgetComponent {
|
|
|
41
41
|
constructor(store: Store<any>, el: ElementRef);
|
|
42
42
|
contextMenu($event: MouseEvent, item: Item): void;
|
|
43
43
|
select($event: MouseEvent, item: Item): void;
|
|
44
|
-
toggleMap(index: number): void;
|
|
44
|
+
toggleMap(index: number, item: Item): void;
|
|
45
45
|
resultSetWithItem(item: Item): ResultSet;
|
|
46
46
|
emitManifest(): void;
|
|
47
47
|
changeClasses($event: any): void;
|