@provoly/dashboard 1.4.11 → 1.4.12
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/esm2022/lib/core/store/search/search.effects.mjs +4 -6
- package/esm2022/lib/dashboard/components/widgets/base-widget.component.mjs +5 -1
- package/esm2022/lib/dashboard/filter/components/filter-group/filter-group.component.mjs +2 -2
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +3 -2
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +5 -2
- package/esm2022/toolbox/components/save-view/save-view.component.mjs +3 -2
- package/esm2022/widgets/widget-aggregated-chart/component/widget-aggregated-chart.component.mjs +1 -1
- package/esm2022/widgets/widget-analytic/component/widget-analytic.component.mjs +1 -1
- package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +1 -1
- package/esm2022/widgets/widget-graph/component/widget-graph.component.mjs +1 -1
- package/esm2022/widgets/widget-iframe/component/widget-iframe.component.mjs +1 -1
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +1 -1
- package/esm2022/widgets/widget-table/component/widget-table.component.mjs +1 -1
- package/esm2022/widgets/widget-template/component/widget-template.component.mjs +1 -1
- package/esm2022/widgets/widget-tile/component/widget-tile.component.mjs +1 -1
- package/esm2022/widgets/widget-vega/component/widget-vega.component.mjs +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +2 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-aggregated-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-graph.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-iframe.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-table.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-template.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-tile.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-vega.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +14 -6
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/dashboard/components/widgets/base-widget.component.d.ts +1 -0
- package/lib/dashboard/store/dashboard.actions.d.ts +6 -1
- package/lib/dashboard/store/dashboard.effects.d.ts +1 -0
- package/package.json +43 -43
|
@@ -32,6 +32,7 @@ export declare class BaseWidgetComponent extends SubscriptionnerDirective implem
|
|
|
32
32
|
ngAfterViewChecked(): void;
|
|
33
33
|
toImage(): Promise<string>;
|
|
34
34
|
changeWidgetTitle($event: string): void;
|
|
35
|
+
emitManifest(): void;
|
|
35
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseWidgetComponent, never>;
|
|
36
37
|
static ɵcmp: i0.ɵɵComponentDeclaration<BaseWidgetComponent, "pry-base-widget", never, { "open$": { "alias": "open$"; "required": false; }; "widgetIndex": { "alias": "widgetIndex"; "required": false; }; "staticManifest": { "alias": "staticManifest"; "required": false; }; }, { "manifestModified": "manifestModified"; }, never, never, false, never>;
|
|
37
38
|
}
|
|
@@ -178,6 +178,7 @@ export declare const DashboardActions: {
|
|
|
178
178
|
additionalOptions?: any;
|
|
179
179
|
} & import("@ngrx/store").Action<"[Dashboard] update widget in presentation">>;
|
|
180
180
|
requestAllRoutes: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) requesting route update", () => import("@ngrx/store").Action<"[Dashboard] (bus) requesting route update">>;
|
|
181
|
+
requestManifestsToEmit: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) pre-save manifest, asking all widgets to emit", () => import("@ngrx/store").Action<"[Dashboard] (bus) pre-save manifest, asking all widgets to emit">>;
|
|
181
182
|
updateRouteManifest: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) updating route", (props: {
|
|
182
183
|
sender?: string;
|
|
183
184
|
route: string;
|
|
@@ -434,7 +435,11 @@ export declare const DashboardActions: {
|
|
|
434
435
|
datasourceId: string;
|
|
435
436
|
} & import("@ngrx/store").Action<"[Dashboard] (bus) update filter value">>;
|
|
436
437
|
clearAllFilterValues: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) clear all filter values", () => import("@ngrx/store").Action<"[Dashboard] (bus) clear all filter values">>;
|
|
437
|
-
dispatchFilters: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) apply filters to presentation datasources", (
|
|
438
|
+
dispatchFilters: import("@ngrx/store").ActionCreator<"[Dashboard] (bus) apply filters to presentation datasources", (props: {
|
|
439
|
+
staticManifest?: DashboardManifest;
|
|
440
|
+
}) => {
|
|
441
|
+
staticManifest?: DashboardManifest;
|
|
442
|
+
} & import("@ngrx/store").Action<"[Dashboard] (bus) apply filters to presentation datasources">>;
|
|
438
443
|
resetWmsFeatures: import("@ngrx/store").ActionCreator<"[Widget map] Reset Wms layer features", (props: {
|
|
439
444
|
componentId: string;
|
|
440
445
|
}) => {
|
|
@@ -93,6 +93,7 @@ export declare class DashboardEffects {
|
|
|
93
93
|
sender?: string;
|
|
94
94
|
route: string;
|
|
95
95
|
} & import("@ngrx/store").Action<"[Dashboard] (bus) updating route">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
96
|
+
requestManifestsToEmit$: import("rxjs").Observable<import("@ngrx/store").Action<"[Dashboard] (bus) pre-save manifest, asking all widgets to emit">> & import("@ngrx/effects").CreateEffectMetadata;
|
|
96
97
|
assertResultSets$: import("rxjs").Observable<({
|
|
97
98
|
id: string;
|
|
98
99
|
excludeGeo: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.12",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/cdk": "17.x || 18.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",
|
|
@@ -138,36 +138,6 @@
|
|
|
138
138
|
"esm": "./esm2022/toolbox/provoly-dashboard-toolbox.mjs",
|
|
139
139
|
"default": "./fesm2022/provoly-dashboard-toolbox.mjs"
|
|
140
140
|
},
|
|
141
|
-
"./filters/autocomplete": {
|
|
142
|
-
"types": "./filters/autocomplete/index.d.ts",
|
|
143
|
-
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
144
|
-
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
145
|
-
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
146
|
-
},
|
|
147
|
-
"./filters/date": {
|
|
148
|
-
"types": "./filters/date/index.d.ts",
|
|
149
|
-
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
150
|
-
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
151
|
-
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
152
|
-
},
|
|
153
|
-
"./filters/list": {
|
|
154
|
-
"types": "./filters/list/index.d.ts",
|
|
155
|
-
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
156
|
-
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
157
|
-
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
158
|
-
},
|
|
159
|
-
"./filters/number": {
|
|
160
|
-
"types": "./filters/number/index.d.ts",
|
|
161
|
-
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
162
|
-
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
163
|
-
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
164
|
-
},
|
|
165
|
-
"./filters/text": {
|
|
166
|
-
"types": "./filters/text/index.d.ts",
|
|
167
|
-
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
168
|
-
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
169
|
-
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
170
|
-
},
|
|
171
141
|
"./components/card": {
|
|
172
142
|
"types": "./components/card/index.d.ts",
|
|
173
143
|
"esm2022": "./esm2022/components/card/provoly-dashboard-components-card.mjs",
|
|
@@ -198,18 +168,18 @@
|
|
|
198
168
|
"esm": "./esm2022/components/expand-panel/provoly-dashboard-components-expand-panel.mjs",
|
|
199
169
|
"default": "./fesm2022/provoly-dashboard-components-expand-panel.mjs"
|
|
200
170
|
},
|
|
201
|
-
"./components/metadata-editor": {
|
|
202
|
-
"types": "./components/metadata-editor/index.d.ts",
|
|
203
|
-
"esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
204
|
-
"esm": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
205
|
-
"default": "./fesm2022/provoly-dashboard-components-metadata-editor.mjs"
|
|
206
|
-
},
|
|
207
171
|
"./components/filter": {
|
|
208
172
|
"types": "./components/filter/index.d.ts",
|
|
209
173
|
"esm2022": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
210
174
|
"esm": "./esm2022/components/filter/provoly-dashboard-components-filter.mjs",
|
|
211
175
|
"default": "./fesm2022/provoly-dashboard-components-filter.mjs"
|
|
212
176
|
},
|
|
177
|
+
"./components/metadata-editor": {
|
|
178
|
+
"types": "./components/metadata-editor/index.d.ts",
|
|
179
|
+
"esm2022": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
180
|
+
"esm": "./esm2022/components/metadata-editor/provoly-dashboard-components-metadata-editor.mjs",
|
|
181
|
+
"default": "./fesm2022/provoly-dashboard-components-metadata-editor.mjs"
|
|
182
|
+
},
|
|
213
183
|
"./components/page-loader": {
|
|
214
184
|
"types": "./components/page-loader/index.d.ts",
|
|
215
185
|
"esm2022": "./esm2022/components/page-loader/provoly-dashboard-components-page-loader.mjs",
|
|
@@ -240,6 +210,36 @@
|
|
|
240
210
|
"esm": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.mjs",
|
|
241
211
|
"default": "./fesm2022/provoly-dashboard-components-text-editor.mjs"
|
|
242
212
|
},
|
|
213
|
+
"./filters/autocomplete": {
|
|
214
|
+
"types": "./filters/autocomplete/index.d.ts",
|
|
215
|
+
"esm2022": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
216
|
+
"esm": "./esm2022/filters/autocomplete/provoly-dashboard-filters-autocomplete.mjs",
|
|
217
|
+
"default": "./fesm2022/provoly-dashboard-filters-autocomplete.mjs"
|
|
218
|
+
},
|
|
219
|
+
"./filters/date": {
|
|
220
|
+
"types": "./filters/date/index.d.ts",
|
|
221
|
+
"esm2022": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
222
|
+
"esm": "./esm2022/filters/date/provoly-dashboard-filters-date.mjs",
|
|
223
|
+
"default": "./fesm2022/provoly-dashboard-filters-date.mjs"
|
|
224
|
+
},
|
|
225
|
+
"./filters/list": {
|
|
226
|
+
"types": "./filters/list/index.d.ts",
|
|
227
|
+
"esm2022": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
228
|
+
"esm": "./esm2022/filters/list/provoly-dashboard-filters-list.mjs",
|
|
229
|
+
"default": "./fesm2022/provoly-dashboard-filters-list.mjs"
|
|
230
|
+
},
|
|
231
|
+
"./filters/number": {
|
|
232
|
+
"types": "./filters/number/index.d.ts",
|
|
233
|
+
"esm2022": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
234
|
+
"esm": "./esm2022/filters/number/provoly-dashboard-filters-number.mjs",
|
|
235
|
+
"default": "./fesm2022/provoly-dashboard-filters-number.mjs"
|
|
236
|
+
},
|
|
237
|
+
"./filters/text": {
|
|
238
|
+
"types": "./filters/text/index.d.ts",
|
|
239
|
+
"esm2022": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
240
|
+
"esm": "./esm2022/filters/text/provoly-dashboard-filters-text.mjs",
|
|
241
|
+
"default": "./fesm2022/provoly-dashboard-filters-text.mjs"
|
|
242
|
+
},
|
|
243
243
|
"./pipeline-components/filter": {
|
|
244
244
|
"types": "./pipeline-components/filter/index.d.ts",
|
|
245
245
|
"esm2022": "./esm2022/pipeline-components/filter/provoly-dashboard-pipeline-components-filter.mjs",
|