@arsedizioni/ars-utils 21.1.5 → 21.1.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arsedizioni/ars-utils",
3
- "version": "21.1.5",
3
+ "version": "21.1.6",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -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
@@ -1038,7 +1043,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
1038
1043
  private changeDetector;
1039
1044
  private clipperService;
1040
1045
  readonly useSelections: _angular_core.InputSignal<boolean>;
1041
- readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
1046
+ readonly selectionSource: _angular_core.InputSignal<"bag" | "selection" | "none">;
1042
1047
  protected selection: () => ClipperDocumentInfo[];
1043
1048
  readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
1044
1049
  readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;