@arsedizioni/ars-utils 18.2.225 → 18.2.226
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/browser-dialog/browser-dialog.component.d.ts +1 -0
- package/esm2022/clipper.common/common/services/clipper.service.mjs +2 -2
- package/esm2022/clipper.ui/ui/browser-dialog/browser-dialog.component.mjs +2 -4
- package/esm2022/support.common/common/services/support.service.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +1 -3
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-support.common.mjs.map +1 -1
- package/package.json +7 -7
|
@@ -3530,8 +3530,6 @@ class ClipperBrowserDialogComponent extends ClipperSearchResultManager {
|
|
|
3530
3530
|
open(documentId, query = null, newWindow = false) {
|
|
3531
3531
|
if (!newWindow)
|
|
3532
3532
|
this.openDocument(documentId, query);
|
|
3533
|
-
else
|
|
3534
|
-
window.open('/documento/' + documentId, '_blank');
|
|
3535
3533
|
}
|
|
3536
3534
|
/**
|
|
3537
3535
|
* Open a document
|
|
@@ -3541,7 +3539,7 @@ class ClipperBrowserDialogComponent extends ClipperSearchResultManager {
|
|
|
3541
3539
|
openDocument(documentId, query = null) {
|
|
3542
3540
|
if (!documentId)
|
|
3543
3541
|
return;
|
|
3544
|
-
ClipperDocumentsUtils.openDocument(this.dialogService, this.clipperService, documentId, query ?? this.filterParams.text, this.dialogData.selectionMode);
|
|
3542
|
+
ClipperDocumentsUtils.openDocument(this.dialogService, this.clipperService, documentId, query ?? this.filterParams.text, this.dialogData.selectionMode, this.dialogData.theme);
|
|
3545
3543
|
}
|
|
3546
3544
|
/**
|
|
3547
3545
|
* Compose a free text search query
|