@arsedizioni/ars-utils 21.1.5 → 21.1.7
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 +0 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +31 -10
- 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 +1 -1
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +5 -0
package/package.json
CHANGED
|
@@ -221,7 +221,6 @@ declare class ClipperSearchParams {
|
|
|
221
221
|
showUnreadDocumentsOnly?: boolean;
|
|
222
222
|
showCommentedDocumentsOnly?: boolean;
|
|
223
223
|
showNotAbrogatedDocumentsOnly?: boolean;
|
|
224
|
-
expandTextQueryUsingAI?: boolean;
|
|
225
224
|
number?: string;
|
|
226
225
|
fromDate?: Date;
|
|
227
226
|
toDate?: Date;
|
|
@@ -307,6 +306,7 @@ interface ClipperDocumentAnchorInfo {
|
|
|
307
306
|
uri: string;
|
|
308
307
|
ordinal?: string;
|
|
309
308
|
score?: number;
|
|
309
|
+
chunk?: number;
|
|
310
310
|
veryRelevant?: boolean;
|
|
311
311
|
value?: string;
|
|
312
312
|
level?: number;
|
|
@@ -814,6 +814,11 @@ declare class ClipperSearchResultItemComponent implements OnInit {
|
|
|
814
814
|
protected readonly displayModesEnum: typeof ClipperSearchResultItemDisplayMode;
|
|
815
815
|
protected readonly modelsEnum: typeof ClipperModel;
|
|
816
816
|
ngOnInit(): void;
|
|
817
|
+
/**
|
|
818
|
+
* Get the chunks info for the current item
|
|
819
|
+
* @returns the chunks info string or undefined
|
|
820
|
+
*/
|
|
821
|
+
protected getChunks(): string | undefined;
|
|
817
822
|
/**
|
|
818
823
|
* Checks if current item is selected
|
|
819
824
|
* @returns true if current item is selected
|