@arsedizioni/ars-utils 21.0.26 → 21.0.27

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.
@@ -1419,7 +1419,7 @@ class ClipperDocumentComponent extends ClipperDocumentManager {
1419
1419
  openDocument(documentId, query) {
1420
1420
  if (!documentId)
1421
1421
  return;
1422
- ClipperDocumentsUtils.openDocument(this.dialogService.baseService, this.clipperService, documentId, query, this.dialogData.selectionMode, this.dialogData.selectableModules, this.dialogData.theme);
1422
+ ClipperDocumentsUtils.openDocument(this.dialogService.baseService, this.clipperService, documentId, query, this.dialogData.selectionMode, this.dialogData.selectableModules, this.dialogData.theme, this.dialogData.canUseArchive, this.dialogData.canHandleTooManyResults);
1423
1423
  }
1424
1424
  /**
1425
1425
  * Browse document references
@@ -1427,7 +1427,6 @@ class ClipperDocumentComponent extends ClipperDocumentManager {
1427
1427
  * @param mode : the mode
1428
1428
  */
1429
1429
  openReferences(documentId, mode = ClipperQueryReferencesMode.ReferencesIn, model = null, anchor = null, anchorTitle = null, update = true) {
1430
- console.log(JSON.stringify(this.dialogData));
1431
1430
  this.dialogService.open(ClipperReferencesComponent, {
1432
1431
  ariaLabel: 'riferimenti legati al documento',
1433
1432
  autoFocus: false,
@@ -2551,7 +2550,6 @@ class ClipperReferencesComponent extends ClipperSearchResultManager {
2551
2550
  if (this.dialogData.anchorTitle) {
2552
2551
  this.title += " - " + this.dialogData.anchorTitle;
2553
2552
  }
2554
- console.log(this.dialogData.canHandleTooManyResults);
2555
2553
  // Use service snapshot
2556
2554
  this.snapshot = this.clipperService.referencesSnapshot() ?? { searchParams: new ClipperSearchParams(), interval: "-1" };
2557
2555
  if (this.filterParams.mode !== this.dialogData.mode ||