@provoly/dashboard 1.4.45 → 1.4.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/presentation/components/add-edit-presentation/add-edit-presentation.component.mjs +6 -7
- package/esm2022/toolbox/components/edit-presentation/edit-presentation.component.mjs +1 -1
- package/esm2022/toolbox/components/save-view/save-view.component.mjs +1 -1
- package/esm2022/toolbox/shared/presentation-form/presentation-form.component.mjs +22 -8
- package/esm2022/widgets/widget-map/utils/widget-map.utils.mjs +2 -2
- package/fesm2022/provoly-dashboard-presentation.mjs +5 -6
- package/fesm2022/provoly-dashboard-presentation.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-toolbox.mjs +23 -9
- package/fesm2022/provoly-dashboard-toolbox.mjs.map +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs +1 -1
- package/fesm2022/provoly-dashboard-widgets-widget-map.mjs.map +1 -1
- package/package.json +7 -7
- package/presentation/components/add-edit-presentation/add-edit-presentation.component.d.ts +2 -2
- package/toolbox/shared/presentation-form/presentation-form.component.d.ts +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@provoly/dashboard",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.47",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"homepage": "https://documentation.provoly.com/provoly-dashboard/main/index.html",
|
|
6
6
|
"repository": {
|
|
@@ -265,18 +265,18 @@
|
|
|
265
265
|
"esm": "./esm2022/pipeline-components/noop/provoly-dashboard-pipeline-components-noop.mjs",
|
|
266
266
|
"default": "./fesm2022/provoly-dashboard-pipeline-components-noop.mjs"
|
|
267
267
|
},
|
|
268
|
-
"./pipeline-components/output-dataset": {
|
|
269
|
-
"types": "./pipeline-components/output-dataset/index.d.ts",
|
|
270
|
-
"esm2022": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
|
|
271
|
-
"esm": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
|
|
272
|
-
"default": "./fesm2022/provoly-dashboard-pipeline-components-output-dataset.mjs"
|
|
273
|
-
},
|
|
274
268
|
"./pipeline-components/subgraph": {
|
|
275
269
|
"types": "./pipeline-components/subgraph/index.d.ts",
|
|
276
270
|
"esm2022": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
277
271
|
"esm": "./esm2022/pipeline-components/subgraph/provoly-dashboard-pipeline-components-subgraph.mjs",
|
|
278
272
|
"default": "./fesm2022/provoly-dashboard-pipeline-components-subgraph.mjs"
|
|
279
273
|
},
|
|
274
|
+
"./pipeline-components/output-dataset": {
|
|
275
|
+
"types": "./pipeline-components/output-dataset/index.d.ts",
|
|
276
|
+
"esm2022": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
|
|
277
|
+
"esm": "./esm2022/pipeline-components/output-dataset/provoly-dashboard-pipeline-components-output-dataset.mjs",
|
|
278
|
+
"default": "./fesm2022/provoly-dashboard-pipeline-components-output-dataset.mjs"
|
|
279
|
+
},
|
|
280
280
|
"./tooltips/attribute": {
|
|
281
281
|
"types": "./tooltips/attribute/index.d.ts",
|
|
282
282
|
"esm2022": "./esm2022/tooltips/attribute/provoly-dashboard-tooltips-attribute.mjs",
|
|
@@ -2,7 +2,7 @@ import { EventEmitter } from '@angular/core';
|
|
|
2
2
|
import { Router } from '@angular/router';
|
|
3
3
|
import { Store } from '@ngrx/store';
|
|
4
4
|
import { GlobalManifest, IMetadata, ManifestDescription, ManifestService, MetadataValue, SubscriptionnerDirective } from '@provoly/dashboard';
|
|
5
|
-
import { BehaviorSubject, Observable } from 'rxjs';
|
|
5
|
+
import { BehaviorSubject, Observable, Subject } from 'rxjs';
|
|
6
6
|
import { MetaEventType } from '@provoly/dashboard/components/metadata-editor';
|
|
7
7
|
import { PresentationFormValue } from '@provoly/dashboard/toolbox';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
@@ -18,7 +18,7 @@ export declare class PryAddEditPresentationComponent extends SubscriptionnerDire
|
|
|
18
18
|
metadataThemeId: string;
|
|
19
19
|
formValue?: Partial<PresentationFormValue>;
|
|
20
20
|
isFormValid: boolean;
|
|
21
|
-
|
|
21
|
+
previousTry: Subject<string | null>;
|
|
22
22
|
set selectedPresentation(presentation: ManifestDescription | undefined);
|
|
23
23
|
edition: boolean;
|
|
24
24
|
themePrefix: string | null;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AbstractControl, FormControl, FormGroup } from '@angular/forms';
|
|
2
2
|
import { LibraryTypes, ManifestDescription, PryI18nService, SubscriptionnerDirective } from '@provoly/dashboard';
|
|
3
3
|
import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
|
|
4
|
-
import { BehaviorSubject } from 'rxjs';
|
|
4
|
+
import { BehaviorSubject, Subject } from 'rxjs';
|
|
5
5
|
import { Store } from '@ngrx/store';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export interface PresentationForm {
|
|
@@ -20,13 +20,14 @@ export interface PresentationFormValue {
|
|
|
20
20
|
export declare class PresentationFormComponent extends SubscriptionnerDirective implements OnInit, AfterViewInit {
|
|
21
21
|
protected store: Store;
|
|
22
22
|
private i18nService;
|
|
23
|
+
previousName: string | null;
|
|
24
|
+
previousTry: Subject<string | null>;
|
|
23
25
|
form: FormGroup<PresentationForm>;
|
|
24
26
|
image: string;
|
|
25
27
|
type: LibraryTypes;
|
|
26
28
|
possibleThemes: string[];
|
|
27
29
|
mode: 'theme' | 'meta';
|
|
28
30
|
themePrefix: string | null;
|
|
29
|
-
errorDuplicatingText: string | null;
|
|
30
31
|
input: ElementRef;
|
|
31
32
|
selectedPresentation$: BehaviorSubject<ManifestDescription | undefined>;
|
|
32
33
|
set selectedPresentation(presentation: ManifestDescription | undefined);
|
|
@@ -42,5 +43,5 @@ export declare class PresentationFormComponent extends SubscriptionnerDirective
|
|
|
42
43
|
getFormValue(): Partial<PresentationFormValue>;
|
|
43
44
|
onImageChanged($event: string): void;
|
|
44
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<PresentationFormComponent, never>;
|
|
45
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PresentationFormComponent, "pry-presentation-form", never, { "
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PresentationFormComponent, "pry-presentation-form", never, { "previousTry": { "alias": "previousTry"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "themePrefix": { "alias": "themePrefix"; "required": false; }; "selectedPresentation": { "alias": "selectedPresentation"; "required": false; }; }, { "formValue": "formValue"; "isFormValid": "isFormValid"; }, never, never, false, never>;
|
|
46
47
|
}
|