@provoly/dashboard 0.21.4 → 0.21.6
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/layers.svg +3 -2
- package/assets/svgs/legend.svg +14 -3
- package/dataset/style/_o-pry-dataset.scss +6 -9
- package/esm2022/dataset/components/dataset.component.mjs +3 -3
- package/esm2022/dataset/style/css.component.mjs +2 -2
- package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
- package/esm2022/lib/core/model/search-mono-class.model.mjs +1 -1
- package/esm2022/lib/core/model/search-multi-class.model.mjs +1 -1
- package/esm2022/lib/core/store/aggregation/backend-aggregation.service.mjs +2 -2
- package/esm2022/lib/core/store/config/config.actions.mjs +4 -2
- package/esm2022/lib/core/store/config/config.reducer.mjs +6 -2
- package/esm2022/lib/core/store/config/config.selectors.mjs +5 -2
- package/esm2022/lib/core/store/field/field.interface.mjs +2 -1
- package/esm2022/lib/core/store/image/image.service.mjs +3 -3
- package/esm2022/lib/core/store/search/search.reducer.mjs +2 -2
- package/esm2022/lib/core/store/search/search.service.mjs +14 -4
- package/esm2022/lib/core/symbol/symbol.service.mjs +7 -10
- package/esm2022/lib/dashboard/components/widgets/widget-instanciator/widget-instanciator.component.mjs +12 -3
- package/esm2022/lib/dashboard/dashboard.module.mjs +5 -4
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +3 -2
- package/esm2022/lib/dashboard/store/manifest.service.mjs +4 -3
- package/esm2022/notification/components/notification/content/notification-content.component.mjs +12 -8
- package/esm2022/notification/components/notification/notification.component.mjs +2 -1
- package/esm2022/notification/style/css.component.mjs +2 -2
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +3 -3
- package/esm2022/presentation/components/presentation.component.mjs +14 -12
- package/esm2022/presentation/style/css.component.mjs +2 -2
- package/esm2022/restitution/components/restitution/restitution.component.mjs +5 -5
- package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +5 -6
- package/esm2022/restitution/style/css.component.mjs +2 -2
- package/esm2022/toolbox/components/save-view/save-view.component.mjs +12 -6
- package/esm2022/toolbox/components/share/share.component.mjs +8 -5
- package/esm2022/widgets/widget-chart/component/widget-chart.component.mjs +2 -2
- package/esm2022/widgets/widget-map/component/widget-map.component.mjs +57 -17
- package/esm2022/widgets/widget-map/i18n/en.translations.mjs +5 -2
- package/esm2022/widgets/widget-map/i18n/fr.translations.mjs +5 -2
- package/esm2022/widgets/widget-map/interaction/interaction-manager.class.mjs +3 -2
- package/esm2022/widgets/widget-map/style/css.component.mjs +2 -2
- package/esm2022/widgets/widget-map/utils/cql-utils.class.mjs +12 -4
- package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +3 -2
- package/fesm2022/provoly-dashboard-dataset.mjs +4 -4
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-notification.mjs +14 -9
- package/fesm2022/provoly-dashboard-notification.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-presentation.mjs +17 -15
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +10 -11
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +17 -8
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-chart.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +80 -27
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +55 -28
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/model/manifest.interface.d.ts +3 -1
- package/lib/core/model/search-mono-class.model.d.ts +1 -0
- package/lib/core/model/search-multi-class.model.d.ts +2 -0
- package/lib/core/store/config/config.actions.d.ts +10 -0
- package/lib/core/store/config/config.reducer.d.ts +3 -0
- package/lib/core/store/config/config.selectors.d.ts +5 -0
- package/lib/core/store/field/field.interface.d.ts +1 -0
- package/lib/core/store/image/image.service.d.ts +1 -1
- package/lib/core/store/search/search.service.d.ts +4 -1
- package/lib/dashboard/components/widgets/widget-instanciator/widget-instanciator.component.d.ts +1 -0
- package/lib/dashboard/store/dashboard.actions.d.ts +3 -0
- package/lib/dashboard/store/manifest.service.d.ts +2 -1
- package/notification/components/notification/content/notification-content.component.d.ts +4 -2
- package/notification/style/_m-notifications.scss +6 -7
- package/package.json +19 -19
- package/presentation/components/presentation.component.d.ts +3 -1
- package/presentation/style/_o-pry-presentation.scss +0 -16
- package/restitution/components/restitution/restitution.component.d.ts +1 -1
- package/restitution/style/_o-restitution.scss +12 -42
- package/styles/components/_a-page-loader.scss +1 -1
- package/styles/components/_o-pry-stepper.scss +9 -10
- package/styles/components/_o-widget.scss +7 -3
- package/styles/layout/_o-manifest-layout.scss +20 -0
- package/styles-theme/components-theme/_o-widget.theme.scss +1 -1
- package/toolbox/components/save-view/save-view.component.d.ts +3 -2
- package/toolbox/components/share/share.component.d.ts +2 -1
- package/widgets/widget-chart/component/widget-chart.component.d.ts +1 -1
- package/widgets/widget-map/component/widget-map.component.d.ts +5 -1
- package/widgets/widget-map/i18n/en.translations.d.ts +3 -0
- package/widgets/widget-map/i18n/fr.translations.d.ts +3 -0
- package/widgets/widget-map/style/_o-layer-legend.scss +43 -54
- package/widgets/widget-map/utils/cql-utils.class.d.ts +2 -2
- package/widgets/widget-map/utils/widget-map.utils.d.ts +2 -0
|
@@ -1356,6 +1356,7 @@ const ClassSelectors = {
|
|
|
1356
1356
|
getAttributeById
|
|
1357
1357
|
};
|
|
1358
1358
|
|
|
1359
|
+
const DEFAULT_SEARCH_LIMIT_NUMBER = 200;
|
|
1359
1360
|
const ConfigActions = {
|
|
1360
1361
|
defineUrls: createAction('[Config] (bus) defining urls', props()),
|
|
1361
1362
|
updateIcons: createAction('[Config] (bus) updating icons', props()),
|
|
@@ -1388,7 +1389,8 @@ const ConfigActions = {
|
|
|
1388
1389
|
loadVersionsSuccess: createAction('[about] (bus) Load Versions Success', props()),
|
|
1389
1390
|
loadVersionsFailure: createAction('[about] Load Versions Failure', props()),
|
|
1390
1391
|
loadAccessGroups: createAction('[Users] load access groups'),
|
|
1391
|
-
loadAccessGroupsSuccess: createAction('[Config] load access groups Success', props())
|
|
1392
|
+
loadAccessGroupsSuccess: createAction('[Config] load access groups Success', props()),
|
|
1393
|
+
defineLimits: createAction('[Config] defining limits', props())
|
|
1392
1394
|
};
|
|
1393
1395
|
|
|
1394
1396
|
var VegaType;
|
|
@@ -1529,7 +1531,8 @@ const initialConfigState = {
|
|
|
1529
1531
|
chartOption: ChartOptionDefault,
|
|
1530
1532
|
maxAttributesInTiles: 5,
|
|
1531
1533
|
versions: null,
|
|
1532
|
-
accessGroups: []
|
|
1534
|
+
accessGroups: [],
|
|
1535
|
+
limits: {}
|
|
1533
1536
|
};
|
|
1534
1537
|
const configReducer = createReducer(initialConfigState, on(ConfigActions.defineUrls, (state, action) => ({
|
|
1535
1538
|
...state,
|
|
@@ -1633,6 +1636,9 @@ const configReducer = createReducer(initialConfigState, on(ConfigActions.defineU
|
|
|
1633
1636
|
})), on(ConfigActions.loadAccessGroupsSuccess, (state, action) => ({
|
|
1634
1637
|
...state,
|
|
1635
1638
|
accessGroups: action.groups
|
|
1639
|
+
})), on(ConfigActions.defineLimits, (state, action) => ({
|
|
1640
|
+
...state,
|
|
1641
|
+
limits: { ...state.limits, ...action.limits }
|
|
1636
1642
|
})));
|
|
1637
1643
|
|
|
1638
1644
|
const feature$7 = createFeatureSelector(configFeatureKey);
|
|
@@ -1685,6 +1691,7 @@ const chartOption = createSelector(feature$7, (config) => config.chartOption);
|
|
|
1685
1691
|
const maxAttributesInTiles = createSelector(feature$7, (config) => config.maxAttributesInTiles);
|
|
1686
1692
|
const selectVersions = createSelector(feature$7, (state) => state.versions);
|
|
1687
1693
|
const accessGroups = createSelector(feature$7, (state) => state.accessGroups);
|
|
1694
|
+
const limits = createSelector(feature$7, (state) => ({ default: DEFAULT_SEARCH_LIMIT_NUMBER, ...(state.limits ?? {}) }));
|
|
1688
1695
|
const ConfigSelectors = {
|
|
1689
1696
|
feature: feature$7,
|
|
1690
1697
|
pryUrl,
|
|
@@ -1711,7 +1718,8 @@ const ConfigSelectors = {
|
|
|
1711
1718
|
maxAttributesInTiles,
|
|
1712
1719
|
execUrl,
|
|
1713
1720
|
selectVersions,
|
|
1714
|
-
accessGroups
|
|
1721
|
+
accessGroups,
|
|
1722
|
+
limits
|
|
1715
1723
|
};
|
|
1716
1724
|
|
|
1717
1725
|
const showAnimation = animation([style({ transform: '{{transform}}', opacity: 0 }), animate('{{transition}}')]);
|
|
@@ -1855,10 +1863,10 @@ class ImageService {
|
|
|
1855
1863
|
type: image.type
|
|
1856
1864
|
}))));
|
|
1857
1865
|
}
|
|
1858
|
-
getImage(path) {
|
|
1866
|
+
getImage(path, externalUrl = false) {
|
|
1859
1867
|
return this.store.select(ConfigSelectors.dataUrl).pipe(mergeMap((url) => {
|
|
1860
1868
|
return this.httpClient
|
|
1861
|
-
.get(encodeURI(`${url}/file/icons/${path}`), {
|
|
1869
|
+
.get(encodeURI(externalUrl ? path : `${url}/file/icons/${path}`), {
|
|
1862
1870
|
observe: 'response',
|
|
1863
1871
|
responseType: 'blob'
|
|
1864
1872
|
})
|
|
@@ -2069,15 +2077,12 @@ class SymbolService {
|
|
|
2069
2077
|
image.onload = () => {
|
|
2070
2078
|
resolve(image);
|
|
2071
2079
|
};
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
}
|
|
2078
|
-
else {
|
|
2079
|
-
image.src = this.sanitizer.sanitize(SecurityContext.URL, url) ?? DEFAULT_ICON_URL;
|
|
2080
|
-
}
|
|
2080
|
+
const regexp = new RegExp('^' + INTERNALLY_STORED_IMAGE_PREFIX);
|
|
2081
|
+
this.imageService
|
|
2082
|
+
.getImage(url.replace(regexp, ''), !url.startsWith(INTERNALLY_STORED_IMAGE_PREFIX))
|
|
2083
|
+
.subscribe((res) => {
|
|
2084
|
+
image.src = this.sanitizer.sanitize(SecurityContext.URL, res.url) ?? DEFAULT_ICON_URL;
|
|
2085
|
+
});
|
|
2081
2086
|
});
|
|
2082
2087
|
return this.cache[url];
|
|
2083
2088
|
}
|
|
@@ -3892,7 +3897,7 @@ const initialSearchState = {
|
|
|
3892
3897
|
};
|
|
3893
3898
|
const searchReducer = createReducer(initialSearchState, on(SearchActions.search, (state, action) => ({
|
|
3894
3899
|
...state,
|
|
3895
|
-
searchLoading: [...new Set([...state.searchLoading, DEFAULT_NAMED_QUERY_ID])],
|
|
3900
|
+
searchLoading: [...new Set([...state.searchLoading, action.id ?? DEFAULT_NAMED_QUERY_ID])],
|
|
3896
3901
|
payload: action.payload,
|
|
3897
3902
|
id: action.id
|
|
3898
3903
|
})), on(SearchActions.getDatasourceItems, (state, action) => ({
|
|
@@ -4180,9 +4185,13 @@ class SearchService {
|
|
|
4180
4185
|
this.store = store;
|
|
4181
4186
|
this.transformations = [];
|
|
4182
4187
|
this.filters = {};
|
|
4188
|
+
this.limits = {};
|
|
4183
4189
|
store.select(DashboardSelectors.datasourceFilters).subscribe((filters) => {
|
|
4184
4190
|
this.filters = filters;
|
|
4185
4191
|
});
|
|
4192
|
+
store.select(ConfigSelectors.limits).subscribe((limits) => {
|
|
4193
|
+
this.limits = limits;
|
|
4194
|
+
});
|
|
4186
4195
|
}
|
|
4187
4196
|
getItems(id, quickOrder, excludeGeo) {
|
|
4188
4197
|
const params = this.getItemsFilter(id, this.getOrder(quickOrder)).append('excludeGeo', excludeGeo ?? false);
|
|
@@ -4195,7 +4204,7 @@ class SearchService {
|
|
|
4195
4204
|
getItemsSerializedParams(id, quickOrder = {}) {
|
|
4196
4205
|
return '|' + this.getItemsFilter(id, this.getOrder(quickOrder[id])).toString() + '|';
|
|
4197
4206
|
}
|
|
4198
|
-
getItemsFilter(id, cumulative) {
|
|
4207
|
+
getItemsFilter(id, cumulative, includeLimit = true) {
|
|
4199
4208
|
let params = cumulative ?? new HttpParams();
|
|
4200
4209
|
if (this.filters[id]) {
|
|
4201
4210
|
this.filters[id]
|
|
@@ -4204,6 +4213,10 @@ class SearchService {
|
|
|
4204
4213
|
params = params.append('filter', `${filter.attribute},${filter.operator},${filter.value}`);
|
|
4205
4214
|
});
|
|
4206
4215
|
}
|
|
4216
|
+
if (includeLimit) {
|
|
4217
|
+
const limit = this.limits[id] ?? this.limits['default'];
|
|
4218
|
+
params = params.append('limit', limit);
|
|
4219
|
+
}
|
|
4207
4220
|
return params;
|
|
4208
4221
|
}
|
|
4209
4222
|
getOrder(quickOrder, cumulative) {
|
|
@@ -4220,12 +4233,14 @@ class SearchService {
|
|
|
4220
4233
|
search(condition) {
|
|
4221
4234
|
return combineLatest([
|
|
4222
4235
|
this.store.select(ConfigSelectors.dataUrl),
|
|
4223
|
-
this.store.select(DashboardSelectors.quickOrder)
|
|
4224
|
-
|
|
4236
|
+
this.store.select(DashboardSelectors.quickOrder),
|
|
4237
|
+
this.store.select(ConfigSelectors.limits)
|
|
4238
|
+
]).pipe(mergeMap(([url, quickOrder, limits]) => {
|
|
4225
4239
|
const params = {};
|
|
4226
4240
|
if (quickOrder[DEFAULT_NAMED_QUERY_ID]) {
|
|
4227
4241
|
params['order'] = `${quickOrder[DEFAULT_NAMED_QUERY_ID]?.attribute},${quickOrder[DEFAULT_NAMED_QUERY_ID]?.asc ?? ''}`;
|
|
4228
4242
|
}
|
|
4243
|
+
condition.limit = limits[DEFAULT_NAMED_QUERY_ID] ?? limits['default'];
|
|
4229
4244
|
return this.httpClient.post(encodeURI(`${url}/items/search`), condition, { params });
|
|
4230
4245
|
}), map((rs) => this.applyTransformations(DEFAULT_NAMED_QUERY_ID, rs)));
|
|
4231
4246
|
}
|
|
@@ -4628,6 +4643,7 @@ const GeometricFieldTypes = [
|
|
|
4628
4643
|
FieldType.GEOMETRYCOLLECTION
|
|
4629
4644
|
];
|
|
4630
4645
|
const NumericFieldTypes = [FieldType.INTEGER, FieldType.DECIMAL, FieldType.INSTANT, FieldType.LONG];
|
|
4646
|
+
const TextFieldTypes = [FieldType.STRING, FieldType.KEYWORD];
|
|
4631
4647
|
|
|
4632
4648
|
const hiddenFieldText = '*********';
|
|
4633
4649
|
class ItemUtils {
|
|
@@ -5552,7 +5568,7 @@ class PryBackendAggregationService extends PryAggregationService {
|
|
|
5552
5568
|
if (options.graph && options.graph.sort) {
|
|
5553
5569
|
params = params.set('sort', `${options.graph.sort.direction},${(options.graph.sort.value ?? '').toUpperCase()}`);
|
|
5554
5570
|
}
|
|
5555
|
-
params = this.searchService.getItemsFilter(targetDatasource, params);
|
|
5571
|
+
params = this.searchService.getItemsFilter(targetDatasource, params, false);
|
|
5556
5572
|
const key = `${this.dataUrl}_${params.toString()}`;
|
|
5557
5573
|
if (!this.cache[key] || this.cache[key].time + 1000 < new Date().getTime()) {
|
|
5558
5574
|
this.cache[key] = {
|
|
@@ -7825,6 +7841,7 @@ class WidgetInstanciatorComponent extends SubscriptionnerDirective {
|
|
|
7825
7841
|
.resolveComponent(widgetManifest)
|
|
7826
7842
|
.pipe(delay(1))
|
|
7827
7843
|
.subscribe((component) => {
|
|
7844
|
+
this.release();
|
|
7828
7845
|
this.instanciatedComponent = !!component
|
|
7829
7846
|
? this.componentRef.createComponent(component)
|
|
7830
7847
|
: this.componentRef.createComponent(WidgetPlaceholderComponent);
|
|
@@ -7841,11 +7858,19 @@ class WidgetInstanciatorComponent extends SubscriptionnerDirective {
|
|
|
7841
7858
|
});
|
|
7842
7859
|
}));
|
|
7843
7860
|
}
|
|
7844
|
-
|
|
7845
|
-
super.ngOnDestroy();
|
|
7861
|
+
release() {
|
|
7846
7862
|
if (this.instanciatedComponent) {
|
|
7847
7863
|
this.instanciatedComponent.destroy();
|
|
7864
|
+
// @ts-ignore
|
|
7865
|
+
this.instanciatedComponent = null;
|
|
7848
7866
|
}
|
|
7867
|
+
this.instanceSubscription?.unsubscribe();
|
|
7868
|
+
// @ts-ignore
|
|
7869
|
+
this.instanceSubscription = null;
|
|
7870
|
+
}
|
|
7871
|
+
ngOnDestroy() {
|
|
7872
|
+
super.ngOnDestroy();
|
|
7873
|
+
this.release();
|
|
7849
7874
|
this.cdRef.detectChanges();
|
|
7850
7875
|
}
|
|
7851
7876
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: WidgetInstanciatorComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: WidgetFactoryService }, { token: i1.Store }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -10450,7 +10475,7 @@ class ManifestService {
|
|
|
10450
10475
|
.select(ConfigSelectors.refUrl)
|
|
10451
10476
|
.pipe(mergeMap((url) => this.httpClient.get(encodeURI(`${url}/users/me/dashboards/id/${id}/manifest`))));
|
|
10452
10477
|
}
|
|
10453
|
-
save(name, manifest, id, description, image, cover, metadata, groups) {
|
|
10478
|
+
save(name, manifest, id, description, image, cover, metadata, groups, visibility) {
|
|
10454
10479
|
return this.store.select(ConfigSelectors.refUrl).pipe(mergeMap((url) => this.httpClient.post(encodeURI(`${url}/users/me/dashboards`), {
|
|
10455
10480
|
id,
|
|
10456
10481
|
name,
|
|
@@ -10460,7 +10485,8 @@ class ManifestService {
|
|
|
10460
10485
|
cover,
|
|
10461
10486
|
metadata,
|
|
10462
10487
|
datasource: ManifestUtils.getDatasourcesUsedByManifest(manifest).map((ds) => ds.datasetId),
|
|
10463
|
-
groups
|
|
10488
|
+
groups,
|
|
10489
|
+
visibility
|
|
10464
10490
|
})));
|
|
10465
10491
|
}
|
|
10466
10492
|
delete(id) {
|
|
@@ -10762,7 +10788,7 @@ class DashboardEffects {
|
|
|
10762
10788
|
});
|
|
10763
10789
|
})), { dispatch: false });
|
|
10764
10790
|
this.saveManifest$ = createEffect(() => this.actions$.pipe(ofType(DashboardActions.saveManifest), withLatestFrom(this.store.select(DashboardSelectors.globalManifest)), mergeMap$1(([action, currentManifest]) => this.manifestService
|
|
10765
|
-
.save(action.name, action.manifest ?? currentManifest, action.id, action.description, action.image, action.cover, action.metadata, action.groups)
|
|
10791
|
+
.save(action.name, action.manifest ?? currentManifest, action.id, action.description, action.image, action.cover, action.metadata, action.groups, action.visibility ?? { type: PryVisibilityType.PRIVATE })
|
|
10766
10792
|
.pipe(tap(() => this.snackBar.open({
|
|
10767
10793
|
message: this.translateService.instant('@pry.toolbox.manifest.saved', { viewId: action.name }),
|
|
10768
10794
|
type: 'success'
|
|
@@ -11772,7 +11798,8 @@ class PryDashboardModule {
|
|
|
11772
11798
|
RefreshService,
|
|
11773
11799
|
PryTitleService,
|
|
11774
11800
|
WebsocketService,
|
|
11775
|
-
ConfigService
|
|
11801
|
+
ConfigService,
|
|
11802
|
+
WidgetFactoryService
|
|
11776
11803
|
]
|
|
11777
11804
|
};
|
|
11778
11805
|
}
|
|
@@ -11826,7 +11853,7 @@ class PryDashboardModule {
|
|
|
11826
11853
|
FilterInstanciatorComponent,
|
|
11827
11854
|
FilterGroupComponent,
|
|
11828
11855
|
DatasourceSelectorComponent] }); }
|
|
11829
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PryDashboardModule,
|
|
11856
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PryDashboardModule, imports: [CommonModule,
|
|
11830
11857
|
FormsModule,
|
|
11831
11858
|
PrySelectModule,
|
|
11832
11859
|
PryIconModule,
|
|
@@ -11860,7 +11887,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
11860
11887
|
PryI18nModule
|
|
11861
11888
|
],
|
|
11862
11889
|
exports: [...components],
|
|
11863
|
-
providers: [
|
|
11890
|
+
providers: []
|
|
11864
11891
|
}]
|
|
11865
11892
|
}], ctorParameters: function () { return [{ type: i1.Store }]; } });
|
|
11866
11893
|
|
|
@@ -12286,5 +12313,5 @@ function filterLoader(module, prop) {
|
|
|
12286
12313
|
* Generated bundle index. Do not edit.
|
|
12287
12314
|
*/
|
|
12288
12315
|
|
|
12289
|
-
export { AccordionComponent, AccordionItemComponent, Aggregation, BASE_DISPLAY_OPTIONS, BaseFilterComponent, BaseFilterModule, BaseLayoutComponent, BaseMenuComponent, BaseToolboxComponent, BaseTooltipComponent, BaseTooltipModule, BaseWidgetComponent, BaseWidgetModule, BusService, CategoryActions, CategorySelectors, CategoryService, ChartOptionDefault, ChipsSelectorComponent, ClassActions, ClassSelectors, ClassService, ConfigActions, ConfigSelectors, ConfigService, ContextMenuActions, ContextMenuComponent, ContextMenuSelectors, DEFAULT_CATEGORY_UUID, DEFAULT_COLUMNS_NUMBER, DEFAULT_GAP_PX, DEFAULT_ICON_URL, DEFAULT_MSG_TIMEOUT, DEFAULT_NAMED_QUERY_ID, DEFAULT_PROJECTION, DEFAULT_RESTITUTION_ICON_URL, DEFAULT_ROWS_NUMBER, DEFAULT_ROW_HEIGHT_PX, DELAY_FOR_HIDE, DashboardActions, DashboardComponent, DashboardGridLayout, DashboardSelectors, DataSourceActions, DataSourceSelectors, DataSourceService, DataWidgetComponent, DatasourceSelectorComponent, DatasourceUtils, DateRangeHighlightPipe, DateUtils, DefaultTooltipComponent, ENV_OPTIONS, EXPLORE_NAMED_QUERY_ID, EllipsisDirective, FIELD_OPTIONS, FIELD_UUID, FILTERS_DOMAIN, FILTER_DEFINITION, FieldActions, FieldSelectors, FieldService, FieldType, FilterFactoryService, FilterGroupComponent, FilterInstanciatorComponent, GeoMetadata, GeometricFieldTypes, GetSecuredImagePipe, GraphType, HTTP_ORIGIN_METADATA, I18nPipe, INTERNALLY_STORED_IMAGE_PREFIX, IconPosition, ImageActions, ImageService, ImagesSelectors, ItemUtils, LibraryTypes, LoopScrollColumnComponent, METADATA_TYPE, META_OPTIONS, MIME_TYPE_RESULTSET, MIME_TYPE_WIDGET_MANIFEST, MIME_TYPE_WIDGET_SIZE, MIME_TYPE_WIDGET_TYPE, ManifestService, ManifestUtils, ManifestsComponent, MarkSubType, MarkType, MetadataComponent, NamedQueryTypes, NumericFieldTypes, OPERATOR_OPTIONS, Operation, PRY_ACCESS_GUARD, PRY_ACCESS_TOKEN, PRY_CUSTOMEVENT_TYPE, PRY_DIALOG_DATA, PRY_GEOAUTH_TOKEN, PryAboutComponent, PryAboutModule, PryAccessDirective, PryAccessUtils, PryAggregationService, PryBackendAggregationService, PryBaseAccess, PryBaseAccessGuard, PryCoreModule, PryDashboardModule, PryDatasetType, PryDatePickerComponent, PryDatePickerModule, PryDefaultAccessGuard, PryDefaultAccessService, PryDefaultGeoAuthService, PryDialogConfirmComponent, PryDialogRef, PryDialogService, PryEditInputComponent, PryEditInputModule, PryFilterGroupCssComponent, PryFrontendAggregationService, PryGeoAuthService, PryGroupShareComponent, PryHiddenWhenOverlay, PryHiddenWhenOverlayDirective, PryHttpErrorInterceptorService, PryI18nModule, PryI18nService, PryIconComponent, PryIconModule, PryModalComponent, PryModalModule, PryModalStatusComponent, PryModalStatusModule, PryNqColorSelectorComponent, PryObjectEditionComponent, PryOverlayDirective, PryOverlayModule, PryRangeComponent, PryRangeModule, PrySelectComponent, PrySelectImageComponent, PrySelectModule, PryShareComponent, PryShareModule, PrySnackbarComponent, PrySnackbarModule, PrySnackbarService, PrySortDataPipe, PrySortHeaderComponent, PrySortHeaderDirective, PrySortModule, PrySortTableDirective, PryTimePickerComponent, PryTitleService, PryToggleComponent, PryToggleModule, PryUploadComponent, PryVisibilityType, PryWidgetHeaderComponent, RawService, RelationTypesActions, RelationTypesSelectors, RelationTypesService, ResultSetSizePipe, ResultsetUtils, SYMBOL_DOMAIN, SearchActions, SearchSelectors, SearchService, SettingsComponent, SubscriptionnerDirective, SymbolService, TABLE_ATTR_DOMAIN, TILE_ATTR_DOMAIN, TOOLTIPS_DOMAIN, TOOLTIP_DEFINITION, TabComponent, TabGroupComponent, ToolboxManifestService, ToolboxMenuService, TooltipFactoryService, TooltipMode, TranslateIdPipe, TranslateItemToSymbolPipe, UNKNOWN_DATASOURCE, USE_CURRENT_RESULTSET, VARIABLE_TYPE, VegaColorType, VegaType, ViewMode, VizualizeRawComponent, WIDGET_DEFINITION, WIDGET_HEADER_HEIGHT, WebsocketService, WidgetFactoryService, WidgetInstanciatorComponent, WidgetPlaceholderComponent, WidgetPlacementUtils, WmsService, adapter$2 as adapter, aggregationDefault, baseItemProperties, classReducer, classesFeatureKey, compareOperationFunctions, contextMenuFeatureKey, contextMenuReducer, createPlacedWidgetCopy, dashboardFeatureKey, dashboardInitialState, dashboardReducer, dataSourceFeatureKey, dataSourceReducer, deepMerge, defaultColors, defaultMenuStructure, enTranslations$1 as enTranslations, filterLoader, frTranslations$1 as frTranslations, getDisplayOptions, httpErrorOptions, imageFeatureKey, imageReducer, initialClassState, initialContextMenuState, initialDataSourceState, initialImageState, initialSearchState, latLonToGeographicFieldTransformation, markTypesDefault, notificationFeatureKey, orderWidgetsAccordingToPlacement, searchFeatureKey, searchReducer, selectAll$2 as selectAll, selectEntities$2 as selectEntities, solveCollisions, solvingCollisionOptions, sortByName$2 as sortByName, subTypesDefault, tooltipLoader, vegaColorSchemesDefault, widgetLoader, widgetMapConfig };
|
|
12316
|
+
export { AccordionComponent, AccordionItemComponent, Aggregation, BASE_DISPLAY_OPTIONS, BaseFilterComponent, BaseFilterModule, BaseLayoutComponent, BaseMenuComponent, BaseToolboxComponent, BaseTooltipComponent, BaseTooltipModule, BaseWidgetComponent, BaseWidgetModule, BusService, CategoryActions, CategorySelectors, CategoryService, ChartOptionDefault, ChipsSelectorComponent, ClassActions, ClassSelectors, ClassService, ConfigActions, ConfigSelectors, ConfigService, ContextMenuActions, ContextMenuComponent, ContextMenuSelectors, DEFAULT_CATEGORY_UUID, DEFAULT_COLUMNS_NUMBER, DEFAULT_GAP_PX, DEFAULT_ICON_URL, DEFAULT_MSG_TIMEOUT, DEFAULT_NAMED_QUERY_ID, DEFAULT_PROJECTION, DEFAULT_RESTITUTION_ICON_URL, DEFAULT_ROWS_NUMBER, DEFAULT_ROW_HEIGHT_PX, DEFAULT_SEARCH_LIMIT_NUMBER, DELAY_FOR_HIDE, DashboardActions, DashboardComponent, DashboardGridLayout, DashboardSelectors, DataSourceActions, DataSourceSelectors, DataSourceService, DataWidgetComponent, DatasourceSelectorComponent, DatasourceUtils, DateRangeHighlightPipe, DateUtils, DefaultTooltipComponent, ENV_OPTIONS, EXPLORE_NAMED_QUERY_ID, EllipsisDirective, FIELD_OPTIONS, FIELD_UUID, FILTERS_DOMAIN, FILTER_DEFINITION, FieldActions, FieldSelectors, FieldService, FieldType, FilterFactoryService, FilterGroupComponent, FilterInstanciatorComponent, GeoMetadata, GeometricFieldTypes, GetSecuredImagePipe, GraphType, HTTP_ORIGIN_METADATA, I18nPipe, INTERNALLY_STORED_IMAGE_PREFIX, IconPosition, ImageActions, ImageService, ImagesSelectors, ItemUtils, LibraryTypes, LoopScrollColumnComponent, METADATA_TYPE, META_OPTIONS, MIME_TYPE_RESULTSET, MIME_TYPE_WIDGET_MANIFEST, MIME_TYPE_WIDGET_SIZE, MIME_TYPE_WIDGET_TYPE, ManifestService, ManifestUtils, ManifestsComponent, MarkSubType, MarkType, MetadataComponent, NamedQueryTypes, NumericFieldTypes, OPERATOR_OPTIONS, Operation, PRY_ACCESS_GUARD, PRY_ACCESS_TOKEN, PRY_CUSTOMEVENT_TYPE, PRY_DIALOG_DATA, PRY_GEOAUTH_TOKEN, PryAboutComponent, PryAboutModule, PryAccessDirective, PryAccessUtils, PryAggregationService, PryBackendAggregationService, PryBaseAccess, PryBaseAccessGuard, PryCoreModule, PryDashboardModule, PryDatasetType, PryDatePickerComponent, PryDatePickerModule, PryDefaultAccessGuard, PryDefaultAccessService, PryDefaultGeoAuthService, PryDialogConfirmComponent, PryDialogRef, PryDialogService, PryEditInputComponent, PryEditInputModule, PryFilterGroupCssComponent, PryFrontendAggregationService, PryGeoAuthService, PryGroupShareComponent, PryHiddenWhenOverlay, PryHiddenWhenOverlayDirective, PryHttpErrorInterceptorService, PryI18nModule, PryI18nService, PryIconComponent, PryIconModule, PryModalComponent, PryModalModule, PryModalStatusComponent, PryModalStatusModule, PryNqColorSelectorComponent, PryObjectEditionComponent, PryOverlayDirective, PryOverlayModule, PryRangeComponent, PryRangeModule, PrySelectComponent, PrySelectImageComponent, PrySelectModule, PryShareComponent, PryShareModule, PrySnackbarComponent, PrySnackbarModule, PrySnackbarService, PrySortDataPipe, PrySortHeaderComponent, PrySortHeaderDirective, PrySortModule, PrySortTableDirective, PryTimePickerComponent, PryTitleService, PryToggleComponent, PryToggleModule, PryUploadComponent, PryVisibilityType, PryWidgetHeaderComponent, RawService, RelationTypesActions, RelationTypesSelectors, RelationTypesService, ResultSetSizePipe, ResultsetUtils, SYMBOL_DOMAIN, SearchActions, SearchSelectors, SearchService, SettingsComponent, SubscriptionnerDirective, SymbolService, TABLE_ATTR_DOMAIN, TILE_ATTR_DOMAIN, TOOLTIPS_DOMAIN, TOOLTIP_DEFINITION, TabComponent, TabGroupComponent, TextFieldTypes, ToolboxManifestService, ToolboxMenuService, TooltipFactoryService, TooltipMode, TranslateIdPipe, TranslateItemToSymbolPipe, UNKNOWN_DATASOURCE, USE_CURRENT_RESULTSET, VARIABLE_TYPE, VegaColorType, VegaType, ViewMode, VizualizeRawComponent, WIDGET_DEFINITION, WIDGET_HEADER_HEIGHT, WebsocketService, WidgetFactoryService, WidgetInstanciatorComponent, WidgetPlaceholderComponent, WidgetPlacementUtils, WmsService, adapter$2 as adapter, aggregationDefault, baseItemProperties, classReducer, classesFeatureKey, compareOperationFunctions, contextMenuFeatureKey, contextMenuReducer, createPlacedWidgetCopy, dashboardFeatureKey, dashboardInitialState, dashboardReducer, dataSourceFeatureKey, dataSourceReducer, deepMerge, defaultColors, defaultMenuStructure, enTranslations$1 as enTranslations, filterLoader, frTranslations$1 as frTranslations, getDisplayOptions, httpErrorOptions, imageFeatureKey, imageReducer, initialClassState, initialContextMenuState, initialDataSourceState, initialImageState, initialSearchState, latLonToGeographicFieldTransformation, markTypesDefault, notificationFeatureKey, orderWidgetsAccordingToPlacement, searchFeatureKey, searchReducer, selectAll$2 as selectAll, selectEntities$2 as selectEntities, solveCollisions, solvingCollisionOptions, sortByName$2 as sortByName, subTypesDefault, tooltipLoader, vegaColorSchemesDefault, widgetLoader, widgetMapConfig };
|
|
12290
12317
|
//# sourceMappingURL=provoly-dashboard.mjs.map
|