@arsedizioni/ars-utils 21.1.75 → 21.1.76
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/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +18 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +1 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +6 -0
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +1 -1
|
@@ -2397,11 +2397,10 @@ class ClipperSearchResultManager extends ClipperDocumentManager {
|
|
|
2397
2397
|
openDocument(documentId, query, queryChunks) {
|
|
2398
2398
|
if (!documentId)
|
|
2399
2399
|
return;
|
|
2400
|
-
query = query ?? ClipperSearchUtils.
|
|
2400
|
+
query = query ?? ClipperSearchUtils.normalizeTextQuery2(this.filterParams.text);
|
|
2401
2401
|
if ((this.filterParams.flags & ClipperQueryDocumentFlags.UseSemanticSearch) > 0) {
|
|
2402
2402
|
query = '$' + query;
|
|
2403
2403
|
}
|
|
2404
|
-
console.log('Opening document ' + documentId + ' with query: ' + query);
|
|
2405
2404
|
ClipperDocumentsUtils.openDocument(this.injector, documentId, query, queryChunks, this.selectionMode(), null, this.themeService.getTheme(), this.canUseArchive(), this.canHandleTooManyResults());
|
|
2406
2405
|
}
|
|
2407
2406
|
///
|