@arsedizioni/ars-utils 20.3.58 → 20.3.60
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/index.d.ts +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 +3 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
package/clipper.ui/index.d.ts
CHANGED
|
@@ -704,8 +704,8 @@ declare class ClipperBrowserComponent extends ClipperSearchResultManager impleme
|
|
|
704
704
|
*/
|
|
705
705
|
protected sort(newSort?: NameValueItem<any>): void;
|
|
706
706
|
/**
|
|
707
|
-
|
|
708
|
-
|
|
707
|
+
* Show free text help
|
|
708
|
+
*/
|
|
709
709
|
protected help(): void;
|
|
710
710
|
/**
|
|
711
711
|
* Compose a free text search query
|
|
@@ -2647,7 +2647,7 @@ class ClipperService {
|
|
|
2647
2647
|
if (n.documentDescriptor) {
|
|
2648
2648
|
const documentInfo = JSON.parse(n.documentDescriptor);
|
|
2649
2649
|
if (documentInfo) {
|
|
2650
|
-
n.documentId = documentInfo.DocumentId || documentInfo.Id;
|
|
2650
|
+
n.documentId = documentInfo.documentId || documentInfo.DocumentId || documentInfo.id || documentInfo.Id;
|
|
2651
2651
|
n.title1 = documentInfo.Title1 ?? documentInfo.Title2;
|
|
2652
2652
|
n.title2 = documentInfo.Title1 ? documentInfo.Title2 : undefined;
|
|
2653
2653
|
}
|