@arsedizioni/ars-utils 19.0.91 → 19.0.92
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.common/common/messages.d.ts +1 -0
- package/clipper.ui/ui/browser/browser-dialog/browser-dialog.component.d.ts +5 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +1 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +14 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +9 -9
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
1
2
|
import { ClipperModule, ClipperSelectionMode, ClipperService } from '@arsedizioni/ars-utils/clipper.common';
|
|
2
3
|
import { ThemeType } from '@arsedizioni/ars-utils/core';
|
|
3
4
|
import { ClipperBrowserComponent } from '../browser.component';
|
|
@@ -9,13 +10,15 @@ export interface ClipperBrowserDialogData {
|
|
|
9
10
|
initialModule?: number | null;
|
|
10
11
|
theme?: ThemeType | null;
|
|
11
12
|
}
|
|
12
|
-
export declare class ClipperBrowserDialogComponent {
|
|
13
|
+
export declare class ClipperBrowserDialogComponent implements OnInit {
|
|
14
|
+
private unsubscribe;
|
|
13
15
|
readonly clipperBrowser: import("@angular/core").Signal<ClipperBrowserComponent>;
|
|
14
|
-
private changeDetector;
|
|
15
16
|
protected clipperService: ClipperService;
|
|
17
|
+
private changeDetector;
|
|
16
18
|
protected dialogData: ClipperBrowserDialogData;
|
|
17
19
|
private dialogRef;
|
|
18
20
|
private broadcastService;
|
|
21
|
+
ngOnInit(): void;
|
|
19
22
|
/**
|
|
20
23
|
* Checks if documents can be selected and returned as message
|
|
21
24
|
*/
|
|
@@ -20,6 +20,7 @@ const ClipperMessages = {
|
|
|
20
20
|
DOCUMENT_NAVIGATE: '$clipper-document-navigate',
|
|
21
21
|
DOCUMENT_NAVIGATED: '$clipper-document-navigated',
|
|
22
22
|
DOCUMENT_SELECTED: '$clipper-document-selected',
|
|
23
|
+
DOCUMENT_SELECTED_INNER: '$clipper-document-selected_inner',
|
|
23
24
|
// Settings
|
|
24
25
|
SETTINGS_CHANGED: '$clipper-settings-changed',
|
|
25
26
|
// Commands
|