@provoly/dashboard 1.4.46 → 1.4.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provoly/dashboard",
3
- "version": "1.4.46",
3
+ "version": "1.4.48",
4
4
  "type": "commonjs",
5
5
  "homepage": "https://documentation.provoly.com/provoly-dashboard/main/index.html",
6
6
  "repository": {
@@ -229,18 +229,18 @@
229
229
  "esm": "./esm2022/components/paginator/provoly-dashboard-components-paginator.mjs",
230
230
  "default": "./fesm2022/provoly-dashboard-components-paginator.mjs"
231
231
  },
232
- "./components/scheme-picker": {
233
- "types": "./components/scheme-picker/index.d.ts",
234
- "esm2022": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
235
- "esm": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
236
- "default": "./fesm2022/provoly-dashboard-components-scheme-picker.mjs"
237
- },
238
232
  "./components/stepper": {
239
233
  "types": "./components/stepper/index.d.ts",
240
234
  "esm2022": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
241
235
  "esm": "./esm2022/components/stepper/provoly-dashboard-components-stepper.mjs",
242
236
  "default": "./fesm2022/provoly-dashboard-components-stepper.mjs"
243
237
  },
238
+ "./components/scheme-picker": {
239
+ "types": "./components/scheme-picker/index.d.ts",
240
+ "esm2022": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
241
+ "esm": "./esm2022/components/scheme-picker/provoly-dashboard-components-scheme-picker.mjs",
242
+ "default": "./fesm2022/provoly-dashboard-components-scheme-picker.mjs"
243
+ },
244
244
  "./components/text-editor": {
245
245
  "types": "./components/text-editor/index.d.ts",
246
246
  "esm2022": "./esm2022/components/text-editor/provoly-dashboard-components-text-editor.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
- errorDuplicatingText: string | null;
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, { "mode": { "alias": "mode"; "required": false; }; "themePrefix": { "alias": "themePrefix"; "required": false; }; "errorDuplicatingText": { "alias": "errorDuplicatingText"; "required": false; }; "selectedPresentation": { "alias": "selectedPresentation"; "required": false; }; }, { "formValue": "formValue"; "isFormValid": "isFormValid"; }, never, never, false, 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
  }
@@ -26,6 +26,7 @@ export declare class TooltipManager {
26
26
  interactionPopupOverlay: Overlay;
27
27
  tooltipDisplayedIndex$: BehaviorSubject<number>;
28
28
  private calculatedTooltipPosition?;
29
+ inter: any;
29
30
  init(tooltipFactoryService: TooltipFactoryService, injector: Injector, store: Store, subscriptions: Subscription, widgetSize$: Observable<Size>, displayHeader$: Observable<boolean | {
30
31
  [p: string]: boolean;
31
32
  }>, map: Map, popup: ElementRef, popupContent: ViewContainerRef, interactionManager: InteractionManager, parent: WidgetMapComponent): this;