@arsedizioni/ars-utils 18.2.102 → 18.2.104

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.
@@ -137,16 +137,13 @@ export declare class ClipperDocumentComponent extends ClipperDocumentManager imp
137
137
  */
138
138
  protected showComment(): void;
139
139
  /**
140
- * Open an item
141
- * @param documentId : the document id
142
- * @param newWindow: true if the document must be open into a new window
143
- */
144
- open(documentId: string, newWindow?: boolean): void;
145
- /**
146
- * Open a document
147
- * @param documentId : the document id
148
- */
149
- private openDocument;
140
+ * Open an item
141
+ * This should be always overridden
142
+ * @param documentId : the document id
143
+ * @param query: the query string
144
+ * @param newWindow: true if the document must be open into a new window
145
+ */
146
+ open(documentId: string | null | undefined, query?: string, newWindow?: boolean): void;
150
147
  /**
151
148
  * Browse document references
152
149
  * @param documentId : the document id
@@ -64,9 +64,16 @@ export declare class ClipperDocumentManager {
64
64
  * Open an item
65
65
  * This should be always overridden
66
66
  * @param documentId : the document id
67
+ * @param query: the query string
67
68
  * @param newWindow: true if the document must be open into a new window
68
69
  */
69
- open(documentId: string | null | undefined, newWindow?: boolean): void;
70
+ open(documentId: string | null | undefined, query?: string, newWindow?: boolean): void;
71
+ /**
72
+ * Open a document
73
+ * @param documentId : the document id
74
+ * @param query: the query string
75
+ */
76
+ openDocument(documentId: string | null | undefined, query?: string): void;
70
77
  /**
71
78
  * Display a document report
72
79
  * @param item : the document
@@ -4,7 +4,7 @@ import { ClipperSearchResultManager } from '../search-result-manager/search-resu
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class ClipperDocumentMenuComponent {
6
6
  parent: import("@angular/core").InputSignal<ClipperSearchResultManager>;
7
- selectionSource: import("@angular/core").InputSignal<"none" | "bag" | "selection">;
7
+ selectionSource: import("@angular/core").InputSignal<"selection" | "bag">;
8
8
  protected selection: Signal<ClipperDocumentInfo[]>;
9
9
  useSelections: import("@angular/core").InputSignal<boolean>;
10
10
  item: import("@angular/core").InputSignal<ClipperDocumentInfo>;