@provoly/dashboard 0.23.3 → 0.23.5
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/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.d.ts +16 -8
- package/admin/i18n/fr.translations.d.ts +1 -0
- package/assets/svgs/six_dot.svg +15 -0
- package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +28 -6
- package/esm2022/admin/i18n/fr.translations.mjs +3 -2
- package/esm2022/dataset/components/dataset-detail/dataset-detail.component.mjs +3 -3
- package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +34 -15
- package/esm2022/lib/core/components/share/share.utils.mjs +19 -0
- package/esm2022/lib/core/model/filter.interface.mjs +1 -1
- package/esm2022/lib/core/model/manifest.interface.mjs +1 -1
- package/esm2022/lib/core/model/widget.interface.mjs +1 -1
- package/esm2022/lib/core/public-api.mjs +2 -1
- package/esm2022/lib/core/store/config/config.service.mjs +2 -1
- package/esm2022/lib/core/toolbox/toolbox-menu.service.mjs +1 -2
- package/esm2022/lib/dashboard/store/dashboard.actions.mjs +1 -1
- package/esm2022/lib/dashboard/store/dashboard.effects.mjs +3 -3
- package/esm2022/lib/dashboard/store/manifest.service.mjs +3 -3
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +5 -9
- package/esm2022/presentation/components/presentation.component.mjs +43 -5
- package/esm2022/presentation/i18n/fr.translations.mjs +1 -2
- package/esm2022/restitution/components/restitution/restitution.component.mjs +5 -11
- package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +3 -3
- package/esm2022/restitution/components/restitution-list-item/restitution-list-item.component.mjs +3 -3
- package/esm2022/toolbox/components/filter-settings/filter-settings.component.mjs +14 -5
- package/esm2022/toolbox/components/save-view/save-view.component.mjs +5 -7
- package/esm2022/toolbox/components/share/share.component.mjs +2 -3
- package/fesm2022/provoly-dashboard-admin.mjs +28 -5
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-dataset.mjs +2 -2
- package/fesm2022/provoly-dashboard-dataset.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-presentation.mjs +47 -14
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +7 -13
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +18 -11
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +57 -19
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/components/share/group-share/group-share.component.d.ts +14 -4
- package/lib/core/components/share/share.utils.d.ts +4 -0
- package/lib/core/model/filter.interface.d.ts +1 -0
- package/lib/core/model/manifest.interface.d.ts +0 -2
- package/lib/core/model/widget.interface.d.ts +0 -1
- package/lib/core/public-api.d.ts +1 -0
- package/lib/dashboard/components/widgets/widget-placement/widget-placement.utils.d.ts +0 -1
- package/lib/dashboard/store/dashboard.actions.d.ts +0 -2
- package/lib/dashboard/store/manifest.service.d.ts +2 -6
- package/package.json +36 -36
- package/presentation/components/presentation.component.d.ts +10 -1
- package/presentation/i18n/fr.translations.d.ts +0 -1
- package/styles/components/_a-label.scss +4 -0
- package/styles-theme/components-theme/_a-btn.theme.scss +0 -1
- package/toolbox/components/filter-settings/filter-settings.component.d.ts +4 -14
|
@@ -3516,6 +3516,7 @@ class ConfigService {
|
|
|
3516
3516
|
saveWidget(widget) {
|
|
3517
3517
|
const params = {
|
|
3518
3518
|
...widget,
|
|
3519
|
+
cover: true,
|
|
3519
3520
|
datasource: widget.datasource.filter((ds) => ![DEFAULT_NAMED_QUERY_ID, EXPLORE_NAMED_QUERY_ID].includes(ds))
|
|
3520
3521
|
};
|
|
3521
3522
|
return this.store
|
|
@@ -7347,22 +7348,38 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
|
|
|
7347
7348
|
}] } });
|
|
7348
7349
|
|
|
7349
7350
|
class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
7351
|
+
set disableRadios(value) {
|
|
7352
|
+
if (value)
|
|
7353
|
+
this._disableRadios$.next(value);
|
|
7354
|
+
}
|
|
7355
|
+
set allowedGroups(value) {
|
|
7356
|
+
if (value)
|
|
7357
|
+
this._allowedGroups$.next(value);
|
|
7358
|
+
}
|
|
7350
7359
|
constructor(store, _cd) {
|
|
7351
7360
|
super();
|
|
7352
7361
|
this.store = store;
|
|
7353
7362
|
this._cd = _cd;
|
|
7354
7363
|
this._onChange = (groups) => groups;
|
|
7355
7364
|
this._onTouched = () => { };
|
|
7356
|
-
this._disabled = false;
|
|
7357
7365
|
// for tracking input
|
|
7358
7366
|
this.assignedGroupNames$ = new BehaviorSubject([]);
|
|
7359
7367
|
this.radioValue = PryVisibilityType.PRIVATE;
|
|
7360
7368
|
this.PryVisibilityType = PryVisibilityType;
|
|
7361
7369
|
this.visibilityTypes = [];
|
|
7370
|
+
this._disableRadios$ = new BehaviorSubject({
|
|
7371
|
+
[PryVisibilityType.PRIVATE]: false,
|
|
7372
|
+
[PryVisibilityType.RESTRICTED]: false,
|
|
7373
|
+
[PryVisibilityType.PUBLIC]: false
|
|
7374
|
+
});
|
|
7375
|
+
this._allowedGroups$ = new BehaviorSubject(undefined);
|
|
7376
|
+
this.radioValueChange = new EventEmitter();
|
|
7362
7377
|
this.store.dispatch(ConfigActions.loadAccessGroups());
|
|
7363
|
-
this.groups$ = this.store
|
|
7364
|
-
.
|
|
7365
|
-
.
|
|
7378
|
+
this.groups$ = combineLatest([this.store.select(ConfigSelectors.accessGroups), this._allowedGroups$]).pipe(map(([groups, allowedGroups]) => groups
|
|
7379
|
+
.filter((group) => group.name !== 'ALL')
|
|
7380
|
+
.filter((group) => allowedGroups?.includes('ALL') || allowedGroups?.includes('AUTHENTICATED') || !allowedGroups
|
|
7381
|
+
? true
|
|
7382
|
+
: allowedGroups.includes(group.name))));
|
|
7366
7383
|
this.assignedGroups$ = combineLatest([this.groups$, this.assignedGroupNames$]).pipe(map(([groups, groupNames]) => groups.filter((group) => {
|
|
7367
7384
|
return groupNames.includes(group.name);
|
|
7368
7385
|
}) ?? []));
|
|
@@ -7370,7 +7387,7 @@ class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
|
7370
7387
|
label: label.toLowerCase(),
|
|
7371
7388
|
value: PryVisibilityType[label]
|
|
7372
7389
|
}));
|
|
7373
|
-
this.templateData$ = combineLatest([this.groups$, this.assignedGroups$]).pipe(map(([groups, assignedGroups]) => ({ groups, assignedGroups })));
|
|
7390
|
+
this.templateData$ = combineLatest([this.groups$, this.assignedGroups$, this._disableRadios$]).pipe(map(([groups, assignedGroups, disableRadios]) => ({ groups, assignedGroups, disableRadios })));
|
|
7374
7391
|
}
|
|
7375
7392
|
writeValue(value) {
|
|
7376
7393
|
value = value ?? [];
|
|
@@ -7388,10 +7405,6 @@ class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
|
7388
7405
|
registerOnTouched(fn) {
|
|
7389
7406
|
this._onTouched = fn;
|
|
7390
7407
|
}
|
|
7391
|
-
setDisabledState(isDisabled) {
|
|
7392
|
-
this._disabled = isDisabled;
|
|
7393
|
-
this._cd.markForCheck();
|
|
7394
|
-
}
|
|
7395
7408
|
updateRadioValue(groups) {
|
|
7396
7409
|
if (groups.length === 0) {
|
|
7397
7410
|
this.radioValue = PryVisibilityType.PRIVATE;
|
|
@@ -7406,6 +7419,7 @@ class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
|
7406
7419
|
changeGroupsBasedOnRadioValue(type) {
|
|
7407
7420
|
if (this.radioValue !== type) {
|
|
7408
7421
|
this.radioValue = type;
|
|
7422
|
+
this.radioValueChange.emit(type);
|
|
7409
7423
|
switch (type) {
|
|
7410
7424
|
case PryVisibilityType.PRIVATE:
|
|
7411
7425
|
this.changeGroups([]);
|
|
@@ -7427,13 +7441,13 @@ class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
|
7427
7441
|
}
|
|
7428
7442
|
}
|
|
7429
7443
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryGroupShareComponent, deps: [{ token: i1.Store }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7430
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.3", type: PryGroupShareComponent, selector: "pry-group-share", providers: [
|
|
7444
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "17.1.3", type: PryGroupShareComponent, selector: "pry-group-share", inputs: { disableRadios: "disableRadios", allowedGroups: "allowedGroups" }, outputs: { radioValueChange: "radioValueChange" }, providers: [
|
|
7431
7445
|
{
|
|
7432
7446
|
provide: NG_VALUE_ACCESSOR,
|
|
7433
7447
|
useExisting: forwardRef(() => PryGroupShareComponent),
|
|
7434
7448
|
multi: true
|
|
7435
7449
|
}
|
|
7436
|
-
], usesInheritance: true, ngImport: i0, template: "<div class=\"m-form-radio-group\">\n
|
|
7450
|
+
], usesInheritance: true, ngImport: i0, template: "@if(templateData$ | async; as data) {\n <div class=\"m-form-radio-group\">\n <div *ngFor=\"let type of visibilityTypes\" class=\"m-form-radio-group__item\">\n <input\n type=\"radio\"\n name=\"visibility\"\n [id]=\"type.label\"\n [value]=\"type.value\"\n [ngModel]=\"radioValue\"\n (ngModelChange)=\"changeGroupsBasedOnRadioValue($event)\"\n [disabled]=\"data.disableRadios[type.value]\"\n />\n <label [for]=\"type.label\" class=\"a-label\" [class.a-label--disabled]=\"data.disableRadios[type.value]\">\n {{ '@pry.share.' + type.label | i18n }}\n </label>\n </div>\n </div>\n @if (radioValue === PryVisibilityType.RESTRICTED) {\n <pry-chips-selector\n bindLabel=\"name\"\n bindValue=\"name\"\n translationStringBase=\"@pry.components.chipsSelector.share.\"\n itemTranslationStringBase=\"@pry.components.chipsSelector.share.groups.\"\n [showActionButtons]=\"false\"\n [items]=\"data.groups\"\n (itemsChanged)=\"changeGroups($event)\"\n [usedItems]=\"data.assignedGroups\"\n [showSearchbar]=\"data.groups.length > 6\"\n ></pry-chips-selector>\n }\n}\n", dependencies: [{ kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i4.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i4.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }, { kind: "directive", type: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: ChipsSelectorComponent, selector: "pry-chips-selector", inputs: ["bindValue", "bindLabel", "translationStringBase", "itemTranslationStringBase", "showActionButtons", "showSearchbar", "items", "usedItems"], outputs: ["cancel", "validated", "previousTab", "nextTab", "itemsChanged"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: I18nPipe, name: "i18n" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7437
7451
|
}
|
|
7438
7452
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryGroupShareComponent, decorators: [{
|
|
7439
7453
|
type: Component,
|
|
@@ -7443,8 +7457,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
|
|
|
7443
7457
|
useExisting: forwardRef(() => PryGroupShareComponent),
|
|
7444
7458
|
multi: true
|
|
7445
7459
|
}
|
|
7446
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"m-form-radio-group\">\n
|
|
7447
|
-
}], ctorParameters: () => [{ type: i1.Store }, { type: i0.ChangeDetectorRef }]
|
|
7460
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if(templateData$ | async; as data) {\n <div class=\"m-form-radio-group\">\n <div *ngFor=\"let type of visibilityTypes\" class=\"m-form-radio-group__item\">\n <input\n type=\"radio\"\n name=\"visibility\"\n [id]=\"type.label\"\n [value]=\"type.value\"\n [ngModel]=\"radioValue\"\n (ngModelChange)=\"changeGroupsBasedOnRadioValue($event)\"\n [disabled]=\"data.disableRadios[type.value]\"\n />\n <label [for]=\"type.label\" class=\"a-label\" [class.a-label--disabled]=\"data.disableRadios[type.value]\">\n {{ '@pry.share.' + type.label | i18n }}\n </label>\n </div>\n </div>\n @if (radioValue === PryVisibilityType.RESTRICTED) {\n <pry-chips-selector\n bindLabel=\"name\"\n bindValue=\"name\"\n translationStringBase=\"@pry.components.chipsSelector.share.\"\n itemTranslationStringBase=\"@pry.components.chipsSelector.share.groups.\"\n [showActionButtons]=\"false\"\n [items]=\"data.groups\"\n (itemsChanged)=\"changeGroups($event)\"\n [usedItems]=\"data.assignedGroups\"\n [showSearchbar]=\"data.groups.length > 6\"\n ></pry-chips-selector>\n }\n}\n" }]
|
|
7461
|
+
}], ctorParameters: () => [{ type: i1.Store }, { type: i0.ChangeDetectorRef }], propDecorators: { disableRadios: [{
|
|
7462
|
+
type: Input
|
|
7463
|
+
}], allowedGroups: [{
|
|
7464
|
+
type: Input
|
|
7465
|
+
}], radioValueChange: [{
|
|
7466
|
+
type: Output
|
|
7467
|
+
}] } });
|
|
7468
|
+
|
|
7469
|
+
const canManifestBeMadePublic = (manifest, datasets) => {
|
|
7470
|
+
return manifest.datasource.every((dsId) => {
|
|
7471
|
+
const datasource = datasets.find((d) => d.id === dsId);
|
|
7472
|
+
return datasource?.groups?.includes('ALL') ?? false;
|
|
7473
|
+
});
|
|
7474
|
+
};
|
|
7475
|
+
const getCommonDatasourceGroupsForManifest = (manifest, datasets) => {
|
|
7476
|
+
const result = [];
|
|
7477
|
+
const dsGroups = manifest.datasource.map((dsId) => datasets.find((d) => d.id === dsId)?.groups ?? []);
|
|
7478
|
+
const baseArray = dsGroups[0];
|
|
7479
|
+
for (let i = 0; i < baseArray.length; i++) {
|
|
7480
|
+
const element = baseArray[i];
|
|
7481
|
+
if (dsGroups.every((array) => array.includes(element))) {
|
|
7482
|
+
result.push(element);
|
|
7483
|
+
}
|
|
7484
|
+
}
|
|
7485
|
+
return result;
|
|
7486
|
+
};
|
|
7448
7487
|
|
|
7449
7488
|
const MIME_TYPE_RESULTSET = 'application/resultset';
|
|
7450
7489
|
|
|
@@ -9701,7 +9740,6 @@ class ToolboxMenuService {
|
|
|
9701
9740
|
description: widget.description,
|
|
9702
9741
|
isCustom: true,
|
|
9703
9742
|
visibility: widget.visibility,
|
|
9704
|
-
cover: widget.cover
|
|
9705
9743
|
}))
|
|
9706
9744
|
]
|
|
9707
9745
|
})));
|
|
@@ -10591,7 +10629,7 @@ class ManifestService {
|
|
|
10591
10629
|
.select(ConfigSelectors.refUrl)
|
|
10592
10630
|
.pipe(mergeMap((url) => this.httpClient.get(encodeURI(`${url}/users/me/dashboards/id/${id}/manifest`))));
|
|
10593
10631
|
}
|
|
10594
|
-
save(name, manifest, id, description, image,
|
|
10632
|
+
save(name, manifest, id, description, image, metadata, groups) {
|
|
10595
10633
|
return this.store.select(ConfigSelectors.refUrl).pipe(mergeMap((url) => {
|
|
10596
10634
|
return this.httpClient.post(encodeURI(`${url}/users/me/dashboards`), {
|
|
10597
10635
|
id,
|
|
@@ -10599,7 +10637,7 @@ class ManifestService {
|
|
|
10599
10637
|
description,
|
|
10600
10638
|
manifest,
|
|
10601
10639
|
image,
|
|
10602
|
-
cover,
|
|
10640
|
+
cover: true,
|
|
10603
10641
|
metadata,
|
|
10604
10642
|
datasource: ManifestUtils.getDatasourcesUsedByManifest(manifest).map((ds) => ds.datasetId),
|
|
10605
10643
|
groups
|
|
@@ -10911,13 +10949,13 @@ class DashboardEffects {
|
|
|
10911
10949
|
});
|
|
10912
10950
|
})), { dispatch: false });
|
|
10913
10951
|
this.saveManifest$ = createEffect(() => this.actions$.pipe(ofType(DashboardActions.saveManifest), withLatestFrom(this.store.select(DashboardSelectors.globalManifest)), withLatestFrom(this.store.select(DataSourceSelectors.datasets)), mergeMap$1(([[action, currentManifest], datasets]) => this.manifestService
|
|
10914
|
-
.save(action.name, action.manifest ?? currentManifest, action.id, action.description, action.image, action.
|
|
10952
|
+
.save(action.name, action.manifest ?? currentManifest, action.id, action.description, action.image, action.metadata, action.groups)
|
|
10915
10953
|
.pipe(tap((response) => {
|
|
10916
10954
|
this.snackBar.open({
|
|
10917
10955
|
message: this.translateService.instant('@pry.toolbox.manifest.saved', { viewId: action.name }),
|
|
10918
10956
|
type: 'success'
|
|
10919
10957
|
});
|
|
10920
|
-
if (response
|
|
10958
|
+
if (Object.keys(response.missingGroupsByEntity).length > 0) {
|
|
10921
10959
|
const data = {
|
|
10922
10960
|
title: '@pry.share.conflict.title',
|
|
10923
10961
|
message: this.i18nService.instant('@pry.share.conflict.main') +
|
|
@@ -12457,5 +12495,5 @@ function filterLoader(module, prop) {
|
|
|
12457
12495
|
* Generated bundle index. Do not edit.
|
|
12458
12496
|
*/
|
|
12459
12497
|
|
|
12460
|
-
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 };
|
|
12498
|
+
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, canManifestBeMadePublic, classReducer, classesFeatureKey, compareOperationFunctions, contextMenuFeatureKey, contextMenuReducer, createPlacedWidgetCopy, dashboardFeatureKey, dashboardInitialState, dashboardReducer, dataSourceFeatureKey, dataSourceReducer, deepMerge, defaultColors, defaultMenuStructure, enTranslations$1 as enTranslations, filterLoader, frTranslations$1 as frTranslations, getCommonDatasourceGroupsForManifest, 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 };
|
|
12461
12499
|
//# sourceMappingURL=provoly-dashboard.mjs.map
|