@arsedizioni/ars-utils 18.2.100 → 18.2.102
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 +10 -2
- package/clipper.ui/ui/document-manager/document-manager.d.ts +1 -8
- package/clipper.ui/ui/document-menu/document-menu.component.d.ts +1 -1
- package/esm2022/clipper.ui/ui/document/document.component.mjs +35 -5
- package/esm2022/clipper.ui/ui/document-manager/document-manager.mjs +3 -38
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +2116 -2120
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -12,6 +12,9 @@ export declare class ClipperDocumentComponent extends ClipperDocumentManager imp
|
|
|
12
12
|
relevantsPane: MatDrawer;
|
|
13
13
|
closing: EventEmitter<any>;
|
|
14
14
|
opening: EventEmitter<any>;
|
|
15
|
+
onComplianceAnalysis: EventEmitter<any>;
|
|
16
|
+
onCompliancePlanning: EventEmitter<any>;
|
|
17
|
+
onComplianceUsageReport: EventEmitter<any>;
|
|
15
18
|
private unsubscribe;
|
|
16
19
|
private changeDetector;
|
|
17
20
|
private breakpointObserver;
|
|
@@ -138,7 +141,12 @@ export declare class ClipperDocumentComponent extends ClipperDocumentManager imp
|
|
|
138
141
|
* @param documentId : the document id
|
|
139
142
|
* @param newWindow: true if the document must be open into a new window
|
|
140
143
|
*/
|
|
141
|
-
open(documentId: string
|
|
144
|
+
open(documentId: string, newWindow?: boolean): void;
|
|
145
|
+
/**
|
|
146
|
+
* Open a document
|
|
147
|
+
* @param documentId : the document id
|
|
148
|
+
*/
|
|
149
|
+
private openDocument;
|
|
142
150
|
/**
|
|
143
151
|
* Browse document references
|
|
144
152
|
* @param documentId : the document id
|
|
@@ -159,5 +167,5 @@ export declare class ClipperDocumentComponent extends ClipperDocumentManager imp
|
|
|
159
167
|
*/
|
|
160
168
|
protected select(): void;
|
|
161
169
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClipperDocumentComponent, never>;
|
|
162
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ClipperDocumentComponent, "ng-component", never, {}, { "closing": "closing"; "opening": "opening"; }, never, never, true, never>;
|
|
170
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ClipperDocumentComponent, "ng-component", never, {}, { "closing": "closing"; "opening": "opening"; "onComplianceAnalysis": "onComplianceAnalysis"; "onCompliancePlanning": "onCompliancePlanning"; "onComplianceUsageReport": "onComplianceUsageReport"; }, never, never, true, never>;
|
|
163
171
|
}
|
|
@@ -64,16 +64,9 @@ 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
|
|
68
67
|
* @param newWindow: true if the document must be open into a new window
|
|
69
68
|
*/
|
|
70
|
-
open(documentId: string | null | undefined,
|
|
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;
|
|
69
|
+
open(documentId: string | null | undefined, newWindow?: boolean): void;
|
|
77
70
|
/**
|
|
78
71
|
* Display a document report
|
|
79
72
|
* @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<"none" | "bag" | "selection">;
|
|
8
8
|
protected selection: Signal<ClipperDocumentInfo[]>;
|
|
9
9
|
useSelections: import("@angular/core").InputSignal<boolean>;
|
|
10
10
|
item: import("@angular/core").InputSignal<ClipperDocumentInfo>;
|