@arsedizioni/ars-utils 21.1.11 → 21.1.15

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.11",
3
+ "version": "21.1.15",
4
4
  "author": {
5
5
  "email": "software@arsedizioni.it",
6
6
  "name": "Fabio Buscaroli, Alberto Doria"
@@ -215,7 +215,6 @@ declare class ClipperSearchParams {
215
215
  searchId?: number;
216
216
  searchName?: string;
217
217
  text?: string;
218
- augmentedText?: string;
219
218
  title?: string;
220
219
  titleOnly?: boolean;
221
220
  showUnreadDocumentsOnly?: boolean;
@@ -315,7 +314,6 @@ interface ClipperDocumentRelevants {
315
314
  items: ClipperDocumentAnchorInfo[];
316
315
  hits: number;
317
316
  hit: number;
318
- minimumScore: number;
319
317
  }
320
318
  interface ClipperDocumentInfo {
321
319
  id?: string;
@@ -344,7 +342,8 @@ interface ClipperDocumentInfo {
344
342
  originDescription?: string;
345
343
  author?: string;
346
344
  anchors?: ClipperDocumentAnchorInfo[];
347
- chunks?: number[];
345
+ chunks?: ClipperDocumentAnchorInfo[];
346
+ chunksList?: string;
348
347
  taxonomy?: string;
349
348
  info?: string;
350
349
  isRead?: boolean;
@@ -817,11 +817,6 @@ declare class ClipperSearchResultItemComponent implements OnInit {
817
817
  protected readonly displayModesEnum: typeof ClipperSearchResultItemDisplayMode;
818
818
  protected readonly modelsEnum: typeof ClipperModel;
819
819
  ngOnInit(): void;
820
- /**
821
- * Get the chunks info for the current item
822
- * @returns the chunks info string or undefined
823
- */
824
- protected getChunks(): string | undefined;
825
820
  /**
826
821
  * Checks if current item is selected
827
822
  * @returns true if current item is selected
@@ -868,7 +863,7 @@ declare class ClipperDocumentComponent extends ClipperDocumentManager implements
868
863
  protected title: _angular_core.WritableSignal<string>;
869
864
  protected busy: _angular_core.WritableSignal<boolean>;
870
865
  protected lastQuery?: string;
871
- protected lastAugmentedQuery?: string[];
866
+ protected lastQueryChunks?: string;
872
867
  protected lastDocument?: ClipperDocumentInfo;
873
868
  protected relevants: ClipperDocumentRelevants;
874
869
  protected relevantsPaneHasBackdrop: boolean;
@@ -1050,7 +1045,7 @@ declare class ClipperDocumentMenuComponent implements OnInit, OnDestroy {
1050
1045
  private changeDetector;
1051
1046
  private clipperService;
1052
1047
  readonly useSelections: _angular_core.InputSignal<boolean>;
1053
- readonly selectionSource: _angular_core.InputSignal<"none" | "selection" | "bag">;
1048
+ readonly selectionSource: _angular_core.InputSignal<"selection" | "bag" | "none">;
1054
1049
  protected selection: () => ClipperDocumentInfo[];
1055
1050
  readonly parent: _angular_core.InputSignal<ClipperSearchResultManager>;
1056
1051
  readonly item: _angular_core.InputSignal<ClipperDocumentInfo>;