@arsedizioni/ars-utils 21.0.21 → 21.0.22
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/package.json
CHANGED
|
@@ -24,6 +24,7 @@ declare class ClipperDocumentManager {
|
|
|
24
24
|
protected broadcastService: BroadcastService;
|
|
25
25
|
protected dialogService: ApplicationDialogService;
|
|
26
26
|
protected canUseArchive: _angular_core.WritableSignal<boolean>;
|
|
27
|
+
protected canHandleTooManyResults: _angular_core.WritableSignal<boolean>;
|
|
27
28
|
/**
|
|
28
29
|
* Export a document in pdf format
|
|
29
30
|
* @param item : the document to export
|
|
@@ -838,6 +839,7 @@ interface ClipperDocumentDialogData {
|
|
|
838
839
|
query?: string;
|
|
839
840
|
theme?: ThemeType;
|
|
840
841
|
canUseArchive?: boolean;
|
|
842
|
+
canHandleTooManyResults?: boolean;
|
|
841
843
|
}
|
|
842
844
|
declare class ClipperDocumentComponent extends ClipperDocumentManager implements OnInit, OnDestroy {
|
|
843
845
|
readonly relevantsPane: _angular_core.Signal<MatDrawer>;
|
|
@@ -1127,8 +1129,9 @@ declare class ClipperDocumentsUtils {
|
|
|
1127
1129
|
* @param selectableModules : the clipper selectable modules
|
|
1128
1130
|
* @param theme: the theme to use. Default is system
|
|
1129
1131
|
* @param canUseArchive: ture if archive is available
|
|
1132
|
+
* @param canHandleTooManyResults: true if the component should handle too many results
|
|
1130
1133
|
*/
|
|
1131
|
-
static openDocument(dialogService: DialogService, clipperService: ClipperService, documentId: string, query?: string, selectionMode?: ClipperSelectionMode, selectableModules?: ClipperModule[], theme?: ThemeType, canUseArchive?: boolean): MatDialogRef<ClipperDocumentComponent> | undefined;
|
|
1134
|
+
static openDocument(dialogService: DialogService, clipperService: ClipperService, documentId: string, query?: string, selectionMode?: ClipperSelectionMode, selectableModules?: ClipperModule[], theme?: ThemeType, canUseArchive?: boolean, canHandleTooManyResults?: boolean): MatDialogRef<ClipperDocumentComponent> | undefined;
|
|
1132
1135
|
/**
|
|
1133
1136
|
* Extract document title
|
|
1134
1137
|
* @param title : the full document title
|