@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.
- package/clipper.ui/ui/document/document.component.d.ts +7 -10
- package/clipper.ui/ui/document-manager/document-manager.d.ts +8 -1
- package/clipper.ui/ui/document-menu/document-menu.component.d.ts +1 -1
- package/esm2022/clipper.ui/ui/document/document.component.mjs +11 -29
- package/esm2022/clipper.ui/ui/document-manager/document-manager.mjs +42 -5
- package/esm2022/clipper.ui/ui/document-menu/document-menu.component.mjs +4 -10
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +2165 -2153
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -137,16 +137,13 @@ export declare class ClipperDocumentComponent extends ClipperDocumentManager imp
|
|
|
137
137
|
*/
|
|
138
138
|
protected showComment(): void;
|
|
139
139
|
/**
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
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<"
|
|
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>;
|