@arsedizioni/ars-utils 18.2.120 → 18.2.122

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.
@@ -152,7 +152,7 @@ export declare class ClipperDocumentComponent extends ClipperDocumentManager imp
152
152
  * @param documentId : the document id
153
153
  * @param mode : the mode
154
154
  */
155
- protected openReferences(documentId: string, mode?: ClipperQueryReferencesMode, model?: number, anchor?: string, anchorTitle?: string, update?: boolean): void;
155
+ openReferences(documentId: string, mode?: ClipperQueryReferencesMode, model?: number, anchor?: string, anchorTitle?: string, update?: boolean): void;
156
156
  /**
157
157
  * Display a report
158
158
  * @param item
@@ -74,14 +74,14 @@ export declare class ClipperDocumentManager {
74
74
  report(item: ClipperDocumentInfo): void;
75
75
  /**
76
76
  * Browse document references
77
- * @param item : the document item
78
- * @param mode : the snapshot mode
77
+ * @param document id : the document id
78
+ * @param mode : the reference mode
79
79
  */
80
- references(item: ClipperDocumentInfo, mode?: ClipperQueryReferencesMode): void;
80
+ openReferences(documentId: string, mode?: ClipperQueryReferencesMode): void;
81
81
  /**
82
82
  * Manage clipper bag
83
83
  */
84
- manageBag(): void;
84
+ openBag(): void;
85
85
  /**
86
86
  * Checks if a module is supported by RS
87
87
  * @param module : the module to check
@@ -7,9 +7,12 @@ export interface ClipperReferencesDialogData {
7
7
  mode?: ClipperQueryReferencesMode | null;
8
8
  anchor?: string | null;
9
9
  anchorTitle?: string | null;
10
- id: string;
10
+ documentId: string;
11
11
  model: number;
12
12
  }
13
+ export interface ClipperReferenceDialogResult {
14
+ documentId: string;
15
+ }
13
16
  export declare class ClipperReferencesComponent extends ClipperSearchResultManager implements OnInit, OnDestroy, AfterViewInit {
14
17
  filterPane: MatDrawer;
15
18
  private dialogRef;