@provoly/dashboard 1.2.0 → 1.2.2
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 +3 -3
- package/components/sinceDate/sinceDate.pipe.d.ts +2 -0
- package/esm2022/admin/components/admin-dataset/admin-select-dataset/admin-select-dataset.component.mjs +6 -6
- package/esm2022/components/sinceDate/sinceDate.pipe.mjs +27 -10
- package/esm2022/lib/core/components/share/group-share/group-share.component.mjs +28 -21
- package/esm2022/lib/core/components/share/legacy-share/share.component.mjs +25 -37
- package/esm2022/lib/core/components/share/share.model.mjs +2 -7
- package/esm2022/lib/core/i18n/en.translations.mjs +3 -2
- package/esm2022/lib/core/i18n/fr.translations.mjs +3 -2
- package/esm2022/lib/core/model/widget-analytic-manifest.interface.mjs +1 -1
- package/esm2022/lib/core/model/widget.interface.mjs +1 -1
- package/esm2022/lib/core/store/data-source/data-source.actions.mjs +1 -1
- package/esm2022/lib/core/store/data-source/data-source.model.mjs +7 -2
- package/esm2022/lib/core/toolbox/toolbox-menu.service.mjs +3 -6
- package/esm2022/restitution/components/restitution/restitution.component.mjs +8 -12
- package/esm2022/restitution/components/restitution-catalog/restitution-catalog.component.mjs +4 -5
- package/esm2022/restitution/components/restitution-list/restitution-list.component.mjs +2 -2
- package/esm2022/restitution/components/restitution-list-item/restitution-list-item.component.mjs +4 -5
- package/esm2022/search/components/save-query/save-query.component.mjs +2 -2
- package/esm2022/search/search-tools/search-tools.component.mjs +1 -1
- package/esm2022/widgets/widget-analytic/component/widget-analytic.component.mjs +88 -14
- package/esm2022/widgets/widget-analytic/i18n/en.translations.mjs +7 -2
- package/esm2022/widgets/widget-analytic/i18n/fr.translations.mjs +7 -2
- package/esm2022/widgets/widget-analytic/style/css.component.mjs +2 -2
- package/esm2022/widgets/widget-analytic/widget-analytic.module.mjs +12 -8
- package/fesm2022/provoly-dashboard-admin.mjs +5 -5
- package/fesm2022/provoly-dashboard-admin.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-components-sinceDate.mjs +26 -9
- package/fesm2022/provoly-dashboard-components-sinceDate.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-restitution.mjs +11 -17
- package/fesm2022/provoly-dashboard-restitution.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-search.mjs +2 -2
- package/fesm2022/provoly-dashboard-search.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs +112 -24
- package/fesm2022/provoly-dashboard-widgets-widget-analytic.mjs.map +1 -1
- package/fesm2022/provoly-dashboard.mjs +105 -108
- package/fesm2022/provoly-dashboard.mjs.map +1 -1
- package/lib/core/components/share/group-share/group-share.component.d.ts +15 -10
- package/lib/core/components/share/legacy-share/share.component.d.ts +8 -14
- package/lib/core/components/share/share.model.d.ts +0 -9
- package/lib/core/i18n/en.translations.d.ts +2 -1
- package/lib/core/i18n/fr.translations.d.ts +2 -1
- package/lib/core/model/widget-analytic-manifest.interface.d.ts +8 -1
- package/lib/core/model/widget.interface.d.ts +1 -2
- package/lib/core/store/data-source/data-source.actions.d.ts +9 -4
- package/lib/core/store/data-source/data-source.model.d.ts +9 -2
- package/lib/core/toolbox/toolbox-menu.service.d.ts +1 -3
- package/package.json +7 -7
- package/restitution/components/restitution/restitution.component.d.ts +2 -3
- package/restitution/components/restitution-catalog/restitution-catalog.component.d.ts +1 -2
- package/restitution/components/restitution-list-item/restitution-list-item.component.d.ts +1 -2
- package/search/components/save-query/save-query.component.d.ts +5 -2
- package/search/search-fulltext/store/search-fulltext.effects.d.ts +4 -1
- package/search/search-mono-class/store/search-mono-class.effects.d.ts +4 -1
- package/search/search-multi-class/store/search-multi-class.effects.d.ts +4 -1
- package/widgets/widget-analytic/component/widget-analytic.component.d.ts +18 -0
- package/widgets/widget-analytic/i18n/en.translations.d.ts +5 -0
- package/widgets/widget-analytic/i18n/fr.translations.d.ts +5 -0
- package/widgets/widget-analytic/style/_o-widget-analytic.scss +48 -0
- package/widgets/widget-analytic/widget-analytic.module.d.ts +3 -2
|
@@ -332,8 +332,9 @@ const enTranslations$1 = {
|
|
|
332
332
|
},
|
|
333
333
|
tile: 'Tiles',
|
|
334
334
|
template: 'HTML Template',
|
|
335
|
-
|
|
335
|
+
today: 'Today at {{hour}}:{{min}}',
|
|
336
336
|
since_day: '{{day}} day{{plural}} ago',
|
|
337
|
+
from_day: 'In {{day}} day{{plural}}',
|
|
337
338
|
layout: {
|
|
338
339
|
'0': 'Free layout',
|
|
339
340
|
'0_detailled': 'Free mode display, rendering size and positioning fully customizable by the user.',
|
|
@@ -744,8 +745,9 @@ const frTranslations$1 = {
|
|
|
744
745
|
},
|
|
745
746
|
tile: 'Tuiles',
|
|
746
747
|
template: 'Template HTML',
|
|
747
|
-
|
|
748
|
+
today: "Aujourd'hui à {{hour}}:{{min}}",
|
|
748
749
|
since_day: 'Il y a {{day}} jour{{plural}}',
|
|
750
|
+
from_day: 'Dans {{day}} jour{{plural}}',
|
|
749
751
|
layout: {
|
|
750
752
|
'0': 'Composition libre',
|
|
751
753
|
'0_detailled': "Affichage en mode libre, la taille et le positionnement des restitutions sont entièrement paramétrables par l'utilisateur.",
|
|
@@ -5470,6 +5472,13 @@ const CategorySelectors = {
|
|
|
5470
5472
|
categories
|
|
5471
5473
|
};
|
|
5472
5474
|
|
|
5475
|
+
var PryVisibilityType;
|
|
5476
|
+
(function (PryVisibilityType) {
|
|
5477
|
+
PryVisibilityType["PRIVATE"] = "PRIVATE";
|
|
5478
|
+
PryVisibilityType["PUBLIC"] = "PUBLIC";
|
|
5479
|
+
PryVisibilityType["RESTRICTED"] = "RESTRICTED";
|
|
5480
|
+
})(PryVisibilityType || (PryVisibilityType = {}));
|
|
5481
|
+
|
|
5473
5482
|
const feature = createFeatureSelector(relationTypesFeatureKey);
|
|
5474
5483
|
const relationsTypes = createSelector(feature, (state) => {
|
|
5475
5484
|
const arrayForSort = state?.relationsTypes ? [...state.relationsTypes] : [];
|
|
@@ -7390,87 +7399,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
|
|
|
7390
7399
|
}]
|
|
7391
7400
|
}] });
|
|
7392
7401
|
|
|
7393
|
-
var PryVisibilityType;
|
|
7394
|
-
(function (PryVisibilityType) {
|
|
7395
|
-
PryVisibilityType["PRIVATE"] = "PRIVATE";
|
|
7396
|
-
PryVisibilityType["PUBLIC"] = "PUBLIC";
|
|
7397
|
-
PryVisibilityType["RESTRICTED"] = "RESTRICTED";
|
|
7398
|
-
})(PryVisibilityType || (PryVisibilityType = {}));
|
|
7399
|
-
|
|
7400
|
-
class PryShareComponent {
|
|
7401
|
-
constructor(_cd) {
|
|
7402
|
-
this._cd = _cd;
|
|
7403
|
-
this._onChange = (_) => { };
|
|
7404
|
-
this._onTouched = () => { };
|
|
7405
|
-
this._disabled = false;
|
|
7406
|
-
this.PryVisibilityType = PryVisibilityType;
|
|
7407
|
-
this.labelProperty = 'label';
|
|
7408
|
-
this.valueProperty = 'value';
|
|
7409
|
-
this.users$ = null;
|
|
7410
|
-
this.visibilityTypes = [];
|
|
7411
|
-
}
|
|
7412
|
-
ngOnInit() {
|
|
7413
|
-
this.visibilityTypes = Object.keys(PryVisibilityType)
|
|
7414
|
-
.filter((x) => !(parseInt(x) >= 0))
|
|
7415
|
-
.filter((x) => (!this.users$ ? x !== PryVisibilityType.RESTRICTED : true))
|
|
7416
|
-
.map((label) => ({ label: label.toLowerCase(), value: label, icon: `${label.toLowerCase()}` }));
|
|
7417
|
-
}
|
|
7418
|
-
registerOnChange(fn) {
|
|
7419
|
-
this._onChange = fn;
|
|
7420
|
-
}
|
|
7421
|
-
registerOnTouched(fn) {
|
|
7422
|
-
this._onTouched = fn;
|
|
7423
|
-
}
|
|
7424
|
-
setDisabledState(isDisabled) {
|
|
7425
|
-
this._disabled = isDisabled;
|
|
7426
|
-
this._cd.markForCheck();
|
|
7427
|
-
}
|
|
7428
|
-
writeValueUsers(obj) {
|
|
7429
|
-
if (!equal(this.value?.users, obj)) {
|
|
7430
|
-
this.writeValue({ type: this.value?.type, users: obj });
|
|
7431
|
-
}
|
|
7432
|
-
}
|
|
7433
|
-
writeValueType(type) {
|
|
7434
|
-
if (this.value?.type !== type) {
|
|
7435
|
-
this.writeValue({ type, users: this.value?.users });
|
|
7436
|
-
}
|
|
7437
|
-
}
|
|
7438
|
-
writeValue(obj) {
|
|
7439
|
-
if (!equal(this.value, obj)) {
|
|
7440
|
-
this.value = obj;
|
|
7441
|
-
this._onChange(this.value);
|
|
7442
|
-
this._onTouched();
|
|
7443
|
-
this._cd.markForCheck();
|
|
7444
|
-
}
|
|
7445
|
-
}
|
|
7446
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryShareComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7447
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: PryShareComponent, selector: "pry-share", inputs: { value: "value", labelProperty: "labelProperty", valueProperty: "valueProperty", users$: "users$" }, providers: [
|
|
7448
|
-
{
|
|
7449
|
-
provide: NG_VALUE_ACCESSOR,
|
|
7450
|
-
useExisting: forwardRef(() => PryShareComponent),
|
|
7451
|
-
multi: true
|
|
7452
|
-
}
|
|
7453
|
-
], ngImport: i0, template: "<div class=\"m-form-label-field\">\n <label class=\"a-label\" for=\"share_type\">{{ '@pry.share.type' | i18n }}</label>\n <pry-select\n (ngModelChange)=\"writeValueType($event)\"\n [items]=\"visibilityTypes\"\n [ngModel]=\"value?.type\"\n [disabled]=\"_disabled\"\n i18nPrefix=\"@pry.share.\"\n bindValue=\"value\"\n bindLabel=\"label\"\n id=\"share_type\"\n bindIcon=\"icon\"\n [iconSize]=\"[21, 18]\"\n ></pry-select>\n</div>\n\n<ng-container *ngIf=\"value?.type === PryVisibilityType.RESTRICTED\">\n <div class=\"m-form-label-field\">\n <label class=\"a-label\" for=\"users\">{{ '@pry.share.users' | i18n }}</label>\n <pry-select\n (ngModelChange)=\"writeValueUsers($event)\"\n [items]=\"users$ | async\"\n [multiple]=\"true\"\n [closeOnSelect]=\"false\"\n [ngModel]=\"value?.users\"\n [disabled]=\"_disabled\"\n [bindLabel]=\"labelProperty\"\n [bindValue]=\"valueProperty\"\n [autocomplete]=\"true\"\n id=\"users\"\n ></pry-select>\n </div>\n</ng-container>\n", dependencies: [{ kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: PrySelectComponent, selector: "pry-select", inputs: ["items", "clearable", "multiple", "closeOnSelect", "placeholder", "isForm", "required", "name", "readonly", "autocomplete", "alwaysShowAutosuggestedValues", "externalAutocompleteService", "bindValue", "bindLabel", "iconSize", "bindIcon", "template", "i18nPrefix", "bindClasses", "loading", "elementRef"], outputs: ["searched", "cleared", "clicked"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: I18nPipe, name: "i18n" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7454
|
-
}
|
|
7455
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryShareComponent, decorators: [{
|
|
7456
|
-
type: Component,
|
|
7457
|
-
args: [{ selector: 'pry-share', providers: [
|
|
7458
|
-
{
|
|
7459
|
-
provide: NG_VALUE_ACCESSOR,
|
|
7460
|
-
useExisting: forwardRef(() => PryShareComponent),
|
|
7461
|
-
multi: true
|
|
7462
|
-
}
|
|
7463
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"m-form-label-field\">\n <label class=\"a-label\" for=\"share_type\">{{ '@pry.share.type' | i18n }}</label>\n <pry-select\n (ngModelChange)=\"writeValueType($event)\"\n [items]=\"visibilityTypes\"\n [ngModel]=\"value?.type\"\n [disabled]=\"_disabled\"\n i18nPrefix=\"@pry.share.\"\n bindValue=\"value\"\n bindLabel=\"label\"\n id=\"share_type\"\n bindIcon=\"icon\"\n [iconSize]=\"[21, 18]\"\n ></pry-select>\n</div>\n\n<ng-container *ngIf=\"value?.type === PryVisibilityType.RESTRICTED\">\n <div class=\"m-form-label-field\">\n <label class=\"a-label\" for=\"users\">{{ '@pry.share.users' | i18n }}</label>\n <pry-select\n (ngModelChange)=\"writeValueUsers($event)\"\n [items]=\"users$ | async\"\n [multiple]=\"true\"\n [closeOnSelect]=\"false\"\n [ngModel]=\"value?.users\"\n [disabled]=\"_disabled\"\n [bindLabel]=\"labelProperty\"\n [bindValue]=\"valueProperty\"\n [autocomplete]=\"true\"\n id=\"users\"\n ></pry-select>\n </div>\n</ng-container>\n" }]
|
|
7464
|
-
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { value: [{
|
|
7465
|
-
type: Input
|
|
7466
|
-
}], labelProperty: [{
|
|
7467
|
-
type: Input
|
|
7468
|
-
}], valueProperty: [{
|
|
7469
|
-
type: Input
|
|
7470
|
-
}], users$: [{
|
|
7471
|
-
type: Input
|
|
7472
|
-
}] } });
|
|
7473
|
-
|
|
7474
7402
|
const PUBLIC_GROUP = 'ALL';
|
|
7475
7403
|
const AUTHENTICATED_USERS_GROUP = 'AUTHENTICATED';
|
|
7476
7404
|
const SYSTEM_GROUPS = [PUBLIC_GROUP, AUTHENTICATED_USERS_GROUP];
|
|
@@ -7544,6 +7472,76 @@ const getAccessString = (accessArray) => {
|
|
|
7544
7472
|
}
|
|
7545
7473
|
};
|
|
7546
7474
|
|
|
7475
|
+
class PryShareComponent {
|
|
7476
|
+
constructor(_cd) {
|
|
7477
|
+
this._cd = _cd;
|
|
7478
|
+
this._onChange = (_) => { };
|
|
7479
|
+
this._onTouched = () => { };
|
|
7480
|
+
this._disabled = false;
|
|
7481
|
+
this.value = [];
|
|
7482
|
+
this.stringValue = 'private';
|
|
7483
|
+
this.labelProperty = 'label';
|
|
7484
|
+
this.valueProperty = 'value';
|
|
7485
|
+
this.visibilityTypes = [
|
|
7486
|
+
{ name: 'public', icon: 'public' },
|
|
7487
|
+
{ name: 'private', icon: 'private' }
|
|
7488
|
+
];
|
|
7489
|
+
}
|
|
7490
|
+
registerOnChange(fn) {
|
|
7491
|
+
this._onChange = fn;
|
|
7492
|
+
}
|
|
7493
|
+
registerOnTouched(fn) {
|
|
7494
|
+
this._onTouched = fn;
|
|
7495
|
+
}
|
|
7496
|
+
setDisabledState(isDisabled) {
|
|
7497
|
+
this._disabled = isDisabled;
|
|
7498
|
+
this._cd.markForCheck();
|
|
7499
|
+
}
|
|
7500
|
+
writeValue(value) {
|
|
7501
|
+
if (value) {
|
|
7502
|
+
this.value = value;
|
|
7503
|
+
this.stringValue = value.length > 0 ? 'public' : 'private';
|
|
7504
|
+
this._onChange(this.value);
|
|
7505
|
+
this._onTouched();
|
|
7506
|
+
this._cd.markForCheck();
|
|
7507
|
+
}
|
|
7508
|
+
}
|
|
7509
|
+
onChange($event) {
|
|
7510
|
+
this.value = $event === 'public' ? [PUBLIC_GROUP] : [];
|
|
7511
|
+
this.writeValue(this.value);
|
|
7512
|
+
this._onTouched();
|
|
7513
|
+
this._cd.markForCheck();
|
|
7514
|
+
}
|
|
7515
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryShareComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7516
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.1.3", type: PryShareComponent, selector: "pry-share", inputs: { labelProperty: "labelProperty", valueProperty: "valueProperty" }, providers: [
|
|
7517
|
+
{
|
|
7518
|
+
provide: NG_VALUE_ACCESSOR,
|
|
7519
|
+
useExisting: forwardRef(() => PryShareComponent),
|
|
7520
|
+
multi: true
|
|
7521
|
+
}
|
|
7522
|
+
], ngImport: i0, template: "<div class=\"m-form-label-field\">\n <label class=\"a-label\" for=\"share_type\">{{ '@pry.share.type' | i18n }}</label>\n <pry-select\n (ngModelChange)=\"onChange($event)\"\n [items]=\"visibilityTypes\"\n [ngModel]=\"stringValue\"\n [disabled]=\"_disabled\"\n i18nPrefix=\"@pry.share.\"\n bindValue=\"name\"\n bindLabel=\"name\"\n bindIcon=\"icon\"\n id=\"share_type\"\n [iconSize]=\"[21, 18]\"\n ></pry-select>\n</div>\n", dependencies: [{ kind: "directive", type: i3$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$3.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: PrySelectComponent, selector: "pry-select", inputs: ["items", "clearable", "multiple", "closeOnSelect", "placeholder", "isForm", "required", "name", "readonly", "autocomplete", "alwaysShowAutosuggestedValues", "externalAutocompleteService", "bindValue", "bindLabel", "iconSize", "bindIcon", "template", "i18nPrefix", "bindClasses", "loading", "elementRef"], outputs: ["searched", "cleared", "clicked"] }, { kind: "pipe", type: I18nPipe, name: "i18n" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7523
|
+
}
|
|
7524
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryShareComponent, decorators: [{
|
|
7525
|
+
type: Component,
|
|
7526
|
+
args: [{ selector: 'pry-share', providers: [
|
|
7527
|
+
{
|
|
7528
|
+
provide: NG_VALUE_ACCESSOR,
|
|
7529
|
+
useExisting: forwardRef(() => PryShareComponent),
|
|
7530
|
+
multi: true
|
|
7531
|
+
}
|
|
7532
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"m-form-label-field\">\n <label class=\"a-label\" for=\"share_type\">{{ '@pry.share.type' | i18n }}</label>\n <pry-select\n (ngModelChange)=\"onChange($event)\"\n [items]=\"visibilityTypes\"\n [ngModel]=\"stringValue\"\n [disabled]=\"_disabled\"\n i18nPrefix=\"@pry.share.\"\n bindValue=\"name\"\n bindLabel=\"name\"\n bindIcon=\"icon\"\n id=\"share_type\"\n [iconSize]=\"[21, 18]\"\n ></pry-select>\n</div>\n" }]
|
|
7533
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { labelProperty: [{
|
|
7534
|
+
type: Input
|
|
7535
|
+
}], valueProperty: [{
|
|
7536
|
+
type: Input
|
|
7537
|
+
}] } });
|
|
7538
|
+
|
|
7539
|
+
var PryShareMode;
|
|
7540
|
+
(function (PryShareMode) {
|
|
7541
|
+
PryShareMode["PRIVATE"] = "PRIVATE";
|
|
7542
|
+
PryShareMode["PUBLIC"] = "PUBLIC";
|
|
7543
|
+
PryShareMode["GROUPS"] = "GROUPS";
|
|
7544
|
+
})(PryShareMode || (PryShareMode = {}));
|
|
7547
7545
|
class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
7548
7546
|
set disableRadios(value) {
|
|
7549
7547
|
if (value)
|
|
@@ -7561,28 +7559,30 @@ class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
|
7561
7559
|
this._onTouched = () => { };
|
|
7562
7560
|
// for tracking input
|
|
7563
7561
|
this.assignedGroupNames$ = new BehaviorSubject([]);
|
|
7564
|
-
this.radioValue =
|
|
7565
|
-
this.
|
|
7566
|
-
this.
|
|
7562
|
+
this.radioValue = PryShareMode.PRIVATE;
|
|
7563
|
+
this.PryShareMode = PryShareMode;
|
|
7564
|
+
this.shareModes = [];
|
|
7567
7565
|
this._disableRadios$ = new BehaviorSubject({
|
|
7568
|
-
[
|
|
7569
|
-
[
|
|
7570
|
-
[
|
|
7566
|
+
[PryShareMode.PRIVATE]: false,
|
|
7567
|
+
[PryShareMode.PUBLIC]: false,
|
|
7568
|
+
[PryShareMode.GROUPS]: false
|
|
7571
7569
|
});
|
|
7572
7570
|
this._allowedGroups$ = new BehaviorSubject(undefined);
|
|
7573
7571
|
this.radioValueChange = new EventEmitter();
|
|
7574
7572
|
this.store.dispatch(ConfigActions.loadAccessGroups());
|
|
7575
7573
|
this.groups$ = combineLatest([this.store.select(ConfigSelectors.accessGroups), this._allowedGroups$]).pipe(map(([groups, allowedGroups]) => groups
|
|
7576
|
-
.filter((group) => group.name !==
|
|
7577
|
-
.filter((group) => allowedGroups?.includes(PUBLIC_GROUP) ||
|
|
7574
|
+
.filter((group) => group.name !== PUBLIC_GROUP)
|
|
7575
|
+
.filter((group) => allowedGroups?.includes(PUBLIC_GROUP) ||
|
|
7576
|
+
allowedGroups?.includes(AUTHENTICATED_USERS_GROUP) ||
|
|
7577
|
+
!allowedGroups
|
|
7578
7578
|
? true
|
|
7579
7579
|
: allowedGroups.includes(group.name))));
|
|
7580
7580
|
this.assignedGroups$ = combineLatest([this.groups$, this.assignedGroupNames$]).pipe(map(([groups, groupNames]) => groups.filter((group) => {
|
|
7581
7581
|
return groupNames.includes(group.name);
|
|
7582
7582
|
}) ?? []));
|
|
7583
|
-
this.
|
|
7583
|
+
this.shareModes = Object.keys(PryShareMode).map((label) => ({
|
|
7584
7584
|
label: label.toLowerCase(),
|
|
7585
|
-
value:
|
|
7585
|
+
value: PryShareMode[label]
|
|
7586
7586
|
}));
|
|
7587
7587
|
this.templateData$ = combineLatest([this.groups$, this.assignedGroups$, this._disableRadios$]).pipe(map(([groups, assignedGroups, disableRadios]) => ({ groups, assignedGroups, disableRadios })));
|
|
7588
7588
|
}
|
|
@@ -7604,13 +7604,13 @@ class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
|
7604
7604
|
}
|
|
7605
7605
|
updateRadioValue(groups) {
|
|
7606
7606
|
if (groups.length === 0) {
|
|
7607
|
-
this.radioValue =
|
|
7607
|
+
this.radioValue = PryShareMode.PRIVATE;
|
|
7608
7608
|
}
|
|
7609
|
-
else if (groups.length === 1 && groups.find((group) => group ===
|
|
7610
|
-
this.radioValue =
|
|
7609
|
+
else if (groups.length === 1 && groups.find((group) => group === PUBLIC_GROUP)) {
|
|
7610
|
+
this.radioValue = PryShareMode.PUBLIC;
|
|
7611
7611
|
}
|
|
7612
7612
|
else {
|
|
7613
|
-
this.radioValue =
|
|
7613
|
+
this.radioValue = PryShareMode.GROUPS;
|
|
7614
7614
|
}
|
|
7615
7615
|
}
|
|
7616
7616
|
changeGroupsBasedOnRadioValue(type) {
|
|
@@ -7618,13 +7618,13 @@ class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
|
7618
7618
|
this.radioValue = type;
|
|
7619
7619
|
this.radioValueChange.emit(type);
|
|
7620
7620
|
switch (type) {
|
|
7621
|
-
case
|
|
7621
|
+
case PryShareMode.PRIVATE:
|
|
7622
7622
|
this.changeGroups([]);
|
|
7623
7623
|
break;
|
|
7624
|
-
case
|
|
7624
|
+
case PryShareMode.GROUPS:
|
|
7625
7625
|
this.changeGroups(this.assignedGroupNames$.getValue() ?? []);
|
|
7626
7626
|
break;
|
|
7627
|
-
case
|
|
7627
|
+
case PryShareMode.PUBLIC:
|
|
7628
7628
|
this.changeGroups(['ALL']);
|
|
7629
7629
|
break;
|
|
7630
7630
|
}
|
|
@@ -7644,7 +7644,7 @@ class PryGroupShareComponent extends SubscriptionnerDirective {
|
|
|
7644
7644
|
useExisting: forwardRef(() => PryGroupShareComponent),
|
|
7645
7645
|
multi: true
|
|
7646
7646
|
}
|
|
7647
|
-
], usesInheritance: true, ngImport: i0, template: "@if (templateData$ | async; as data) {\n <div class=\"m-form-radio-group\">\n <div *ngFor=\"let type of
|
|
7647
|
+
], usesInheritance: true, ngImport: i0, template: "@if (templateData$ | async; as data) {\n <div class=\"m-form-radio-group\">\n <div *ngFor=\"let type of shareModes\" 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 === PryShareMode.GROUPS) {\n @if (data.groups.length > 0) {\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 } @else {\n <p class=\"m-text--center\">\n {{ '@pry.share.noGroups' | i18n }}\n </p>\n }\n }\n}\n", dependencies: [{ kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3$3.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: i3$3.RadioControlValueAccessor, selector: "input[type=radio][formControlName],input[type=radio][formControl],input[type=radio][ngModel]", inputs: ["name", "formControlName", "value"] }, { kind: "directive", type: i3$3.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$3.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 }); }
|
|
7648
7648
|
}
|
|
7649
7649
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImport: i0, type: PryGroupShareComponent, decorators: [{
|
|
7650
7650
|
type: Component,
|
|
@@ -7654,7 +7654,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.1.3", ngImpor
|
|
|
7654
7654
|
useExisting: forwardRef(() => PryGroupShareComponent),
|
|
7655
7655
|
multi: true
|
|
7656
7656
|
}
|
|
7657
|
-
], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (templateData$ | async; as data) {\n <div class=\"m-form-radio-group\">\n <div *ngFor=\"let type of
|
|
7657
|
+
], changeDetection: ChangeDetectionStrategy.OnPush, template: "@if (templateData$ | async; as data) {\n <div class=\"m-form-radio-group\">\n <div *ngFor=\"let type of shareModes\" 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 === PryShareMode.GROUPS) {\n @if (data.groups.length > 0) {\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 } @else {\n <p class=\"m-text--center\">\n {{ '@pry.share.noGroups' | i18n }}\n </p>\n }\n }\n}\n" }]
|
|
7658
7658
|
}], ctorParameters: () => [{ type: i1.Store }, { type: i0.ChangeDetectorRef }], propDecorators: { disableRadios: [{
|
|
7659
7659
|
type: Input
|
|
7660
7660
|
}], allowedGroups: [{
|
|
@@ -10155,7 +10155,7 @@ class ToolboxMenuService {
|
|
|
10155
10155
|
type: widget.id,
|
|
10156
10156
|
description: widget.description,
|
|
10157
10157
|
isCustom: true,
|
|
10158
|
-
|
|
10158
|
+
groups: widget.groups
|
|
10159
10159
|
}))
|
|
10160
10160
|
]
|
|
10161
10161
|
})));
|
|
@@ -10214,9 +10214,6 @@ class ToolboxMenuService {
|
|
|
10214
10214
|
menu.sub.push({ icon, label, type });
|
|
10215
10215
|
}
|
|
10216
10216
|
}
|
|
10217
|
-
setMenuStructure(structure) {
|
|
10218
|
-
this._menuStructure$.next(structure);
|
|
10219
|
-
}
|
|
10220
10217
|
addToCatalog(widget, index) {
|
|
10221
10218
|
if (this.isValidForCatalog(widget.name)) {
|
|
10222
10219
|
const manifest = JSON.parse(widget.content);
|
|
@@ -10225,7 +10222,7 @@ class ToolboxMenuService {
|
|
|
10225
10222
|
this.toolboxManifestService.set(widget.id, manifest);
|
|
10226
10223
|
}
|
|
10227
10224
|
else {
|
|
10228
|
-
console.error(`Trying to add existing type "${name}"`);
|
|
10225
|
+
console.error(`Trying to add existing type "${widget.name}"`);
|
|
10229
10226
|
}
|
|
10230
10227
|
}
|
|
10231
10228
|
isValidForCatalog(name) {
|
|
@@ -13094,5 +13091,5 @@ function filterLoader(module, prop) {
|
|
|
13094
13091
|
* Generated bundle index. Do not edit.
|
|
13095
13092
|
*/
|
|
13096
13093
|
|
|
13097
|
-
export { AUTHENTICATED_USERS_GROUP, 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_DASHBOARD_ICON_URL, 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, FilterParamEncoder, 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, PUBLIC_GROUP, PryAboutComponent, PryAboutModule, PryAccessDirective, PryAccessRightsShareComponent, PryAccessRightsShareModalComponent, 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, READ_ACCESS, RawService, RelationTypesActions, RelationTypesSelectors, RelationTypesService, ResultSetSizePipe, ResultsetUtils, SYMBOL_DOMAIN, SYSTEM_GROUPS, 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, WRITE_ACCESS, 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, getAccessArray, getAccessRightsArrayByGroup, getAccessRightsStringByGroup, getAccessString, getCommonDatasourceGroupsForManifest, getDisplayOptions, getGroupLabel, getGroupLabelByName, 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 };
|
|
13094
|
+
export { AUTHENTICATED_USERS_GROUP, 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_DASHBOARD_ICON_URL, 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, FilterParamEncoder, 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, PUBLIC_GROUP, PryAboutComponent, PryAboutModule, PryAccessDirective, PryAccessRightsShareComponent, PryAccessRightsShareModalComponent, 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, PryShareMode, PryShareModule, PrySnackbarComponent, PrySnackbarModule, PrySnackbarService, PrySortDataPipe, PrySortHeaderComponent, PrySortHeaderDirective, PrySortModule, PrySortTableDirective, PryTimePickerComponent, PryTitleService, PryToggleComponent, PryToggleModule, PryUploadComponent, PryVisibilityType, PryWidgetHeaderComponent, READ_ACCESS, RawService, RelationTypesActions, RelationTypesSelectors, RelationTypesService, ResultSetSizePipe, ResultsetUtils, SYMBOL_DOMAIN, SYSTEM_GROUPS, 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, WRITE_ACCESS, 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, getAccessArray, getAccessRightsArrayByGroup, getAccessRightsStringByGroup, getAccessString, getCommonDatasourceGroupsForManifest, getDisplayOptions, getGroupLabel, getGroupLabelByName, 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 };
|
|
13098
13095
|
//# sourceMappingURL=provoly-dashboard.mjs.map
|