@arsedizioni/ars-utils 19.0.91 → 19.0.93
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/clipper.ui/ui/browser/browser.component.d.ts +7 -1
- 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 +25 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +5 -5
|
@@ -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
|
*/
|
|
@@ -6,7 +6,7 @@ import { DateInterval, INode, NameValueItem } from '@arsedizioni/ars-utils/core'
|
|
|
6
6
|
import { ButtonSelectorComponent, ChipsSelectorComponent } from '@arsedizioni/ars-utils/ui.application';
|
|
7
7
|
import { ScrollDispatcher } from '@angular/cdk/scrolling';
|
|
8
8
|
import { ClipperSearchResultManager } from '../search-result-manager/search-result-manager';
|
|
9
|
-
import { ClipperChannel, ClipperModule, ClipperSearchParams, ClipperUserInfo, ClipperUserSearch, SectorInfo } from '@arsedizioni/ars-utils/clipper.common';
|
|
9
|
+
import { ClipperChannel, ClipperDocumentInfo, ClipperModule, ClipperSearchParams, ClipperUserInfo, ClipperUserSearch, SectorInfo } from '@arsedizioni/ars-utils/clipper.common';
|
|
10
10
|
import * as i0 from "@angular/core";
|
|
11
11
|
export declare class ClipperBrowserComponent extends ClipperSearchResultManager implements OnInit, OnDestroy, AfterViewInit {
|
|
12
12
|
readonly filterByNumber: Signal<MatInput>;
|
|
@@ -54,6 +54,12 @@ export declare class ClipperBrowserComponent extends ClipperSearchResultManager
|
|
|
54
54
|
* Get all available modules
|
|
55
55
|
*/
|
|
56
56
|
private getAllModules;
|
|
57
|
+
/**
|
|
58
|
+
* Return the snapshot document by id
|
|
59
|
+
* @param id : the document id
|
|
60
|
+
* @returns the document or null
|
|
61
|
+
*/
|
|
62
|
+
getSnapshotDocument(id: string): ClipperDocumentInfo | null;
|
|
57
63
|
/**
|
|
58
64
|
* Load tags
|
|
59
65
|
*/
|
|
@@ -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
|